/* 	=========================
	Template Name 	 : Tanam
	Author			 : DexignZone
	Version			 : 1.0
	Author Portfolio : https://themeforest.net/user/dexignzone
	=========================
	
	=========================
	[Table of Contents]
	=========================
	==============
	  SCSS Start
	==============
	1. Abstracts
        1.1 _bs-custom	
        1.2 _inheritance
        1.3 _maps
        1.4 _mixin
        1.5 _variable

    2. Bootstrap 
        2.1 Here goes all official bootstrap scss files

    3. Global/Base
        3.1 _color
        3.2 _custom-grid
        3.3 _fonts
        3.4 _helper 
        3.5 _reset

    4. Layout
        4.1 footer
        4.2 header
        4.3 sidebar
        4.4 typography


    5. Components
        5.1 app
        5.2 charts
        5.3 forms
        5.4 ico
        5.5 map
        5.6 tables
        5.7 uc
        5.8 ui
        5.9 widget
	
    6. Pages
        6.1  _banking
        6.2  _business
        6.3  _ecommerce
        6.4  _ecom-product-detail
        6.5  _ecom-product-grid
        6.6  _ecom-product-list
        6.7  _flight-booking
        6.8  _homepage
        6.9  _lifestyle
        6.10 _page-auth
        6.11 _page-error
        6.12 _pages
        6.13 _sales
        6.14 _statistics-page
        6.15 _stock
		
	7. PreLoader 
	
	==============
	  SCSS End
	==============
========================= */
/*==== 1. Abstracts ====*/
@import url("./../vendor/fontawesome/css/all.min.css");
@import url("./../vendor/flaticon/flaticon.css");
@import url("./../vendor/uicons-solid-rounded/css/uicons-solid-rounded.css");
@import url("./../vendor/line-awesome/css/line-awesome.min.css");
@import url("./../vendor/themify-icons/css/themify-icons.css");
:root {
  --primary: #027335;
  --primary-light: rgba(255, 251, 246, 0.80);
  --primary-light-2: #FFCD90;
  --bg-gradient: linear-gradient(228.99deg, #027335 26.74%, #5fa980 109.9%);
  --primary-hover: #01411e;
  --primary-dark: black;
  --secondary: #28B0CE;
  --rgba-primary-1: rgba(2, 115, 53, 0.1);
  --rgba-primary-2: rgba(2, 115, 53, 0.2);
  --rgba-primary-3: rgba(2, 115, 53, 0.3);
  --rgba-primary-4: rgba(2, 115, 53, 0.4);
  --rgba-primary-5: rgba(2, 115, 53, 0.5);
  --rgba-primary-6: rgba(2, 115, 53, 0.6);
  --rgba-primary-7: rgba(2, 115, 53, 0.7);
  --rgba-primary-8: rgba(2, 115, 53, 0.8);
  --rgba-primary-9: rgba(2, 115, 53, 0.9);
  --font-family-base: Lato, sans-serif;
  --font-family-title: Poppins, sans-serif;
  --border-radius-base: 12px;
  --border-radius-sm: 0.5rem;
  --border-color: #E8EFF3;
  --border-color-2: #F0F0F0;
  --body-color: #303733;
  --dark: #293041;
  --bg-white: #FFF;
  --title: #2F2F2F;
  --card-bg: #fff;
  --theme-text-color: #fff; }

/*
	0 - 600: Phone
	600 - 900: Tablet portrait
	900 - 1200: Tablet landscape
	1200 - 1800: Normal styles
	1800+ : Big Desktop
	1em = 1rem
	The smaller device rules always should write below the bigger device rules
	Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component

*/
/*==== 2. Bootstrap ====*/
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #027335;
  --bs-secondary: #28B0CE;
  --bs-success: #1CBD5C;
  --bs-info: #A131AD;
  --bs-warning: #EF962E;
  --bs-danger: #AE7156;
  --bs-light: #E6E6E6;
  --bs-dark: #293041;
  --bs-primary-rgb: 2, 115, 53;
  --bs-secondary-rgb: 40, 176, 206;
  --bs-success-rgb: 28, 189, 92;
  --bs-info-rgb: 161, 49, 173;
  --bs-warning-rgb: 239, 150, 46;
  --bs-danger-rgb: 174, 113, 86;
  --bs-light-rgb: 230, 230, 230;
  --bs-dark-rgb: 41, 48, 65;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 48, 55, 51;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Lato, sans-serif;
  --bs-body-font-size: 0.875rem;
  --bs-body-font-weight: 500;
  --bs-body-line-height: 1.6;
  --bs-body-color: #303733;
  --bs-body-bg: #fff; }

*,
*::before,
*::after {
  box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; } }

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25; }

hr:not([size]) {
  height: 1px; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #2F2F2F; }

h1, .h1 {
  font-size: calc(1.3rem + 0.6vw); }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 1.75rem; } }

h2, .h2 {
  font-size: calc(1.275rem + 0.3vw); }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 1.5rem; } }

h3, .h3 {
  font-size: calc(1.2625rem + 0.15vw); }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.375rem; } }

h4, .h4 {
  font-size: 1.25rem; }

h5, .h5 {
  font-size: 1.125rem; }

h6, .h6 {
  font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul {
  padding-left: 2rem; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small, .small {
  font-size: 0.875em; }

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #027335;
  text-decoration: underline; }
  a:hover {
    color: #025c2a; }

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none; }

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em; }
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal; }

code {
  font-size: 0.875em;
  color: #ff0081;
  word-wrap: break-word; }
  a > code {
    color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem; }
  kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700; }

figure {
  margin: 0 0 1rem; }

img,
svg {
  vertical-align: middle; }

table {
  caption-side: bottom;
  border-collapse: collapse; }

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #AEAED5;
  text-align: left; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0; }

label {
  display: inline-block; }

button {
  border-radius: 0; }

button:focus:not(:focus-visible) {
  outline: 0; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
select {
  text-transform: none; }

[role="button"] {
  cursor: pointer; }

select {
  word-wrap: normal; }
  select:disabled {
    opacity: 1; }

[list]::-webkit-calendar-picker-indicator {
  display: none; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }
  button:not(:disabled),
  [type="button"]:not(:disabled),
  [type="reset"]:not(:disabled),
  [type="submit"]:not(:disabled) {
    cursor: pointer; }

::-moz-focus-inner {
  padding: 0;
  border-style: none; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit; }
  @media (min-width: 1200px) {
    legend {
      font-size: 1.5rem; } }
  legend + * {
    clear: left; }

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0; }

::-webkit-inner-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield; }

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-color-swatch-wrapper {
  padding: 0; }

::file-selector-button {
  font: inherit; }

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

iframe {
  border: 0; }

summary {
  display: list-item;
  cursor: pointer; }

progress {
  vertical-align: baseline; }

[hidden] {
  display: none !important; }

.lead {
  font-size: 1.09375rem;
  font-weight: 300; }

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-1 {
      font-size: 5rem; } }

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-2 {
      font-size: 4.5rem; } }

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-3 {
      font-size: 4rem; } }

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-4 {
      font-size: 3.5rem; } }

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-5 {
      font-size: 3rem; } }

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-6 {
      font-size: 2.5rem; } }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem; }

.initialism {
  font-size: 0.875em;
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.09375rem; }
  .blockquote > :last-child {
    margin-bottom: 0; }

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d; }
  .blockquote-footer::before {
    content: "\2014\00A0"; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
  font-size: 0.875em;
  color: #6c757d; }

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1024px; } }

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x)); }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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.33333%; }
  .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.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; }
  .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.33333%; }
  .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.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; }
  .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.33333%; }
  .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.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; }
  .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.33333%; }
  .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.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; }
  .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: 1440) {
  .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.33333%; }
  .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.66667%; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.33333%; }
  .offset-xxl-2 {
    margin-left: 16.66667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.33333%; }
  .offset-xxl-5 {
    margin-left: 41.66667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.33333%; }
  .offset-xxl-8 {
    margin-left: 66.66667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.33333%; }
  .offset-xxl-11 {
    margin-left: 91.66667%; }
  .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; } }

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #303733;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #303733;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #303733;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #303733;
  vertical-align: top;
  border-color: #F0F0F0; }
  .table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); }
  .table > tbody {
    vertical-align: inherit; }
  .table > thead {
    vertical-align: bottom; }
  .table > :not(:first-child) {
    border-top: 2px solid currentColor; }

.caption-top {
  caption-side: top; }

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem; }

.table-bordered > :not(caption) > * {
  border-width: 1px 0; }
  .table-bordered > :not(caption) > * > * {
    border-width: 0 1px; }

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0; }

.table-borderless > :not(:first-child) {
  border-top-width: 0; }

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color); }

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color); }

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color); }

.table-primary {
  --bs-table-bg: #cce3d7;
  --bs-table-striped-bg: #c2d8cc;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8ccc2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdd2c7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8ccc2; }

.table-secondary {
  --bs-table-bg: #d4eff5;
  --bs-table-striped-bg: #c9e3e9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bfd7dd;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c4dde3;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bfd7dd; }

.table-success {
  --bs-table-bg: #d2f2de;
  --bs-table-striped-bg: #c8e6d3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bddac8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c2e0cd;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bddac8; }

.table-info {
  --bs-table-bg: #ecd6ef;
  --bs-table-striped-bg: #e0cbe3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d4c1d7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #dac6dd;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #d4c1d7; }

.table-warning {
  --bs-table-bg: #fcead5;
  --bs-table-striped-bg: #efdeca;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3d3c0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9d8c5;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e3d3c0; }

.table-danger {
  --bs-table-bg: #efe3dd;
  --bs-table-striped-bg: #e3d8d2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d7ccc7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ddd2cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #d7ccc7; }

.table-light {
  --bs-table-bg: #E6E6E6;
  --bs-table-striped-bg: #dbdbdb;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cfcfcf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d5d5d5;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cfcfcf; }

.table-dark {
  --bs-table-bg: #293041;
  --bs-table-striped-bg: #343a4b;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #3e4554;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #39404f;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #3e4554; }

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1439.98) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

.form-label {
  margin-bottom: 0.5rem; }

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6; }

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.09375rem; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.76563rem; }
  @media (min-width: 1200px) {
    .col-form-label-sm {
      font-size: 0.76562rem; } }

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #AEAED5; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #303733;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none; } }
  .form-control[type="file"] {
    overflow: hidden; }
    .form-control[type="file"]:not(:disabled):not([readonly]) {
      cursor: pointer; }
  .form-control:focus {
    color: #303733;
    background-color: #fff;
    border-color: #81b99a;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.25); }
  .form-control::-webkit-date-and-time-value {
    height: 1.6em; }
  .form-control::placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1; }
  .form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #303733;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-control::file-selector-button {
        transition: none; } }
  .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3; }
  .form-control::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #303733;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-control::-webkit-file-upload-button {
        transition: none; } }
  .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.6;
  color: #303733;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm {
  min-height: calc(1.6em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.76563rem;
  border-radius: 0.2rem; }
  @media (min-width: 1200px) {
    .form-control-sm {
      font-size: 0.76562rem; } }
  .form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem; }
  .form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem; }

.form-control-lg {
  min-height: calc(1.6em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  border-radius: 0.3rem; }
  .form-control-lg::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem; }
  .form-control-lg::-webkit-file-upload-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem; }

textarea.form-control {
  min-height: calc(1.6em + 0.75rem + 2px); }

textarea.form-control-sm {
  min-height: calc(1.6em + 0.5rem + 2px); }

textarea.form-control-lg {
  min-height: calc(1.6em + 1rem + 2px); }

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem; }
  .form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer; }
  .form-control-color::-moz-color-swatch {
    height: 1.6em;
    border-radius: 0.25rem; }
  .form-control-color::-webkit-color-swatch {
    height: 1.6em;
    border-radius: 0.25rem; }

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #303733;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none; }
  @media (prefers-reduced-motion: reduce) {
    .form-select {
      transition: none; } }
  .form-select:focus {
    border-color: #81b99a;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.25); }
  .form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none; }
  .form-select:disabled {
    background-color: #e9ecef; }
  .form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #303733; }

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.76563rem;
  border-radius: 0.2rem; }
  @media (min-width: 1200px) {
    .form-select-sm {
      font-size: 0.76562rem; } }

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.09375rem;
  border-radius: 0.3rem; }

.form-check {
  display: block;
  min-height: 1.4rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem; }
  .form-check .form-check-input {
    float: left;
    margin-left: -1.5em; }

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact; }
  .form-check-input[type="checkbox"] {
    border-radius: 0.25em; }
  .form-check-input[type="radio"] {
    border-radius: 50%; }
  .form-check-input:active {
    filter: brightness(90%); }
  .form-check-input:focus {
    border-color: #81b99a;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.25); }
  .form-check-input:checked {
    background-color: #027335;
    border-color: #027335; }
    .form-check-input:checked[type="checkbox"] {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); }
    .form-check-input:checked[type="radio"] {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); }
  .form-check-input[type="checkbox"]:indeterminate {
    background-color: #027335;
    border-color: #027335;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); }
  .form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5; }
  .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
    opacity: 0.5; }

.form-switch {
  padding-left: 2.5em; }
  .form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-switch .form-check-input {
        transition: none; } }
    .form-switch .form-check-input:focus {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2381b99a'/%3e%3c/svg%3e"); }
    .form-switch .form-check-input:checked {
      background-position: right center;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }

.form-check-inline {
  display: inline-block;
  margin-right: 1rem; }

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }
  .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
    pointer-events: none;
    filter: none;
    opacity: 0.65; }

.form-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  appearance: none; }
  .form-range:focus {
    outline: 0; }
    .form-range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0rem rgba(2, 115, 53, 0.25); }
    .form-range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0rem rgba(2, 115, 53, 0.25); }
  .form-range::-moz-focus-outer {
    border: 0; }
  .form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #027335;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-webkit-slider-thumb {
        transition: none; } }
    .form-range::-webkit-slider-thumb:active {
      background-color: #b3d5c2; }
  .form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem; }
  .form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #027335;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-moz-range-thumb {
        transition: none; } }
    .form-range::-moz-range-thumb:active {
      background-color: #b3d5c2; }
  .form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem; }
  .form-range:disabled {
    pointer-events: none; }
    .form-range:disabled::-webkit-slider-thumb {
      background-color: #adb5bd; }
    .form-range:disabled::-moz-range-thumb {
      background-color: #adb5bd; }

.form-floating {
  position: relative; }
  .form-floating > .form-control,
  .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25; }
  .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-floating > label {
        transition: none; } }
  .form-floating > .form-control {
    padding: 1rem 0.75rem; }
    .form-floating > .form-control::placeholder {
      color: transparent; }
    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
    .form-floating > .form-control:-webkit-autofill {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
  .form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem; }
  .form-floating > .form-control:focus ~ label,
  .form-floating > .form-control:not(:placeholder-shown) ~ label,
  .form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  .form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control,
  .input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0; }
  .input-group > .form-control:focus,
  .input-group > .form-select:focus {
    z-index: 3; }
  .input-group .btn {
    position: relative;
    z-index: 2; }
    .input-group .btn:focus {
      z-index: 3; }

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #303733;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem; }

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  border-radius: 0.3rem; }

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.76563rem;
  border-radius: 0.2rem; }
  @media (min-width: 1200px) {
    .input-group-sm > .form-control,
    .input-group-sm > .form-select,
    .input-group-sm > .input-group-text,
    .input-group-sm > .btn {
      font-size: 0.76562rem; } }

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem; }

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #1CBD5C; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.76563rem;
  color: #000;
  background-color: rgba(28, 189, 92, 0.9);
  border-radius: 0.25rem; }
  @media (min-width: 1200px) {
    .valid-tooltip {
      font-size: 0.76562rem; } }

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #1CBD5C;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231CBD5C' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #1CBD5C;
    box-shadow: 0 0 0 0rem rgba(28, 189, 92, 0.25); }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem); }

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #1CBD5C; }
  .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231CBD5C' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
    border-color: #1CBD5C;
    box-shadow: 0 0 0 0rem rgba(28, 189, 92, 0.25); }

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #1CBD5C; }
  .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    background-color: #1CBD5C; }
  .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
    box-shadow: 0 0 0 0rem rgba(28, 189, 92, 0.25); }
  .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #1CBD5C; }

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em; }

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1; }
  .was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
  .input-group .form-select:valid:focus,
  .input-group .form-select.is-valid:focus {
    z-index: 3; }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #AE7156; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.76563rem;
  color: #000;
  background-color: rgba(174, 113, 86, 0.9);
  border-radius: 0.25rem; }
  @media (min-width: 1200px) {
    .invalid-tooltip {
      font-size: 0.76562rem; } }

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #AE7156;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23AE7156'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23AE7156' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #AE7156;
    box-shadow: 0 0 0 0rem rgba(174, 113, 86, 0.25); }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem); }

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #AE7156; }
  .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23AE7156'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23AE7156' stroke='none'/%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
    border-color: #AE7156;
    box-shadow: 0 0 0 0rem rgba(174, 113, 86, 0.25); }

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #AE7156; }
  .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
    background-color: #AE7156; }
  .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0rem rgba(174, 113, 86, 0.25); }
  .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #AE7156; }

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em; }

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2; }
  .was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
  .input-group .form-select:invalid:focus,
  .input-group .form-select.is-invalid:focus {
    z-index: 3; }

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.6;
  color: #303733;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none; } }
  .btn:hover {
    color: #303733; }
  .btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.25); }
  .btn:disabled, .btn.disabled,
  fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65; }

.btn-primary {
  color: #fff;
  background-color: #027335;
  border-color: #027335; }
  .btn-primary:hover {
    color: #fff;
    background-color: #02622d;
    border-color: #025c2a; }
  .btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #02622d;
    border-color: #025c2a;
    box-shadow: 0 0 0 0rem rgba(40, 136, 83, 0.5); }
  .btn-check:checked + .btn-primary,
  .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #025c2a;
    border-color: #025628; }
    .btn-check:checked + .btn-primary:focus,
    .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(40, 136, 83, 0.5); }
  .btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: #027335;
    border-color: #027335; }

.btn-secondary {
  color: #000;
  background-color: #28B0CE;
  border-color: #28B0CE; }
  .btn-secondary:hover {
    color: #000;
    background-color: #48bcd5;
    border-color: #3eb8d3; }
  .btn-check:focus + .btn-secondary, .btn-secondary:focus {
    color: #000;
    background-color: #48bcd5;
    border-color: #3eb8d3;
    box-shadow: 0 0 0 0rem rgba(34, 150, 175, 0.5); }
  .btn-check:checked + .btn-secondary,
  .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active,
  .show > .btn-secondary.dropdown-toggle {
    color: #000;
    background-color: #53c0d8;
    border-color: #3eb8d3; }
    .btn-check:checked + .btn-secondary:focus,
    .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus,
    .show > .btn-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(34, 150, 175, 0.5); }
  .btn-secondary:disabled, .btn-secondary.disabled {
    color: #000;
    background-color: #28B0CE;
    border-color: #28B0CE; }

.btn-success {
  color: #000;
  background-color: #1CBD5C;
  border-color: #1CBD5C; }
  .btn-success:hover {
    color: #000;
    background-color: #3ec774;
    border-color: #33c46c; }
  .btn-check:focus + .btn-success, .btn-success:focus {
    color: #000;
    background-color: #3ec774;
    border-color: #33c46c;
    box-shadow: 0 0 0 0rem rgba(24, 161, 78, 0.5); }
  .btn-check:checked + .btn-success,
  .btn-check:active + .btn-success, .btn-success:active, .btn-success.active,
  .show > .btn-success.dropdown-toggle {
    color: #000;
    background-color: #49ca7d;
    border-color: #33c46c; }
    .btn-check:checked + .btn-success:focus,
    .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus,
    .show > .btn-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(24, 161, 78, 0.5); }
  .btn-success:disabled, .btn-success.disabled {
    color: #000;
    background-color: #1CBD5C;
    border-color: #1CBD5C; }

.btn-info {
  color: #fff;
  background-color: #A131AD;
  border-color: #A131AD; }
  .btn-info:hover {
    color: #fff;
    background-color: #892a93;
    border-color: #81278a; }
  .btn-check:focus + .btn-info, .btn-info:focus {
    color: #fff;
    background-color: #892a93;
    border-color: #81278a;
    box-shadow: 0 0 0 0rem rgba(175, 80, 185, 0.5); }
  .btn-check:checked + .btn-info,
  .btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
  .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #81278a;
    border-color: #792582; }
    .btn-check:checked + .btn-info:focus,
    .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus,
    .show > .btn-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(175, 80, 185, 0.5); }
  .btn-info:disabled, .btn-info.disabled {
    color: #fff;
    background-color: #A131AD;
    border-color: #A131AD; }

.btn-warning {
  color: #000;
  background-color: #EF962E;
  border-color: #EF962E; }
  .btn-warning:hover {
    color: #000;
    background-color: #f1a64d;
    border-color: #f1a143; }
  .btn-check:focus + .btn-warning, .btn-warning:focus {
    color: #000;
    background-color: #f1a64d;
    border-color: #f1a143;
    box-shadow: 0 0 0 0rem rgba(203, 128, 39, 0.5); }
  .btn-check:checked + .btn-warning,
  .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,
  .show > .btn-warning.dropdown-toggle {
    color: #000;
    background-color: #f2ab58;
    border-color: #f1a143; }
    .btn-check:checked + .btn-warning:focus,
    .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus,
    .show > .btn-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(203, 128, 39, 0.5); }
  .btn-warning:disabled, .btn-warning.disabled {
    color: #000;
    background-color: #EF962E;
    border-color: #EF962E; }

.btn-danger {
  color: #000;
  background-color: #AE7156;
  border-color: #AE7156; }
  .btn-danger:hover {
    color: #000;
    background-color: #ba866f;
    border-color: #b67f67; }
  .btn-check:focus + .btn-danger, .btn-danger:focus {
    color: #000;
    background-color: #ba866f;
    border-color: #b67f67;
    box-shadow: 0 0 0 0rem rgba(148, 96, 73, 0.5); }
  .btn-check:checked + .btn-danger,
  .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,
  .show > .btn-danger.dropdown-toggle {
    color: #000;
    background-color: #be8d78;
    border-color: #b67f67; }
    .btn-check:checked + .btn-danger:focus,
    .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus,
    .show > .btn-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(148, 96, 73, 0.5); }
  .btn-danger:disabled, .btn-danger.disabled {
    color: #000;
    background-color: #AE7156;
    border-color: #AE7156; }

.btn-light {
  color: #000;
  background-color: #E6E6E6;
  border-color: #E6E6E6; }
  .btn-light:hover {
    color: #000;
    background-color: #eaeaea;
    border-color: #e9e9e9; }
  .btn-check:focus + .btn-light, .btn-light:focus {
    color: #000;
    background-color: #eaeaea;
    border-color: #e9e9e9;
    box-shadow: 0 0 0 0rem rgba(196, 196, 196, 0.5); }
  .btn-check:checked + .btn-light,
  .btn-check:active + .btn-light, .btn-light:active, .btn-light.active,
  .show > .btn-light.dropdown-toggle {
    color: #000;
    background-color: #ebebeb;
    border-color: #e9e9e9; }
    .btn-check:checked + .btn-light:focus,
    .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,
    .show > .btn-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(196, 196, 196, 0.5); }
  .btn-light:disabled, .btn-light.disabled {
    color: #000;
    background-color: #E6E6E6;
    border-color: #E6E6E6; }

.btn-dark {
  color: #fff;
  background-color: #293041;
  border-color: #293041; }
  .btn-dark:hover {
    color: #fff;
    background-color: #232937;
    border-color: #212634; }
  .btn-check:focus + .btn-dark, .btn-dark:focus {
    color: #fff;
    background-color: #232937;
    border-color: #212634;
    box-shadow: 0 0 0 0rem rgba(73, 79, 94, 0.5); }
  .btn-check:checked + .btn-dark,
  .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
  .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #212634;
    border-color: #1f2431; }
    .btn-check:checked + .btn-dark:focus,
    .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
    .show > .btn-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(73, 79, 94, 0.5); }
  .btn-dark:disabled, .btn-dark.disabled {
    color: #fff;
    background-color: #293041;
    border-color: #293041; }

.btn-outline-primary {
  color: #027335;
  border-color: #027335; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #027335;
    border-color: #027335; }
  .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.5); }
  .btn-check:checked + .btn-outline-primary,
  .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: #027335;
    border-color: #027335; }
    .btn-check:checked + .btn-outline-primary:focus,
    .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.5); }
  .btn-outline-primary:disabled, .btn-outline-primary.disabled {
    color: #027335;
    background-color: transparent; }

.btn-outline-secondary {
  color: #28B0CE;
  border-color: #28B0CE; }
  .btn-outline-secondary:hover {
    color: #000;
    background-color: #28B0CE;
    border-color: #28B0CE; }
  .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0rem rgba(40, 176, 206, 0.5); }
  .btn-check:checked + .btn-outline-secondary,
  .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
    color: #000;
    background-color: #28B0CE;
    border-color: #28B0CE; }
    .btn-check:checked + .btn-outline-secondary:focus,
    .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(40, 176, 206, 0.5); }
  .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
    color: #28B0CE;
    background-color: transparent; }

.btn-outline-success {
  color: #1CBD5C;
  border-color: #1CBD5C; }
  .btn-outline-success:hover {
    color: #000;
    background-color: #1CBD5C;
    border-color: #1CBD5C; }
  .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
    box-shadow: 0 0 0 0rem rgba(28, 189, 92, 0.5); }
  .btn-check:checked + .btn-outline-success,
  .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
    color: #000;
    background-color: #1CBD5C;
    border-color: #1CBD5C; }
    .btn-check:checked + .btn-outline-success:focus,
    .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(28, 189, 92, 0.5); }
  .btn-outline-success:disabled, .btn-outline-success.disabled {
    color: #1CBD5C;
    background-color: transparent; }

.btn-outline-info {
  color: #A131AD;
  border-color: #A131AD; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #A131AD;
    border-color: #A131AD; }
  .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
    box-shadow: 0 0 0 0rem rgba(161, 49, 173, 0.5); }
  .btn-check:checked + .btn-outline-info,
  .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
    color: #fff;
    background-color: #A131AD;
    border-color: #A131AD; }
    .btn-check:checked + .btn-outline-info:focus,
    .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(161, 49, 173, 0.5); }
  .btn-outline-info:disabled, .btn-outline-info.disabled {
    color: #A131AD;
    background-color: transparent; }

.btn-outline-warning {
  color: #EF962E;
  border-color: #EF962E; }
  .btn-outline-warning:hover {
    color: #000;
    background-color: #EF962E;
    border-color: #EF962E; }
  .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
    box-shadow: 0 0 0 0rem rgba(239, 150, 46, 0.5); }
  .btn-check:checked + .btn-outline-warning,
  .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
    color: #000;
    background-color: #EF962E;
    border-color: #EF962E; }
    .btn-check:checked + .btn-outline-warning:focus,
    .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(239, 150, 46, 0.5); }
  .btn-outline-warning:disabled, .btn-outline-warning.disabled {
    color: #EF962E;
    background-color: transparent; }

.btn-outline-danger {
  color: #AE7156;
  border-color: #AE7156; }
  .btn-outline-danger:hover {
    color: #000;
    background-color: #AE7156;
    border-color: #AE7156; }
  .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
    box-shadow: 0 0 0 0rem rgba(174, 113, 86, 0.5); }
  .btn-check:checked + .btn-outline-danger,
  .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
    color: #000;
    background-color: #AE7156;
    border-color: #AE7156; }
    .btn-check:checked + .btn-outline-danger:focus,
    .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(174, 113, 86, 0.5); }
  .btn-outline-danger:disabled, .btn-outline-danger.disabled {
    color: #AE7156;
    background-color: transparent; }

.btn-outline-light {
  color: #E6E6E6;
  border-color: #E6E6E6; }
  .btn-outline-light:hover {
    color: #000;
    background-color: #E6E6E6;
    border-color: #E6E6E6; }
  .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
    box-shadow: 0 0 0 0rem rgba(230, 230, 230, 0.5); }
  .btn-check:checked + .btn-outline-light,
  .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
    color: #000;
    background-color: #E6E6E6;
    border-color: #E6E6E6; }
    .btn-check:checked + .btn-outline-light:focus,
    .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(230, 230, 230, 0.5); }
  .btn-outline-light:disabled, .btn-outline-light.disabled {
    color: #E6E6E6;
    background-color: transparent; }

.btn-outline-dark {
  color: #293041;
  border-color: #293041; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #293041;
    border-color: #293041; }
  .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
    box-shadow: 0 0 0 0rem rgba(41, 48, 65, 0.5); }
  .btn-check:checked + .btn-outline-dark,
  .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
    color: #fff;
    background-color: #293041;
    border-color: #293041; }
    .btn-check:checked + .btn-outline-dark:focus,
    .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(41, 48, 65, 0.5); }
  .btn-outline-dark:disabled, .btn-outline-dark.disabled {
    color: #293041;
    background-color: transparent; }

.btn-link {
  font-weight: 400;
  color: #027335;
  text-decoration: underline; }
  .btn-link:hover {
    color: #025c2a; }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d; }

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  border-radius: 0.3rem; }

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.76563rem;
  border-radius: 0.2rem; }
  @media (min-width: 1200px) {
    .btn-sm, .btn-group-sm > .btn {
      font-size: 0.76562rem; } }

.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
  .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .collapsing.collapse-horizontal {
        transition: none; } }

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
  .dropdown-toggle:empty::after {
    margin-left: 0; }

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.875rem;
  color: #303733;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 0.125rem; }

.dropdown-menu-start {
  --bs-position: start; }
  .dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0; }

.dropdown-menu-end {
  --bs-position: end; }
  .dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto; }

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start; }
    .dropdown-menu-sm-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-sm-end {
    --bs-position: end; }
    .dropdown-menu-sm-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start; }
    .dropdown-menu-md-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-md-end {
    --bs-position: end; }
    .dropdown-menu-md-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start; }
    .dropdown-menu-lg-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-lg-end {
    --bs-position: end; }
    .dropdown-menu-lg-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start; }
    .dropdown-menu-xl-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-xl-end {
    --bs-position: end; }
    .dropdown-menu-xl-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 1440) {
  .dropdown-menu-xxl-start {
    --bs-position: start; }
    .dropdown-menu-xxl-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-xxl-end {
    --bs-position: end; }
    .dropdown-menu-xxl-end[data-bs-popper] {
      right: 0;
      left: auto; } }

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem; }

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent; }

.dropup .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem; }

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid; }

.dropend .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropend .dropdown-toggle::after {
  vertical-align: 0; }

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem; }

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ""; }

.dropstart .dropdown-toggle::after {
  display: none; }

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent; }

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropstart .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15); }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #1e2125;
    background-color: #e9ecef; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #027335; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.76563rem;
  color: #6c757d;
  white-space: nowrap; }
  @media (min-width: 1200px) {
    .dropdown-header {
      font-size: 0.76562rem; } }

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529; }

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15); }
  .dropdown-menu-dark .dropdown-item {
    color: #dee2e6; }
    .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
      color: #fff;
      background-color: rgba(255, 255, 255, 0.15); }
    .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
      color: #fff;
      background-color: #027335; }
    .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
      color: #adb5bd; }
  .dropdown-menu-dark .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.15); }
  .dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6; }
  .dropdown-menu-dark .dropdown-header {
    color: #adb5bd; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    flex: 1 1 auto; }
  .btn-group > .btn-check:checked + .btn,
  .btn-group > .btn-check:focus + .btn,
  .btn-group > .btn:hover,
  .btn-group > .btn:focus,
  .btn-group > .btn:active,
  .btn-group > .btn.active,
  .btn-group-vertical > .btn-check:checked + .btn,
  .btn-group-vertical > .btn-check:focus + .btn,
  .btn-group-vertical > .btn:hover,
  .btn-group-vertical > .btn:focus,
  .btn-group-vertical > .btn:active,
  .btn-group-vertical > .btn.active {
    z-index: 1; }

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px; }

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem; }
  .dropdown-toggle-split::after,
  .dropup .dropdown-toggle-split::after,
  .dropend .dropdown-toggle-split::after {
    margin-left: 0; }
  .dropstart .dropdown-toggle-split::before {
    margin-right: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }
  .btn-group-vertical > .btn,
  .btn-group-vertical > .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px; }
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  .btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .btn-group-vertical > .btn ~ .btn,
  .btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #027335;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .nav-link {
      transition: none; } }
  .nav-link:hover, .nav-link:focus {
    color: #025c2a; }
  .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  border-bottom: 1px solid #dee2e6; }
  .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      border-color: #e9ecef #e9ecef #dee2e6;
      isolation: isolate; }
    .nav-tabs .nav-link.disabled {
      color: #6c757d;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff; }
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #027335; }

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center; }

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center; }

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  .navbar > .container,
  .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  padding-top: 0.325rem;
  padding-bottom: 0.325rem;
  margin-right: 1rem;
  font-size: 1.09375rem;
  text-decoration: none;
  white-space: nowrap; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static; }

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.09375rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
      transition: none; } }
  .navbar-toggler:hover {
    text-decoration: none; }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%; }

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto; }

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-sm .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; }
    .navbar-expand-sm .offcanvas-header {
      display: none; }
    .navbar-expand-sm .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-sm .offcanvas-top,
    .navbar-expand-sm .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-sm .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-md .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; }
    .navbar-expand-md .offcanvas-header {
      display: none; }
    .navbar-expand-md .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-md .offcanvas-top,
    .navbar-expand-md .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-md .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; }
    .navbar-expand-lg .offcanvas-header {
      display: none; }
    .navbar-expand-lg .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-lg .offcanvas-top,
    .navbar-expand-lg .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-lg .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; }
    .navbar-expand-xl .offcanvas-header {
      display: none; }
    .navbar-expand-xl .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-xl .offcanvas-top,
    .navbar-expand-xl .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-xl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 1440) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xxl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xxl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xxl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xxl .navbar-toggler {
      display: none; }
    .navbar-expand-xxl .offcanvas-header {
      display: none; }
    .navbar-expand-xxl .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-xxl .offcanvas-top,
    .navbar-expand-xxl .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-xxl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem; }
  .navbar-expand .navbar-nav-scroll {
    overflow: visible; }
  .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
  .navbar-expand .navbar-toggler {
    display: none; }
  .navbar-expand .offcanvas-header {
    display: none; }
  .navbar-expand .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none; }
  .navbar-expand .offcanvas-top,
  .navbar-expand .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0; }
  .navbar-expand .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55); }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7); }
  .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3); }

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1); }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55); }
  .navbar-light .navbar-text a,
  .navbar-light .navbar-text a:hover,
  .navbar-light .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9); }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55); }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55); }
  .navbar-dark .navbar-text a,
  .navbar-dark .navbar-text a:hover,
  .navbar-dark .navbar-text a:focus {
    color: #fff; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: calc(0.25rem - 1px);
      border-top-right-radius: calc(0.25rem - 1px); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: calc(0.25rem - 1px);
      border-bottom-left-radius: calc(0.25rem - 1px); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem; }

.card-title {
  margin-bottom: 0.5rem; }

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link + .card-link {
  margin-left: 1rem; }

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125); }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0; }

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem; }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px); }

.card-group > .card {
  margin-bottom: 15px; }

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #303733;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .accordion-button {
      transition: none; } }
  .accordion-button:not(.collapsed) {
    color: #026830;
    background-color: #e6f1eb;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); }
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23026830'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: rotate(-180deg); }
  .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23303733'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .accordion-button::after {
        transition: none; } }
  .accordion-button:hover {
    z-index: 2; }
  .accordion-button:focus {
    z-index: 3;
    border-color: #81b99a;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.25); }

.accordion-header {
  margin-bottom: 0; }

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
    .accordion-item:first-of-type .accordion-button {
      border-top-left-radius: calc(0.25rem - 1px);
      border-top-right-radius: calc(0.25rem - 1px); }
  .accordion-item:not(:first-of-type) {
    border-top: 0; }
  .accordion-item:last-of-type {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
    .accordion-item:last-of-type .accordion-button.collapsed {
      border-bottom-right-radius: calc(0.25rem - 1px);
      border-bottom-left-radius: calc(0.25rem - 1px); }
    .accordion-item:last-of-type .accordion-collapse {
      border-bottom-right-radius: 0.25rem;
      border-bottom-left-radius: 0.25rem; }

.accordion-body {
  padding: 1rem 1.25rem; }

.accordion-flush .accordion-collapse {
  border-width: 0; }

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }
  .accordion-flush .accordion-item:first-child {
    border-top: 0; }
  .accordion-flush .accordion-item:last-child {
    border-bottom: 0; }
  .accordion-flush .accordion-item .accordion-button {
    border-radius: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none; }

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem; }
  .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; }

.breadcrumb-item.active {
  color: #6c757d; }

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none; }

.page-link {
  position: relative;
  display: block;
  color: #027335;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .page-link {
      transition: none; } }
  .page-link:hover {
    z-index: 2;
    color: #025c2a;
    background-color: #e9ecef;
    border-color: #dee2e6; }
  .page-link:focus {
    z-index: 3;
    color: #025c2a;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.25); }

.page-item:not(:first-child) .page-link {
  margin-left: -1px; }

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #027335;
  border-color: #027335; }

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6; }

.page-link {
  padding: 0.375rem 0.75rem; }

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.09375rem; }

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem; }

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem; }

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.76563rem; }
  @media (min-width: 1200px) {
    .pagination-sm .page-link {
      font-size: 0.76562rem; } }

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem; }

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem; }

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem; }
  .badge:empty {
    display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: 700; }

.alert-dismissible {
  padding-right: 3rem; }
  .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem; }

.alert-primary {
  color: #014520;
  background-color: #cce3d7;
  border-color: #b3d5c2; }
  .alert-primary .alert-link {
    color: #01371a; }

.alert-secondary {
  color: #186a7c;
  background-color: #d4eff5;
  border-color: #bfe7f0; }
  .alert-secondary .alert-link {
    color: #135563; }

.alert-success {
  color: #117137;
  background-color: #d2f2de;
  border-color: #bbebce; }
  .alert-success .alert-link {
    color: #0e5a2c; }

.alert-info {
  color: #611d68;
  background-color: #ecd6ef;
  border-color: #e3c1e6; }
  .alert-info .alert-link {
    color: #4e1753; }

.alert-warning {
  color: #8f5a1c;
  background-color: #fcead5;
  border-color: #fae0c0; }
  .alert-warning .alert-link {
    color: #724816; }

.alert-danger {
  color: #684434;
  background-color: #efe3dd;
  border-color: #e7d4cc; }
  .alert-danger .alert-link {
    color: #53362a; }

.alert-light {
  color: #5c5c5c;
  background-color: #fafafa;
  border-color: #f8f8f8; }
  .alert-light .alert-link {
    color: #4a4a4a; }

.alert-dark {
  color: #191d27;
  background-color: #d4d6d9;
  border-color: #bfc1c6; }
  .alert-dark .alert-link {
    color: #14171f; }

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem; } }

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.65625rem;
  background-color: #e9ecef;
  border-radius: 0.25rem; }

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #027335;
  transition: width 0.6s ease; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      animation: none; } }

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem; }

.list-group-numbered {
  list-style-type: none;
  counter-reset: section; }
  .list-group-numbered > li::before {
    content: counters(section, ".") ". ";
    counter-increment: section; }

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit; }
  .list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa; }
  .list-group-item-action:active {
    color: #303733;
    background-color: #e9ecef; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
  .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #027335;
    border-color: #027335; }
  .list-group-item + .list-group-item {
    border-top-width: 0; }
    .list-group-item + .list-group-item.active {
      margin-top: -1px;
      border-top-width: 1px; }

.list-group-horizontal {
  flex-direction: row; }
  .list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0; }
  .list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0; }
  .list-group-horizontal > .list-group-item.active {
    margin-top: 0; }
  .list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal > .list-group-item + .list-group-item.active {
      margin-left: -1px;
      border-left-width: 1px; }

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row; }
    .list-group-horizontal-sm > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-sm > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-sm > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-sm > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row; }
    .list-group-horizontal-md > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-md > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-md > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-md > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row; }
    .list-group-horizontal-lg > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-lg > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-lg > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-lg > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row; }
    .list-group-horizontal-xl > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-xl > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xl > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 1440) {
  .list-group-horizontal-xxl {
    flex-direction: row; }
    .list-group-horizontal-xxl > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xxl > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

.list-group-flush {
  border-radius: 0; }
  .list-group-flush > .list-group-item {
    border-width: 0 0 1px; }
    .list-group-flush > .list-group-item:last-child {
      border-bottom-width: 0; }

.list-group-item-primary {
  color: #014520;
  background-color: #cce3d7; }
  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #014520;
    background-color: #b8ccc2; }
  .list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #014520;
    border-color: #014520; }

.list-group-item-secondary {
  color: #186a7c;
  background-color: #d4eff5; }
  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #186a7c;
    background-color: #bfd7dd; }
  .list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #186a7c;
    border-color: #186a7c; }

.list-group-item-success {
  color: #117137;
  background-color: #d2f2de; }
  .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #117137;
    background-color: #bddac8; }
  .list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #117137;
    border-color: #117137; }

.list-group-item-info {
  color: #611d68;
  background-color: #ecd6ef; }
  .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #611d68;
    background-color: #d4c1d7; }
  .list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #611d68;
    border-color: #611d68; }

.list-group-item-warning {
  color: #8f5a1c;
  background-color: #fcead5; }
  .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #8f5a1c;
    background-color: #e3d3c0; }
  .list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #8f5a1c;
    border-color: #8f5a1c; }

.list-group-item-danger {
  color: #684434;
  background-color: #efe3dd; }
  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #684434;
    background-color: #d7ccc7; }
  .list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #684434;
    border-color: #684434; }

.list-group-item-light {
  color: #5c5c5c;
  background-color: #fafafa; }
  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #5c5c5c;
    background-color: #e1e1e1; }
  .list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #5c5c5c;
    border-color: #5c5c5c; }

.list-group-item-dark {
  color: #191d27;
  background-color: #d4d6d9; }
  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #191d27;
    background-color: #bfc1c3; }
  .list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #191d27;
    border-color: #191d27; }

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5; }
  .btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75; }
  .btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(2, 115, 53, 0.25);
    opacity: 1; }
  .btn-close:disabled, .btn-close.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25; }

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%); }

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .toast.showing {
    opacity: 0; }
  .toast:not(.show) {
    display: none; }

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none; }
  .toast-container > :not(:last-child) {
    margin-bottom: 15px; }

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px); }
  .toast-header .btn-close {
    margin-right: -0.375rem;
    margin-left: 0.75rem; }

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: none; }
  .modal.modal-static .modal-dialog {
    transform: scale(1.02); }

.modal-dialog-scrollable {
  height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem); }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #F0F0F0;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.6; }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #F0F0F0;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px); }
  .modal-footer > * {
    margin: 0.25rem; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem); }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px; } }

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px; } }

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0; }
  .modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0; }
  .modal-fullscreen .modal-header {
    border-radius: 0; }
  .modal-fullscreen .modal-body {
    overflow-y: auto; }
  .modal-fullscreen .modal-footer {
    border-radius: 0; }

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-sm-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-md-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-lg-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-xl-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 1439.98) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-xxl-down .modal-footer {
      border-radius: 0; } }

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.76563rem;
  word-wrap: break-word;
  opacity: 0; }
  @media (min-width: 1200px) {
    .tooltip {
      font-size: 0.76562rem; } }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .tooltip-arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] {
  padding: 0.4rem 0; }
  .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
    bottom: 0; }
    .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
      top: -1px;
      border-width: 0.4rem 0.4rem 0;
      border-top-color: #000; }

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] {
  padding: 0 0.4rem; }
  .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
      right: -1px;
      border-width: 0.4rem 0.4rem 0.4rem 0;
      border-right-color: #000; }

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] {
  padding: 0.4rem 0; }
  .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
    top: 0; }
    .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
      bottom: -1px;
      border-width: 0 0.4rem 0.4rem;
      border-bottom-color: #000; }

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] {
  padding: 0 0.4rem; }
  .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
      left: -1px;
      border-width: 0.4rem 0 0.4rem 0.4rem;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.76563rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem; }
  @media (min-width: 1200px) {
    .popover {
      font-size: 0.76562rem; } }
  .popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem; }
    .popover .popover-arrow::before, .popover .popover-arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-0.5rem - 1px); }
  .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #fff; }

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem; }
  .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #fff; }

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-0.5rem - 1px); }
  .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #fff; }

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0; }

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem; }
  .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #fff; }

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #2F2F2F;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 1rem 1rem;
  color: #303733; }

.carousel {
  position: relative; }

.carousel.pointer-event {
  touch-action: pan-y; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-item {
      transition: none; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%); }

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none; }

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1; }

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
      transition: none; } }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none; } }
  .carousel-control-prev:hover, .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%; }

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
      .carousel-indicators [data-bs-target] {
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center; }

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100); }

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000; }

.carousel-dark .carousel-caption {
  color: #000; }

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */; } }

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border; }

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em; }

@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1;
    transform: none; } }

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow; }

.spinner-grow-sm {
  width: 1rem;
  height: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s; } }

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .offcanvas {
      transition: none; } }

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .offcanvas-backdrop.fade {
    opacity: 0; }
  .offcanvas-backdrop.show {
    opacity: 0.5; }

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem; }
  .offcanvas-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -0.5rem; }

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.6; }

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto; }

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%); }

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%); }

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%); }

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%); }

.offcanvas.show {
  transform: none; }

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5; }
  .placeholder.btn::before {
    display: inline-block;
    content: ""; }

.placeholder-xs {
  min-height: .6em; }

.placeholder-sm {
  min-height: .8em; }

.placeholder-lg {
  min-height: 1.2em; }

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite; }

@keyframes placeholder-glow {
  50% {
    opacity: 0.2; } }

.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite; }

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%; } }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.link-primary {
  color: #027335; }
  .link-primary:hover, .link-primary:focus {
    color: #025c2a; }

.link-secondary {
  color: #28B0CE; }
  .link-secondary:hover, .link-secondary:focus {
    color: #53c0d8; }

.link-success {
  color: #1CBD5C; }
  .link-success:hover, .link-success:focus {
    color: #49ca7d; }

.link-info {
  color: #A131AD; }
  .link-info:hover, .link-info:focus {
    color: #81278a; }

.link-warning {
  color: #EF962E; }
  .link-warning:hover, .link-warning:focus {
    color: #f2ab58; }

.link-danger {
  color: #AE7156; }
  .link-danger:hover, .link-danger:focus {
    color: #be8d78; }

.link-light {
  color: #E6E6E6; }
  .link-light:hover, .link-light:focus {
    color: #ebebeb; }

.link-dark {
  color: #293041; }
  .link-dark:hover, .link-dark:focus {
    color: #212634; }

.ratio {
  position: relative;
  width: 100%; }
  .ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""; }
  .ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.ratio-1x1 {
  --bs-aspect-ratio: 100%; }

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%); }

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%); }

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%); }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

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

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 1440) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch; }

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch; }

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: ""; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25; }

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

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.float-start {
  float: left !important; }

.float-end {
  float: right !important; }

.float-none {
  float: none !important; }

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

.opacity-25 {
  opacity: 0.25 !important; }

.opacity-50 {
  opacity: 0.5 !important; }

.opacity-75 {
  opacity: 0.75 !important; }

.opacity-100 {
  opacity: 1 !important; }

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

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

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

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

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

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

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

.d-grid {
  display: 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; }

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

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

.top-50 {
  top: 50% !important; }

.top-100 {
  top: 100% !important; }

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

.bottom-50 {
  bottom: 50% !important; }

.bottom-100 {
  bottom: 100% !important; }

.start-0 {
  left: 0 !important; }

.start-50 {
  left: 50% !important; }

.start-100 {
  left: 100% !important; }

.end-0 {
  right: 0 !important; }

.end-50 {
  right: 50% !important; }

.end-100 {
  right: 100% !important; }

.translate-middle {
  transform: translate(-50%, -50%) !important; }

.translate-middle-x {
  transform: translateX(-50%) !important; }

.translate-middle-y {
  transform: translateY(-50%) !important; }

.border {
  border: 1px solid #F0F0F0 !important; }

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

.border-top {
  border-top: 1px solid #F0F0F0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-end {
  border-right: 1px solid #F0F0F0 !important; }

.border-end-0 {
  border-right: 0 !important; }

.border-bottom {
  border-bottom: 1px solid #F0F0F0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-start {
  border-left: 1px solid #F0F0F0 !important; }

.border-start-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #027335 !important; }

.border-secondary {
  border-color: #28B0CE !important; }

.border-success {
  border-color: #1CBD5C !important; }

.border-info {
  border-color: #A131AD !important; }

.border-warning {
  border-color: #EF962E !important; }

.border-danger {
  border-color: #AE7156 !important; }

.border-light {
  border-color: #E6E6E6 !important; }

.border-dark {
  border-color: #293041 !important; }

.border-white {
  border-color: #fff !important; }

.border-1 {
  border-width: 1px !important; }

.border-2 {
  border-width: 2px !important; }

.border-3 {
  border-width: 3px !important; }

.border-4 {
  border-width: 4px !important; }

.border-5 {
  border-width: 5px !important; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

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

.vw-100 {
  width: 100vw !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mh-100 {
  max-height: 100% !important; }

.vh-100 {
  height: 100vh !important; }

.min-vh-100 {
  min-height: 100vh !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; }

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

.gap-1 {
  gap: 0.25rem !important; }

.gap-2 {
  gap: 0.5rem !important; }

.gap-3 {
  gap: 1rem !important; }

.gap-4 {
  gap: 1.5rem !important; }

.gap-5 {
  gap: 3rem !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; }

.font-monospace {
  font-family: var(--bs-font-monospace) !important; }

.fs-1 {
  font-size: calc(1.3rem + 0.6vw) !important; }

.fs-2 {
  font-size: calc(1.275rem + 0.3vw) !important; }

.fs-3 {
  font-size: calc(1.2625rem + 0.15vw) !important; }

.fs-4 {
  font-size: 1.25rem !important; }

.fs-5 {
  font-size: 1.125rem !important; }

.fs-6 {
  font-size: 1rem !important; }

.fst-italic {
  font-style: italic !important; }

.fst-normal {
  font-style: normal !important; }

.fw-light {
  font-weight: 300 !important; }

.fw-lighter {
  font-weight: lighter !important; }

.fw-normal {
  font-weight: 400 !important; }

.fw-bold {
  font-weight: 700 !important; }

.fw-bolder {
  font-weight: bolder !important; }

.lh-1 {
  line-height: 1 !important; }

.lh-sm {
  line-height: 1.25 !important; }

.lh-base {
  line-height: 1.6 !important; }

.lh-lg {
  line-height: 2 !important; }

.text-start {
  text-align: left !important; }

.text-end {
  text-align: right !important; }

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

.text-decoration-none {
  text-decoration: none !important; }

.text-decoration-underline {
  text-decoration: underline !important; }

.text-decoration-line-through {
  text-decoration: line-through !important; }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important; }

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; }

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; }

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; }

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; }

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; }

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; }

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; }

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; }

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; }

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; }

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; }

.text-muted {
  --bs-text-opacity: 1;
  color: #AEAED5 !important; }

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important; }

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important; }

.text-opacity-25 {
  --bs-text-opacity: 0.25; }

.text-opacity-50 {
  --bs-text-opacity: 0.5; }

.text-opacity-75 {
  --bs-text-opacity: 0.75; }

.text-opacity-100 {
  --bs-text-opacity: 1; }

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; }

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; }

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; }

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; }

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; }

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; }

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; }

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; }

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; }

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; }

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; }

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important; }

.bg-opacity-10 {
  --bs-bg-opacity: 0.1; }

.bg-opacity-25 {
  --bs-bg-opacity: 0.25; }

.bg-opacity-50 {
  --bs-bg-opacity: 0.5; }

.bg-opacity-75 {
  --bs-bg-opacity: 0.75; }

.bg-opacity-100 {
  --bs-bg-opacity: 1; }

.bg-gradient {
  background-image: var(--bs-gradient) !important; }

.user-select-all {
  user-select: all !important; }

.user-select-auto {
  user-select: auto !important; }

.user-select-none {
  user-select: none !important; }

.pe-none {
  pointer-events: none !important; }

.pe-auto {
  pointer-events: auto !important; }

.rounded {
  border-radius: 0.25rem !important; }

.rounded-0 {
  border-radius: 0 !important; }

.rounded-1 {
  border-radius: 0.2rem !important; }

.rounded-2 {
  border-radius: 0.25rem !important; }

.rounded-3 {
  border-radius: 0.3rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
  border-radius: 50rem !important; }

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important; }

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important; }
  .float-sm-end {
    float: right !important; }
  .float-sm-none {
    float: none !important; }
  .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-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; }
  .gap-sm-0 {
    gap: 0 !important; }
  .gap-sm-1 {
    gap: 0.25rem !important; }
  .gap-sm-2 {
    gap: 0.5rem !important; }
  .gap-sm-3 {
    gap: 1rem !important; }
  .gap-sm-4 {
    gap: 1.5rem !important; }
  .gap-sm-5 {
    gap: 3rem !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; }
  .text-sm-start {
    text-align: left !important; }
  .text-sm-end {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .float-md-start {
    float: left !important; }
  .float-md-end {
    float: right !important; }
  .float-md-none {
    float: none !important; }
  .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-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; }
  .gap-md-0 {
    gap: 0 !important; }
  .gap-md-1 {
    gap: 0.25rem !important; }
  .gap-md-2 {
    gap: 0.5rem !important; }
  .gap-md-3 {
    gap: 1rem !important; }
  .gap-md-4 {
    gap: 1.5rem !important; }
  .gap-md-5 {
    gap: 3rem !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; }
  .text-md-start {
    text-align: left !important; }
  .text-md-end {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important; }
  .float-lg-end {
    float: right !important; }
  .float-lg-none {
    float: none !important; }
  .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-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; }
  .gap-lg-0 {
    gap: 0 !important; }
  .gap-lg-1 {
    gap: 0.25rem !important; }
  .gap-lg-2 {
    gap: 0.5rem !important; }
  .gap-lg-3 {
    gap: 1rem !important; }
  .gap-lg-4 {
    gap: 1.5rem !important; }
  .gap-lg-5 {
    gap: 3rem !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; }
  .text-lg-start {
    text-align: left !important; }
  .text-lg-end {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important; }
  .float-xl-end {
    float: right !important; }
  .float-xl-none {
    float: none !important; }
  .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-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; }
  .gap-xl-0 {
    gap: 0 !important; }
  .gap-xl-1 {
    gap: 0.25rem !important; }
  .gap-xl-2 {
    gap: 0.5rem !important; }
  .gap-xl-3 {
    gap: 1rem !important; }
  .gap-xl-4 {
    gap: 1.5rem !important; }
  .gap-xl-5 {
    gap: 3rem !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; }
  .text-xl-start {
    text-align: left !important; }
  .text-xl-end {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

@media (min-width: 1440) {
  .float-xxl-start {
    float: left !important; }
  .float-xxl-end {
    float: right !important; }
  .float-xxl-none {
    float: none !important; }
  .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-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; }
  .gap-xxl-0 {
    gap: 0 !important; }
  .gap-xxl-1 {
    gap: 0.25rem !important; }
  .gap-xxl-2 {
    gap: 0.5rem !important; }
  .gap-xxl-3 {
    gap: 1rem !important; }
  .gap-xxl-4 {
    gap: 1.5rem !important; }
  .gap-xxl-5 {
    gap: 3rem !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; }
  .text-xxl-start {
    text-align: left !important; }
  .text-xxl-end {
    text-align: right !important; }
  .text-xxl-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.75rem !important; }
  .fs-2 {
    font-size: 1.5rem !important; }
  .fs-3 {
    font-size: 1.375rem !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-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; } }

/*==== 3. Global/Base ====*/
* {
  outline: none;
  padding: 0; }
  *::after {
    margin: 0;
    padding: 0; }
  *::before {
    margin: 0;
    padding: 0; }

::selection {
  color: #fff;
  background: var(--primary); }

body {
  line-height: 1.6;
  color: #303733;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--font-family-base);
  min-height: 100vh; }
  body.fixed {
    overflow: hidden;
    position: fixed; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-family-title);
  font-weight: 600;
  color: var(--title); }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: var(--title); }

.sub-title {
  font-family: var(--font-family-sub-title); }

.title-head {
  font-family: var(--font-family-title); }

.text-accent {
  color: #C29C1D !important; }

.bg-accent {
  background-color: #C29C1D !important; }

.text-soft {
  color: #7D8FAB !important; }

h1, .h1 {
  font-size: 1.75rem; }

h2, .h2 {
  font-size: 1.5rem; }

h3, .h3 {
  font-size: 1.375rem; }

h4, .h4 {
  font-size: 1.25rem; }

h5, .h5 {
  font-size: 1.125rem; }

h6, .h6 {
  font-size: 1rem; }

p {
  font-size: 0.875rem;
  font-weight: 400; }

ul {
  padding: 0;
  margin: 0; }

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

li {
  list-style: none; }

a {
  text-decoration: none;
  outline: none;
  color: var(--primary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  a:hover, a:focus, a.active {
    text-decoration: none;
    outline: none;
    color: var(--primary-hover); }

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

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

.border-top {
  border-top: 1px solid var(--border-color) !important; }

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important; }

.border-left {
  border-left: 1px solid var(--border-color) !important; }

.border-right {
  border-right: 1px solid var(--border-color) !important; }

.bg-primary {
  background-color: var(--primary) !important; }

.text-black {
  color: #071c35 !important; }

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

b,
strong,
.strong {
  font-weight: 500; }

.h-0 {
  height: 0 !important; }

#main-wrapper {
  opacity: 0;
  transition: all 0.25s ease-in;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 60px; }
  #main-wrapper.show {
    opacity: 1; }

.bg-gray {
  background-color: #f0f6ff; }

.content-inner {
  padding-top: 50px;
  padding-bottom: 50px; }

.content-inner-1 {
  padding-top: 100px;
  padding-bottom: 100px; }

.content-inner-2 {
  padding-top: 120px;
  padding-bottom: 0; }

.rounded {
  border-radius: var(--border-radius-base) !important; }

html {
  scrollbar-width: none; }

::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none; }

.dz-icon {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-base);
  fill: #bfc9da;
  font-size: 13px;
  margin-right: 12px; }
  .dz-icon svg {
    width: 24px;
    height: 24px;
    fill: inherit; }
  .dz-icon i {
    line-height: 1;
    font-size: 16px; }
  .dz-icon img {
    border-radius: 50%; }

.bottom-content {
  padding-bottom: 50px;
  overflow: hidden; }

small, .small, .small {
  font-size: 0.75rem;
  font-weight: 400;
  display: block;
  line-height: 1.2; }

.text-light {
  color: rgba(0, 0, 0, 0.5) !important; }

.title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--title); }

.bg-overlay-1 {
  background: rgba(40, 176, 206, 0.85); }

.bg-overlay-2 {
  background: rgba(20, 171, 135, 0.85); }

.bg-overlay-3 {
  background: rgba(161, 49, 173, 0.85); }

.saprater {
  border-bottom: 6px solid var(--border-color);
  margin: 0 -15px; }

svg.text-primary path {
  fill: var(--primary); }

svg.text-dark path {
  fill: var(--title); }

.theme-dark svg.text-dark path {
  fill: #fff; }

.font-12 {
  font-size: 12px !important; }

.font-13 {
  font-size: 13px !important; }

.font-14 {
  font-size: 14px !important; }

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

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

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

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

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

.font-0 {
  font-size: 0px !important; }

.font-5 {
  font-size: 5px !important; }

.font-10 {
  font-size: 10px !important; }

.font-15 {
  font-size: 15px !important; }

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

.font-25 {
  font-size: 25px !important; }

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

.font-35 {
  font-size: 35px !important; }

.font-40 {
  font-size: 40px !important; }

.font-45 {
  font-size: 45px !important; }

.font-50 {
  font-size: 50px !important; }

.font-55 {
  font-size: 55px !important; }

.font-60 {
  font-size: 60px !important; }

.font-65 {
  font-size: 65px !important; }

.font-70 {
  font-size: 70px !important; }

.font-75 {
  font-size: 75px !important; }

.font-80 {
  font-size: 80px !important; }

.font-85 {
  font-size: 85px !important; }

.font-90 {
  font-size: 90px !important; }

.font-95 {
  font-size: 95px !important; }

.font-100 {
  font-size: 100px !important; }

.font-w0 {
  font-weight: 0!important; }

.font-w100 {
  font-weight: 100!important; }

.font-w200 {
  font-weight: 200!important; }

.font-w300 {
  font-weight: 300!important; }

.font-w400 {
  font-weight: 400!important; }

.font-w500 {
  font-weight: 500!important; }

.font-w600 {
  font-weight: 600!important; }

.font-w700 {
  font-weight: 700!important; }

.font-w800 {
  font-weight: 800!important; }

.font-w900 {
  font-weight: 900!important; }

.ls-0 {
  letter-spacing: 0px; }

.ls-1 {
  letter-spacing: 1px; }

.ls-2 {
  letter-spacing: 2px; }

.ls-3 {
  letter-spacing: 3px; }

.ls-4 {
  letter-spacing: 4px; }

.ls-5 {
  letter-spacing: 5px; }

.p-a0 {
  padding: 0px; }

.p-l0 {
  padding-left: 0px; }

.p-r0 {
  padding-right: 0px; }

.p-t0 {
  padding-top: 0px !important; }

.p-b0 {
  padding-bottom: 0px; }

.p-lr0 {
  padding-left: 0px;
  padding-right: 0px; }

.p-tb0 {
  padding-bottom: 0px !important;
  padding-top: 0px !important; }

.m-a0 {
  margin: 0px; }

.m-l0 {
  margin-left: 0px; }

.m-r0 {
  margin-right: 0px; }

.m-t0 {
  margin-top: 0px; }

.m-b0 {
  margin-bottom: 0px; }

.m-lr0 {
  margin-left: 0px;
  margin-right: 0px; }

.m-tb0 {
  margin-bottom: 0px;
  margin-top: 0px; }

.p-a5 {
  padding: 5px; }

.p-l5 {
  padding-left: 5px; }

.p-r5 {
  padding-right: 5px; }

.p-t5 {
  padding-top: 5px !important; }

.p-b5 {
  padding-bottom: 5px; }

.p-lr5 {
  padding-left: 5px;
  padding-right: 5px; }

.p-tb5 {
  padding-bottom: 5px !important;
  padding-top: 5px !important; }

.m-a5 {
  margin: 5px; }

.m-l5 {
  margin-left: 5px; }

.m-r5 {
  margin-right: 5px; }

.m-t5 {
  margin-top: 5px; }

.m-b5 {
  margin-bottom: 5px; }

.m-lr5 {
  margin-left: 5px;
  margin-right: 5px; }

.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px; }

.p-a10 {
  padding: 10px; }

.p-l10 {
  padding-left: 10px; }

.p-r10 {
  padding-right: 10px; }

.p-t10 {
  padding-top: 10px !important; }

.p-b10 {
  padding-bottom: 10px; }

.p-lr10 {
  padding-left: 10px;
  padding-right: 10px; }

.p-tb10 {
  padding-bottom: 10px !important;
  padding-top: 10px !important; }

.m-a10 {
  margin: 10px; }

.m-l10 {
  margin-left: 10px; }

.m-r10 {
  margin-right: 10px; }

.m-t10 {
  margin-top: 10px; }

.m-b10 {
  margin-bottom: 10px; }

.m-lr10 {
  margin-left: 10px;
  margin-right: 10px; }

.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px; }

.p-a15 {
  padding: 15px; }

.p-l15 {
  padding-left: 15px; }

.p-r15 {
  padding-right: 15px; }

.p-t15 {
  padding-top: 15px !important; }

.p-b15 {
  padding-bottom: 15px; }

.p-lr15 {
  padding-left: 15px;
  padding-right: 15px; }

.p-tb15 {
  padding-bottom: 15px !important;
  padding-top: 15px !important; }

.m-a15 {
  margin: 15px; }

.m-l15 {
  margin-left: 15px; }

.m-r15 {
  margin-right: 15px; }

.m-t15 {
  margin-top: 15px; }

.m-b15 {
  margin-bottom: 15px; }

.m-lr15 {
  margin-left: 15px;
  margin-right: 15px; }

.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px; }

.p-a20 {
  padding: 20px; }

.p-l20 {
  padding-left: 20px; }

.p-r20 {
  padding-right: 20px; }

.p-t20 {
  padding-top: 20px !important; }

.p-b20 {
  padding-bottom: 20px; }

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px; }

.p-tb20 {
  padding-bottom: 20px !important;
  padding-top: 20px !important; }

.m-a20 {
  margin: 20px; }

.m-l20 {
  margin-left: 20px; }

.m-r20 {
  margin-right: 20px; }

.m-t20 {
  margin-top: 20px; }

.m-b20 {
  margin-bottom: 20px; }

.m-lr20 {
  margin-left: 20px;
  margin-right: 20px; }

.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px; }

.p-a25 {
  padding: 25px; }

.p-l25 {
  padding-left: 25px; }

.p-r25 {
  padding-right: 25px; }

.p-t25 {
  padding-top: 25px !important; }

.p-b25 {
  padding-bottom: 25px; }

.p-lr25 {
  padding-left: 25px;
  padding-right: 25px; }

.p-tb25 {
  padding-bottom: 25px !important;
  padding-top: 25px !important; }

.m-a25 {
  margin: 25px; }

.m-l25 {
  margin-left: 25px; }

.m-r25 {
  margin-right: 25px; }

.m-t25 {
  margin-top: 25px; }

.m-b25 {
  margin-bottom: 25px; }

.m-lr25 {
  margin-left: 25px;
  margin-right: 25px; }

.m-tb25 {
  margin-bottom: 25px;
  margin-top: 25px; }

.p-a30 {
  padding: 30px; }

.p-l30 {
  padding-left: 30px; }

.p-r30 {
  padding-right: 30px; }

.p-t30 {
  padding-top: 30px !important; }

.p-b30 {
  padding-bottom: 30px; }

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px; }

.p-tb30 {
  padding-bottom: 30px !important;
  padding-top: 30px !important; }

.m-a30 {
  margin: 30px; }

.m-l30 {
  margin-left: 30px; }

.m-r30 {
  margin-right: 30px; }

.m-t30 {
  margin-top: 30px; }

.m-b30 {
  margin-bottom: 30px; }

.m-lr30 {
  margin-left: 30px;
  margin-right: 30px; }

.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px; }

.p-a35 {
  padding: 35px; }

.p-l35 {
  padding-left: 35px; }

.p-r35 {
  padding-right: 35px; }

.p-t35 {
  padding-top: 35px !important; }

.p-b35 {
  padding-bottom: 35px; }

.p-lr35 {
  padding-left: 35px;
  padding-right: 35px; }

.p-tb35 {
  padding-bottom: 35px !important;
  padding-top: 35px !important; }

.m-a35 {
  margin: 35px; }

.m-l35 {
  margin-left: 35px; }

.m-r35 {
  margin-right: 35px; }

.m-t35 {
  margin-top: 35px; }

.m-b35 {
  margin-bottom: 35px; }

.m-lr35 {
  margin-left: 35px;
  margin-right: 35px; }

.m-tb35 {
  margin-bottom: 35px;
  margin-top: 35px; }

.p-a40 {
  padding: 40px; }

.p-l40 {
  padding-left: 40px; }

.p-r40 {
  padding-right: 40px; }

.p-t40 {
  padding-top: 40px !important; }

.p-b40 {
  padding-bottom: 40px; }

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px; }

.p-tb40 {
  padding-bottom: 40px !important;
  padding-top: 40px !important; }

.m-a40 {
  margin: 40px; }

.m-l40 {
  margin-left: 40px; }

.m-r40 {
  margin-right: 40px; }

.m-t40 {
  margin-top: 40px; }

.m-b40 {
  margin-bottom: 40px; }

.m-lr40 {
  margin-left: 40px;
  margin-right: 40px; }

.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px; }

.p-a45 {
  padding: 45px; }

.p-l45 {
  padding-left: 45px; }

.p-r45 {
  padding-right: 45px; }

.p-t45 {
  padding-top: 45px !important; }

.p-b45 {
  padding-bottom: 45px; }

.p-lr45 {
  padding-left: 45px;
  padding-right: 45px; }

.p-tb45 {
  padding-bottom: 45px !important;
  padding-top: 45px !important; }

.m-a45 {
  margin: 45px; }

.m-l45 {
  margin-left: 45px; }

.m-r45 {
  margin-right: 45px; }

.m-t45 {
  margin-top: 45px; }

.m-b45 {
  margin-bottom: 45px; }

.m-lr45 {
  margin-left: 45px;
  margin-right: 45px; }

.m-tb45 {
  margin-bottom: 45px;
  margin-top: 45px; }

.p-a50 {
  padding: 50px; }

.p-l50 {
  padding-left: 50px; }

.p-r50 {
  padding-right: 50px; }

.p-t50 {
  padding-top: 50px !important; }

.p-b50 {
  padding-bottom: 50px; }

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px; }

.p-tb50 {
  padding-bottom: 50px !important;
  padding-top: 50px !important; }

.m-a50 {
  margin: 50px; }

.m-l50 {
  margin-left: 50px; }

.m-r50 {
  margin-right: 50px; }

.m-t50 {
  margin-top: 50px; }

.m-b50 {
  margin-bottom: 50px; }

.m-lr50 {
  margin-left: 50px;
  margin-right: 50px; }

.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px; }

.p-a55 {
  padding: 55px; }

.p-l55 {
  padding-left: 55px; }

.p-r55 {
  padding-right: 55px; }

.p-t55 {
  padding-top: 55px !important; }

.p-b55 {
  padding-bottom: 55px; }

.p-lr55 {
  padding-left: 55px;
  padding-right: 55px; }

.p-tb55 {
  padding-bottom: 55px !important;
  padding-top: 55px !important; }

.m-a55 {
  margin: 55px; }

.m-l55 {
  margin-left: 55px; }

.m-r55 {
  margin-right: 55px; }

.m-t55 {
  margin-top: 55px; }

.m-b55 {
  margin-bottom: 55px; }

.m-lr55 {
  margin-left: 55px;
  margin-right: 55px; }

.m-tb55 {
  margin-bottom: 55px;
  margin-top: 55px; }

.p-a60 {
  padding: 60px; }

.p-l60 {
  padding-left: 60px; }

.p-r60 {
  padding-right: 60px; }

.p-t60 {
  padding-top: 60px !important; }

.p-b60 {
  padding-bottom: 60px; }

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px; }

.p-tb60 {
  padding-bottom: 60px !important;
  padding-top: 60px !important; }

.m-a60 {
  margin: 60px; }

.m-l60 {
  margin-left: 60px; }

.m-r60 {
  margin-right: 60px; }

.m-t60 {
  margin-top: 60px; }

.m-b60 {
  margin-bottom: 60px; }

.m-lr60 {
  margin-left: 60px;
  margin-right: 60px; }

.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px; }

.p-a65 {
  padding: 65px; }

.p-l65 {
  padding-left: 65px; }

.p-r65 {
  padding-right: 65px; }

.p-t65 {
  padding-top: 65px !important; }

.p-b65 {
  padding-bottom: 65px; }

.p-lr65 {
  padding-left: 65px;
  padding-right: 65px; }

.p-tb65 {
  padding-bottom: 65px !important;
  padding-top: 65px !important; }

.m-a65 {
  margin: 65px; }

.m-l65 {
  margin-left: 65px; }

.m-r65 {
  margin-right: 65px; }

.m-t65 {
  margin-top: 65px; }

.m-b65 {
  margin-bottom: 65px; }

.m-lr65 {
  margin-left: 65px;
  margin-right: 65px; }

.m-tb65 {
  margin-bottom: 65px;
  margin-top: 65px; }

.p-a70 {
  padding: 70px; }

.p-l70 {
  padding-left: 70px; }

.p-r70 {
  padding-right: 70px; }

.p-t70 {
  padding-top: 70px !important; }

.p-b70 {
  padding-bottom: 70px; }

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px; }

.p-tb70 {
  padding-bottom: 70px !important;
  padding-top: 70px !important; }

.m-a70 {
  margin: 70px; }

.m-l70 {
  margin-left: 70px; }

.m-r70 {
  margin-right: 70px; }

.m-t70 {
  margin-top: 70px; }

.m-b70 {
  margin-bottom: 70px; }

.m-lr70 {
  margin-left: 70px;
  margin-right: 70px; }

.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px; }

.p-a75 {
  padding: 75px; }

.p-l75 {
  padding-left: 75px; }

.p-r75 {
  padding-right: 75px; }

.p-t75 {
  padding-top: 75px !important; }

.p-b75 {
  padding-bottom: 75px; }

.p-lr75 {
  padding-left: 75px;
  padding-right: 75px; }

.p-tb75 {
  padding-bottom: 75px !important;
  padding-top: 75px !important; }

.m-a75 {
  margin: 75px; }

.m-l75 {
  margin-left: 75px; }

.m-r75 {
  margin-right: 75px; }

.m-t75 {
  margin-top: 75px; }

.m-b75 {
  margin-bottom: 75px; }

.m-lr75 {
  margin-left: 75px;
  margin-right: 75px; }

.m-tb75 {
  margin-bottom: 75px;
  margin-top: 75px; }

.p-a80 {
  padding: 80px; }

.p-l80 {
  padding-left: 80px; }

.p-r80 {
  padding-right: 80px; }

.p-t80 {
  padding-top: 80px !important; }

.p-b80 {
  padding-bottom: 80px; }

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px; }

.p-tb80 {
  padding-bottom: 80px !important;
  padding-top: 80px !important; }

.m-a80 {
  margin: 80px; }

.m-l80 {
  margin-left: 80px; }

.m-r80 {
  margin-right: 80px; }

.m-t80 {
  margin-top: 80px; }

.m-b80 {
  margin-bottom: 80px; }

.m-lr80 {
  margin-left: 80px;
  margin-right: 80px; }

.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px; }

.p-a85 {
  padding: 85px; }

.p-l85 {
  padding-left: 85px; }

.p-r85 {
  padding-right: 85px; }

.p-t85 {
  padding-top: 85px !important; }

.p-b85 {
  padding-bottom: 85px; }

.p-lr85 {
  padding-left: 85px;
  padding-right: 85px; }

.p-tb85 {
  padding-bottom: 85px !important;
  padding-top: 85px !important; }

.m-a85 {
  margin: 85px; }

.m-l85 {
  margin-left: 85px; }

.m-r85 {
  margin-right: 85px; }

.m-t85 {
  margin-top: 85px; }

.m-b85 {
  margin-bottom: 85px; }

.m-lr85 {
  margin-left: 85px;
  margin-right: 85px; }

.m-tb85 {
  margin-bottom: 85px;
  margin-top: 85px; }

.p-a90 {
  padding: 90px; }

.p-l90 {
  padding-left: 90px; }

.p-r90 {
  padding-right: 90px; }

.p-t90 {
  padding-top: 90px !important; }

.p-b90 {
  padding-bottom: 90px; }

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px; }

.p-tb90 {
  padding-bottom: 90px !important;
  padding-top: 90px !important; }

.m-a90 {
  margin: 90px; }

.m-l90 {
  margin-left: 90px; }

.m-r90 {
  margin-right: 90px; }

.m-t90 {
  margin-top: 90px; }

.m-b90 {
  margin-bottom: 90px; }

.m-lr90 {
  margin-left: 90px;
  margin-right: 90px; }

.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px; }

.p-a95 {
  padding: 95px; }

.p-l95 {
  padding-left: 95px; }

.p-r95 {
  padding-right: 95px; }

.p-t95 {
  padding-top: 95px !important; }

.p-b95 {
  padding-bottom: 95px; }

.p-lr95 {
  padding-left: 95px;
  padding-right: 95px; }

.p-tb95 {
  padding-bottom: 95px !important;
  padding-top: 95px !important; }

.m-a95 {
  margin: 95px; }

.m-l95 {
  margin-left: 95px; }

.m-r95 {
  margin-right: 95px; }

.m-t95 {
  margin-top: 95px; }

.m-b95 {
  margin-bottom: 95px; }

.m-lr95 {
  margin-left: 95px;
  margin-right: 95px; }

.m-tb95 {
  margin-bottom: 95px;
  margin-top: 95px; }

.p-a100 {
  padding: 100px; }

.p-l100 {
  padding-left: 100px; }

.p-r100 {
  padding-right: 100px; }

.p-t100 {
  padding-top: 100px !important; }

.p-b100 {
  padding-bottom: 100px; }

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px; }

.p-tb100 {
  padding-bottom: 100px !important;
  padding-top: 100px !important; }

.m-a100 {
  margin: 100px; }

.m-l100 {
  margin-left: 100px; }

.m-r100 {
  margin-right: 100px; }

.m-t100 {
  margin-top: 100px; }

.m-b100 {
  margin-bottom: 100px; }

.m-lr100 {
  margin-left: 100px;
  margin-right: 100px; }

.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px; }

@media only screen and (max-width: 1200px) {
  .m-lg-t0 {
    margin-top: 0px; }
  .m-lg-b0 {
    margin-bottom: 0px; }
  .m-lg-t5 {
    margin-top: 5px; }
  .m-lg-b5 {
    margin-bottom: 5px; }
  .m-lg-t10 {
    margin-top: 10px; }
  .m-lg-b10 {
    margin-bottom: 10px; }
  .m-lg-t15 {
    margin-top: 15px; }
  .m-lg-b15 {
    margin-bottom: 15px; }
  .m-lg-t20 {
    margin-top: 20px; }
  .m-lg-b20 {
    margin-bottom: 20px; }
  .m-lg-t25 {
    margin-top: 25px; }
  .m-lg-b25 {
    margin-bottom: 25px; }
  .m-lg-t30 {
    margin-top: 30px; }
  .m-lg-b30 {
    margin-bottom: 30px; }
  .m-lg-t35 {
    margin-top: 35px; }
  .m-lg-b35 {
    margin-bottom: 35px; }
  .m-lg-t40 {
    margin-top: 40px; }
  .m-lg-b40 {
    margin-bottom: 40px; }
  .m-lg-t45 {
    margin-top: 45px; }
  .m-lg-b45 {
    margin-bottom: 45px; }
  .m-lg-t50 {
    margin-top: 50px; }
  .m-lg-b50 {
    margin-bottom: 50px; }
  .m-lg-t55 {
    margin-top: 55px; }
  .m-lg-b55 {
    margin-bottom: 55px; }
  .m-lg-t60 {
    margin-top: 60px; }
  .m-lg-b60 {
    margin-bottom: 60px; }
  .m-lg-t65 {
    margin-top: 65px; }
  .m-lg-b65 {
    margin-bottom: 65px; }
  .m-lg-t70 {
    margin-top: 70px; }
  .m-lg-b70 {
    margin-bottom: 70px; }
  .m-lg-t75 {
    margin-top: 75px; }
  .m-lg-b75 {
    margin-bottom: 75px; }
  .m-lg-t80 {
    margin-top: 80px; }
  .m-lg-b80 {
    margin-bottom: 80px; }
  .m-lg-t85 {
    margin-top: 85px; }
  .m-lg-b85 {
    margin-bottom: 85px; }
  .m-lg-t90 {
    margin-top: 90px; }
  .m-lg-b90 {
    margin-bottom: 90px; }
  .m-lg-t95 {
    margin-top: 95px; }
  .m-lg-b95 {
    margin-bottom: 95px; }
  .m-lg-t100 {
    margin-top: 100px; }
  .m-lg-b100 {
    margin-bottom: 100px; } }

@media only screen and (max-width: 991px) {
  .m-md-t0 {
    margin-top: 0px; }
  .m-md-b0 {
    margin-bottom: 0px; }
  .m-md-t5 {
    margin-top: 5px; }
  .m-md-b5 {
    margin-bottom: 5px; }
  .m-md-t10 {
    margin-top: 10px; }
  .m-md-b10 {
    margin-bottom: 10px; }
  .m-md-t15 {
    margin-top: 15px; }
  .m-md-b15 {
    margin-bottom: 15px; }
  .m-md-t20 {
    margin-top: 20px; }
  .m-md-b20 {
    margin-bottom: 20px; }
  .m-md-t25 {
    margin-top: 25px; }
  .m-md-b25 {
    margin-bottom: 25px; }
  .m-md-t30 {
    margin-top: 30px; }
  .m-md-b30 {
    margin-bottom: 30px; }
  .m-md-t35 {
    margin-top: 35px; }
  .m-md-b35 {
    margin-bottom: 35px; }
  .m-md-t40 {
    margin-top: 40px; }
  .m-md-b40 {
    margin-bottom: 40px; }
  .m-md-t45 {
    margin-top: 45px; }
  .m-md-b45 {
    margin-bottom: 45px; }
  .m-md-t50 {
    margin-top: 50px; }
  .m-md-b50 {
    margin-bottom: 50px; }
  .m-md-t55 {
    margin-top: 55px; }
  .m-md-b55 {
    margin-bottom: 55px; }
  .m-md-t60 {
    margin-top: 60px; }
  .m-md-b60 {
    margin-bottom: 60px; }
  .m-md-t65 {
    margin-top: 65px; }
  .m-md-b65 {
    margin-bottom: 65px; }
  .m-md-t70 {
    margin-top: 70px; }
  .m-md-b70 {
    margin-bottom: 70px; }
  .m-md-t75 {
    margin-top: 75px; }
  .m-md-b75 {
    margin-bottom: 75px; }
  .m-md-t80 {
    margin-top: 80px; }
  .m-md-b80 {
    margin-bottom: 80px; }
  .m-md-t85 {
    margin-top: 85px; }
  .m-md-b85 {
    margin-bottom: 85px; }
  .m-md-t90 {
    margin-top: 90px; }
  .m-md-b90 {
    margin-bottom: 90px; }
  .m-md-t95 {
    margin-top: 95px; }
  .m-md-b95 {
    margin-bottom: 95px; }
  .m-md-t100 {
    margin-top: 100px; }
  .m-md-b100 {
    margin-bottom: 100px; } }

@media only screen and (max-width: 767px) {
  .m-sm-t0 {
    margin-top: 0px; }
  .m-sm-b0 {
    margin-bottom: 0px; }
  .m-sm-t5 {
    margin-top: 5px; }
  .m-sm-b5 {
    margin-bottom: 5px; }
  .m-sm-t10 {
    margin-top: 10px; }
  .m-sm-b10 {
    margin-bottom: 10px; }
  .m-sm-t15 {
    margin-top: 15px; }
  .m-sm-b15 {
    margin-bottom: 15px; }
  .m-sm-t20 {
    margin-top: 20px; }
  .m-sm-b20 {
    margin-bottom: 20px; }
  .m-sm-t25 {
    margin-top: 25px; }
  .m-sm-b25 {
    margin-bottom: 25px; }
  .m-sm-t30 {
    margin-top: 30px; }
  .m-sm-b30 {
    margin-bottom: 30px; }
  .m-sm-t35 {
    margin-top: 35px; }
  .m-sm-b35 {
    margin-bottom: 35px; }
  .m-sm-t40 {
    margin-top: 40px; }
  .m-sm-b40 {
    margin-bottom: 40px; }
  .m-sm-t45 {
    margin-top: 45px; }
  .m-sm-b45 {
    margin-bottom: 45px; }
  .m-sm-t50 {
    margin-top: 50px; }
  .m-sm-b50 {
    margin-bottom: 50px; }
  .m-sm-t55 {
    margin-top: 55px; }
  .m-sm-b55 {
    margin-bottom: 55px; }
  .m-sm-t60 {
    margin-top: 60px; }
  .m-sm-b60 {
    margin-bottom: 60px; }
  .m-sm-t65 {
    margin-top: 65px; }
  .m-sm-b65 {
    margin-bottom: 65px; }
  .m-sm-t70 {
    margin-top: 70px; }
  .m-sm-b70 {
    margin-bottom: 70px; }
  .m-sm-t75 {
    margin-top: 75px; }
  .m-sm-b75 {
    margin-bottom: 75px; }
  .m-sm-t80 {
    margin-top: 80px; }
  .m-sm-b80 {
    margin-bottom: 80px; }
  .m-sm-t85 {
    margin-top: 85px; }
  .m-sm-b85 {
    margin-bottom: 85px; }
  .m-sm-t90 {
    margin-top: 90px; }
  .m-sm-b90 {
    margin-bottom: 90px; }
  .m-sm-t95 {
    margin-top: 95px; }
  .m-sm-b95 {
    margin-bottom: 95px; }
  .m-sm-t100 {
    margin-top: 100px; }
  .m-sm-b100 {
    margin-bottom: 100px; } }

@media only screen and (max-width: 576px) {
  .m-xs-t0 {
    margin-top: 0px; }
  .m-xs-b0 {
    margin-bottom: 0px; }
  .m-xs-t5 {
    margin-top: 5px; }
  .m-xs-b5 {
    margin-bottom: 5px; }
  .m-xs-t10 {
    margin-top: 10px; }
  .m-xs-b10 {
    margin-bottom: 10px; }
  .m-xs-t15 {
    margin-top: 15px; }
  .m-xs-b15 {
    margin-bottom: 15px; }
  .m-xs-t20 {
    margin-top: 20px; }
  .m-xs-b20 {
    margin-bottom: 20px; }
  .m-xs-t25 {
    margin-top: 25px; }
  .m-xs-b25 {
    margin-bottom: 25px; }
  .m-xs-t30 {
    margin-top: 30px; }
  .m-xs-b30 {
    margin-bottom: 30px; }
  .m-xs-t35 {
    margin-top: 35px; }
  .m-xs-b35 {
    margin-bottom: 35px; }
  .m-xs-t40 {
    margin-top: 40px; }
  .m-xs-b40 {
    margin-bottom: 40px; }
  .m-xs-t45 {
    margin-top: 45px; }
  .m-xs-b45 {
    margin-bottom: 45px; }
  .m-xs-t50 {
    margin-top: 50px; }
  .m-xs-b50 {
    margin-bottom: 50px; }
  .m-xs-t55 {
    margin-top: 55px; }
  .m-xs-b55 {
    margin-bottom: 55px; }
  .m-xs-t60 {
    margin-top: 60px; }
  .m-xs-b60 {
    margin-bottom: 60px; }
  .m-xs-t65 {
    margin-top: 65px; }
  .m-xs-b65 {
    margin-bottom: 65px; }
  .m-xs-t70 {
    margin-top: 70px; }
  .m-xs-b70 {
    margin-bottom: 70px; }
  .m-xs-t75 {
    margin-top: 75px; }
  .m-xs-b75 {
    margin-bottom: 75px; }
  .m-xs-t80 {
    margin-top: 80px; }
  .m-xs-b80 {
    margin-bottom: 80px; }
  .m-xs-t85 {
    margin-top: 85px; }
  .m-xs-b85 {
    margin-bottom: 85px; }
  .m-xs-t90 {
    margin-top: 90px; }
  .m-xs-b90 {
    margin-bottom: 90px; }
  .m-xs-t95 {
    margin-top: 95px; }
  .m-xs-b95 {
    margin-bottom: 95px; }
  .m-xs-t100 {
    margin-top: 100px; }
  .m-xs-b100 {
    margin-bottom: 100px; } }

.m-auto {
  margin: auto; }

.max-w50 {
  max-width: 50px; }

.max-w60 {
  max-width: 60px; }

.max-w80 {
  max-width: 80px; }

.max-w100 {
  max-width: 100px; }

.max-w200 {
  max-width: 200px; }

.max-w300 {
  max-width: 300px; }

.max-w400 {
  max-width: 400px; }

.max-w500 {
  max-width: 500px; }

.max-w600 {
  max-width: 600px; }

.max-w700 {
  max-width: 700px; }

.max-w800 {
  max-width: 800px; }

.max-w900 {
  max-width: 900px; }

.max-w1000 {
  max-width: 1000px; }

.bg-img-fix {
  background-attachment: fixed;
  background-size: cover; }

.full-img {
  width: 100%; }

.sticky-top {
  top: 120px; }

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

section {
  position: relative;
  z-index: 1; }

.rounded-xl {
  border-radius: 50% !important; }

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

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

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

.text-maroon {
  color: #9e0168; }

.text-orange {
  color: #ff8853; }

.text-yellow {
  color: #FFA902; }

.text-skyblue {
  color: #84CA93; }

.text-red {
  color: #ff586e; }

.text-green {
  color: #84CA93; }

.text-blue {
  color: #5543d1; }

.bg-maroon {
  background-color: #dd2ca0; }
  .bg-maroon.light {
    background-color: rgba(221, 44, 160, 0.1); }
    .bg-maroon.light svg path {
      fill: #dd2ca0; }
    .bg-maroon.light i {
      color: #dd2ca0; }

.bg-orange {
  background-color: #ff8853; }
  .bg-orange.light {
    background-color: rgba(255, 200, 0, 0.1); }
    .bg-orange.light svg path {
      fill: #ff8853; }
    .bg-orange.light i {
      color: #ff8853; }

.bg-yellow {
  background-color: #ffc600; }
  .bg-yellow.light {
    background-color: rgba(255, 200, 0, 0.1); }
    .bg-yellow.light svg path,
    .bg-yellow.light svg circle {
      fill: #ffc600; }
    .bg-yellow.light i {
      color: #ffc600; }

.bg-skyblue {
  background-color: #00aeff; }
  .bg-skyblue.light {
    background-color: rgba(0, 174, 255, 0.1); }
    .bg-skyblue.light svg path {
      fill: #00aeff; }
    .bg-skyblue.light i {
      color: #00aeff; }

.bg-red {
  background-color: #ff586e; }
  .bg-red.light {
    background-color: rgba(255, 88, 110, 0.1); }
    .bg-red.light svg path {
      fill: #ff586e; }
    .bg-red.light i {
      color: #ff586e; }

.bg-green {
  background-color: #84CA93; }
  .bg-green.light {
    background-color: rgba(4, 165, 124, 0.1); }
    .bg-green.light svg path,
    .bg-green.light svg rect {
      fill: #84CA93; }
    .bg-green.light i {
      color: #84CA93; }

.bg-blue {
  background-color: #4a8be0; }
  .bg-blue.light {
    background-color: rgba(74, 139, 224, 0.1); }
    .bg-blue.light svg path {
      fill: #4a8be0; }
    .bg-blue.light i {
      color: #4a8be0; }

.bg-pink {
  background-color: #ff4db8; }
  .bg-pink.light {
    background-color: rgba(255, 77, 184, 0.1); }
    .bg-pink.light svg path {
      fill: #ff4db8; }
    .bg-pink.light i {
      color: #ff4db8; }

/*==== 4. Layout ====*/
:root {
  --headheight: 55px; }

.header {
  background-color: var(--bg-white);
  min-height: var(--headheight);
  z-index: 2;
  border-bottom: 1px solid var(--border-color); }
  .header .title {
    font-weight: 600; }
  .header.style-1 {
    border: 0;
    min-height: unset; }
    .header.style-1 .main-bar {
      display: none; }
      .header.style-1 .main-bar.sticky-header {
        display: unset; }
      .header.style-1 .main-bar .right-content .theme-btn svg,
      .header.style-1 .main-bar .right-content .theme-color svg {
        width: 20px;
        height: 20px; }
  .header.style-2 {
    border: 0; }
    .header.style-2 .header-content .left-content {
      width: auto; }
  .header.style-3 {
    border: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 4px 50px -5px rgba(7, 64, 60, 0.25); }
  .header.style-4 {
    border: 0;
    min-height: 90px;
    border-radius: 0 0 30px 30px; }
    .header.style-4 .header-content {
      margin: 10px 0 15px; }
  .header.style-5 {
    border: 0; }
    .header.style-5 .header-content {
      margin: 10px 0 5px; }
  .header.header-fixed {
    position: fixed;
    width: 100%; }
  .header.bg-img {
    background-image: url(../images/meat/pattern1.png);
    background-repeat: no-repeat;
    background-size: cover; }
  .header.transparent {
    position: absolute;
    width: 100%;
    top: 0;
    background: transparent;
    border: 0;
    left: 0;
    z-index: 999; }
    .header.transparent .left-content .menu-toggler {
      color: #000; }
      .header.transparent .left-content .menu-toggler svg path {
        fill: #fff; }
    .header.transparent .right-content .icon-bx svg path {
      stroke: #fff; }
    .header.transparent .main-bar .back-btn {
      color: #fff; }
      .header.transparent .main-bar .back-btn svg path {
        fill: #fff; }
    .header.transparent .main-bar .menu-toggler {
      color: #fff; }
    .header.transparent .main-bar.sticky-header .title {
      color: var(--title); }
    .header.transparent .main-bar.sticky-header .left-content .back-btn svg path {
      fill: var(--dark); }
    .header.transparent .main-bar.sticky-header .left-content .menu-toggler {
      color: var(--primary); }
    .header.transparent .main-bar.sticky-header .header-content .icon-box-3 {
      background-color: var(--primary); }
      .header.transparent .main-bar.sticky-header .header-content .icon-box-3 svg path {
        fill: #fff; }
      .header.transparent .main-bar.sticky-header .header-content .icon-box-3.item-bookmark svg path {
        fill: #fff; }
    .header.transparent .main-bar.sticky-header .header-content .back-btn {
      color: #000; }
    .header.transparent .main-bar.sticky-header .header-content .menu-toggler {
      color: #000; }
      .header.transparent .main-bar.sticky-header .header-content .menu-toggler svg path {
        fill: #bfc9da; }
    .header.transparent .main-bar.sticky-header .header-content .mid-content h5, .header.transparent .main-bar.sticky-header .header-content .mid-content .h5 {
      color: #000; }
    .header.transparent .main-bar.sticky-header .right-content .theme-btn,
    .header.transparent .main-bar.sticky-header .right-content .theme-color {
      color: #bfc9da; }
      .header.transparent .main-bar.sticky-header .right-content .theme-btn svg.color-plate path,
      .header.transparent .main-bar.sticky-header .right-content .theme-color svg.color-plate path {
        fill: #bfc9da; }
    .header.transparent .main-bar.sticky-header .right-content .item-bookmark svg path {
      fill: #d9d9dc; }
    .header.transparent .main-bar.sticky-header .right-content .item-bookmark.active svg path {
      fill: #ff586e; }
    .header.transparent .main-bar.sticky-header .right-content .icon-bx svg path {
      stroke: var(--body-color); }
    .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark {
      padding: 0; }
      .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-label {
        width: 20px;
        height: 20px;
        cursor: pointer;
        border-radius: 0;
        text-align: center;
        border: 0;
        line-height: 0; }
        .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-label svg path {
          stroke: #fff; }
      .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-input {
        display: none; }
      .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-input:checked + .form-check-label {
        background-color: transparent; }
        .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
          fill: #fff; }
    .header.transparent .main-bar .title {
      color: #fff; }
    .header.transparent .main-bar .dropdown .dropdown-toggle:after {
      content: none; }
  .header .back-btn {
    display: flex;
    line-height: 1;
    font-size: 20px;
    width: 35px;
    height: 35px;
    min-width: 35px;
    align-items: center;
    justify-content: center;
    margin-right: 15px; }
  .header .menu-toggler {
    font-size: 20px;
    color: var(--title);
    display: flex;
    align-items: center; }
    .header .menu-toggler i {
      line-height: 1; }
  .header .container {
    padding-top: 0;
    padding-bottom: 0; }
  .header .sticky-header {
    position: fixed;
    top: 0;
    z-index: 99999;
    left: 0;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    background: var(--bg-white);
    transition: all 0.5s;
    width: 100%; }
  .header .header-content {
    display: flex;
    height: 100%;
    min-height: var(--headheight);
    align-items: center; }
    .header .header-content .left-content {
      width: 30px;
      height: 100%;
      display: flex;
      align-items: center; }
    .header .header-content .mid-content {
      flex: 1;
      text-align: center; }
    .header .header-content .right-content .form-check.checkmark {
      padding: 0; }
      .header .header-content .right-content .form-check.checkmark .form-check-label {
        width: 20px;
        height: 20px;
        cursor: pointer;
        border-radius: 0;
        text-align: center;
        border: 0;
        line-height: 0; }
      .header .header-content .right-content .form-check.checkmark .form-check-input {
        display: none; }
      .header .header-content .right-content .form-check.checkmark .form-check-input:checked + .form-check-label {
        background-color: transparent; }
        .header .header-content .right-content .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
          fill: var(--primary); }
  .header.user-head .header-content .mid-content {
    display: flex;
    align-items: center; }
    .header.user-head .header-content .mid-content .media {
      margin-right: 10px; }
  .header.user-head .header-content .right-content .dropdown .dropdown-toggle:after {
    content: none; }

.header.transparent ~ .banner-wrapper,
.header.transparent ~ .content-inner {
  padding-top: var(--headheight) !important; }

.header.transparent ~ .banner-wrapper + .content-inner {
  padding-top: 0 !important; }

/* Start Header is-fixed Animation */
.main-bar {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s; }

.main-bar.sticky-header {
  -webkit-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.50s ease 0s normal forwards 1 running headerSlideDown; }

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

@keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

/* Header is-fixed Animation End */
.theme-btn,
.theme-color {
  width: 35px;
  display: inline-block;
  height: 35px;
  text-align: center;
  line-height: 35px;
  padding: 0; }
  .theme-btn svg,
  .theme-color svg {
    fill: var(--dark); }
    .theme-btn svg path,
    .theme-color svg path {
      fill: var(--dark); }
    .theme-btn svg.color-plate path,
    .theme-color svg.color-plate path {
      fill: var(--dark); }
  .theme-btn .light,
  .theme-color .light {
    display: none; }
  .theme-btn.active .light,
  .theme-color.active .light {
    display: inline-block; }
  .theme-btn.active .dark,
  .theme-color.active .dark {
    display: none; }

.sidebar {
  height: 100vh;
  width: 260px;
  background-color: var(--bg-white);
  position: fixed;
  left: -260px;
  top: 0;
  z-index: 999999;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  scrollbar-width: none; }
  .sidebar.show {
    left: 0; }
  .sidebar.right {
    left: auto;
    right: -260px; }
    .sidebar.right.show {
      left: auto;
      right: 0; }
  .sidebar .nav-label {
    margin: 20px 0 0;
    padding: 20px 0 8px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05rem;
    border-top: 1px solid var(--border-color);
    color: #000;
    font-weight: 600; }
  .sidebar .sidebar-bottom {
    margin-top: auto;
    padding: 20px; }
    .sidebar .sidebar-bottom .ver-info {
      margin: 0;
      font-size: 13px;
      display: block; }
    .sidebar .sidebar-bottom .name {
      margin-bottom: 5px; }
    .sidebar .sidebar-bottom ul {
      display: flex; }
      .sidebar .sidebar-bottom ul li {
        width: 25%; }
        .sidebar .sidebar-bottom ul li a {
          display: block;
          text-align: center;
          padding: 15px;
          font-size: 18px;
          color: var(--title); }
  .sidebar .author-box {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    padding: 20px 15px;
    margin-bottom: 30px; }
    .sidebar .author-box .dz-media {
      border-radius: var(--border-radius-base);
      -webkit-border-radius: var(--border-radius-base);
      border: 2px solid #fff;
      width: 45px;
      height: 45px;
      overflow: hidden;
      margin-right: 12px; }
      .sidebar .author-box .dz-media img {
        border-radius: var(--border-radius-base); }
    .sidebar .author-box span {
      color: #fff; }
    .sidebar .author-box .name {
      color: #fff;
      margin-bottom: 0; }
  .sidebar .navbar-nav {
    padding: 0 18px;
    margin-bottom: 30px; }
    .sidebar .navbar-nav > .nav-label:first-child {
      border-top: 0;
      margin: 0;
      padding-top: 0; }
    .sidebar .navbar-nav li > a {
      position: relative;
      padding: 8px 15px 8px 0;
      color: inherit;
      display: flex;
      align-items: center;
      font-weight: 400;
      color: #000; }
      .sidebar .navbar-nav li > a:after {
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        right: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.5;
        font-weight: 700;
        color: #000;
        font-size: 10px; }
      .sidebar .navbar-nav li > a .custom-switch {
        margin-left: auto;
        align-items: center;
        display: flex; }
      .sidebar .navbar-nav li > a .badge {
        margin-left: auto;
        font-size: 10px;
        min-width: 20px;
        min-height: 20px;
        padding: 0;
        height: 20px;
        line-height: 18px; }

.dark-overlay {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 99999; }
  .dark-overlay.active {
    display: block; }

.container.bg-light {
  background-color: #eee !important; }

.footer {
  height: auto;
  align-items: center;
  display: flex;
  z-index: 1;
  flex-direction: column; }
  .footer.fixed {
    width: 100%;
    left: 0;
    background-color: var(--bg-white) !important;
    bottom: 0;
    z-index: 999;
    position: fixed; }
    .footer.fixed .btn .cart {
      transform: scale(1.5); }
  .footer.transparent {
    background-color: #e5eff5; }
  .footer .chat-footer form {
    width: 100%; }
    .footer .chat-footer form .input-wrapper .form-control {
      border: 0;
      background-color: #fff;
      margin-right: 15px;
      height: 45px; }
      .footer .chat-footer form .input-wrapper .form-control::placeholder {
        color: #B0B0B0; }
    .footer .chat-footer form .input-wrapper .icon-popup {
      position: absolute;
      bottom: 10px;
      left: 10px;
      z-index: 999; }
    .footer .chat-footer form .input-wrapper.message-area {
      display: flex;
      align-items: center; }
      .footer .chat-footer form .input-wrapper.message-area .emoji-icon {
        display: inline-block;
        padding-right: 7px;
        padding-top: 10px; }
        .footer .chat-footer form .input-wrapper.message-area .emoji-icon img {
          width: 40px;
          height: 40px; }
  .footer .chat-footer.style-1 form .form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50px; }
  .footer .chat-footer.style-1 form .btn {
    border-color: rgba(255, 255, 255, 0.3) !important; }
  .footer .chat-footer.style-1 form .btn-icon {
    width: 45px;
    min-width: 45px;
    height: 45px; }
  .footer .form-check.checkmark {
    padding: 0; }
    .footer .form-check.checkmark .form-check-label {
      width: 48px;
      height: 48px;
      cursor: pointer;
      border-radius: 30px;
      text-align: center;
      line-height: 45px;
      border: 1px solid #EAEAEA; }
    .footer .form-check.checkmark .form-check-input {
      display: none; }
    .footer .form-check.checkmark .form-check-input:checked + .form-check-label {
      background-color: #EAEAEA; }
      .footer .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
        fill: var(--primary); }
  .footer .commnet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .footer .commnet-footer .form-control {
      border: 0;
      font-size: 0.875rem; }
    .footer .commnet-footer .send-btn {
      width: 40px;
      height: 40px;
      min-width: 40px;
      line-height: 40px;
      background-color: var(--primary);
      text-align: center;
      border-radius: 50%; }
      .footer .commnet-footer .send-btn svg path {
        fill: #fff; }

.message-icon {
  display: none; }
  .message-icon .container {
    padding: 14px; }
  .message-icon .checkbox.messagebar-sheet-image {
    width: 40px;
    height: 40px;
    background-size: contain;
    position: relative;
    display: inline-block;
    background-repeat: no-repeat;
    margin: 0 6px 10px; }
  .message-icon .checkbox input[type="checkbox"] {
    position: absolute;
    bottom: 0;
    background-color: transparent;
    right: 0;
    border-color: #fff;
    box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.3); }
    .message-icon .checkbox input[type="checkbox"]:checked {
      background-color: var(--primary);
      border-color: var(--primary); }

[data-theme-color="color-primary"] .footer.transparent {
  background-color: #e5eff5; }

[data-theme-color="color-green"] .footer.transparent {
  background-color: #d1ffd9; }

[data-theme-color="color-blue"] .footer.transparent {
  background-color: #b1dcff; }

[data-theme-color="color-pink"] .footer.transparent {
  background-color: #ffe2e8; }

[data-theme-color="color-yellow"] .footer.transparent {
  background-color: #fff8dc; }

[data-theme-color="color-orange"] .footer.transparent {
  background-color: #ffe4bd; }

[data-theme-color="color-purple"] .footer.transparent {
  background-color: #e1bfff; }

[data-theme-color="color-red"] .footer.transparent {
  background-color: #ffdbd9; }

[data-theme-color="color-lightblue"] .footer.transparent {
  background-color: #d3f1ff; }

[data-theme-color="color-teal"] .footer.transparent {
  background-color: #e3e3e3; }

[data-theme-color="color-lime"] .footer.transparent {
  background-color: #fcffdd; }

[data-theme-color="color-deeporange"] .footer.transparent {
  background-color: #ffbd9d; }

.menubar-area {
  border-top: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  padding: 5px 0;
  z-index: 999; }
  .menubar-area.footer-fixed {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%; }
  .menubar-area .toolbar-inner {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    align-items: center; }
    .menubar-area .toolbar-inner .circle {
      position: relative;
      display: flex;
      align-items: center; }
      .menubar-area .toolbar-inner .circle:after {
        content: "";
        position: absolute;
        top: 0;
        right: -5px;
        width: 12px;
        height: 12px;
        background-color: #FFA902;
        border: 2px solid var(--primary);
        border-radius: 50%; }
    .menubar-area .toolbar-inner .nav-link,
    .menubar-area .toolbar-inner .menu-toggler {
      color: var(--title);
      text-align: center;
      width: 25%;
      padding: 0 0;
      font-size: 18px; }
      .menubar-area .toolbar-inner .nav-link svg,
      .menubar-area .toolbar-inner .menu-toggler svg {
        width: 24px;
        height: 24px; }
        .menubar-area .toolbar-inner .nav-link svg path,
        .menubar-area .toolbar-inner .menu-toggler svg path {
          fill: #7d8fab; }
      .menubar-area .toolbar-inner .nav-link.active svg path,
      .menubar-area .toolbar-inner .menu-toggler.active svg path {
        fill: var(--primary); }
      .menubar-area .toolbar-inner .nav-link.item-active,
      .menubar-area .toolbar-inner .menu-toggler.item-active {
        width: 55px;
        min-width: 55px;
        height: 55px;
        font-size: 24px;
        color: #fff;
        font-weight: 900;
        background: var(--primary);
        line-height: 45px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px; }
        .menubar-area .toolbar-inner .nav-link.item-active svg path,
        .menubar-area .toolbar-inner .menu-toggler.item-active svg path {
          fill: #fff; }
      .menubar-area .toolbar-inner .nav-link .title,
      .menubar-area .toolbar-inner .menu-toggler .title {
        display: block;
        margin-top: 5px;
        font-weight: 500;
        font-size: 12px; }
  .menubar-area.style-1 {
    position: unset;
    border-top: 0;
    border-radius: var(--border-radius-base);
    background-color: var(--bg-white) !important; }
  .menubar-area.style-2 {
    position: unset;
    padding: 15px;
    border-top: 0;
    z-index: 999;
    background-color: var(--bg-white) !important;
    border-radius: var(--border-radius-base); }
    .menubar-area.style-2 .toolbar-inner {
      padding-left: 0;
      padding-right: 0;
      display: flex;
      max-width: 1000px;
      margin-right: auto;
      margin-left: auto;
      align-items: center; }
      .menubar-area.style-2 .toolbar-inner .nav-link,
      .menubar-area.style-2 .toolbar-inner .menu-toggler {
        color: var(--title);
        text-align: center;
        width: 25%;
        padding: 0 0;
        font-size: 18px; }
        .menubar-area.style-2 .toolbar-inner .nav-link i,
        .menubar-area.style-2 .toolbar-inner .menu-toggler i {
          line-height: 1;
          display: flex;
          align-items: center;
          justify-content: center; }
        .menubar-area.style-2 .toolbar-inner .nav-link.active,
        .menubar-area.style-2 .toolbar-inner .menu-toggler.active {
          position: relative; }
          .menubar-area.style-2 .toolbar-inner .nav-link.active svg path,
          .menubar-area.style-2 .toolbar-inner .menu-toggler.active svg path {
            fill: var(--primary); }
          .menubar-area.style-2 .toolbar-inner .nav-link.active:after,
          .menubar-area.style-2 .toolbar-inner .menu-toggler.active:after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            width: 70px;
            height: 6px;
            background: var(--primary);
            border-radius: 10px 10px 0px 0px;
            transform: translateX(-50%); }
        .menubar-area.style-2 .toolbar-inner .nav-link .title,
        .menubar-area.style-2 .toolbar-inner .menu-toggler .title {
          display: block;
          margin-top: 5px;
          font-weight: 500;
          font-size: 12px; }
  .menubar-area.style-3 {
    position: unset;
    padding: 20px;
    border-top: 0;
    background-color: var(--bg-white) !important;
    z-index: 999;
    border-radius: var(--border-radius-base); }
    .menubar-area.style-3 .toolbar-inner {
      padding-left: 0;
      padding-right: 0;
      display: flex;
      max-width: 1000px;
      margin-right: auto;
      margin-left: auto;
      align-items: center; }
      .menubar-area.style-3 .toolbar-inner .nav-link,
      .menubar-area.style-3 .toolbar-inner .menu-toggler {
        color: var(--title);
        text-align: center;
        width: 25%;
        padding: 0 0;
        font-size: 18px; }
        .menubar-area.style-3 .toolbar-inner .nav-link i,
        .menubar-area.style-3 .toolbar-inner .menu-toggler i {
          line-height: 1;
          display: flex;
          align-items: center;
          justify-content: center; }
        .menubar-area.style-3 .toolbar-inner .nav-link.active,
        .menubar-area.style-3 .toolbar-inner .menu-toggler.active {
          position: relative; }
          .menubar-area.style-3 .toolbar-inner .nav-link.active svg path,
          .menubar-area.style-3 .toolbar-inner .menu-toggler.active svg path {
            fill: var(--primary); }
          .menubar-area.style-3 .toolbar-inner .nav-link.active:after,
          .menubar-area.style-3 .toolbar-inner .menu-toggler.active:after {
            content: "";
            position: absolute;
            bottom: -20px;
            left: 50%;
            width: 70px;
            height: 6px;
            background: var(--primary);
            border-radius: 10px 10px 0px 0px;
            transform: translateX(-50%); }
        .menubar-area.style-3 .toolbar-inner .nav-link .title,
        .menubar-area.style-3 .toolbar-inner .menu-toggler .title {
          display: block;
          margin-top: 5px;
          font-weight: 500;
          font-size: 12px; }
  .menubar-area.style-4 {
    position: unset;
    background-color: var(--bg-white) !important;
    padding: 15px 0;
    background-color: var(--bg-white) !important;
    box-shadow: 0px -11px 19px 0px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-base); }
    .menubar-area.style-4 .toolbar-inner {
      padding-left: 0;
      padding-right: 0;
      display: flex;
      max-width: 1000px;
      margin-right: auto;
      margin-left: auto;
      align-items: center; }
      .menubar-area.style-4 .toolbar-inner .nav-link,
      .menubar-area.style-4 .toolbar-inner .menu-toggler {
        color: var(--title);
        text-align: center;
        width: 25%;
        padding: 0 0;
        font-size: 18px; }
        .menubar-area.style-4 .toolbar-inner .nav-link.active,
        .menubar-area.style-4 .toolbar-inner .menu-toggler.active {
          position: relative; }
          .menubar-area.style-4 .toolbar-inner .nav-link.active svg path,
          .menubar-area.style-4 .toolbar-inner .menu-toggler.active svg path {
            fill: var(--primary); }
        .menubar-area.style-4 .toolbar-inner .nav-link.stroke svg path,
        .menubar-area.style-4 .toolbar-inner .menu-toggler.stroke svg path {
          stroke: var(--primary);
          fill: none; }
        .menubar-area.style-4 .toolbar-inner .nav-link .title,
        .menubar-area.style-4 .toolbar-inner .menu-toggler .title {
          display: block;
          margin-top: 5px;
          font-weight: 500;
          font-size: 12px; }
        .menubar-area.style-4 .toolbar-inner .nav-link.add-post,
        .menubar-area.style-4 .toolbar-inner .menu-toggler.add-post {
          width: 45px;
          min-width: 45px;
          height: 45px;
          font-size: 24px;
          color: #fff;
          font-weight: 900;
          background: var(--primary);
          line-height: 45px;
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 14px;
          margin: -45px 20px 0;
          /* box-shadow: 0px 5px 20px -5px var(--primary); */
          box-shadow: 0 4px 20px -8px var(--primary); }
  .menubar-area.style-5 {
    border-top: 0;
    position: unset;
    position: unset;
    padding: 12px;
    background-color: var(--primary);
    border-radius: 18px; }
    .menubar-area.style-5 .menubar-nav .nav-link {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-direction: column;
      transition: all 0.5s; }
      .menubar-area.style-5 .menubar-nav .nav-link span {
        font-size: 12px;
        color: #fff;
        font-weight: 400;
        display: block; }
      .menubar-area.style-5 .menubar-nav .nav-link i {
        color: #fff;
        margin-bottom: 4px; }
      .menubar-area.style-5 .menubar-nav .nav-link.active {
        position: relative; }
        .menubar-area.style-5 .menubar-nav .nav-link.active i {
          transform: translateY(-25px);
          margin-bottom: 0; }
        .menubar-area.style-5 .menubar-nav .nav-link.active:after {
          content: "";
          position: absolute;
          top: -45px;
          left: 50%;
          width: 60px;
          height: 60px;
          z-index: -1;
          background: var(--primary);
          align-items: center;
          display: flex;
          border-radius: 50%;
          border: 5px solid #eee;
          color: #fff;
          justify-content: center;
          transform: translateX(-50%); }
  .menubar-area.style-6 {
    border-top: 0;
    position: unset;
    padding: 0;
    background-color: var(--bg-white) !important;
    border-radius: 18px; }
    .menubar-area.style-6 .menubar-nav .nav-link {
      padding: 8px 12px; }
      .menubar-area.style-6 .menubar-nav .nav-link span {
        font-size: 12px;
        display: block; }
      .menubar-area.style-6 .menubar-nav .nav-link i {
        margin-bottom: 4px; }
      .menubar-area.style-6 .menubar-nav .nav-link.active {
        color: var(--primary); }
        .menubar-area.style-6 .menubar-nav .nav-link.active i {
          color: var(--primary); }
  .menubar-area.style-7 {
    border-top: 0;
    padding: 0;
    position: unset;
    background-color: var(--bg-white) !important;
    border-radius: 18px; }
    .menubar-area.style-7 .menubar-nav .nav-link {
      padding: 8px 12px; }
      .menubar-area.style-7 .menubar-nav .nav-link span {
        font-size: 12px;
        display: block; }
      .menubar-area.style-7 .menubar-nav .nav-link i {
        margin-bottom: 4px; }
      .menubar-area.style-7 .menubar-nav .nav-link.active {
        background-color: var(--primary);
        color: #fff; }
        .menubar-area.style-7 .menubar-nav .nav-link.active i {
          color: #fff; }
  .menubar-area.style-7 {
    border-top: 0;
    padding: 0;
    position: unset;
    background-color: var(--bg-white) !important;
    border-radius: 18px; }
    .menubar-area.style-7 .menubar-nav .nav-link {
      padding: 8px 12px; }
      .menubar-area.style-7 .menubar-nav .nav-link span {
        font-size: 12px;
        display: block; }
      .menubar-area.style-7 .menubar-nav .nav-link i {
        margin-bottom: 4px; }
      .menubar-area.style-7 .menubar-nav .nav-link.active {
        background-color: var(--primary);
        color: #fff; }
        .menubar-area.style-7 .menubar-nav .nav-link.active i {
          color: #fff; }
  .menubar-area.style-8 {
    border-top: 0;
    padding: 0;
    position: unset;
    background-color: var(--bg-white) !important;
    border-radius: 18px; }
    .menubar-area.style-8 .menubar-nav .nav-link {
      padding: 8px 12px; }
      .menubar-area.style-8 .menubar-nav .nav-link span {
        font-size: 12px;
        display: none; }
      .menubar-area.style-8 .menubar-nav .nav-link i {
        margin-bottom: 4px; }
      .menubar-area.style-8 .menubar-nav .nav-link.active {
        color: var(--primary); }
        .menubar-area.style-8 .menubar-nav .nav-link.active span {
          display: block; }
        .menubar-area.style-8 .menubar-nav .nav-link.active i {
          color: var(--primary); }
  .menubar-area.style-9 {
    border-top: 0;
    padding: 0;
    position: unset;
    background-color: var(--bg-white) !important;
    border-radius: 15px 15px 0 0;
    box-shadow: 0px -10px 30px 0px rgba(0, 0, 0, 0.1);
    height: 55px; }
    .menubar-area.style-9 .menubar-nav .nav-link {
      padding: 4px 12px;
      position: relative;
      z-index: 1; }
      .menubar-area.style-9 .menubar-nav .nav-link:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        display: none;
        background-color: var(--secondary);
        z-index: -1;
        border-radius: 10px 10px 0 0; }
      .menubar-area.style-9 .menubar-nav .nav-link span {
        font-size: 12px;
        display: block;
        color: #657F8D;
        font-family: var(--font-family-title); }
      .menubar-area.style-9 .menubar-nav .nav-link svg path {
        fill: unset; }
      .menubar-area.style-9 .menubar-nav .nav-link i {
        margin-bottom: 4px; }
      .menubar-area.style-9 .menubar-nav .nav-link.active {
        background-color: none; }
        .menubar-area.style-9 .menubar-nav .nav-link.active svg path {
          stroke: #fff; }
        .menubar-area.style-9 .menubar-nav .nav-link.active svg ellipse {
          stroke: #fff; }
        .menubar-area.style-9 .menubar-nav .nav-link.active span {
          color: #fff;
          font-weight: 600; }
        .menubar-area.style-9 .menubar-nav .nav-link.active i {
          color: #fff; }
        .menubar-area.style-9 .menubar-nav .nav-link.active:after {
          display: block; }

[data-theme-color="color-green"] {
  --primary: #027335;
  --secondary: #28B0CE;
  --primary-light: rgba(255, 250, 246, 0.80);
  --primary-light-2: #FFCD90;
  --primary-hover: #02622d;
  --primary-dark: #261543;
  --bg-gradient: linear-gradient(228.99deg, #027335 26.74%, #5fa980 109.9%);
  --rgba-primary-1: rgba(2, 115, 53, 0.1);
  --rgba-primary-2: rgba(2, 115, 53, 0.2);
  --rgba-primary-3: rgba(2, 115, 53, 0.3);
  --rgba-primary-4: rgba(2, 115, 53, 0.4);
  --rgba-primary-5: rgba(2, 115, 53, 0.5);
  --rgba-primary-6: rgba(2, 115, 53, 0.6);
  --rgba-primary-7: rgba(2, 115, 53, 0.7);
  --rgba-primary-8: rgba(2, 115, 53, 0.8);
  --rgba-primary-9: rgba(2, 115, 53, 0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-blue"] {
  --primary: #2196f3;
  --secondary: #102C3C;
  --primary-light: rgba(236, 250, 255, 0.80);
  --primary-light-2: #8ecdff;
  --primary-hover: #0c7cd5;
  --primary-dark: #064475;
  --bg-gradient: linear-gradient(73.08deg, #2196f3 15.14%, #48a9f8 92.25%);
  --rgba-primary-1: rgba(33,150,243,0.1);
  --rgba-primary-2: rgba(33,150,243,0.2);
  --rgba-primary-3: rgba(33,150,243,0.3);
  --rgba-primary-4: rgba(33,150,243,0.4);
  --rgba-primary-5: rgba(33,150,243,0.5);
  --rgba-primary-6: rgba(33,150,243,0.6);
  --rgba-primary-7: rgba(33,150,243,0.7);
  --rgba-primary-8: rgba(33,150,243,0.8);
  --rgba-primary-9: rgba(33,150,243,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-pink"] {
  --primary: #ff9eb1;
  --secondary: #102C3C;
  --primary-light: rgba(255, 240, 244, 0.80);
  --primary-light-2: #ffcdd7;
  --primary-hover: #ff6b88;
  --primary-dark: #ff0536;
  --bg-gradient: linear-gradient(228.99deg, #e598a7 26.74%, #c1cfc7 109.9%);
  --rgba-primary-1: rgba(255,158,177,0.1);
  --rgba-primary-2: rgba(255,158,177,0.2);
  --rgba-primary-3: rgba(255,158,177,0.3);
  --rgba-primary-4: rgba(255,158,177,0.4);
  --rgba-primary-5: rgba(255,158,177,0.5);
  --rgba-primary-6: rgba(255,158,177,0.6);
  --rgba-primary-7: rgba(255,158,177,0.7);
  --rgba-primary-8: rgba(255,158,177,0.8);
  --rgba-primary-9: rgba(255,158,177,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-yellow"] {
  --primary: #e3b706;
  --secondary: #102C3C;
  --primary-light: rgba(255, 252, 241, 0.80);
  --primary-light-2: #ffea9a;
  --primary-hover: #cca300;
  --primary-dark: #665200;
  --bg-gradient: linear-gradient(73.08deg, #e3b706 15.14%, #ffcc00 92.25%);
  --rgba-primary-1: rgba(255,204,0,0.1);
  --rgba-primary-2: rgba(255,204,0,0.2);
  --rgba-primary-3: rgba(255,204,0,0.3);
  --rgba-primary-4: rgba(255,204,0,0.4);
  --rgba-primary-5: rgba(255,204,0,0.5);
  --rgba-primary-6: rgba(255,204,0,0.6);
  --rgba-primary-7: rgba(255,204,0,0.7);
  --rgba-primary-8: rgba(255,204,0,0.8);
  --rgba-primary-9: rgba(255,204,0,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-orange"] {
  --primary: #ff9500;
  --secondary: #102C3C;
  --primary-light: rgba(255, 251, 246, 0.80);
  --primary-light-2: #fec779;
  --primary-hover: #cc7700;
  --primary-dark: #663c00;
  --bg-gradient: linear-gradient(73.08deg, #ff5e00 15.14%, #ff9500 92.25%);
  --rgba-primary-1: rgba(255,149,0,0.1);
  --rgba-primary-2: rgba(255,149,0,0.2);
  --rgba-primary-3: rgba(255,149,0,0.3);
  --rgba-primary-4: rgba(255,149,0,0.4);
  --rgba-primary-5: rgba(255,149,0,0.5);
  --rgba-primary-6: rgba(255,149,0,0.6);
  --rgba-primary-7: rgba(255,149,0,0.7);
  --rgba-primary-8: rgba(255,149,0,0.8);
  --rgba-primary-9: rgba(255,149,0,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-purple"] {
  --primary: #b65fbd;
  --secondary: #232323;
  --primary-light: rgba(247, 245, 255, 0.80);
  --primary-light-2: #d7abff;
  --primary-hover: #b249bb;
  --primary-dark: #ab4ab3;
  --bg-gradient: linear-gradient(73.08deg, #b751bf 15.14%, #b65fbd 92.25%);
  --rgba-primary-1: rgba(182,95,189,0.1);
  --rgba-primary-2: rgba(182,95,189,0.2);
  --rgba-primary-3: rgba(182,95,189,0.3);
  --rgba-primary-4: rgba(182,95,189,0.4);
  --rgba-primary-5: rgba(182,95,189,0.5);
  --rgba-primary-6: rgba(182,95,189,0.6);
  --rgba-primary-7: rgba(182,95,189,0.7);
  --rgba-primary-8: rgba(182,95,189,0.8);
  --rgba-primary-9: rgba(182,95,189,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-red"] {
  --primary: #ff3b30;
  --secondary: #102C3C;
  --primary-light: rgba(255, 236, 235, 0.80);
  --primary-light-2: #fe8583;
  --primary-hover: #ff7b73;
  --bg-gradient: linear-gradient(73.08deg, #ff3b30 15.14%, #ff5d54 92.25%);
  --primary-dark: #960800;
  --rgba-primary-1: rgba(255,59,48,0.1);
  --rgba-primary-2: rgba(255,59,48,0.2);
  --rgba-primary-3: rgba(255,59,48,0.3);
  --rgba-primary-4: rgba(255,59,48,0.4);
  --rgba-primary-5: rgba(255,59,48,0.5);
  --rgba-primary-6: rgba(255,59,48,0.6);
  --rgba-primary-7: rgba(255,59,48,0.7);
  --rgba-primary-8: rgba(255,59,48,0.8);
  --rgba-primary-9: rgba(255,59,48,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-lightblue"] {
  --primary: #5ac8fa;
  --secondary: #102C3C;
  --primary-light: rgba(241, 251, 255, 0.80);
  --primary-light-2: #83d8ff;
  --primary-hover: #29b8f9;
  --primary-dark: #067fb6;
  --bg-gradient: linear-gradient(73.08deg, #00afff 15.14%, #72d3ff 92.25%);
  --rgba-primary-1: rgba(90,200,250,0.1);
  --rgba-primary-2: rgba(90,200,250,0.2);
  --rgba-primary-3: rgba(90,200,250,0.3);
  --rgba-primary-4: rgba(90,200,250,0.4);
  --rgba-primary-5: rgba(90,200,250,0.5);
  --rgba-primary-6: rgba(90,200,250,0.6);
  --rgba-primary-7: rgba(90,200,250,0.7);
  --rgba-primary-8: rgba(90,200,250,0.8);
  --rgba-primary-9: rgba(90,200,250,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-teal"] {
  --primary: #009688;
  --secondary: #102C3C;
  --primary-light: rgba(243, 244, 244, 0.80);
  --primary-light-2: #05d3c0;
  --primary-hover: #00635a;
  --primary-dark: #000;
  --bg-gradient: linear-gradient(73.08deg, #009688 15.14%, #10c9b8 92.25%);
  --rgba-primary-1: rgba(0,150,136,0.1);
  --rgba-primary-2: rgba(0,150,136,0.2);
  --rgba-primary-3: rgba(0,150,136,0.3);
  --rgba-primary-4: rgba(0,150,136,0.4);
  --rgba-primary-5: rgba(0,150,136,0.5);
  --rgba-primary-6: rgba(0,150,136,0.6);
  --rgba-primary-7: rgba(0,150,136,0.7);
  --rgba-primary-8: rgba(0,150,136,0.8);
  --rgba-primary-9: rgba(0,150,136,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-lime"] {
  --primary: #92E136;
  --secondary: #102C3C;
  --primary-light: rgba(253, 255, 233, 0.80);
  --primary-light-2: #e9f294;
  --primary-hover: #85DB22;
  --primary-dark: #87D230;
  --bg-gradient: linear-gradient(73.08deg, #cddc39 15.14%, #cddc39 92.25%);
  --rgba-primary-1: rgba(146,225,54,0.1);
  --rgba-primary-2: rgba(146,225,54,0.2);
  --rgba-primary-3: rgba(146,225,54,0.3);
  --rgba-primary-4: rgba(146,225,54,0.4);
  --rgba-primary-5: rgba(146,225,54,0.5);
  --rgba-primary-6: rgba(146,225,54,0.6);
  --rgba-primary-7: rgba(146,225,54,0.7);
  --rgba-primary-8: rgba(146,225,54,0.8);
  --rgba-primary-9: rgba(146,225,54,0.9);
  --theme-text-color: #102C3C; }

[data-theme-color="color-deeporange"] {
  --primary: #d96502;
  --secondary: #102C3C;
  --primary-light: rgba(217,101,2, 0.80);
  --primary-light-2: #fdc0a2;
  --primary-hover: #ca5e02;
  --primary-dark: #c35f0a;
  --bg-gradient: linear-gradient(73.08deg, #ff6b22 15.14%, #ff9f70 92.25%);
  --rgba-primary-1: rgba(217,101,2,0.1);
  --rgba-primary-2: rgba(217,101,2,0.2);
  --rgba-primary-3: rgba(217,101,2,0.3);
  --rgba-primary-4: rgba(217,101,2,0.4);
  --rgba-primary-5: rgba(217,101,2,0.5);
  --rgba-primary-6: rgba(217,101,2,0.6);
  --rgba-primary-7: rgba(217,101,2,0.7);
  --rgba-primary-8: rgba(217,101,2,0.8);
  --rgba-primary-9: rgba(217,101,2,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-salmon"] {
  --primary: #FA8072;
  --secondary: #102C3C;
  --primary-light: rgba(250,128,114, 0.80);
  --primary-light-2: #e9b7b1;
  --primary-hover: #eb6758;
  --primary-dark: #ce5244;
  --bg-gradient: linear-gradient(73.08deg, #FA8072 15.14%, #eb6758 92.25%);
  --rgba-primary-1: rgba(250,128,114,0.1);
  --rgba-primary-2: rgba(250,128,114,0.2);
  --rgba-primary-3: rgba(250,128,114,0.3);
  --rgba-primary-4: rgba(250,128,114,0.4);
  --rgba-primary-5: rgba(250,128,114,0.5);
  --rgba-primary-6: rgba(250,128,114,0.6);
  --rgba-primary-7: rgba(250,128,114,0.7);
  --rgba-primary-8: rgba(250,128,114,0.8);
  --rgba-primary-9: rgba(250,128,114,0.9);
  --theme-text-color: #fff; }

[data-theme-color="color-dark"] {
  --primary: #293041;
  --secondary: #102C3C;
  --primary-light: rgba(41, 48, 65, 0.85);
  --primary-light-2: #fdc0a2;
  --primary-hover: #242424;
  --primary-dark: #882d00;
  --bg-gradient: linear-gradient(73.08deg, #ff6b22 15.14%, #ff9f70 92.25%);
  --rgba-primary-1: rgba(41,48,65,0.1);
  --rgba-primary-2: rgba(41,48,65,0.2);
  --rgba-primary-3: rgba(41,48,65,0.3);
  --rgba-primary-4: rgba(41,48,65,0.4);
  --rgba-primary-5: rgba(41,48,65,0.5);
  --rgba-primary-6: rgba(41,48,65,0.6);
  --rgba-primary-7: rgba(41,48,65,0.7);
  --rgba-primary-8: rgba(41,48,65,0.8);
  --rgba-primary-9: rgba(41,48,65,0.9);
  --theme-text-color: #fff; }

.theme-dark {
  --dark: #fff;
  --bg-white: #2c3f6d;
  --title: rgba(255, 255, 255, 0.7);
  --body-color: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.2);
  --bg-dark-light: rgb(44, 63, 109, 0.80);
  --card-bg: #243150; }

/* Theme Dark */
.theme-dark {
  background-color: #2c3f6d !important;
  color: rgba(255, 255, 255, 0.7); }
  .theme-dark .header.bg-img {
    background-image: url(../images/meat/pattern2.png); }
  .theme-dark .notify-cart {
    background-color: rgba(255, 255, 255, 0.07); }
  .theme-dark .form-label,
  .theme-dark .dz-wizard .steps .step-content,
  .theme-dark .text-notify,
  .theme-dark .post-profile .left-content .meta-list li a,
  .theme-dark .notification .notification-content small,
  .theme-dark .notification .notification-content .small,
  .theme-dark .notification .notification-content .small,
  .theme-dark .dropdown-menu .dropdown-item,
  .theme-dark .text-primary,
  .theme-dark .text-dark {
    color: #fff !important; }
  .theme-dark .dz-avatar.list-status .avatar-list .media img,
  .theme-dark .dz-avatar.list-stacked .avatar-list .media img {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2); }
  .theme-dark .dz-timeline.style-2 .timeline-date,
  .theme-dark .text-light {
    color: rgba(255, 255, 255, 0.5) !important; }
  .theme-dark .message-list li .media-content p {
    color: rgba(255, 255, 255, 0.7); }
  .theme-dark .message-list li .media:after {
    border-color: #2c3f6d; }
  .theme-dark .message-content {
    background-color: #2c3f6d; }
  .theme-dark .profile .main-profile .right-content .upload-box img {
    border-color: #2c3f6d; }
  .theme-dark h1, .theme-dark .h1, .theme-dark h2, .theme-dark .h2, .theme-dark h3, .theme-dark .h3, .theme-dark h4, .theme-dark .h4, .theme-dark h5, .theme-dark .h5, .theme-dark h6, .theme-dark .h6 {
    color: #fff; }
    .theme-dark h1 a, .theme-dark .h1 a, .theme-dark h2 a, .theme-dark .h2 a, .theme-dark h3 a, .theme-dark .h3 a, .theme-dark h4 a, .theme-dark .h4 a, .theme-dark h5 a, .theme-dark .h5 a, .theme-dark h6 a, .theme-dark .h6 a {
      color: #fff; }
  .theme-dark .light.btn-primary {
    background-color: rgba(255, 255, 255, 0.07);
    color: #fff; }
  .theme-dark .text-black {
    color: rgba(255, 255, 255, 0.7) !important; }
  .theme-dark .post-card .meta-list li svg path {
    stroke: #ffffff; }
  .theme-dark .border-bottom {
    border-color: var(--border-color) !important; }
  .theme-dark .default-tab .nav-tabs .nav-item .nav-link.active,
  .theme-dark .profile-area .profile-content ul li a,
  .theme-dark .contact-section ul li p,
  .theme-dark .btn-close,
  .theme-dark .detail {
    color: #fff; }
  .theme-dark.bg-gradient-2 {
    background-image: var(--bg-white) !important; }
  .theme-dark .categore-box .story-bx img {
    border-color: var(--bg-white); }
  .theme-dark .search-icon svg path {
    fill: var(--primary); }
  .theme-dark .page-wraper.header-fixed .header {
    background-color: var(--bg-dark-light) !important; }
  .theme-dark .add-banner5 .card-body .btn {
    background-color: #fff; }
  .theme-dark .map .detail-box {
    background-color: #201030; }
  .theme-dark .input-group .input-group-text {
    background-color: #2c3f6d !important;
    border-color: var(--border-color); }
  .theme-dark .input-group .form-control {
    border-color: var(--border-color); }
  .theme-dark .input-group.input-mini .input-group-text {
    background-color: transparent !important; }
  .theme-dark .form-control {
    background: #2c3f6d;
    color: #fff !important;
    border-color: var(--border-color); }
    .theme-dark .form-control.style-1 {
      border-color: var(--border-color); }
    .theme-dark .form-control:focus, .theme-dark .form-control:active {
      background: #2c3f6d; }
    .theme-dark .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .theme-dark .bell-icon svg circle {
    stroke: #fe9063;
    fill: #2c3f6d; }
  .theme-dark .sidebar .nav-label {
    color: #fff; }
  .theme-dark .sidebar .navbar-nav li a {
    color: #fff; }
    .theme-dark .sidebar .navbar-nav li a:after {
      opacity: 0.5;
      color: #fff; }
  .theme-dark .featured-box .item-bx {
    box-shadow: none;
    border: 1px solid var(--border-color); }
  .theme-dark .accordion.style-2 .accordion-item {
    box-shadow: none;
    border: 1px solid var(--border-color); }
  .theme-dark .offcanvas.offcanvas-end .btn-close,
  .theme-dark .offcanvas.offcanvas-bottom .btn-close {
    box-shadow: none; }
  .theme-dark .short-tag.style-3 .btn-check:checked + .tag-btn {
    background-color: var(--bg-dark-light); }
  .theme-dark .short-tag.style-4 .tag-btn {
    background-color: #fff; }
  .theme-dark .short-tag.style-4 .btn-check:checked + .tag-btn {
    background-color: #fff; }
  .theme-dark .detail-box {
    background-color: #2c3f6d; }
  .theme-dark .dz-tab .nav.nav-tabs .nav-item .nav-link {
    color: #fff; }
  .theme-dark .header.transparent {
    background-color: transparent; }
    .theme-dark .header.transparent .main-bar.sticky-header .header-content .mid-content h5, .theme-dark .header.transparent .main-bar.sticky-header .header-content .mid-content .h5 {
      color: #fff; }
  .theme-dark .header .main-bar .right-content .form-check.checkmark {
    padding: 0; }
    .theme-dark .header .main-bar .right-content .form-check.checkmark .form-check-label path {
      stroke: #fff; }
    .theme-dark .header .main-bar .right-content .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
      fill: #fff; }
  .theme-dark .short-map .zone {
    background: rgba(44, 63, 109, 0.38); }
  .theme-dark .back-btn {
    color: #fff; }
    .theme-dark .back-btn svg path {
      fill: #fff; }
  .theme-dark .post-area .top-area {
    background: #c0c6d3; }
  .theme-dark .footer .form-check.checkmark .form-check-label {
    border: 1px solid var(--border-color); }
    .theme-dark .footer .form-check.checkmark .form-check-label svg path {
      stroke: #fff; }
  .theme-dark .footer .form-check.checkmark .form-check-input:checked + .form-check-label {
    background-color: #EAEAEA; }
    .theme-dark .footer .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
      fill: var(--primary);
      stroke: var(--primary); }
  .theme-dark .footer.transparent {
    background: #2f4a79; }
  .theme-dark .footer .chat-footer .btn svg path {
    fill: #fff; }
  .theme-dark .notify-cart2 .badge {
    border-color: #2c3f6d; }
  .theme-dark .dashboard-area .categorie-section ul li .btn {
    background-color: #201030; }
    .theme-dark .dashboard-area .categorie-section ul li .btn svg path {
      fill: #fff; }
    .theme-dark .dashboard-area .categorie-section ul li .btn:hover svg path {
      fill: var(--primary); }
  .theme-dark .categore-box.style-2 {
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: none; }
  .theme-dark .card-item.style-5,
  .theme-dark .cart-info-wrapper {
    background-color: rgba(255, 255, 255, 0.06); }
  .theme-dark .card {
    background-color: rgba(255, 255, 255, 0.06); }
    .theme-dark .card.bg-light {
      background-color: #201030 !important; }
    .theme-dark .card .text-primary {
      color: var(--primary) !important; }
    .theme-dark .card .card-body.bg-dark {
      background-color: rgba(255, 255, 255, 0.06) !important; }
  .theme-dark .product-list,
  .theme-dark .offer-2.card {
    border: 1px solid var(--border-color); }
  .theme-dark .job-post .card-info svg path {
    fill: #fff; }
  .theme-dark .recent-jobs-list ul li .item-content .item-inner svg path {
    fill: #fff; }
  .theme-dark .item-box {
    box-shadow: 3px 0px 25px -6px rgba(255, 255, 255, 0.25); }
  .theme-dark .tag-group .tag-btn {
    color: #fff;
    border-color: var(--border-color); }
  .theme-dark ul.list-check li {
    color: #fff; }
    .theme-dark ul.list-check li:after {
      color: #fff; }
  .theme-dark .icon-box {
    background-color: transparent;
    border-color: var(--border-color); }
    .theme-dark .icon-box svg path {
      fill: #fff; }
  .theme-dark .btn.tag-btn {
    background: #201030;
    color: #fff; }
  .theme-dark .fixed-content {
    background-color: #201030 !important; }
  .theme-dark .company-detail .detail-content {
    border-color: var(--border-color); }
  .theme-dark .company-detail .contact-box li .contact-icon {
    border-color: var(--border-color);
    background: #201030; }
    .theme-dark .company-detail .contact-box li .contact-icon svg path {
      fill: #fff; }
  .theme-dark .notification-content .notification {
    border-color: var(--border-color);
    background-color: #201030; }
  .theme-dark .profile-area .profile .detail {
    color: #fff; }
  .theme-dark .profile-area .contact-profile .contact-icon {
    border-color: var(--border-color);
    background: #201030; }
    .theme-dark .profile-area .contact-profile .contact-icon svg path {
      fill: #fff; }
  .theme-dark .profile-area .skill-bar {
    border: 1px solid var(--border-color); }
  .theme-dark .social-btn-group .social-btn {
    background-color: #201030; }
  .theme-dark .btn-link,
  .theme-dark .saprate {
    color: #fff; }
  .theme-dark .chip.bg-light {
    color: #000; }
    .theme-dark .chip.bg-light .text-black {
      color: #000 !important; }
  .theme-dark .message-list li {
    border-color: var(--border-color); }
  .theme-dark .dz-list > ul > li {
    border-color: var(--border-color); }
    .theme-dark .dz-list > ul > li .item-content .dz-title {
      color: #fff; }
    .theme-dark .dz-list > ul > li .item-content.item-link {
      color: #fff; }
      .theme-dark .dz-list > ul > li .item-content.item-link:after {
        opacity: 0.5;
        color: #fff; }
  .theme-dark .accordion-header {
    color: #fff; }
  .theme-dark .page-onboading + .footer {
    background-color: #110021; }
  .theme-dark .welcome-area .join-area:after {
    background-image: url(../images/bg-shape-dark.png); }
  .theme-dark .form-control.custom-image-select-2 .dropdown-toggle:after,
  .theme-dark .form-control.custom-image-select-2 .filter-option-inner-inner {
    color: #fff; }
  .theme-dark .btn-close svg path,
  .theme-dark .element-list li a svg path,
  .theme-dark .filter-area .filter-content .Categories li svg path,
  .theme-dark .post-profile .left-content .meta-list li a svg path {
    fill: #fff; }
  .theme-dark .input-group-icon .form-control {
    background: #2c3f6d; }
  .theme-dark .add-banner .text-dark {
    color: #203647 !important; }
  .theme-dark .accordion-button::after,
  .theme-dark .dz-form-select.style-2 {
    background-image: url(../images/down-white.svg); }
  .theme-dark .dz-wizard .actions {
    background: rgba(44, 63, 109, 0.75);
    backdrop-filter: blur(10px); }
  .theme-dark .dz-wizard .content .body input {
    background-color: rgba(255, 255, 255, 0.14); }
  .theme-dark .default-tab.style-1 .nav-tabs .nav-item .nav-link:after {
    background-color: #e7b6b6; }
  .theme-dark .menubar-area,
  .theme-dark .author-notification {
    background-color: rgba(44, 63, 109, 0.72); }
  .theme-dark .profile-area .profile {
    background: linear-gradient(228.99deg, #2a4072 26.74%, #727783bf 109.9%); }
  .theme-dark .profile-area .profile .media img {
    border: 5px solid #2a4072; }
  .theme-dark .get-started {
    background-image: url("../images/background/bg-dark.png"); }
  .theme-dark .payment-wrapper {
    background-color: rgba(255, 255, 255, 0.1); }
  .theme-dark .detail-area.style-2 {
    box-shadow: 0px 18px 24px rgba(16, 30, 44, 0.4); }
  .theme-dark.body-bg {
    /* .purchase-card{
			background-color: #425176;
		} */ }
    .theme-dark.body-bg .title-head {
      color: #fff !important; }
    .theme-dark.body-bg .package-card h6, .theme-dark.body-bg .package-card .h6 {
      color: #000; }
    .theme-dark.body-bg .border-bottom {
      border-bottom: 1px solid #E8EFF3 !important; }
    .theme-dark.body-bg .tag-group .tag-btn {
      color: #011063;
      background-color: var(--primary); }
    .theme-dark.body-bg .feature-wrapper .title-bar .title {
      color: #fff;
      margin-right: -20px; }
    .theme-dark.body-bg .card {
      background-color: #425176; }
    .theme-dark.body-bg .client-area:before {
      background-color: #2a3e69; }
  .theme-dark .menubar-area.style-9 .menubar-nav .nav-link svg ellipse,
  .theme-dark .menubar-area.style-9 .menubar-nav .nav-link svg path {
    stroke: var(--primary); }
  .theme-dark .menubar-area.style-9 .menubar-nav .nav-link span {
    color: #fff; }

.theme-dark[data-theme-color="color-primary"] {
  --primary: #00a349;
  --primary-light: rgba(255, 250, 246, 0.80);
  --primary-light-2: #FFCD90;
  --primary-hover: #02622d;
  --primary-dark: #261543;
  --bg-gradient: linear-gradient(228.99deg, #00a349 26.74%, #5fa980 109.9%);
  --rgba-primary-1: rgba(0, 163, 73, 0.1);
  --rgba-primary-2: rgba(0, 163, 73, 0.2);
  --rgba-primary-3: rgba(0, 163, 73, 0.3);
  --rgba-primary-4: rgba(0, 163, 73, 0.4);
  --rgba-primary-5: rgba(0, 163, 73, 0.5);
  --rgba-primary-6: rgba(0, 163, 73, 0.6);
  --rgba-primary-7: rgba(0, 163, 73, 0.7);
  --rgba-primary-8: rgba(0, 163, 73, 0.8);
  --rgba-primary-9: rgba(0, 163, 73, 0.9); }

.theme-dark[data-theme-color="color-dark"] {
  --primary: #75b2ff;
  --primary-light: rgba(255, 250, 246, 0.80);
  --primary-light-2: #FFCD90;
  --primary-hover: #4e96f1;
  --primary-dark: #4183d7;
  --rgba-primary-1: rgba(117, 178, 255, 0.1);
  --rgba-primary-2: rgba(117, 178, 255, 0.2);
  --rgba-primary-3: rgba(117, 178, 255, 0.3);
  --rgba-primary-4: rgba(117, 178, 255, 0.4);
  --rgba-primary-5: rgba(117, 178, 255, 0.5);
  --rgba-primary-6: rgba(117, 178, 255, 0.6);
  --rgba-primary-7: rgba(117, 178, 255, 0.7);
  --rgba-primary-8: rgba(117, 178, 255, 0.8);
  --rgba-primary-9: rgba(117, 178, 255, 0.9); }

.theme-color-settings {
  padding: 15px 10px 10px;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap; }
  .theme-color-settings span {
    font-size: 0.875rem;
    font-weight: 500; }
  .theme-color-settings li {
    display: inline-block;
    width: 33.33%;
    text-align: center;
    margin-bottom: 20px; }
    .theme-color-settings li input {
      display: none; }
    .theme-color-settings li label {
      background-color: #000;
      width: 40px;
      border-radius: var(--border-radius-base);
      height: 40px;
      margin: 0 auto 5px;
      position: relative;
      display: block; }
      .theme-color-settings li label:after {
        content: "\f00c";
        position: absolute;
        top: 50%;
        left: 50%;
        display: none;
        transform: translate(-50%, -50%);
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 16px;
        color: #fff; }
    .theme-color-settings li input:checked + label:after {
      display: block; }
    .theme-color-settings li input[value="color-primary"] + label {
      background-color: #027335; }
    .theme-color-settings li input[value="color-green"] + label {
      background-color: #4cd964; }
    .theme-color-settings li input[value="color-blue"] + label {
      background-color: #2196f3; }
    .theme-color-settings li input[value="color-pink"] + label {
      background-color: #ff9eb1; }
    .theme-color-settings li input[value="color-yellow"] + label {
      background-color: #ffcc00; }
    .theme-color-settings li input[value="color-orange"] + label {
      background-color: #ff9500; }
    .theme-color-settings li input[value="color-purple"] + label {
      background-color: #9c27b0; }
    .theme-color-settings li input[value="color-red"] + label {
      background-color: #ff3b30; }
    .theme-color-settings li input[value="color-lightblue"] + label {
      background-color: #5ac8fa; }
    .theme-color-settings li input[value="color-teal"] + label {
      background-color: #009688; }
    .theme-color-settings li input[value="color-lime"] + label {
      background-color: #cddc39; }
    .theme-color-settings li input[value="color-deeporange"] + label {
      background-color: #dd4a01; }

/*==== 5. Components ====*/
.imageuploadify.well {
  width: 100%;
  border: 2px dashed var(--border-color) !important;
  background: var(--bg-white);
  border-radius: var(--border-radius-base) !important;
  color: #848484;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  position: relative;
  padding: 0 !important;
  min-height: 48px;
  overflow: hidden; }
  .imageuploadify.well .imageuploadify-images-list i,
  .imageuploadify.well .imageuploadify-images-list .imageuploadify-message {
    display: none; }
  .imageuploadify.well .imageuploadify-images-list .imageuploadify-message {
    border: 0;
    padding: 0;
    font-size: 14px; }
  .imageuploadify.well .imageuploadify-images-list .btn-default {
    color: #7e7e7e !important;
    border-radius: 50px;
    margin: 0;
    background-color: var(--bg-white) !important;
    max-width: 100%;
    border: 0; }
  .imageuploadify.well .imageuploadify-images-list .imageuploadify-container {
    border-radius: 5px;
    box-shadow: unset;
    margin-left: 15px !important;
    border: 1px solid #ddd; }
    .imageuploadify.well .imageuploadify-images-list .imageuploadify-container .imageuploadify-details {
      display: none; }
    .imageuploadify.well .imageuploadify-images-list .imageuploadify-container button.btn-danger {
      padding: 0;
      font-weight: 900; }

.noUi-target {
  border: 0px;
  border-radius: var(--border-radius-base); }

.noUi-connect {
  background-color: var(--primary); }
  .noUi-connects {
    background-color: #eee; }
  .noUi-connect.c-1-color {
    background-color: #1CBD5C; }
  .noUi-connect.c-2-color {
    background-color: #A131AD; }
  .noUi-connect.c-3-color {
    background-color: var(--primary); }
  .noUi-connect.c-4-color {
    background-color: #EF962E; }

.noUi-vertical {
  width: 0.375rem; }

.noUi-horizontal {
  height: 0.475rem;
  margin-bottom: 10px; }

.noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle {
  height: 17px;
  width: 17px;
  border-radius: 50px;
  box-shadow: none;
  border: none;
  background-color: var(--primary); }
  .noUi-horizontal .noUi-handle::after, .noUi-horizontal .noUi-handle::before, .noUi-vertical .noUi-handle::after, .noUi-vertical .noUi-handle::before {
    display: none; }

.noUi-vertical .noUi-handle {
  left: -4px;
  top: -6px; }

.noUi-horizontal .noUi-handle {
  top: -5px; }

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -6px; }

#slider-toggle {
  height: 50px; }

#slider-toggle.off .noUi-handle {
  border-color: var(--primary); }

label input {
  width: 20px;
  height: 20px; }

.card-item .dz-media img {
  width: 100%; }

.card-item .dz-meta ul li {
  display: inline-block; }

.card-item.style-1 {
  border: 1px solid var(--border-color);
  overflow: hidden;
  border-radius: var(--border-radius-base);
  position: relative; }
  .card-item.style-1 .dz-meta ul {
    display: flex;
    justify-content: space-between; }
    .card-item.style-1 .dz-meta ul .review i {
      color: #ffa902;
      margin-left: 3px; }
  .card-item.style-1 .label {
    position: absolute;
    top: 14px;
    right: -25px;
    background-color: #FF4040;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    width: 100px;
    height: 24px;
    transform: rotate(45deg);
    line-height: 24px; }
  .card-item.style-1 .dz-content {
    padding: 10px; }
    .card-item.style-1 .dz-content .title {
      text-align: center;
      font-family: "Lato", sans-serif; }
    .card-item.style-1 .dz-content .add-btn {
      width: 100%;
      height: 36px;
      line-height: 36px;
      padding: 0;
      font-weight: 600;
      position: relative; }
    .card-item.style-1 .dz-content .dz-stepper {
      position: absolute;
      background: var(--bg-white);
      bottom: -50px;
      width: 100%;
      padding: 0px 10px;
      left: 0;
      z-index: 1;
      transition: all 0.5s; }
      .card-item.style-1 .dz-content .dz-stepper .bootstrap-touchspin .input-group-btn .btn {
        width: 36px;
        height: 36px; }
      .card-item.style-1 .dz-content .dz-stepper.active {
        bottom: 10px; }

.card-item.style-2 {
  border-radius: 0.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden; }
  .card-item.style-2 .dz-content {
    padding: 20px 15px 15px; }
  .card-item.style-2 .price {
    font-weight: 600;
    font-size: 18px;
    color: #000; }
    .card-item.style-2 .price del {
      font-size: 12px;
      font-weight: 500;
      color: #929292;
      margin-left: 8px; }
  .card-item.style-2 .qty {
    font-size: 16px;
    line-height: 16px;
    margin-left: auto; }
    .card-item.style-2 .qty strong {
      font-weight: 600;
      margin-right: 5px; }
  .card-item.style-2 .rating {
    display: flex;
    font-size: 12px;
    align-items: center; }
    .card-item.style-2 .rating i {
      color: #FFA800;
      margin-right: 5px; }
  .card-item.style-2 .dz-footer {
    margin-top: 10px; }

.card-item.style-3 {
  position: relative; }
  .card-item.style-3 .r-btn {
    right: 10px;
    left: auto; }
  .card-item.style-3 .dz-media img {
    border-radius: var(--border-radius-base); }
  .card-item.style-3 .dz-content {
    padding: 12px 0 0; }
    .card-item.style-3 .dz-content .item-title {
      font-size: 16px;
      margin-bottom: 0; }
  .card-item.style-3 .price {
    font-weight: 600;
    font-size: 18px;
    margin-right: 10px; }
    .card-item.style-3 .price del {
      font-size: 12px;
      font-weight: 500;
      color: #929292;
      margin-left: 8px; }
  .card-item.style-3 .qty {
    font-size: 14px;
    line-height: 14px;
    position: relative; }
    .card-item.style-3 .qty strong {
      font-weight: 600; }
    .card-item.style-3 .qty:after {
      content: "";
      position: absolute;
      top: 2px;
      left: -6px;
      width: 1px;
      height: 12px;
      background-color: var(--secondary); }
  .card-item.style-3 .rating {
    display: flex;
    font-size: 12px;
    align-items: center; }
    .card-item.style-3 .rating i {
      color: #FFA800;
      margin-right: 5px; }

.card-item.style-4 {
  background-color: var(--rgba-primary-1);
  overflow: unset;
  border: 0;
  text-align: center;
  border-radius: var(--border-radius-base);
  position: relative; }
  .card-item.style-4 .dz-media {
    width: 100%;
    object-fit: cover;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px; }
    .card-item.style-4 .dz-media img {
      max-width: 100%;
      object-fit: cover;
      height: 100%;
      width: auto; }
  .card-item.style-4 .label {
    position: absolute;
    top: 14px;
    right: -25px;
    background-color: #FF4040;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    width: 100px;
    height: 24px;
    transform: rotate(45deg);
    line-height: 24px; }
  .card-item.style-4 .dz-content {
    padding: 10px; }
    .card-item.style-4 .dz-content .title {
      text-align: center;
      font-family: "Poppins", sans-serif; }
    .card-item.style-4 .dz-content span {
      font-size: 14px;
      font-weight: 600; }
    .card-item.style-4 .dz-content .add-btn {
      width: 100%;
      height: 36px;
      line-height: 36px;
      padding: 0;
      font-weight: 600;
      position: relative; }
    .card-item.style-4 .dz-content .dz-stepper {
      position: absolute;
      background: #e8f4fe;
      bottom: -50px;
      width: 100%;
      padding: 0px 10px;
      left: 0;
      z-index: 1;
      transition: all 0.5s; }
      .card-item.style-4 .dz-content .dz-stepper .bootstrap-touchspin .input-group-btn .btn {
        width: 36px;
        height: 36px; }
      .card-item.style-4 .dz-content .dz-stepper.active {
        bottom: 10px; }

.card-item.style-5 {
  background-color: var(--card-bg);
  overflow: unset;
  border: 0;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: var(--border-radius-base);
  position: relative; }
  .card-item.style-5 .dz-media {
    width: 100%;
    object-fit: contain;
    height: 135px;
    text-align: center;
    padding-top: 20px; }
    .card-item.style-5 .dz-media img {
      max-width: 100%;
      object-fit: cover;
      height: 100%;
      width: auto; }
  .card-item.style-5 .dz-content {
    padding: 10px; }
    .card-item.style-5 .dz-content a {
      display: block; }
    .card-item.style-5 .dz-content .title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px; }
    .card-item.style-5 .dz-content .price {
      font-family: "Poppins", sans-serif;
      font-size: 18px;
      margin-bottom: 0;
      font-weight: 600; }
    .card-item.style-5 .dz-content span {
      font-size: 14px;
      font-weight: 600; }
    .card-item.style-5 .dz-content .add-btn {
      width: 30px;
      height: 30px;
      line-height: 30px;
      color: #fff;
      background-color: var(--primary);
      text-align: center;
      border-radius: 50%;
      position: absolute;
      top: 10px;
      right: 10px; }

.card-item.style-6 {
  background-color: var(--card-bg);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  width: 230px;
  border-radius: var(--border-radius-base);
  overflow: hidden; }
  .card-item.style-6 .dz-content {
    padding: 6px 12px 12px 12px; }
    .card-item.style-6 .dz-content .product-title {
      font-weight: 500;
      font-size: 12px;
      display: block;
      margin-bottom: 8px;
      color: var(--primary); }
    .card-item.style-6 .dz-content .item-name {
      font-size: 14px;
      line-height: 1.4;
      color: #4a4a4a;
      font-weight: 500; }
    .card-item.style-6 .dz-content .offer-code {
      color: #eb8e57;
      font-size: 12px;
      margin-bottom: 10px; }
  .card-item.style-6 .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .card-item.style-6 .price-wrapper {
    display: flex;
    align-items: center; }
    .card-item.style-6 .price-wrapper .current-price {
      color: var(--primary);
      font-size: 18px;
      margin-bottom: 0;
      margin-right: 5px; }
    .card-item.style-6 .price-wrapper .old-price {
      position: relative;
      font-size: 13px;
      color: #a5a5a5; }
      .card-item.style-6 .price-wrapper .old-price:after {
        position: absolute;
        content: "";
        background-color: #a5a5a5;
        width: 100%;
        height: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }

.card-item.style-7 {
  border-radius: var(--border-radius-base);
  overflow: hidden;
  position: relative; }
  .card-item.style-7 .dz-content {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 10px 2px;
    border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
    z-index: 1;
    backdrop-filter: blur(3px); }
    .card-item.style-7 .dz-content span {
      font-size: 12px; }
      .card-item.style-7 .dz-content span:first-child {
        font-size: 10px; }
    .card-item.style-7 .dz-content .title {
      font-weight: 600;
      color: #fff;
      font-size: 15px;
      margin-bottom: 0;
      line-height: 0.8; }

.card-item.style-8 {
  background-color: var(--card-bg);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  width: 230px;
  border-radius: var(--border-radius-base);
  overflow: hidden; }
  .card-item.style-8 .dz-media img {
    border-radius: 0px 0px 12px 12px;
    box-shadow: 0 4px 10px -4px rgba(125, 125, 125, 0.6); }
  .card-item.style-8 .dz-content {
    padding: 12px; }
    .card-item.style-8 .dz-content .product-title {
      font-weight: 500;
      font-size: 12px;
      display: block;
      margin-bottom: 8px;
      color: var(--primary); }
    .card-item.style-8 .dz-content .item-name {
      font-size: 16px;
      line-height: 1.4;
      color: #4a4a4a;
      font-weight: 600;
      display: flex;
      align-items: center;
      margin-bottom: 0; }
    .card-item.style-8 .dz-content .address {
      font-size: 12px;
      margin-bottom: 5px; }
    .card-item.style-8 .dz-content .offer {
      color: #eb8e57;
      margin-bottom: 0;
      font-size: 12px; }
      .card-item.style-8 .dz-content .offer svg {
        width: 20px;
        height: 20px; }
        .card-item.style-8 .dz-content .offer svg path {
          fill: #eb8e57; }

.card-item.style-9 {
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--border-radius-base);
  overflow: hidden;
  position: relative;
  z-index: 1; }
  .card-item.style-9 .dz-media {
    position: relative;
    display: block;
    z-index: 9; }
    .card-item.style-9 .dz-media img {
      border-radius: 0px 0px 12px 12px;
      box-shadow: 0 4px 10px -4px rgba(125, 125, 125, 0.6); }
    .card-item.style-9 .dz-media:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 4%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.639093) 90%); }
  .card-item.style-9 .dz-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px;
    width: 100%;
    z-index: 9;
    border-radius: 0 0 12px 12px; }
    .card-item.style-9 .dz-content .product-title {
      font-weight: 500;
      font-size: 12px;
      display: block;
      margin-bottom: 8px;
      color: var(--primary); }
    .card-item.style-9 .dz-content .item-name {
      font-size: 16px;
      line-height: 1.4;
      color: #fff;
      font-weight: 600;
      display: flex;
      align-items: center;
      margin-bottom: 0; }
      .card-item.style-9 .dz-content .item-name a {
        color: #fff; }
    .card-item.style-9 .dz-content .address {
      font-size: 12px;
      margin-bottom: 5px;
      color: #fff; }
    .card-item.style-9 .dz-content .offer {
      color: #eb8e57;
      margin-bottom: 0;
      font-size: 12px; }
      .card-item.style-9 .dz-content .offer svg {
        width: 20px;
        height: 20px; }
        .card-item.style-9 .dz-content .offer svg path {
          fill: #eb8e57; }

.card-item.style-10 {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-base);
  display: block; }
  .card-item.style-10:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    background: linear-gradient(0deg, #293041, rgba(0, 0, 0, 0));
    opacity: 0.3; }
  .card-item.style-10 .dz-media img {
    border-radius: var(--border-radius-base); }
  .card-item.style-10 .dz-name {
    position: absolute;
    bottom: 8px;
    left: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    color: #fff; }
  .card-item.style-10 .dz-item {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--primary);
    color: #fff;
    padding: 3px 7px;
    border-radius: 6px;
    z-index: 2; }

.reviews-info.style-1 {
  display: flex;
  align-items: center;
  background-color: var(--rgba-primary-2);
  padding: 4px 6px;
  border-radius: 5px;
  justify-content: center;
  margin-right: 12px; }
  .reviews-info.style-1 i {
    color: var(--primary);
    margin-right: 5px; }
  .reviews-info.style-1 .reviews {
    font-size: 14px; }

.reviews-info.sm {
  margin-right: 0;
  background-color: var(--primary); }
  .reviews-info.sm i {
    font-size: 10px;
    margin-right: 2px;
    color: #fff; }
  .reviews-info.sm .reviews {
    color: #fff;
    font-size: 12px;
    line-height: 1.1; }

.reviews-info.style-2 {
  background-color: unset;
  display: flex;
  align-items: center; }
  .reviews-info.style-2 i, .reviews-info.style-2 .reviews {
    color: var(--primary);
    font-size: 12px; }

.categore-box {
  width: 90px;
  height: 96px;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: var(--border-radius-base);
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .categore-box svg {
    width: 24px;
    height: 24px;
    margin-bottom: 8px; }
  .categore-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(40, 176, 206, 0.85); }
  .categore-box.bg-2:after {
    background: rgba(20, 171, 135, 0.85); }
  .categore-box.bg-3:after {
    background: rgba(161, 49, 173, 0.85); }
  .categore-box.bg-4:after {
    background: rgba(174, 113, 86, 0.85); }
  .categore-box.bg-5:after {
    background: rgba(46, 101, 207, 0.82); }
  .categore-box.bg-6:after {
    background: rgba(28, 189, 92, 0.85); }
  .categore-box.bg-7:after {
    background: rgba(232, 82, 118, 0.85); }
  .categore-box.bg-8:after {
    background: rgba(239, 150, 46, 0.85); }
  .categore-box.box-lg {
    width: 100%;
    height: 160px;
    box-shadow: 0px 12px 30px 0px rgba(48, 48, 48, 0.08); }
    .categore-box.box-lg svg {
      width: auto;
      height: auto; }
  .categore-box.style-1 {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    align-items: unset;
    flex-direction: unset;
    background-size: unset;
    background-repeat: unset;
    background-position: unset;
    background-color: var(--rgba-primary-1);
    transform: rotate(-10deg);
    border-radius: 50%; }
    .categore-box.style-1:after {
      content: none; }
  .categore-box.style-2 {
    width: 80px;
    height: 80px;
    margin-bottom: 30px !important;
    margin: 0 auto 10px;
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
    border-radius: var(--border-radius-base);
    background-color: var(--card-bg); }
    .categore-box.style-2:after {
      content: none; }
    .categore-box.style-2.box-lg {
      width: 100%;
      height: 160px;
      margin-bottom: 0 !important; }
      .categore-box.style-2.box-lg svg {
        width: 50px;
        height: 50px; }

.pricing-table {
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  border: 1px solid var(--primary);
  border-radius: var(--border-radius-base);
  max-width: 300px;
  padding: 40px 25px 20px;
  margin: 0 auto 30px; }
  .pricing-table .price-head {
    text-align: center;
    margin-bottom: 15px; }
    .pricing-table .price-head .title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px; }
      .pricing-table .price-head .title small, .pricing-table .price-head .title .small {
        font-weight: 600;
        font-size: 14px;
        display: unset; }
    .pricing-table .price-head p {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 0;
      color: var(--primary); }
  .pricing-table .price-list {
    margin-bottom: 15px; }
    .pricing-table .price-list ul li {
      font-weight: 500;
      display: flex;
      align-items: center;
      padding-bottom: 12px; }
      .pricing-table .price-list ul li i {
        font-size: 18px;
        color: var(--primary);
        margin-right: 8px; }
  .pricing-table.style-2 {
    border: 0;
    position: relative;
    margin-top: 80px; }
    .pricing-table.style-2 .price-head {
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 1px solid var(--border-color);
      padding: 30px 20px; }
      .pricing-table.style-2 .price-head .dz-icon {
        width: 90px;
        height: 90px;
        margin: 0;
        background-color: var(--bg-white);
        box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%); }
        .pricing-table.style-2 .price-head .dz-icon img {
          border-radius: 0;
          width: 50%; }
      .pricing-table.style-2 .price-head p {
        margin-bottom: 15px; }
    .pricing-table.style-2 .price-list {
      margin-bottom: 0; }
  .pricing-table.style-3 {
    border: 0;
    position: relative;
    background: var(--rgba-primary-1);
    border: 10px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 25px 20px; }
    .pricing-table.style-3 .price-head {
      text-align: left;
      margin-bottom: 30px; }
      .pricing-table.style-3 .price-head .price {
        background-color: var(--secondary);
        width: 110px;
        display: flex;
        align-items: center;
        height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        padding: 0 15px;
        border-radius: 50px 0 0 50px; }
        .pricing-table.style-3 .price-head .price .title {
          margin-bottom: 0;
          color: #fff;
          font-size: 20px;
          font-weight: 500; }
      .pricing-table.style-3 .price-head p {
        margin-bottom: 15px; }

.icon-box {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .icon-box svg {
    width: 20px;
    height: 20px; }

.icon-box-2 {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  align-items: center;
  display: flex;
  border-radius: 8px;
  justify-content: center; }
  .icon-box-2 svg {
    width: 20px;
    height: 20px; }
    .icon-box-2 svg path {
      fill: #fff; }

.icon-box-3 {
  width: 45px !important;
  min-width: 45px !important;
  height: 45px !important;
  align-items: center;
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  justify-content: center; }
  .icon-box-3 svg {
    width: 20px !important;
    height: 20px !important; }
    .icon-box-3 svg path {
      fill: #fff; }
  .icon-box-3.icon-sm {
    width: 35px !important;
    min-width: 35px !important;
    height: 35px !important; }
    .icon-box-3.icon-sm svg {
      width: 16px !important;
      height: 16px !important; }

.icon-box-4 {
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 35px !important;
  min-width: 35px !important;
  height: 35px !important;
  align-items: center;
  display: flex;
  background-color: var(--rgba-primary-1);
  border-radius: 8px;
  justify-content: center; }
  .icon-box-4 svg {
    width: 20px !important;
    height: 20px !important; }
    .icon-box-4 svg path {
      fill: #fff; }

.icon-box-5 {
  width: 45px !important;
  min-width: 45px !important;
  height: 45px !important;
  align-items: center;
  margin: auto;
  display: flex;
  background-color: var(--rgba-primary-5);
  border-radius: 50%;
  justify-content: center; }
  .icon-box-5 svg {
    width: 20px !important;
    height: 20px !important; }
    .icon-box-5 svg path {
      fill: #fff; }

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #303733;
  margin-bottom: 10px;
  background: transparent;
  border-color: #F0F0F0; }

.input-icon + .form-control {
  padding: 0 10px 0 48px; }

.form-control {
  height: 48px;
  border: 2px solid #E8EFF3;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease-in-out;
  background: var(--bg-white);
  border-radius: var(--border-radius-base); }
  .form-control .select {
    padding: 12px 0; }
  .form-control.form-control-lg {
    height: 4rem;
    font-size: 1rem; }
  .form-control.form-control-sm {
    height: 2.813rem;
    font-size: 0.875rem; }
  .form-control span {
    margin-top: 0; }
  .form-control::-webkit-input-placeholder {
    color: #7D8FAB; }
  .form-control:-ms-input-placeholder {
    color: #7D8FAB; }
  .form-control::placeholder {
    color: #7D8FAB; }
  .form-control:focus, .form-control:active, .form-control.active {
    border-color: var(--primary);
    background: #fff;
    color: var(--dark); }
  .form-control.style-1 {
    border: 1px solid #F0F0F0; }

textarea.form-control {
  min-height: unset;
  height: auto; }
  textarea.form-control[rows] {
    height: auto; }

textarea {
  height: 120px;
  resize: none; }

.input-group {
  margin-bottom: 15px; }
  .input-group.input-select .input-group-text {
    padding: 10px 6px 10px 10px; }
  .input-group .input-group-text {
    background-color: var(--bg-white) !important;
    color: #a19fa8;
    border-width: 2px;
    border-color: var(--border-color);
    border-radius: var(--border-radius-base);
    transition: all 0.3s ease-in-out;
    padding: 10px 15px; }
  .input-group.search-input .btn-close {
    width: 24px;
    position: absolute;
    line-height: 26px;
    height: 24px;
    padding: 0 !important;
    font-size: 0.875rem;
    right: 10px;
    border-radius: 50% !important;
    z-index: 999;
    text-align: center;
    background: #B9B9B9;
    top: 50%;
    display: none;
    transform: translateY(-50%); }
  .input-group.search-input .form-control {
    border-radius: 45px !important; }

.bt-0 {
  border-top: 0 !important; }

.bb-0 {
  border-bottom: 0 !important; }

.be-0 {
  border-right: 0 !important; }

.bs-0 {
  border-left: 0 !important; }

.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control {
  border-color: var(--primary); }

.show-pass {
  cursor: pointer; }
  .show-pass .fa-eye {
    display: none; }

.show-pass.active .fa-eye-slash {
  display: none; }

.show-pass.active .fa-eye {
  display: inline-block; }

select {
  width: 100%;
  height: 48px;
  color: #7e7e7e;
  border: 1px solid #ddd;
  border-radius: 45px; }

.form-check {
  display: flex;
  align-items: center; }
  .form-check .form-check-input {
    width: 24px;
    height: 24px;
    margin-top: 0;
    border: 2px solid var(--primary); }
    .form-check .form-check-input:checked {
      background-color: var(--primary); }
  .form-check .form-check-label {
    margin-left: 8px;
    color: var(--dark);
    font-size: 16px; }

/* == Icon Checkbox == */
.check-box {
  margin-left: -30px;
  margin-right: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  width: auto;
  display: block; }
  .check-box input {
    position: absolute !important;
    transform: translateX(-10000px); }
    .check-box input:checked ~ .check-1 {
      opacity: 0 !important;
      display: none !important; }
    .check-box input:checked ~ .check-2 {
      display: block;
      color: var(--primary); }
  .check-box .fa-check-circle {
    display: none; }
  .check-box i {
    width: 20px;
    text-align: center;
    pointer-events: none;
    position: absolute;
    left: 30px;
    font-size: 1.125rem;
    top: 1px;
    height: 24px;
    line-height: 24px; }
  .check-box label {
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    padding: 0 15px 0 35px; }
  .check-box .check-2 {
    display: none; }

.input-group-text {
  background-color: transparent !important; }

.input-group-text ~ .form-control {
  padding-left: 0; }

.input-radius textarea.form-control {
  border-radius: 15px; }

.input-group > :not(:first-child) {
  border-left: 0; }

.input-group > :not(:last-child) {
  border-right: 0; }

.input-group-icon .input-group-text {
  background-color: #E8EFF3 !important; }
  .input-group-icon .input-group-text:not(.show-pass) {
    padding: 4px; }
    .input-group-icon .input-group-text:not(.show-pass) .input-icon {
      background-color: transparent !important;
      color: #7D8FAB;
      padding: 0;
      width: 38px;
      height: 38px;
      line-height: 38px;
      border-radius: calc(var(--border-radius-base) - 4px);
      text-align: center;
      display: block;
      font-size: 1rem; }
      .input-group-icon .input-group-text:not(.show-pass) .input-icon svg {
        width: 18px;
        height: 18px; }

.input-group-icon .form-control {
  padding-left: 10px;
  background: #E8EFF3;
  font-size: 1rem;
  height: 50px;
  font-weight: 500;
  color: #000000; }

.input-group-icon.input-lg .input-group-text:not(.show-pass) {
  height: 60px;
  padding: 8px; }
  .input-group-icon.input-lg .input-group-text:not(.show-pass) .input-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
    line-height: 45px; }
    .input-group-icon.input-lg .input-group-text:not(.show-pass) .input-icon svg {
      width: 24px;
      height: 24px; }

.input-group-icon.input-lg .form-control {
  height: 60px; }

.input-group-icon.input-sm .input-group-text:not(.show-pass) {
  height: 45px;
  padding: 5px; }
  .input-group-icon.input-sm .input-group-text:not(.show-pass) .input-icon {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px; }
    .input-group-icon.input-sm .input-group-text:not(.show-pass) .input-icon svg {
      width: 14px;
      height: 14px; }

.input-group-icon.input-sm .form-control {
  padding-left: 6px;
  height: 45px;
  font-size: 0.875rem; }

.input-mini .input-group-text {
  padding: 10px 15px; }

.input-mini .input-group-text,
.input-mini .form-control {
  border-radius: 0;
  border-width: 0 0 1px;
  background-color: transparent; }

.input-mini .form-control {
  padding-left: 5px; }

.form-control.custom-image-select-2 {
  padding: 8px !important;
  border-radius: 0.35rem; }
  .form-control.custom-image-select-2 img {
    width: 30px;
    min-width: 30px;
    margin-right: 5px;
    height: 20px;
    border-radius: 4px; }
  .form-control.custom-image-select-2 .dropdown-menu {
    width: 100%; }
  .form-control.custom-image-select-2 .dropdown-toggle {
    border: 0 !important;
    padding: 0;
    position: relative; }
    .form-control.custom-image-select-2 .dropdown-toggle:focus {
      outline: none !important;
      outline-offset: none !important; }
    .form-control.custom-image-select-2 .dropdown-toggle.btn-light {
      background-color: var(--bg-white); }
    .form-control.custom-image-select-2 .dropdown-toggle:after {
      content: '\f107';
      position: absolute;
      font-weight: 900;
      top: 50%;
      right: 0;
      margin-top: 0;
      font-family: 'Font Awesome 6 Free';
      border: 0 !important;
      transform: translateY(-50%); }
  .form-control.custom-image-select-2 .filter-option-inner-inner {
    margin-right: 15px; }
  .form-control.custom-image-select-2 .dropdown-menu .dropdown-item {
    padding: 10px 15px 10px 15px;
    text-align: left; }

.dz-form-select {
  background-color: #E8EFF3;
  border-radius: var(--border-radius-base);
  border: 2px solid var(--border-color); }
  .dz-form-select:focus {
    border-color: var(--primary);
    box-shadow: none; }
  .dz-form-select .selected {
    font-size: 16px;
    color: #7D8FAB; }
  .dz-form-select.style-2 {
    background-image: url(../images/down.svg);
    background-color: transparent;
    border: 0;
    width: auto;
    background-size: 12px;
    padding: 6px 30px 6px 6px;
    color: var(--primary);
    font-weight: 500; }

.form-item {
  margin-bottom: 15px;
  width: 100%; }
  .form-item .form-control {
    border-radius: var(--border-radius-base);
    padding: 10px; }
  .form-item .form-label {
    font-size: 0.875rem;
    font-weight: 500; }

.accordion-primary .accordion-header {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0.9375rem 1.25rem 0 var(--rgba-primary-1); }
  .accordion-primary .accordion-header.collapsed {
    background: var(--rgba-primary-1);
    border-color: var(--rgba-primary-1);
    color: var(--primary);
    box-shadow: none; }

.accordion-primary-solid .accordion-header {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 -0.625rem 1.25rem 0 var(--rgba-primary-1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
  .accordion-primary-solid .accordion-header.collapsed {
    background: var(--rgba-primary-1);
    border-color: var(--rgba-primary-1);
    color: var(--primary);
    box-shadow: none;
    border-bottom-left-radius: var(--border-radius-base);
    border-bottom-right-radius: var(--border-radius-base); }

.accordion-primary-solid .accordion__body {
  border: 0.125rem solid var(--primary);
  border-top: none;
  box-shadow: 0 0.9375rem 1.25rem 0 var(--rgba-primary-1);
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.accordion-danger .accordion-header.collapsed {
  background: #AE7156;
  border-color: #AE7156;
  color: #fff;
  box-shadow: 0 0.9375rem 1.25rem 0 rgba(174, 113, 86, 0.15);
  background: #e0c8bd;
  border-color: #e0c8bd;
  color: #211c37;
  box-shadow: none; }

.accordion-danger-solid .accordion-header {
  background: #AE7156;
  border-color: #AE7156;
  color: #fff;
  box-shadow: 0 -0.625rem 1.25rem 0 rgba(174, 113, 86, 0.15);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
  .accordion-danger-solid .accordion-header.collapsed {
    background: #e0c8bd;
    border-color: #e0c8bd;
    color: #ff4242;
    box-shadow: none;
    border-bottom-left-radius: var(--border-radius-base);
    border-bottom-right-radius: var(--border-radius-base); }

.accordion-danger-solid .accordion__body {
  border: 0.125rem solid #AE7156;
  border-top: none;
  box-shadow: 0 0.9375rem 1.25rem 0 rgba(174, 113, 86, 0.15);
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.accordion-item {
  margin-bottom: 0.25rem;
  background: none;
  border: none; }

.accordion-header {
  padding: 0.6rem 0.95rem;
  border: 0.0625rem solid var(--border-color);
  cursor: pointer;
  position: relative;
  color: #211c37;
  font-weight: 400;
  border-radius: var(--border-radius-base);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .accordion-header-indicator {
    font-family: 'themify';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%); }
    .accordion-header-indicator.indicator_bordered {
      display: inline-block;
      width: 1.5625rem;
      text-align: center;
      height: 1.5625rem;
      border: 0.0625rem solid #E8EFF3;
      border-radius: 50%;
      line-height: 1.5625rem; }
    .accordion-header-indicator::before {
      content: "\e61a";
      transition: all 0.2s ease-in-out;
      display: block;
      transform: rotate(180deg); }
      @media (prefers-reduced-motion: reduce) {
        .accordion-header-indicator::before {
          transition: none; } }
    .accordion-header-indicator.style_two::before {
      content: "\e64b";
      transform: rotate(0); }
  .accordion-header.collapsed .accordion-header-indicator::before {
    transform: rotate(0); }
  .accordion-header.collapsed .accordion-header-indicator.style_two::before {
    transform: rotate(-90deg); }

.accordion-body-text {
  padding: 0.875rem 1.25rem; }

.accordion-bordered .accordion__body {
  border: 0.0625rem solid #E8EFF3;
  border-top: none;
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.accordion-bordered .accordion-header.collapsed {
  border-radius: var(--border-radius-base); }

.accordion-bordered .accordion-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.accordion-no-gutter .accordion-item .accordion-header.collapsed {
  border-bottom: none; }

.accordion-no-gutter .accordion-item:last-child .accordion-header {
  border-bottom: 0.0625rem solid transparent; }

.accordion-no-gutter.accordion__bordered .accordion-item:not(:last-child) .accordion__body {
  border-bottom: none; }

.accordion-left-indicator .accordion-header-text {
  padding-left: 2.5rem; }

.accordion-left-indicator .accordion-header-indicator {
  right: auto;
  left: 1.5625rem; }

.accordion-with-icon .accordion-header-text {
  padding-left: 2.5rem; }

.accordion-with-icon .accordion-header-icon {
  position: absolute;
  right: auto;
  left: 1.5625rem;
  font-family: 'themify'; }
  .accordion-with-icon .accordion-header-icon::before {
    content: "\e645"; }

.accordion-header-bg .accordion-header {
  background-color: #28B0CE;
  color: #fff; }
  .accordion-header-bg .accordion-header-primary {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary); }
  .accordion-header-bg .accordion-header-info {
    background-color: #A131AD;
    color: #fff;
    border-color: #A131AD; }
  .accordion-header-bg .accordion-header-success {
    background-color: #1CBD5C;
    color: #fff;
    border-color: #1CBD5C; }

.accordion-header-bg.accordion-no-gutter .accordion-header {
  border-color: transparent;
  border-radius: 0; }

.accordion-header-bg.accordion-no-gutter .accordion-item:first-child .accordion-header {
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base); }

.accordion-header-bg.accordion-no-gutter .accordion-item:last-child .accordion-header {
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.accordion.accordion-no-gutter .accordion-header {
  border-radius: 0; }

.accordion.accordion-no-gutter .accordion-header.collapsed {
  border-radius: 0; }

.accordion.accordion-no-gutter .accordion__body {
  border-radius: 0; }

.accordion.accordion-no-gutter .accordion-item:first-child .accordion-header {
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base); }

.accordion.accordion-no-gutter .accordion-item:last-child .accordion-header.collapsed {
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.accordion.accordion-no-gutter .accordion-item:last-child .accordion__body {
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.accordion-solid-bg .accordion-header {
  border-color: transparent;
  background-color: var(--rgba-primary-1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
  .accordion-solid-bg .accordion-header.collapsed {
    border-radius: var(--border-radius-base); }

.accordion-solid-bg .accordion__body {
  border-color: transparent;
  background-color: var(--rgba-primary-1);
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.accordion-active-header .accordion-header:not(.collapsed) {
  background-color: #A131AD;
  border-color: #A131AD;
  color: #fff; }

.accordion-header-shadow .accordion-header {
  border: none;
  box-shadow: 0 0 0.9375rem -0.1875rem rgba(0, 0, 0, 0.3); }

.accordion-rounded-stylish .accordion-header {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem; }

.accordion-rounded-stylish .accordion__body {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem; }

.accordion-rounded .accordion-header {
  border-radius: 0.3125rem; }

.accordion-gradient .accordion-header {
  color: #fff;
  background-image: linear-gradient(to right, rgba(186, 1, 181, 0.85) 0%, rgba(103, 25, 255, 0.85) 100%);
  border-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
  .accordion-gradient .accordion-header.collapsed {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem; }

.accordion-gradient .accordion__body {
  color: #fff;
  background-image: linear-gradient(to right, rgba(186, 1, 181, 0.85) 0%, rgba(103, 25, 255, 0.85) 100%);
  border-color: transparent; }

.accordion.style-2 .accordion-item {
  box-shadow: 0 0 12px -4px #efd5d5;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-base);
  overflow: hidden; }
  .accordion.style-2 .accordion-item .accordion-header {
    border-radius: 0;
    border: 0;
    padding: 0;
    overflow: hidden; }
    .accordion.style-2 .accordion-item .accordion-header .accordion-button {
      border-radius: 0;
      background-color: var(--bg-white);
      color: var(--dark);
      box-shadow: none;
      padding: 12px 14px;
      font-size: 14px;
      font-weight: 600; }
      .accordion.style-2 .accordion-item .accordion-header .accordion-button:focus {
        background-color: var(--bg-white); }
  .accordion.style-2 .accordion-item .accordion-body {
    padding: 15px;
    background-color: var(--bg-white); }

.accordion.style-3 .accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius-base);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  padding: 15px;
  margin: 0 -15px 0 -15px; }
  .accordion.style-3 .accordion-item .accordion-header {
    border-radius: 0;
    border: 0;
    padding: 0;
    overflow: hidden; }
    .accordion.style-3 .accordion-item .accordion-header .accordion-button {
      border-radius: 0;
      background-color: var(--bg-white);
      color: var(--dark);
      box-shadow: none;
      padding: 0;
      font-size: 14px;
      font-weight: 600; }
      .accordion.style-3 .accordion-item .accordion-header .accordion-button:focus {
        background-color: var(--bg-white); }
      .accordion.style-3 .accordion-item .accordion-header .accordion-button .icon-box.bg-primary {
        background-color: var(--rgba-primary-2) !important; }
        .accordion.style-3 .accordion-item .accordion-header .accordion-button .icon-box.bg-primary svg path {
          fill: var(--primary); }
      .accordion.style-3 .accordion-item .accordion-header .accordion-button .icon-box.bg-danger {
        background-color: rgba(228, 43, 43, 0.2) !important; }
        .accordion.style-3 .accordion-item .accordion-header .accordion-button .icon-box.bg-danger svg path {
          fill: #E42B2B; }
      .accordion.style-3 .accordion-item .accordion-header .accordion-button.collapsed .icon-box {
        background-color: #FFA902; }
        .accordion.style-3 .accordion-item .accordion-header .accordion-button.collapsed .icon-box svg path {
          fill: #fff; }
        .accordion.style-3 .accordion-item .accordion-header .accordion-button.collapsed .icon-box.bg-primary {
          background-color: var(--primary) !important; }
          .accordion.style-3 .accordion-item .accordion-header .accordion-button.collapsed .icon-box.bg-primary svg path {
            fill: #fff; }
        .accordion.style-3 .accordion-item .accordion-header .accordion-button.collapsed .icon-box.bg-danger {
          background-color: #E42B2B !important; }
          .accordion.style-3 .accordion-item .accordion-header .accordion-button.collapsed .icon-box.bg-danger svg path {
            fill: #fff; }
  .accordion.style-3 .accordion-item .accordion-body {
    padding: 15px 0;
    background-color: var(--bg-white); }

.accordion-full .accordion-header {
  border-radius: 0;
  border-width: 1px 0 0 0;
  padding: 0.6rem 1.25rem; }

.accordion-full .accordion-item {
  margin-bottom: -1px; }

.alert {
  border-radius: var(--border-radius-base);
  padding: 0.5rem 1.4rem 0.5rem 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem; }
  .alert p {
    line-height: 1.5; }

.alert-square {
  border-radius: 0; }

.alert-rounded {
  border-radius: 1.875rem; }

.alert-primary {
  background: var(--rgba-primary-1);
  border-color: var(--rgba-primary-1);
  color: var(--primary); }

.alert-secondary {
  background: #a2dfed;
  border-color: #a2dfed;
  color: #28B0CE; }

.alert-success {
  background: #85edae;
  border-color: #85edae;
  color: #1CBD5C; }

.alert-warning {
  background: #faddbc;
  border-color: #faddbc;
  color: #EF962E; }

.alert-danger {
  background: #e0c8bd;
  border-color: #e0c8bd;
  color: #AE7156; }

.alert-info {
  background: #e1aae7;
  border-color: #e1aae7;
  color: #A131AD; }

.alert-dark {
  background: #a4adc5;
  border-color: #a4adc5;
  color: #293041; }

.alert-light {
  background: #E6E6E6;
  border-color: #E6E6E6;
  color: #293041; }

.alert-alt.alert-primary {
  border-left: 0.25rem solid var(--primary); }

.alert-alt.alert-secondary {
  border-left: 0.25rem solid #28B0CE; }

.alert-alt.alert-success {
  border-left: 0.25rem solid #1CBD5C; }

.alert-alt.alert-warning {
  border-left: 0.25rem solid #EF962E; }

.alert-alt.alert-danger {
  border-left: 0.25rem solid #AE7156; }

.alert-alt.alert-info {
  border-left: 0.25rem solid #A131AD; }

.alert-alt.alert-dark {
  border-left: 0.25rem solid #293041; }

.alert-alt.alert-light {
  border-left: 0.25rem solid silver; }

.alert-alt.alert-primary.solid {
  border-left: 0.25rem solid var(--primary-dark) !important; }

.alert-alt.alert-secondary.solid {
  border-left: 0.25rem solid #135563 !important; }

.alert-alt.alert-success.solid {
  border-left: 0.25rem solid #0c4e26 !important; }

.alert-alt.alert-warning.solid {
  border-left: 0.25rem solid #92540b !important; }

.alert-alt.alert-danger.solid {
  border-left: 0.25rem solid #5a392b !important; }

.alert-alt.alert-info.solid {
  border-left: 0.25rem solid #45154a !important; }

.alert-alt.alert-dark.solid {
  border-left: 0.25rem solid black !important; }

.alert-alt.alert-light.solid {
  border-left: 0.25rem solid #a6a6a6 !important; }

.alert.alert-primary.light .btn-close,
.alert.alert-secondary.light .btn-close,
.alert.alert-success.light .btn-close,
.alert.alert-warning.light .btn-close,
.alert.alert-danger.light .btn-close,
.alert.alert-info.light .btn-close,
.alert.alert-dark.light .btn-close {
  color: #293041 !important; }

.alert-dismissible .btn-close {
  padding: 8px 6px;
  background: transparent;
  opacity: 1;
  color: #fff; }

.alert-dismissible.solid .close:hover {
  color: #fff;
  opacity: 1; }

.alert-light.alert-dismissible .btn-close {
  color: #6e6e6e; }

.alert.alert-primary.solid {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary); }

.alert.alert-secondary.solid {
  background: #28B0CE;
  color: #fff;
  border-color: #28B0CE; }

.alert.alert-success.solid {
  background: #1CBD5C;
  color: #fff;
  border-color: #1CBD5C; }

.alert.alert-warning.solid {
  background: #EF962E;
  color: #fff;
  border-color: #EF962E; }

.alert.alert-danger.solid {
  background: #AE7156;
  color: #fff;
  border-color: #AE7156; }

.alert.alert-info.solid {
  background: #A131AD;
  color: #fff;
  border-color: #A131AD; }

.alert.alert-dark.solid {
  background: #293041;
  color: #fff;
  border-color: #293041; }

.alert.alert-light.solid {
  background: #E6E6E6;
  color: #293041;
  border-color: #E6E6E6; }

.alert-right-icon > span i {
  font-size: 1.125rem;
  margin-right: 0.3125rem; }

.alert-right-icon .close i {
  font-size: 1rem; }

.alert.alert-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary); }

.alert.alert-outline-secondary {
  background: transparent;
  color: #303733;
  border-color: #28B0CE; }

.alert.alert-outline-success {
  background: transparent;
  color: #1CBD5C;
  border-color: #1CBD5C; }

.alert.alert-outline-info {
  background: transparent;
  color: #A131AD;
  border-color: #A131AD; }

.alert.alert-outline-warning {
  background: transparent;
  color: #EF962E;
  border-color: #EF962E; }

.alert.alert-outline-danger {
  background: transparent;
  color: #AE7156;
  border-color: #AE7156; }

.alert.alert-outline-dark {
  background: transparent;
  color: #303733;
  border-color: #293041; }

.alert.alert-outline-light {
  background: transparent;
  color: #293041;
  border-color: #E6E6E6; }

.alert-social {
  color: #fff; }
  .alert-social .alert-social-icon {
    align-self: center;
    margin-right: 0.9375rem; }
    .alert-social .alert-social-icon i {
      font-size: 2.625rem; }
  .alert-social.facebook {
    background-color: #3b5998; }
  .alert-social.twitter {
    background-color: #1da1f2; }
  .alert-social.linkedin {
    background-color: #007bb6; }
  .alert-social.google-plus {
    background-color: #db4439; }
  .alert-social .close:hover {
    opacity: 1 !important;
    color: #fff !important; }

.left-icon-big .alert-left-icon-big {
  align-self: center;
  margin-right: 0.9375rem; }
  .left-icon-big .alert-left-icon-big i {
    font-size: 2.1875rem;
    line-height: 1; }

.badge {
  line-height: 1;
  border-radius: var(--border-radius-base);
  padding: 4px 8px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600; }
  .badge.style-1 {
    background: transparent;
    box-shadow: none;
    position: relative;
    padding: 0px 15px; }
    .badge.style-1:after {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      top: 50%;
      left: 0;
      background-color: var(--secondary);
      transform: translateY(-50%); }
  .badge.style-2 {
    background: transparent;
    box-shadow: none;
    position: relative;
    padding: 0px 15px; }
    .badge.style-2:after {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      top: 50%;
      left: 0;
      background-color: #1CBD5C;
      transform: translateY(-50%); }
  .badge.notification {
    padding: 1.5rem 1.5rem; }
  .badge.counter {
    position: absolute;
    z-index: 2;
    right: -8px;
    top: -6px;
    font-weight: 600;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    padding: 3px 4px;
    font-size: 12px; }
  .badge.badge-light {
    margin: -10px 0; }

a.badge:hover {
  color: #fff; }

a.badge.badge-light:hover {
  color: #293041; }

a[class*="badge-outline-"]:hover {
  color: #293041; }

.badge-rounded {
  border-radius: 1.25rem; }

.badge-circle {
  border-radius: 50%;
  padding: 0;
  width: 20px;
  min-width: 20px;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  line-height: 20px; }

.badge-outline-primary {
  border-color: var(--primary);
  color: var(--primary); }

.badge-outline-secondary {
  border-color: #28B0CE;
  color: #28B0CE; }

.badge-outline-success {
  border-color: #1CBD5C;
  color: #1CBD5C; }

.badge-outline-info {
  border-color: #A131AD;
  color: #A131AD; }

.badge-outline-warning {
  border-color: #EF962E;
  color: #EF962E; }

.badge-outline-danger {
  border-color: #AE7156;
  color: #AE7156; }

.badge-outline-light {
  border-color: gainsboro;
  color: #293041; }

.badge-outline-dark {
  border-color: #293041;
  color: #293041; }

.badge-sm {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--border-radius-base); }

.badge-lg {
  padding: 8px 14px;
  font-weight: 400;
  font-size: 14px; }

.badge-default {
  background: #ADB6C7; }

.badge-success {
  background-color: #1CBD5C; }

.badge-secondary {
  background-color: #28B0CE; }

.badge-info {
  background-color: #A131AD; }

.badge-primary {
  background-color: var(--primary); }

.badge-warning {
  background-color: #EF962E; }

.badge-danger {
  background-color: #AE7156; }

.badge-dark {
  background-color: #293041; }

.badge-light {
  background-color: gainsboro;
  color: #293041; }

.light.badge-default {
  background: #ADB6C7; }

.light.badge-primary {
  background-color: #04cd5f;
  color: #027335; }

.light.badge-success {
  background-color: #85edae;
  color: #1CBD5C; }

.light.badge-info {
  background-color: #cc6ed6;
  color: #A131AD; }

.light.badge-secondary {
  background-color: #a2dfed;
  color: #28B0CE; }

.light.badge-warning {
  background-color: #faddbc;
  color: #EF962E; }

.light.badge-danger {
  background-color: #e0c8bd;
  color: #AE7156; }

.light.badge-dark {
  background-color: #a4adc5;
  color: #293041; }

.light.badge-light {
  background-color: #e9e9e9;
  color: #293041; }

.bootstrap-label .label {
  display: inline-block;
  margin-right: 1rem; }
  .bootstrap-label .label:last-child {
    margin-right: 0; }

.badge-demo .badge {
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem; }
  .badge-demo .badge:last-child {
    margin-right: 0; }

.bootstrap-badge-buttons button {
  margin-right: .2rem;
  margin-bottom: 1rem; }
  .bootstrap-badge-buttons button:last-child {
    margin-right: 0; }

.shadow-primary {
  box-shadow: 0px 8px 14px -4px var(--rgba-primary-5);
  transition: all 0.5s !important; }
  .shadow-primary:hover {
    box-shadow: none; }

.shadow-info {
  box-shadow: 0px 8px 14px -4px rgba(161, 49, 173, 0.5);
  transition: all 0.5s !important; }
  .shadow-info:hover {
    box-shadow: none; }

.shadow-secondary {
  box-shadow: 0px 8px 14px -4px rgba(40, 176, 206, 0.5);
  transition: all 0.5s !important; }
  .shadow-secondary:hover {
    box-shadow: none; }

.shadow-dark {
  box-shadow: 0px 8px 14px -4px rgba(41, 48, 65, 0.5);
  transition: all 0.5s !important; }
  .shadow-dark:hover {
    box-shadow: none; }

.btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 15px 25px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.5px;
  justify-content: center;
  text-decoration: none !important;
  border-radius: var(--border-radius-base);
  border-width: 1px;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .btn.btn-success, .btn.btn-secondary, .btn.btn-warning, .btn.btn-primary, .btn.btn-danger, .btn.btn-info {
    color: var(--theme-text-color); }
  .btn.btn-lg, .btn-group-lg > .btn {
    padding: 18px 15px;
    font-size: 18px;
    line-height: 1.1;
    border-radius: var(--border-radius-base); }
  .btn.btn-sm, .btn-group-sm > .btn {
    padding: 8px 10px;
    line-height: 1;
    font-size: 12px;
    border-radius: var(--border-radius-sm); }
  .btn.btn-sharp {
    border-radius: 0; }
  .btn:hover, .btn:focus, .btn:active {
    outline: 0 !important;
    box-shadow: none; }
  .btn.btn-transparent {
    background-color: #E8EFF3;
    color: #7D8FAB; }

.btn-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none; }

button {
  cursor: pointer; }
  button:focus {
    outline: 0;
    box-shadow: none; }

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary); }
  .btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    border-color: var(--primary);
    background-color: var(--primary-hover);
    box-shadow: none; }
  .btn-primary:focus {
    box-shadow: none; }
  .btn-primary:disabled, .btn-primary.disabled {
    background-color: var(--primary); }

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary); }
  .btn-outline-primary:hover {
    border-color: var(--primary-hover);
    background-color: var(--primary-hover); }
  .btn-outline-primary:focus {
    box-shadow: none; }

.sharp {
  min-width: 2.5rem;
  padding: 0.4375rem;
  height: 2.5rem;
  min-height: 2.5rem; }

.sharp.btn-xs {
  padding: 0.1875rem;
  width: 1.625rem;
  height: 1.625rem;
  min-width: 1.625rem;
  min-height: 1.625rem; }

.btn-block {
  display: block;
  width: 100%; }

.light {
  border-color: transparent; }
  .light.tp-btn {
    background-color: transparent; }
  .light.btn-default {
    background: #ADB6C7; }
  .light.btn-success {
    background-color: #85edae;
    border-color: #85edae;
    color: #1CBD5C; }
    .light.btn-success g [fill] {
      fill: #1CBD5C; }
    .light.btn-success:hover {
      background-color: #1CBD5C;
      border-color: #1CBD5C;
      color: #fff; }
      .light.btn-success:hover g [fill] {
        fill: #fff; }
  .light.btn-info {
    background-color: #cc6ed6;
    border-color: #cc6ed6;
    color: #A131AD; }
    .light.btn-info g [fill] {
      fill: #A131AD; }
    .light.btn-info:hover {
      background-color: #A131AD;
      border-color: #A131AD;
      color: #fff; }
      .light.btn-info:hover g [fill] {
        fill: #fff; }
  .light.btn-primary {
    background-color: var(--rgba-primary-1);
    color: var(--primary); }
    .light.btn-primary g [fill] {
      fill: var(--primary); }
    .light.btn-primary:hover {
      background-color: var(--primary);
      color: #fff !important; }
      .light.btn-primary:hover g [fill] {
        fill: #fff; }
  .light.btn-secondary {
    background-color: #a2dfed;
    color: #28B0CE; }
    .light.btn-secondary g [fill] {
      fill: #28B0CE; }
    .light.btn-secondary:hover {
      background-color: #28B0CE;
      color: #fff; }
      .light.btn-secondary:hover g [fill] {
        fill: #fff; }
  .light.btn-warning {
    background-color: #faddbc;
    color: #EF962E; }
    .light.btn-warning g [fill] {
      fill: #EF962E; }
    .light.btn-warning:hover {
      background-color: #EF962E;
      color: #fff; }
      .light.btn-warning:hover g [fill] {
        fill: #fff; }
  .light.btn-danger {
    background-color: #e0c8bd;
    color: #AE7156; }
    .light.btn-danger g [fill] {
      fill: #AE7156; }
    .light.btn-danger:hover {
      background-color: #AE7156;
      color: #fff; }
      .light.btn-danger:hover g [fill] {
        fill: #fff; }
  .light.btn-dark {
    background-color: #a4adc5;
    border-color: #a4adc5;
    color: #293041; }
    .light.btn-dark g [fill] {
      fill: #293041; }
    [data-theme-version="dark"] .light.btn-dark {
      background-color: rgba(41, 48, 65, 0.35);
      color: #fff; }
    .light.btn-dark:hover {
      background-color: #293041;
      color: #fff; }
      .light.btn-dark:hover g [fill] {
        fill: #fff; }

.btn.tp-btn {
  background-color: transparent;
  border-color: transparent; }
  .btn.tp-btn.btn-default {
    background: #ADB6C7; }
  .btn.tp-btn.btn-success {
    color: #1CBD5C; }
    .btn.tp-btn.btn-success g [fill] {
      fill: #1CBD5C; }
    .btn.tp-btn.btn-success:hover {
      background-color: #1CBD5C;
      border-color: #1CBD5C;
      color: #fff; }
      .btn.tp-btn.btn-success:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn.btn-info {
    color: #A131AD; }
    .btn.tp-btn.btn-info g [fill] {
      fill: #A131AD; }
    .btn.tp-btn.btn-info:hover {
      background-color: #A131AD;
      border-color: #A131AD;
      color: #fff; }
      .btn.tp-btn.btn-info:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn.btn-primary {
    color: var(--primary); }
    .btn.tp-btn.btn-primary g [fill] {
      fill: var(--primary); }
    .btn.tp-btn.btn-primary:hover {
      background-color: var(--primary);
      border-color: var(--primary);
      color: #fff; }
      .btn.tp-btn.btn-primary:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn.btn-secondary {
    color: #28B0CE; }
    .btn.tp-btn.btn-secondary g [fill] {
      fill: #28B0CE; }
    .btn.tp-btn.btn-secondary:hover {
      background-color: #28B0CE;
      border-color: #28B0CE;
      color: #fff; }
      .btn.tp-btn.btn-secondary:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn.btn-warning {
    color: #EF962E; }
    .btn.tp-btn.btn-warning g [fill] {
      fill: #EF962E; }
    .btn.tp-btn.btn-warning:hover {
      background-color: #EF962E;
      border-color: #EF962E;
      color: #fff; }
      .btn.tp-btn.btn-warning:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn.btn-danger {
    color: #AE7156; }
    .btn.tp-btn.btn-danger g [fill] {
      fill: #AE7156; }
    .btn.tp-btn.btn-danger:hover {
      background-color: #AE7156;
      border-color: #AE7156;
      color: #fff; }
      .btn.tp-btn.btn-danger:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn.btn-light {
    color: #293041; }
    .btn.tp-btn.btn-light g [fill] {
      fill: #293041; }
    .btn.tp-btn.btn-light:hover {
      background-color: #E6E6E6;
      border-color: #E6E6E6;
      color: #293041; }
      .btn.tp-btn.btn-light:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn.btn-dark {
    color: #293041; }
    .btn.tp-btn.btn-dark g [fill] {
      fill: #293041; }
    .btn.tp-btn.btn-dark:hover {
      background-color: #293041;
      border-color: #293041;
      color: #fff; }
      .btn.tp-btn.btn-dark:hover g [fill] {
        fill: #fff; }

.btn.tp-btn-light {
  background-color: transparent;
  border-color: transparent; }
  .btn.tp-btn-light.btn-success {
    color: #1CBD5C; }
    .btn.tp-btn-light.btn-success g [fill] {
      fill: #1CBD5C; }
    .btn.tp-btn-light.btn-success:hover {
      background-color: #85edae;
      border-color: #85edae;
      color: #1CBD5C; }
      .btn.tp-btn-light.btn-success:hover g [fill] {
        fill: #1CBD5C; }
  .btn.tp-btn-light.btn-info {
    color: #A131AD; }
    .btn.tp-btn-light.btn-info g [fill] {
      fill: #A131AD; }
    .btn.tp-btn-light.btn-info:hover {
      background-color: #cc6ed6;
      border-color: #cc6ed6;
      color: #A131AD; }
      .btn.tp-btn-light.btn-info:hover g [fill] {
        fill: #A131AD; }
  .btn.tp-btn-light.btn-primary {
    color: var(--primary); }
    .btn.tp-btn-light.btn-primary g [fill] {
      fill: var(--primary); }
    .btn.tp-btn-light.btn-primary:hover {
      background-color: var(--rgba-primary-1);
      border-color: var(--rgba-primary-1);
      color: var(--primary); }
      .btn.tp-btn-light.btn-primary:hover g [fill] {
        fill: var(--primary); }
  .btn.tp-btn-light.btn-secondary {
    color: #28B0CE; }
    .btn.tp-btn-light.btn-secondary g [fill] {
      fill: #28B0CE; }
    .btn.tp-btn-light.btn-secondary:hover {
      background-color: #a2dfed;
      border-color: #a2dfed;
      color: #28B0CE; }
      .btn.tp-btn-light.btn-secondary:hover g [fill] {
        fill: #28B0CE; }
  .btn.tp-btn-light.btn-warning {
    color: #EF962E; }
    .btn.tp-btn-light.btn-warning g [fill] {
      fill: #EF962E; }
    .btn.tp-btn-light.btn-warning:hover {
      background-color: #faddbc;
      border-color: #faddbc;
      color: #EF962E; }
      .btn.tp-btn-light.btn-warning:hover g [fill] {
        fill: #EF962E; }
  .btn.tp-btn-light.btn-danger {
    color: #AE7156; }
    .btn.tp-btn-light.btn-danger g [fill] {
      fill: #AE7156; }
    .btn.tp-btn-light.btn-danger:hover {
      background-color: #e0c8bd;
      border-color: #e0c8bd;
      color: #AE7156; }
      .btn.tp-btn-light.btn-danger:hover g [fill] {
        fill: #fff; }
  .btn.tp-btn-light.btn-dark {
    color: #293041; }
    .btn.tp-btn-light.btn-dark g [fill] {
      fill: #293041; }
    .btn.tp-btn-light.btn-dark:hover {
      background-color: #a4adc5;
      border-color: #a4adc5;
      color: #293041; }
      .btn.tp-btn-light.btn-dark:hover g [fill] {
        fill: #fff; }

.shadow.btn-primary {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 var(--rgba-primary-2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 var(--rgba-primary-2) !important; }

.shadow.btn-secondary {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(40, 176, 206, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(40, 176, 206, 0.2) !important; }

.shadow.btn-warning {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(239, 150, 46, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(239, 150, 46, 0.2) !important; }

.shadow.btn-danger {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(174, 113, 86, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(174, 113, 86, 0.2) !important; }

.shadow.btn-info {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(161, 49, 173, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(161, 49, 173, 0.2) !important; }

.shadow.btn-success {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(28, 189, 92, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(28, 189, 92, 0.2) !important; }

.btn-light {
  background: #E6E6E6;
  border-color: #E6E6E6;
  color: #646464; }
  .btn-light:active, .btn-light:focus, .btn-light:hover {
    background: white;
    color: #293041;
    border-color: white; }

.btn-outline-primary:hover {
  color: #fff; }

.btn-outline-warning:hover {
  color: #fff; }

.btn-outline-light {
  color: #293041; }

.btn-dark {
  background: #293041;
  border-color: #293041;
  color: #fff; }
  .btn-dark:active, .btn-dark:hover {
    background: #3d4760;
    color: #fff;
    border-color: #151922; }
  .btn-dark:focus {
    background: black; }

.btn-group.btn-rounded .btn:first-child {
  border-top-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem; }

.btn-group.btn-rounded .btn:last-child {
  border-top-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem; }

.btn-rounded {
  border-radius: 2.75rem; }

.btn-facebook {
  background: #3b5998;
  border-color: #3b5998;
  color: #fff; }
  .btn-facebook:active, .btn-facebook:focus, .btn-facebook:hover {
    background: #2d4373;
    color: #fff;
    border-color: #2d4373; }

.btn-twitter {
  background: #1da1f2;
  border-color: #1da1f2;
  color: #fff; }
  .btn-twitter:active, .btn-twitter:focus, .btn-twitter:hover {
    background: #0c85d0;
    color: #fff;
    border-color: #0c85d0; }

.btn-pinterest {
  background: #bd081c;
  border-color: #bd081c;
  color: #fff; }
  .btn-pinterest:active, .btn-pinterest:focus, .btn-pinterest:hover {
    background: #8c0615;
    color: #fff;
    border-color: #8c0615; }

.btn-linkedin {
  background: #007bb6;
  border-color: #007bb6;
  color: #fff; }
  .btn-linkedin:active, .btn-linkedin:focus, .btn-linkedin:hover {
    background: #005983;
    color: #fff;
    border-color: #005983; }

.btn-google {
  background: #4285f4;
  border-color: #4285f4;
  color: #fff; }
  .btn-google:active, .btn-google:focus, .btn-google:hover {
    background: #1266f1;
    color: #fff;
    border-color: #1266f1; }

.btn-snapchat {
  background: #fffc00;
  border-color: #fffc00;
  color: #000; }
  .btn-snapchat:active, .btn-snapchat:focus, .btn-snapchat:hover {
    background: #ccca00;
    color: #000;
    border-color: #ccca00; }

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff; }
  .btn-whatsapp:active, .btn-whatsapp:focus, .btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    border-color: #1da851; }

.btn-phone {
  background: #ff4500;
  border-color: #ff4500;
  color: #fff; }
  .btn-phone:active, .btn-phone:focus, .btn-phone:hover {
    background: #cc3700;
    color: #fff;
    border-color: #cc3700; }

.btn-skype {
  background: #00aff0;
  border-color: #00aff0;
  color: #fff; }
  .btn-skype:active, .btn-skype:focus, .btn-skype:hover {
    background: #008abd;
    color: #fff;
    border-color: #008abd; }

.btn-email {
  background: #1ab7ea;
  border-color: #1ab7ea;
  color: #fff; }
  .btn-email:active, .btn-email:focus, .btn-email:hover {
    background: #1295bf;
    color: #fff;
    border-color: #1295bf; }

.btn-icon-text {
  overflow: hidden;
  position: relative;
  border: 0;
  font-size: 12px;
  justify-content: left;
  padding-left: 50px; }
  .btn-icon-text i {
    background-color: rgba(0, 0, 0, 0.1);
    width: 42px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px; }
    .btn-icon-text i.rounded-xl {
      border-radius: 2.75rem; }

.btn-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  font-size: 14px; }
  .btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn {
    width: 50px;
    height: 50px;
    font-size: 16px; }
  .btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn {
    width: 35px;
    height: 35px;
    font-size: 12px; }

.btn-square {
  border-radius: 0; }

.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff; }

.card {
  margin-bottom: 1.25rem;
  background-color: var(--bg-white);
  transition: all .5s ease-in-out;
  position: relative;
  border: 0px solid transparent;
  border-radius: var(--border-radius-base);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  height: calc(100% - 1.25rem); }
  .card-body {
    padding: 1rem; }
  .card-title {
    text-transform: capitalize; }
    .card-title--large {
      font-size: 1.5rem; }
    .card-title--medium {
      font-size: 1rem; }
    .card-title--small {
      font-size: 0.875rem; }
  .card-header {
    border-color: var(--border-color);
    position: relative;
    background: transparent;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .card-header .card-title {
      margin-bottom: 0px; }
    .card-header .subtitle {
      padding-top: 5px;
      font-size: 14px;
      line-height: 1.5; }
  .card-footer {
    border-color: #E8EFF3;
    background: transparent;
    padding: 1rem 1.25rem; }
  .card.card-full {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px; }
  .card[class*="bg-"] .card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important; }
  .card[class*="bg-"] .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important; }

.transparent-card.card {
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none; }

.dz-media-card {
  overflow: hidden; }
  .dz-media-card .card-media {
    position: relative;
    z-index: 1; }
    .dz-media-card .card-media:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1; }
    .dz-media-card .card-media .title {
      position: absolute;
      bottom: 15px;
      left: 15px;
      z-index: 2; }
  .dz-media-card .media-content {
    padding: 15px; }

.dropdown .dropdown-toggle:after {
  content: none; }

.dropdown .dropdown-menu {
  min-width: 10rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #313131;
  text-align: left;
  list-style: none;
  background-color: var(--bg-white);
  border-radius: 0.25rem;
  border: 0;
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.04); }

.dropdown-toggle:focus {
  box-shadow: none !important; }

.dropdown-outline {
  border: 0.1rem solid var(--primary); }

.dropdown-menu {
  font-size: inherit;
  border: 0;
  z-index: 2;
  overflow: hidden;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-base) -sm;
  box-shadow: 0 0 3.125rem 0 rgba(82, 63, 105, 0.15);
  margin-top: 0; }
  .dropdown-menu .dropdown-item {
    font-size: 1rem;
    color: #303733;
    padding: 0.5rem 1.75rem;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    @media only screen and (max-width: 87.5rem) {
      .dropdown-menu .dropdown-item {
        padding: 0.375rem 1rem;
        font-size: 0.875rem; } }
    .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item.active {
      color: #514e5f; }
    .dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active {
      color: var(--primary);
      background: var(--rgba-primary-1); }
  .dropdown-menu.show {
    right: 0; }

.dropdown-toggle-split {
  padding: 0 0.625rem;
  opacity: 0.85; }
  .dropdown-toggle-split:after {
    margin-left: 0 !important; }
  .dropdown-toggle-split:active, .dropdown-toggle-split:focus, .dropdown-toggle-split:hover {
    opacity: 1; }

.dropright .dropdown-toggle::after {
  content: none; }

.custom-dropdown {
  display: inline-block;
  margin-bottom: 1rem; }
  .custom-dropdown .dropdown-menu {
    border: 0rem;
    min-width: 10rem; }

.card-action .custom-dropdown {
  margin: 0rem;
  background: var(--rgba-primary-1); }
  .card-action .custom-dropdown.show, .card-action .custom-dropdown:focus, .card-action .custom-dropdown:hover {
    background: var(--primary);
    color: #fff; }
  .card-action .custom-dropdown i {
    display: inline-block;
    padding-top: 0.5625rem; }

.dropdown .dropdown-dots {
  position: relative;
  height: 0.3125rem;
  width: 0.3125rem;
  background: rgba(41, 48, 65, 0.4);
  border-radius: 0.3125rem;
  display: block; }
  .dropdown .dropdown-dots:after, .dropdown .dropdown-dots:before {
    content: "";
    height: 0.3125rem;
    width: 0.3125rem;
    background: rgba(41, 48, 65, 0.4);
    position: absolute;
    border-radius: 0.3125rem; }
  .dropdown .dropdown-dots:after {
    right: -0.5rem; }
  .dropdown .dropdown-dots:before {
    left: -0.5rem; }
  .dropdown .dropdown-dots.text-white {
    background: rgba(255, 255, 255, 0.7); }
    .dropdown .dropdown-dots.text-white:after, .dropdown .dropdown-dots.text-white:before {
      background: rgba(255, 255, 255, 0.7); }

.dz-list > ul > li {
  border-bottom: 1px solid var(--border-color); }
  .dz-list > ul > li .dz-media {
    margin-right: 15px;
    min-width: 15px; }
  .dz-list > ul > li .dz-icon {
    height: 20px;
    width: 20px; }
    .dz-list > ul > li .dz-icon svg {
      width: 20px;
      height: 20px;
      transform: scale(1.2); }
    .dz-list > ul > li .dz-icon.icon-sm svg {
      width: 16px;
      height: 16px;
      transform: scale(1.2); }
  .dz-list > ul > li .item-content {
    padding: 15px 0;
    display: flex;
    align-items: center;
    position: relative; }
    .dz-list > ul > li .item-content .dz-title {
      color: var(--title);
      font-size: 0.875rem;
      font-weight: 600; }
  .dz-list > ul > li .item-link:after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    right: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .dz-list > ul > li a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--title); }

.dz-list.list-space > ul > li a {
  padding-left: 20px;
  padding-right: 20px; }
  .dz-list.list-space > ul > li a.item-link:after {
    right: 20px; }

.dz-list.style-1 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px; }
  .dz-list.style-1 ul li {
    width: 50%;
    padding-bottom: 18px;
    padding-right: 10px;
    padding-left: 10px;
    border: 0; }

.dz-list.style-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .dz-list.style-2 ul li {
    width: 50%;
    padding-bottom: 18px;
    padding-right: 10px;
    padding-left: 10px;
    border: 0; }

.dz-list.style-3 ul li {
  border-bottom: 1px solid var(--border-color);
  padding: 0 15px;
  margin: 18px -15px; }
  .dz-list.style-3 ul li:last-child {
    border-bottom: 0; }

.dz-list.style-3 ul .item-content {
  display: flex;
  justify-content: unset;
  align-items: center;
  padding: 0; }
  .dz-list.style-3 ul .item-content .item-inner {
    width: 100%; }
    .dz-list.style-3 ul .item-content .item-inner .item-title-row .item-title a {
      font-size: 1.125rem; }
    .dz-list.style-3 ul .item-content .item-inner .item-title-row .item-subtitle {
      font-size: 0.875rem; }
    .dz-list.style-3 ul .item-content .item-inner .off-text {
      color: #BFC9DA; }
      .dz-list.style-3 ul .item-content .item-inner .off-text h6, .dz-list.style-3 ul .item-content .item-inner .off-text .h6 {
        color: #BFC9DA;
        font-weight: 400; }
    .dz-list.style-3 ul .item-content .item-inner .item-footer {
      display: flex;
      align-items: flex-end;
      margin-bottom: 15px;
      justify-content: space-between; }
      .dz-list.style-3 ul .item-content .item-inner .item-footer h6, .dz-list.style-3 ul .item-content .item-inner .item-footer .h6 {
        margin-bottom: 0; }
      .dz-list.style-3 ul .item-content .item-inner .item-footer .fa-star {
        color: #FFA902;
        margin-right: 10px; }
  .dz-list.style-3 ul .item-content .item-media {
    margin-right: 20px;
    margin-left: 0;
    margin-bottom: 10px;
    position: relative; }
    .dz-list.style-3 ul .item-content .item-media img {
      border-radius: var(--border-radius-base); }

.dz-list.style-4 ul .dz-icon {
  width: 40px;
  height: 40px; }

.dz-list.style-4 ul li {
  border-bottom: 0;
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  padding: 16px;
  background-color: var(--card-bg);
  margin-bottom: 12px;
  border-radius: var(--border-radius-base); }
  .dz-list.style-4 ul li .item-content {
    padding: 0; }
    .dz-list.style-4 ul li .item-content .title {
      display: block;
      margin-bottom: 0;
      font-size: 1rem; }
    .dz-list.style-4 ul li .item-content .para-text {
      margin-bottom: 0;
      font-size: 12px; }

.dz-list.style-5 ul li {
  display: flex;
  border-bottom: 0;
  align-items: center; }

.dz-list.style-6 ul li {
  margin-bottom: 20px; }

.dz-list.style-7 ul li {
  border-bottom: 1px solid var(--border-color);
  padding: 0 15px;
  margin: 15px -15px; }
  .dz-list.style-7 ul li:last-child {
    border-bottom: 0; }

.dz-list.style-7 ul .item-content {
  display: flex;
  justify-content: unset;
  align-items: center;
  padding: 0;
  margin-bottom: 15px; }
  .dz-list.style-7 ul .item-content .item-inner {
    width: 100%;
    display: flex;
    align-items: center; }
    .dz-list.style-7 ul .item-content .item-inner .item-title-row {
      flex: 1; }
      .dz-list.style-7 ul .item-content .item-inner .item-title-row .item-title a {
        font-size: 1rem; }
      .dz-list.style-7 ul .item-content .item-inner .item-title-row .item-subtitle {
        font-size: 0.875rem; }
    .dz-list.style-7 ul .item-content .item-inner .add-btn {
      text-align: center;
      background-color: var(--primary);
      color: #fff;
      padding: 3px 18px;
      border-radius: 5px; }
    .dz-list.style-7 ul .item-content .item-inner .off-text {
      color: #BFC9DA; }
      .dz-list.style-7 ul .item-content .item-inner .off-text h6, .dz-list.style-7 ul .item-content .item-inner .off-text .h6 {
        color: #BFC9DA;
        font-weight: 400; }
  .dz-list.style-7 ul .item-content .item-media {
    margin-right: 12px;
    margin-left: 0;
    margin-bottom: 0; }

.dz-list.style-8 ul li {
  border-bottom: 1px solid var(--border-color);
  padding: 0 15px;
  margin: 0 -15px; }

.dz-list.style-8 ul .item-content .dz-icon {
  margin-right: 15px;
  width: auto;
  height: auto; }
  .dz-list.style-8 ul .item-content .dz-icon svg {
    width: 20px;
    height: 20px; }

.dz-list.style-8 ul .item-content .dz-inner .title {
  font-weight: 500;
  margin-bottom: 0;
  color: var(--title); }

.dz-list.style-8 ul .item-content .dz-inner span {
  font-size: 14px;
  font-weight: 500;
  color: #B0B0B0; }

.item-list ul li {
  border-bottom: 1px solid var(--border-color);
  padding: 0 15px;
  margin: 18px -15px; }
  .item-list ul li:last-child {
    border-bottom: 0; }

.item-list .item-content {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .item-list .item-content .item-inner {
    flex: 1; }
    .item-list .item-content .item-inner .item-title-row {
      margin-bottom: 10px; }
      .item-list .item-content .item-inner .item-title-row .item-subtitle {
        font-size: 0.875rem; }
    .item-list .item-content .item-inner .item-footer {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      justify-content: space-between; }
      .item-list .item-content .item-inner .item-footer h6, .item-list .item-content .item-inner .item-footer .h6 {
        margin-bottom: 0; }
      .item-list .item-content .item-inner .item-footer .fa-star {
        color: #FFA902;
        margin-right: 10px; }
      .item-list .item-content .item-inner .item-footer .off-text {
        color: #BFC9DA; }
        .item-list .item-content .item-inner .item-footer .off-text h6, .item-list .item-content .item-inner .item-footer .off-text .h6 {
          color: #BFC9DA;
          font-weight: 400; }
  .item-list .item-content .item-media {
    margin-left: 20px;
    margin-bottom: 10px;
    position: relative; }
    .item-list .item-content .item-media img {
      border-radius: var(--border-radius-base); }
  .item-list .item-content .item-bookmark {
    position: absolute;
    top: 0;
    right: 10px; }

.item-list.style-2 ul li {
  border-bottom: 1px solid var(--border-color); }
  .item-list.style-2 ul li:last-child {
    border-bottom: 1px solid var(--border-color); }

.item-list.style-2 .item-content {
  justify-content: unset;
  align-items: start; }
  .item-list.style-2 .item-content .item-inner {
    width: 100%; }
    .item-list.style-2 .item-content .item-inner .item-title-row {
      margin-bottom: 10px; }
      .item-list.style-2 .item-content .item-inner .item-title-row .item-subtitle {
        font-size: 0.875rem; }
    .item-list.style-2 .item-content .item-inner .item-footer {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      justify-content: space-between; }
      .item-list.style-2 .item-content .item-inner .item-footer h6, .item-list.style-2 .item-content .item-inner .item-footer .h6 {
        margin-bottom: 0; }
      .item-list.style-2 .item-content .item-inner .item-footer .fa-star {
        color: #FFA902;
        margin-right: 10px; }
      .item-list.style-2 .item-content .item-inner .item-footer .off-text {
        color: #BFC9DA; }
        .item-list.style-2 .item-content .item-inner .item-footer .off-text h6, .item-list.style-2 .item-content .item-inner .item-footer .off-text .h6 {
          color: #BFC9DA;
          font-weight: 400; }
  .item-list.style-2 .item-content .item-media {
    margin-right: 20px;
    margin-left: 0;
    margin-bottom: 10px;
    position: relative; }
    .item-list.style-2 .item-content .item-media img {
      border-radius: var(--border-radius-base); }

.item-list.style-3 ul li {
  border-bottom: 0; }

.item-list.style-3 .item-content {
  padding: 12px;
  background-color: var(--card-bg);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  border-radius: var(--border-radius-base); }
  .item-list.style-3 .item-content .item-inner {
    width: 100%; }
    .item-list.style-3 .item-content .item-inner .item-title-row {
      margin-bottom: 10px; }
      .item-list.style-3 .item-content .item-inner .item-title-row .item-subtitle {
        display: flex;
        align-items: center;
        font-size: 12px; }
        .item-list.style-3 .item-content .item-inner .item-title-row .item-subtitle i {
          font-size: 10px; }
    .item-list.style-3 .item-content .item-inner .item-footer {
      display: flex;
      align-items: center;
      margin-bottom: 0;
      justify-content: space-between; }
      .item-list.style-3 .item-content .item-inner .item-footer h6, .item-list.style-3 .item-content .item-inner .item-footer .h6 {
        margin-bottom: 0; }
      .item-list.style-3 .item-content .item-inner .item-footer .fa-star {
        color: #FFA902;
        margin-right: 10px; }
      .item-list.style-3 .item-content .item-inner .item-footer .off-text {
        color: #BFC9DA; }
        .item-list.style-3 .item-content .item-inner .item-footer .off-text h6, .item-list.style-3 .item-content .item-inner .item-footer .off-text .h6 {
          color: #BFC9DA;
          font-weight: 400; }
  .item-list.style-3 .item-content .item-media {
    margin-right: 0;
    margin-left: 20px;
    margin-bottom: 0;
    position: relative; }
    .item-list.style-3 .item-content .item-media img {
      border-radius: var(--border-radius-base); }

.item-list.style-4 ul li {
  border-bottom: 0; }

.item-list.style-4 .item-content {
  padding: 12px;
  background-color: var(--bg-white);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  border-radius: var(--border-radius-base); }
  .item-list.style-4 .item-content .item-inner {
    width: 100%; }
    .item-list.style-4 .item-content .item-inner .item-title-row {
      margin-bottom: 10px; }
      .item-list.style-4 .item-content .item-inner .item-title-row .item-subtitle {
        display: flex;
        align-items: center;
        font-size: 12px; }
        .item-list.style-4 .item-content .item-inner .item-title-row .item-subtitle i {
          font-size: 10px; }
    .item-list.style-4 .item-content .item-inner .item-footer {
      display: flex;
      align-items: center;
      margin-bottom: 0;
      justify-content: space-between; }
      .item-list.style-4 .item-content .item-inner .item-footer h6, .item-list.style-4 .item-content .item-inner .item-footer .h6 {
        margin-bottom: 0; }
      .item-list.style-4 .item-content .item-inner .item-footer .fa-star {
        color: #FFA902;
        margin-right: 10px; }
      .item-list.style-4 .item-content .item-inner .item-footer .off-text {
        color: #BFC9DA; }
        .item-list.style-4 .item-content .item-inner .item-footer .off-text h6, .item-list.style-4 .item-content .item-inner .item-footer .off-text .h6 {
          color: #BFC9DA;
          font-weight: 400; }
  .item-list.style-4 .item-content .item-media {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 0;
    position: relative; }
    .item-list.style-4 .item-content .item-media img {
      border-radius: var(--border-radius-base); }

.item-list.style-5 ul li {
  border-bottom: 0; }

.item-list.style-5 .item-content {
  padding: 12px;
  background-color: var(--card-bg);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  border-radius: var(--border-radius-base); }
  .item-list.style-5 .item-content .item-inner {
    width: 100%; }
    .item-list.style-5 .item-content .item-inner .item-title-row {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between; }
      .item-list.style-5 .item-content .item-inner .item-title-row .item-subtitle {
        display: flex;
        align-items: center;
        font-size: 16px; }
      .item-list.style-5 .item-content .item-inner .item-title-row .reviews-info {
        display: flex;
        align-items: center; }
        .item-list.style-5 .item-content .item-inner .item-title-row .reviews-info i {
          color: #f9c150; }
        .item-list.style-5 .item-content .item-inner .item-title-row .reviews-info .reviews {
          line-height: 1; }
    .item-list.style-5 .item-content .item-inner .item-footer {
      display: flex;
      align-items: center;
      margin-bottom: 0;
      justify-content: space-between; }
      .item-list.style-5 .item-content .item-inner .item-footer h6, .item-list.style-5 .item-content .item-inner .item-footer .h6 {
        margin-bottom: 0; }
      .item-list.style-5 .item-content .item-inner .item-footer .fa-star {
        color: #FFA902;
        margin-right: 10px; }
      .item-list.style-5 .item-content .item-inner .item-footer .off-text {
        color: #BFC9DA; }
        .item-list.style-5 .item-content .item-inner .item-footer .off-text h6, .item-list.style-5 .item-content .item-inner .item-footer .off-text .h6 {
          color: #BFC9DA;
          font-weight: 400; }
  .item-list.style-5 .item-content .item-media {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 0;
    position: relative; }
    .item-list.style-5 .item-content .item-media img {
      border-radius: var(--border-radius-base); }

.dz-list-group ul li a {
  display: flex;
  align-items: center;
  border-bottom: 0;
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  padding: 15px;
  background-color: var(--card-bg);
  position: relative;
  margin-bottom: 12px;
  border-radius: var(--border-radius-base); }
  .dz-list-group ul li a:after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    right: 15px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }

.dz-list-group ul li .dz-icon {
  width: 45px;
  display: inline-block;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 8px; }

.dz-list-group ul li .title {
  display: block;
  margin-bottom: 0;
  font-family: var(--font-family-title);
  font-weight: 600;
  color: var(--title);
  font-size: 1rem;
  margin-bottom: -5px; }

.dz-list-group ul li .para-text {
  margin-bottom: 0;
  font-size: 12px; }

.media-0 {
  width: 0px;
  min-width: 0px;
  height: 0px; }

.media-5 {
  width: 5px;
  min-width: 5px;
  height: 5px; }

.media-10 {
  width: 10px;
  min-width: 10px;
  height: 10px; }

.media-15 {
  width: 15px;
  min-width: 15px;
  height: 15px; }

.media-20 {
  width: 20px;
  min-width: 20px;
  height: 20px; }

.media-25 {
  width: 25px;
  min-width: 25px;
  height: 25px; }

.media-30 {
  width: 30px;
  min-width: 30px;
  height: 30px; }

.media-35 {
  width: 35px;
  min-width: 35px;
  height: 35px; }

.media-40 {
  width: 40px;
  min-width: 40px;
  height: 40px; }

.media-45 {
  width: 45px;
  min-width: 45px;
  height: 45px; }

.media-50 {
  width: 50px;
  min-width: 50px;
  height: 50px; }

.media-55 {
  width: 55px;
  min-width: 55px;
  height: 55px; }

.media-60 {
  width: 60px;
  min-width: 60px;
  height: 60px; }

.media-65 {
  width: 65px;
  min-width: 65px;
  height: 65px; }

.media-70 {
  width: 70px;
  min-width: 70px;
  height: 70px; }

.media-75 {
  width: 75px;
  min-width: 75px;
  height: 75px; }

.media-80 {
  width: 80px;
  min-width: 80px;
  height: 80px; }

.media-85 {
  width: 85px;
  min-width: 85px;
  height: 85px; }

.media-90 {
  width: 90px;
  min-width: 90px;
  height: 90px; }

.media-95 {
  width: 95px;
  min-width: 95px;
  height: 95px; }

.media-100 {
  width: 100px;
  min-width: 100px;
  height: 100px; }

.media {
  display: flex;
  align-items: center;
  justify-content: center; }
  .media img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover; }
  .media-primary {
    background: var(--rgba-primary-1);
    color: var(--primary); }
  .media-info {
    background: #cc6ed6;
    color: #A131AD; }
  .media-warning {
    background: #faddbc;
    color: #EF962E; }
  .media-danger {
    background: #e0c8bd;
    color: #AE7156; }
  .media-success {
    background: #85edae;
    color: #1CBD5C; }
  .media.rounded-circle img {
    border-radius: 50%; }

.modal-header {
  padding: 1rem 1.875rem; }
  .modal-header .btn-close {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    opacity: 0.3;
    line-height: 1; }
  .modal-header .close {
    padding: 0.875rem 1.815rem;
    margin: 0;
    position: absolute;
    right: 0;
    float: none;
    top: 0;
    font-size: 1.875rem;
    font-weight: 100; }
  @media only screen and (max-width: 35.9375rem) {
    .modal-header {
      padding: 1rem 1rem 1rem; } }

.modal-body {
  padding: 1.875rem; }
  @media only screen and (max-width: 35.9375rem) {
    .modal-body {
      padding: 1rem; } }

.modal-footer {
  padding: 10px 10px;
  border-top: var(--bg-white); }
  @media only screen and (max-width: 35.9375rem) {
    .modal-footer {
      padding: 1rem; } }

.modal-content {
  border-radius: 3rem;
  border: 1px solid var(--border-color);
  background: var(--bg-white); }

.dz-modal-btn {
  width: 90px;
  min-width: 90px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #303733;
  background: var(--bg-white);
  border-radius: var(--border-radius-base);
  border: 2px dashed var(--border-color); }

.table > :not(:first-child) {
  border-top: 0px solid currentColor; }

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--rgba-primary-1); }

.table th {
  font-size: 14px;
  font-weight: 600; }

.form-switch .form-check-input {
  width: 2.25rem;
  height: 1.125rem;
  margin-right: 14px; }
  .form-switch .form-check-input.form-check-primary:checked {
    background-color: var(--primary);
    border-color: var(--primary); }
  .form-switch .form-check-input.form-check-warning:checked {
    background-color: #EF962E;
    border-color: #EF962E; }
  .form-switch .form-check-input.form-check-success:checked {
    background-color: #1CBD5C;
    border-color: #1CBD5C; }
  .form-switch .form-check-input.form-check-danger:checked {
    background-color: #AE7156;
    border-color: #AE7156; }
  .form-switch .form-check-input.form-check-info:checked {
    background-color: #A131AD;
    border-color: #A131AD; }
  .form-switch .form-check-input.form-check-dark:checked {
    background-color: #293041;
    border-color: #293041; }

.custom-switch {
  position: relative;
  line-height: 1; }
  .custom-switch input {
    display: none; }
  .custom-switch label {
    cursor: pointer; }
    .custom-switch label:before {
      content: "";
      display: block !important;
      background-color: #e8e9ea;
      pointer-events: all;
      width: 55px !important;
      height: 27px !important;
      border: solid 1px rgba(152, 152, 152, 0.4);
      border-radius: 50px !important;
      box-shadow: inset 0 0 6px 0 #a6aeb5;
      transition: all 250ms ease; }
    .custom-switch label:after {
      content: "";
      display: block !important;
      z-index: 6;
      position: absolute;
      top: 1px;
      left: 1px;
      width: 25px !important;
      height: 25px !important;
      transition: all 250ms ease;
      border-radius: 50px !important;
      background-color: #fff;
      border: solid 1px rgba(152, 152, 152, 0.4);
      transition: all 250ms ease; }
  .custom-switch .switch-input:checked ~ .custom-switch-label:after {
    -webkit-transform: translateX(28px) !important; }
  .custom-switch .switch-input:checked ~ .custom-switch-label:before {
    background-color: var(--secondary) !important; }

.mode {
  display: flex;
  align-items: center; }
  .mode .custom-switch {
    margin-left: auto; }
  .mode span + span {
    color: #000; }

.popover {
  background-color: var(--secondary); }
  .popover .popover-header {
    background-color: var(--secondary);
    border-color: #E8EFF3;
    color: #fff; }
  .popover .popover-body {
    color: #fff; }
  .popover.bs-popover-end .popover-arrow:after, .popover.bs-popover-auto[data-popper-placement^="right"] .popover-arrow:after {
    border-right-color: var(--secondary); }
  .popover.bs-popover-top .popover-arrow:after, .popover.bs-popover-auto[data-popper-placement^="top"] .popover-arrow:after {
    border-top-color: var(--secondary); }

.progress-bar {
  background-color: var(--primary);
  border-width: 0.125rem;
  border-color: transparent; }
  .progress-bar.primary {
    background-color: var(--primary); }
  .progress-bar.success {
    background-color: #1CBD5C;
    border-color: #1CBD5C; }
  .progress-bar.info {
    background-color: #A131AD;
    border-color: #A131AD; }
  .progress-bar.danger {
    background-color: #AE7156;
    border-color: #AE7156; }
  .progress-bar.warning {
    background-color: #EF962E;
    border-color: #EF962E; }
  .progress-bar.pink {
    background-color: #ff0081;
    border-color: #ff0081; }

.progress {
  height: 0.875rem;
  background-color: #F0F0F1;
  overflow: hidden;
  border-radius: 3rem; }
  .progress-bar {
    border-radius: 3rem; }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent); }

.progress-vertical {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 2rem;
  min-height: 17rem;
  position: relative; }

.progress-vertical-bottom {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 2rem;
  min-height: 17rem;
  position: relative;
  transform: rotate(180deg); }

.progress-animated {
  animation-duration: 5s;
  animation-name: myanimation;
  transition: all 5s ease 0s; }

@keyframes myanimation {
  0% {
    width: 0; } }

@keyframes myanimation {
  0% {
    width: 0; } }

.dz-tab .nav.nav-tabs {
  border: 0; }
  .dz-tab .nav.nav-tabs .nav-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    justify-content: center;
    display: flex; }
    .dz-tab .nav.nav-tabs .nav-item .nav-link {
      background-color: transparent;
      color: #000;
      border: 0;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 5px 0;
      width: 100%;
      border-radius: var(--border-radius-base); }

.dz-tab .tab-content {
  border-radius: var(--border-radius-base);
  padding: 15px; }

.dz-tab .tab-slide-effect {
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075) !important;
  border-radius: var(--border-radius-base);
  margin-bottom: 10px;
  padding: 5px; }
  .dz-tab .tab-slide-effect .nav-tabs {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    box-shadow: none !important; }
    .dz-tab .tab-slide-effect .nav-tabs .nav-item.active .nav-link {
      color: #fff !important; }
  .dz-tab .tab-slide-effect .tab-active-indicator {
    position: absolute;
    height: 100%;
    z-index: -1;
    background-color: var(--primary) !important;
    border-radius: var(--border-radius-base);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }

.dz-tab.style-1 {
  margin: 0 -15px; }
  .dz-tab.style-1 .nav.nav-tabs .nav-item .nav-link {
    border: 0;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 0;
    width: 100%;
    border-radius: var(--border-radius-base); }
  .dz-tab.style-1 .tab-content {
    border-radius: var(--border-radius-base);
    padding: 16px; }
  .dz-tab.style-1 .tab-slide-effect {
    border: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 10px;
    padding: 0; }
    .dz-tab.style-1 .tab-slide-effect .nav-tabs {
      padding: 0;
      margin: 0;
      position: relative;
      z-index: 1;
      box-shadow: none !important; }
      .dz-tab.style-1 .tab-slide-effect .nav-tabs .nav-item.active .nav-link {
        color: var(--primary) !important; }
    .dz-tab.style-1 .tab-slide-effect .tab-active-indicator {
      position: absolute;
      height: 100%;
      z-index: -1;
      background-color: transparent !important; }
      .dz-tab.style-1 .tab-slide-effect .tab-active-indicator:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: var(--primary);
        width: 100%;
        height: 6px;
        border-radius: 12px 12px 0 0; }

.dz-tab.style-2 .nav-item {
  width: 50px;
  height: 50px; }
  .dz-tab.style-2 .nav-item .nav-link.active svg path {
    stroke-opacity: 2; }

.dz-tab.style-3 {
  margin: 0 -15px; }
  .dz-tab.style-3 .nav.nav-tabs .nav-item .nav-link {
    border: 0;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 0;
    width: 100%;
    border-radius: var(--border-radius-base); }
    .dz-tab.style-3 .nav.nav-tabs .nav-item .nav-link svg {
      width: 20px;
      height: 20px; }
      .dz-tab.style-3 .nav.nav-tabs .nav-item .nav-link svg path {
        fill: var(--secondary); }
  .dz-tab.style-3 .tab-content {
    border-radius: var(--border-radius-base);
    padding: 0 15px 0; }
  .dz-tab.style-3 .tab-slide-effect {
    border: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 15px;
    padding: 0; }
    .dz-tab.style-3 .tab-slide-effect .nav-tabs {
      padding: 0;
      margin: 0;
      position: relative;
      z-index: 1;
      box-shadow: none !important; }
      .dz-tab.style-3 .tab-slide-effect .nav-tabs .nav-item.active .nav-link {
        color: var(--primary) !important; }
        .dz-tab.style-3 .tab-slide-effect .nav-tabs .nav-item.active .nav-link svg path {
          fill: var(--primary); }
    .dz-tab.style-3 .tab-slide-effect .tab-active-indicator {
      position: absolute;
      height: 100%;
      z-index: -1;
      background-color: transparent !important; }

.dz-tab.tab-color .tab-slide-effect {
  border-radius: 5rem;
  border: 0;
  background-color: rgba(255, 255, 255, 0.125); }
  .dz-tab.tab-color .tab-slide-effect .tab-active-indicator {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-radius: 20rem; }

.dz-tab.tab-color .nav-tabs .nav-link {
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.5) !important;
  width: 100%;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }

.dz-tab.tab-color .nav-tabs .nav-item.active .nav-link {
  color: #fff !important; }

.default-tab .nav-tabs {
  border-color: var(--border-color); }
  .default-tab .nav-tabs .nav-item .nav-link.active {
    background-color: var(--bg-white);
    border-color: var(--border-color) var(--border-color) var(--bg-white); }

.default-tab.style-1 .nav-tabs {
  border: 0;
  margin-bottom: 24px; }
  .default-tab.style-1 .nav-tabs .nav-item {
    padding: 0 10px 0 0; }
    .default-tab.style-1 .nav-tabs .nav-item .nav-link {
      border-width: 0 0 0 0;
      font-size: 16px;
      font-weight: 600;
      padding: 10px 11px;
      color: var(--dark);
      position: relative; }
      .default-tab.style-1 .nav-tabs .nav-item .nav-link.active {
        background-color: var(--bg-white); }
        .default-tab.style-1 .nav-tabs .nav-item .nav-link.active:after {
          background-color: var(--primary); }
      .default-tab.style-1 .nav-tabs .nav-item .nav-link:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 50px;
        background-color: #E8EFF3;
        width: 100%;
        height: 4px; }

.chip * {
  font-size: 12px; }

.chip {
  display: inline-block;
  margin: 0px 5px 10px 0px;
  border-radius: 30px;
  padding-right: 15px; }
  .chip i {
    width: 30px;
    line-height: 30px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    margin-right: 5px; }
  .chip img {
    display: inline;
    margin-right: 9px;
    border-radius: 30px;
    width: 31px;
    line-height: 31px; }

.radio .radio-label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* &:hover {
			input {
				~ {
					.checkmark {
						background-color: #f5f8ff;
					}
				}
			}
		} */ }
  .radio .radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer; }
    .radio .radio-label input:checked ~ .checkmark {
      background-color: var(--primary);
      border: 1px solid var(--primary); }
      .radio .radio-label input:checked ~ .checkmark:after {
        display: block; }
  .radio .radio-label .checkmark:after {
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    background: var(--primary); }

.radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--primary); }
  .radio .checkmark:after {
    content: "";
    position: absolute;
    display: none; }

.radio.square-radio .radio-label .checkmark {
  border-radius: 0; }
  .radio.square-radio .radio-label .checkmark:after {
    border-radius: 0;
    width: 18px;
    height: 18px;
    top: 0;
    left: 0; }

.radio.circle-radio .radio-label .checkmark {
  border-radius: 50%; }
  .radio.circle-radio .radio-label .checkmark:after {
    border-radius: 50%;
    width: 18px;
    height: 18px;
    top: 0;
    left: 0; }

.radio.circle-radio.style-1 .checkmark:after {
  border: 0; }

.dz-tree .jstree-themeicon {
  background-image: none;
  font-style: unset; }
  .dz-tree .jstree-themeicon:after {
    content: "\f07b";
    font-weight: 700;
    color: #EF962E;
    font-family: "Font Awesome 6 Free"; }

.dz-tree .jstree-clicked:hover,
.dz-tree .jstree-clicked {
  background: transparent;
  box-shadow: none; }

.dz-tree .jstree-close > a .jstree-themeicon:after {
  content: "\f07b"; }

.dz-tree .jstree-open > a .jstree-themeicon:after {
  content: "\f07c"; }

.dz-tree.style-1 .jstree-wholerow.jstree-wholerow-clicked {
  background: transparent;
  box-shadow: none; }

.dz-stepper {
  width: 125px; }
  .dz-stepper small, .dz-stepper .small {
    text-align: center;
    display: block;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 5px; }
  .dz-stepper .bootstrap-touchspin {
    display: flex;
    align-items: center;
    margin-bottom: 0; }
    .dz-stepper .bootstrap-touchspin .input-group-btn {
      height: 100%; }
      .dz-stepper .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        text-align: center;
        border: 1px solid var(--border-color);
        font-size: 1.5rem;
        color: var(--title);
        background-color: transparent; }
        .dz-stepper .bootstrap-touchspin .input-group-btn .btn:hover, .dz-stepper .bootstrap-touchspin .input-group-btn .btn:focus, .dz-stepper .bootstrap-touchspin .input-group-btn .btn:active {
          background: #E8EFF3;
          border-color: #E8EFF3;
          color: var(--primary); }
      .dz-stepper .bootstrap-touchspin .input-group-btn:not(:first-child) {
        padding: 0; }
    .dz-stepper .bootstrap-touchspin .form-control {
      padding: 0 10px;
      height: 100%;
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--dark);
      background: transparent;
      border: 0;
      z-index: 3;
      text-align: center; }
  .dz-stepper.stepper-fill .bootstrap-touchspin .input-group-btn .btn {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary); }
  .dz-stepper.border-2 .bootstrap-touchspin {
    overflow: hidden; }
    .dz-stepper.border-2 .bootstrap-touchspin .btn {
      border-width: 2px; }
  .dz-stepper.small-stepper .bootstrap-touchspin .btn {
    width: 35px;
    height: 35px; }
  .dz-stepper.large .bootstrap-touchspin {
    height: 45px; }
    .dz-stepper.large .bootstrap-touchspin .btn {
      width: 45px;
      height: 45px; }
  .dz-stepper.rounded-stepper .bootstrap-touchspin {
    overflow: hidden; }
    .dz-stepper.rounded-stepper .bootstrap-touchspin .btn {
      border-radius: var(--border-radius-base); }
  .dz-stepper.danger .bootstrap-touchspin {
    border-color: #AE7156; }
    .dz-stepper.danger .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: #AE7156; }
    .dz-stepper.danger .bootstrap-touchspin .form-control {
      border-color: #AE7156;
      color: #AE7156; }
  .dz-stepper.secondary .bootstrap-touchspin {
    border-color: var(--secondary); }
    .dz-stepper.secondary .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: var(--secondary); }
    .dz-stepper.secondary .bootstrap-touchspin .form-control {
      border-color: var(--secondary);
      color: var(--secondary); }
  .dz-stepper.warning .bootstrap-touchspin {
    border-color: #EF962E; }
    .dz-stepper.warning .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: #EF962E; }
    .dz-stepper.warning .bootstrap-touchspin .form-control {
      border-color: #EF962E;
      color: #EF962E; }
  .dz-stepper.success .bootstrap-touchspin {
    border-color: #1CBD5C; }
    .dz-stepper.success .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: #1CBD5C; }
    .dz-stepper.success .bootstrap-touchspin .form-control {
      border-color: #1CBD5C;
      color: #1CBD5C; }
  .dz-stepper.info .bootstrap-touchspin {
    border-color: #A131AD; }
    .dz-stepper.info .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: #A131AD; }
    .dz-stepper.info .bootstrap-touchspin .form-control {
      border-color: #A131AD;
      color: #A131AD; }
  .dz-stepper.yellow .bootstrap-touchspin {
    border-color: #ffcc00; }
    .dz-stepper.yellow .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: #ffcc00; }
    .dz-stepper.yellow .bootstrap-touchspin .form-control {
      border-color: #ffcc00;
      color: #ffcc00; }
  .dz-stepper.green .bootstrap-touchspin {
    border-color: #4cd964; }
    .dz-stepper.green .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: #4cd964; }
    .dz-stepper.green .bootstrap-touchspin .form-control {
      border-color: #4cd964;
      color: #4cd964; }
  .dz-stepper.dark .bootstrap-touchspin {
    border-color: #000; }
    .dz-stepper.dark .bootstrap-touchspin .input-group-btn .btn {
      color: #fff;
      background-color: #000; }
    .dz-stepper.dark .bootstrap-touchspin .form-control {
      border-color: #000;
      color: #000; }
  .dz-stepper.style-2 {
    width: 100px;
    background-color: rgba(215, 215, 215, 0.5);
    border-radius: 6px; }
    .dz-stepper.style-2 .bootstrap-touchspin .input-group-btn .btn {
      width: 30px;
      height: 30px;
      border: 0; }
  .dz-stepper.style-3 {
    width: 110px;
    border-radius: 6px;
    background-color: var(--rgba-primary-1);
    padding: 6px; }
    .dz-stepper.style-3 .bootstrap-touchspin .input-group-btn .btn {
      background-color: var(--primary);
      width: 30px;
      height: 30px;
      border: 0;
      color: #fff;
      border-radius: 6px; }
  .dz-stepper.style-4 {
    width: 110px;
    border-radius: 6px;
    background-color: var(--primary);
    padding: 6px; }
    .dz-stepper.style-4 .bootstrap-touchspin .input-group-btn .btn {
      background-color: white;
      width: 30px;
      height: 30px;
      border: 0;
      color: var(--primary);
      border-radius: 6px; }
    .dz-stepper.style-4 .bootstrap-touchspin .form-control {
      color: #fff; }
  .dz-stepper.style-5 {
    width: 100px; }
    .dz-stepper.style-5 .bootstrap-touchspin .input-group-btn .btn {
      border-radius: 6px;
      width: 30px;
      height: 30px;
      border: 1px solid var(--primary); }

.dz-timeline {
  border-left: 2px solid var(--border-color);
  position: relative;
  padding-left: 20px;
  margin: 20px 10px; }
  .dz-timeline .timeline-item {
    position: relative;
    padding-bottom: 30px; }
    .dz-timeline .timeline-item:after {
      content: "";
      top: 0;
      left: -28px;
      position: absolute;
      border-radius: 50%;
      background-color: var(--primary);
      height: 14px;
      width: 14px; }
    .dz-timeline .timeline-item .timeline-tilte {
      margin: 8px 0; }
    .dz-timeline .timeline-item .timeline-date {
      margin: 0;
      font-weight: 500;
      color: var(--primary);
      display: block; }
    .dz-timeline .timeline-item .timeline-content {
      margin: 0; }
    .dz-timeline .timeline-item.light {
      background-color: var(--bg-white) !important;
      color: #000; }
      .dz-timeline .timeline-item.light .timeline-content {
        color: var(--dark); }
      .dz-timeline .timeline-item.light:before, .dz-timeline .timeline-item.light:after {
        background-color: var(--bg-white) !important; }
    .dz-timeline .timeline-item.primary {
      background-color: var(--primary) !important;
      color: #fff; }
      .dz-timeline .timeline-item.primary .timeline-date,
      .dz-timeline .timeline-item.primary .timeline-tilte,
      .dz-timeline .timeline-item.primary .timeline-content {
        color: #fff; }
      .dz-timeline .timeline-item.primary:before {
        background-color: var(--primary) !important; }
      .dz-timeline .timeline-item.primary:after {
        border-color: var(--primary) !important; }
    .dz-timeline .timeline-item.secondary {
      background-color: var(--secondary) !important;
      color: #fff; }
      .dz-timeline .timeline-item.secondary .timeline-date,
      .dz-timeline .timeline-item.secondary .timeline-tilte,
      .dz-timeline .timeline-item.secondary .timeline-content {
        color: #fff; }
      .dz-timeline .timeline-item.secondary:before, .dz-timeline .timeline-item.secondary:after {
        background-color: var(--secondary) !important; }
    .dz-timeline .timeline-item.success {
      background-color: #1CBD5C !important;
      color: #fff; }
      .dz-timeline .timeline-item.success .timeline-date,
      .dz-timeline .timeline-item.success .timeline-tilte,
      .dz-timeline .timeline-item.success .timeline-content {
        color: #fff; }
      .dz-timeline .timeline-item.success:before, .dz-timeline .timeline-item.success:after {
        background-color: #1CBD5C !important; }
    .dz-timeline .timeline-item.info {
      background-color: #A131AD !important;
      color: #fff; }
      .dz-timeline .timeline-item.info .timeline-date,
      .dz-timeline .timeline-item.info .timeline-tilte,
      .dz-timeline .timeline-item.info .timeline-content {
        color: #fff; }
      .dz-timeline .timeline-item.info:before, .dz-timeline .timeline-item.info:after {
        background-color: #A131AD !important; }
    .dz-timeline .timeline-item.warning {
      background-color: #EF962E !important;
      color: #fff; }
      .dz-timeline .timeline-item.warning .timeline-date,
      .dz-timeline .timeline-item.warning .timeline-tilte,
      .dz-timeline .timeline-item.warning .timeline-content {
        color: #fff; }
      .dz-timeline .timeline-item.warning:before, .dz-timeline .timeline-item.warning:after {
        background-color: #EF962E !important; }
    .dz-timeline .timeline-item.danger {
      background-color: #AE7156 !important;
      color: #fff; }
      .dz-timeline .timeline-item.danger .timeline-date,
      .dz-timeline .timeline-item.danger .timeline-tilte,
      .dz-timeline .timeline-item.danger .timeline-content {
        color: #fff; }
      .dz-timeline .timeline-item.danger:before, .dz-timeline .timeline-item.danger:after {
        background-color: #AE7156 !important; }
  .dz-timeline.timeline-panel {
    padding-left: 30px; }
    .dz-timeline.timeline-panel .timeline-item {
      margin-bottom: 30px;
      background-color: #fff;
      box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
      border-radius: var(--border-radius-base);
      padding: 12px 20px;
      position: relative; }
      .dz-timeline.timeline-panel .timeline-item:before {
        content: "";
        position: absolute;
        top: 15px;
        left: -8px;
        background-color: #fff;
        box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
        width: 20px;
        height: 20px;
        transform: rotate(45deg);
        z-index: -1; }
      .dz-timeline.timeline-panel .timeline-item:after {
        top: 17px;
        left: -38px; }
  .dz-timeline.timeline-number {
    border-left: 3px solid var(--primary);
    padding-left: 35px; }
    .dz-timeline.timeline-number .timeline-item {
      padding: 0;
      margin-bottom: 30px; }
      .dz-timeline.timeline-number .timeline-item:after {
        left: -35px;
        top: 50%;
        width: 25px;
        transform: translateY(-50%);
        height: 3px;
        border-radius: 0;
        border: 0;
        background: var(--primary); }
      .dz-timeline.timeline-number .timeline-item .line-content-box {
        background: var(--bg-white);
        border-radius: var(--border-radius-base);
        box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.2);
        padding: 15px 15px 15px 20px;
        text-align: left; }
        .dz-timeline.timeline-number .timeline-item .line-content-box.media img {
          border-radius: var(--border-radius-base);
          min-width: 95px; }
        .dz-timeline.timeline-number .timeline-item .line-content-box p {
          margin-bottom: 0; }
      .dz-timeline.timeline-number .timeline-item .line-num {
        border-radius: 40px;
        box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.3);
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        height: 35px;
        line-height: 35px;
        text-align: center;
        position: absolute;
        width: 35px;
        top: 50%;
        left: -25px;
        background: var(--primary);
        transform: translateY(-50%);
        z-index: 9; }

.toast {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  overflow: hidden;
  border-radius: var(--border-radius-base); }
  .toast .toast-header {
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border-color); }
  .toast.style-1 {
    position: relative;
    z-index: 1; }
    .toast.style-1 .toast-body {
      display: flex;
      align-items: center;
      padding: 16px; }
      .toast.style-1 .toast-body svg {
        flex: 0 0 35px;
        width: 35px;
        height: 35px;
        max-width: 35px; }
      .toast.style-1 .toast-body .toast-content strong {
        color: var(--primary);
        font-weight: 500; }
      .toast.style-1 .toast-body .btn-close {
        top: 12px;
        right: 12px;
        z-index: 10; }
    .toast.style-1.toast-primary {
      background-color: var(--primary);
      color: #fff; }
      .toast.style-1.toast-primary .text-primary svg path {
        fill: #fff !important; }
      .toast.style-1.toast-primary .toast-content strong {
        color: #fff;
        font-weight: 500; }
      .toast.style-1.toast-primary .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); }
    .toast.style-1.toast-secondary {
      background-color: var(--secondary);
      color: #fff; }
      .toast.style-1.toast-secondary .text-primary svg path {
        fill: #fff !important; }
      .toast.style-1.toast-secondary .toast-content strong {
        color: #fff;
        font-weight: 500; }
      .toast.style-1.toast-secondary .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); }
    .toast.style-1.toast-success {
      background-color: #1CBD5C;
      color: #fff; }
      .toast.style-1.toast-success .text-primary svg path {
        fill: #fff !important; }
      .toast.style-1.toast-success .toast-content strong {
        color: #fff;
        font-weight: 500; }
      .toast.style-1.toast-success .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); }
    .toast.style-1.toast-warning {
      background-color: #EF962E;
      color: #fff; }
      .toast.style-1.toast-warning .text-primary svg path {
        fill: #fff !important; }
      .toast.style-1.toast-warning .toast-content strong {
        color: #fff;
        font-weight: 500; }
      .toast.style-1.toast-warning .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); }
    .toast.style-1.toast-danger {
      background-color: #AE7156;
      color: #fff; }
      .toast.style-1.toast-danger .text-primary svg path {
        fill: #fff !important; }
      .toast.style-1.toast-danger .toast-content strong {
        color: #fff;
        font-weight: 500; }
      .toast.style-1.toast-danger .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); }
    .toast.style-1.toast-info {
      background-color: #A131AD;
      color: #fff; }
      .toast.style-1.toast-info .text-primary svg path {
        fill: #fff !important; }
      .toast.style-1.toast-info .toast-content strong {
        color: #fff;
        font-weight: 500; }
      .toast.style-1.toast-info .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); }
    .toast.style-1.toast-dark {
      background-color: #293041;
      color: #fff; }
      .toast.style-1.toast-dark .text-primary svg path {
        fill: #fff !important; }
      .toast.style-1.toast-dark .toast-content strong {
        color: #fff;
        font-weight: 500; }
      .toast.style-1.toast-dark .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); }

.dz-swiper {
  margin-left: -15px !important;
  margin-right: -15px !important; }
  .dz-swiper .swiper-slide {
    width: 300px; }
    .dz-swiper .swiper-slide:first-child {
      margin-left: 15px; }

.swiper-center {
  margin-left: -15px !important;
  margin-right: -15px !important; }
  .swiper-center .swiper-slide {
    width: 300px; }
    .swiper-center .swiper-slide:first-child {
      margin-left: 15px; }

.swiper-slider-full {
  margin-right: -15px !important;
  margin-left: -15px !important; }
  .swiper-slider-full .swiper-slide {
    width: 100%; }

.dz-swiper-gallery-wrapper {
  overflow: hidden;
  position: relative; }
  .dz-swiper-gallery-wrapper .swiper-gallery-prev,
  .dz-swiper-gallery-wrapper .swiper-gallery-next {
    border: 0;
    background-color: rgba(0, 0, 0, 0.43) !important;
    color: rgba(255, 255, 255, 0.68);
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-base);
    line-height: 40px;
    transform: translateY(-50%); }
    .dz-swiper-gallery-wrapper .swiper-gallery-prev:after,
    .dz-swiper-gallery-wrapper .swiper-gallery-next:after {
      font-size: 1.5rem;
      font-family: 'FontAwesome'; }
    .dz-swiper-gallery-wrapper .swiper-gallery-prev:hover,
    .dz-swiper-gallery-wrapper .swiper-gallery-next:hover {
      color: rgba(255, 255, 255, 0.43); }
  .dz-swiper-gallery-wrapper .swiper-gallery-prev:after {
    content: '\f105'; }
  .dz-swiper-gallery-wrapper .swiper-gallery-next:after {
    content: '\f104'; }
  .dz-swiper-gallery-wrapper .dz-swiper-gallery-thumb {
    margin-top: 10px; }

.pagination-dots.style-1 {
  bottom: 0 !important;
  opacity: 1;
  position: unset;
  padding: 10px 0;
  z-index: 1; }
  .pagination-dots.style-1 .swiper-pagination-bullet {
    margin: 0 4px;
    width: 16px;
    border-radius: 5px;
    height: 6px;
    background: #d2d2d2;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .pagination-dots.style-1 .swiper-pagination-bullet-active {
      background: var(--primary);
      width: 27px; }

.swiper-slide .job-post {
  margin-bottom: 8px; }

.dz-spinner.box-spinner {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  margin-left: auto;
  text-align: center;
  margin-right: auto;
  line-height: 80px;
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-base); }

.dz-spinner .spinner-lg {
  width: 3rem;
  height: 3rem; }

.dz-spinner .spinner-md {
  width: 2.5rem;
  height: 2.5rem; }

.dz-spinner .spinner-sm {
  width: 1.5rem;
  height: 1.5rem; }

.dz-lightgallery .gallery-box {
  padding-bottom: 10px;
  display: block; }
  .dz-lightgallery .gallery-box img {
    width: 100%;
    height: 200px;
    object-fit: cover; }

.dz-lightgallery.style-2 {
  display: flex;
  flex-wrap: wrap; }
  .dz-lightgallery.style-2 .gallery-box {
    width: 33.33%;
    padding-bottom: 5px;
    padding-right: 5px; }
    .dz-lightgallery.style-2 .gallery-box img {
      height: 110px; }

.divider {
  position: relative;
  width: 100%;
  clear: both;
  border-color: var(--primary);
  border-width: 2px 0 0 0;
  margin: 15px 0;
  border-style: solid;
  z-index: 1; }
  .divider.style-2 {
    display: block;
    border-color: var(--border-color);
    border-width: 1px 0 0 0;
    margin-bottom: 30px; }
  .divider.style-3 {
    width: auto;
    display: block;
    border-color: var(--border-color);
    border-width: 1px 0 0 0;
    margin: 15px -15px;
    padding: 0 15px; }
  .divider.divider-dotted {
    border-style: dotted; }
  .divider.divider-dashed {
    border-style: dashed; }
  .divider.border-light {
    border-color: #efefef !important; }
  .divider.inner-divider {
    padding: 10px 0; }
    .divider.inner-divider > i,
    .divider.inner-divider > span {
      color: #fff;
      position: absolute;
      text-align: center;
      background-color: var(--primary);
      left: 50%;
      transform: translateX(-50%); }
    .divider.inner-divider > i {
      width: 35px;
      height: 35px;
      line-height: 35px;
      border-radius: 50%;
      top: -18px; }
    .divider.inner-divider > span {
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 500;
      line-height: 13px;
      top: -15px;
      border-radius: 2px; }
    .divider.inner-divider.left i,
    .divider.inner-divider.left span {
      left: 0;
      transform: unset; }
    .divider.inner-divider.right i,
    .divider.inner-divider.right span {
      left: auto;
      right: 0;
      transform: unset; }
    .divider.inner-divider.border-primary i,
    .divider.inner-divider.border-primary span {
      background-color: var(--primary); }
    .divider.inner-divider.border-primary.transparent span {
      color: var(--primary); }
    .divider.inner-divider.border-secondary i,
    .divider.inner-divider.border-secondary span {
      background-color: var(--secondary); }
    .divider.inner-divider.border-secondary.transparent span {
      color: var(--secondary); }
    .divider.inner-divider.border-success i,
    .divider.inner-divider.border-success span {
      background-color: #1CBD5C; }
    .divider.inner-divider.border-success.transparent span {
      color: #1CBD5C; }
    .divider.inner-divider.border-danger i,
    .divider.inner-divider.border-danger span {
      background-color: #AE7156; }
    .divider.inner-divider.border-danger.transparent span {
      color: #AE7156; }
    .divider.inner-divider.border-info i,
    .divider.inner-divider.border-info span {
      background-color: #A131AD; }
    .divider.inner-divider.border-info.transparent span {
      color: #A131AD; }
    .divider.inner-divider.border-warning i,
    .divider.inner-divider.border-warning span {
      background-color: #EF962E; }
    .divider.inner-divider.border-warning.transparent span {
      color: #EF962E; }
    .divider.inner-divider.border-light i,
    .divider.inner-divider.border-light span {
      background-color: #efefef;
      color: #000; }
    .divider.inner-divider.border-dark i,
    .divider.inner-divider.border-dark span {
      background-color: #293041; }
    .divider.inner-divider.border-dark.transparent span {
      color: #293041; }
    .divider.inner-divider.transparent {
      border-width: 1px 0 0 0; }
      .divider.inner-divider.transparent span {
        background-color: var(--bg-white);
        color: #303733; }

.dz-breadcrumb {
  box-shadow: 0 0px 12px 0px rgba(112, 112, 112, 0.12);
  background-color: #fff;
  position: relative;
  z-index: 1; }
  .dz-breadcrumb .breadcrumb .breadcrumb-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f0757; }
    .dz-breadcrumb .breadcrumb .breadcrumb-item i {
      margin-right: 0.5rem; }
  .dz-breadcrumb.default {
    background-color: transparent;
    box-shadow: unset; }
    .dz-breadcrumb.default .breadcrumb {
      box-shadow: 0 0px 12px 0px rgba(112, 112, 112, 0.12);
      background-color: #fff;
      border-radius: var(border-radius-base); }
  .dz-breadcrumb.style-3 {
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    background-position: center center; }
    .dz-breadcrumb.style-3:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      background-color: #061238;
      opacity: 0.75; }
    .dz-breadcrumb.style-3 .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.style-3 .breadcrumb a {
      color: #fff; }
    .dz-breadcrumb.style-3 .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
      color: #fff; }
  .dz-breadcrumb.bg-primary .breadcrumb .breadcrumb-item,
  .dz-breadcrumb.bg-primary .breadcrumb a, .dz-breadcrumb.bg-secondary .breadcrumb .breadcrumb-item,
  .dz-breadcrumb.bg-secondary .breadcrumb a, .dz-breadcrumb.bg-success .breadcrumb .breadcrumb-item,
  .dz-breadcrumb.bg-success .breadcrumb a, .dz-breadcrumb.bg-danger .breadcrumb .breadcrumb-item,
  .dz-breadcrumb.bg-danger .breadcrumb a, .dz-breadcrumb.bg-info .breadcrumb .breadcrumb-item,
  .dz-breadcrumb.bg-info .breadcrumb a, .dz-breadcrumb.bg-warning .breadcrumb .breadcrumb-item,
  .dz-breadcrumb.bg-warning .breadcrumb a, .dz-breadcrumb.bg-dark .breadcrumb .breadcrumb-item,
  .dz-breadcrumb.bg-dark .breadcrumb a {
    color: #fff; }
  .dz-breadcrumb.bg-primary .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-secondary .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-success .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-danger .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-info .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-warning .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-dark .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    color: #fff; }

.offcanvas {
  background-color: var(--bg-white); }
  .offcanvas .drage-close {
    position: relative;
    display: block;
    width: 100%; }
    .offcanvas .drage-close:after {
      position: absolute;
      content: "";
      width: 60px;
      height: 5px;
      top: 10px;
      background-color: #eee;
      border-radius: var(--border-radius-base);
      left: 50%;
      transform: translateX(-50%); }
  .offcanvas.offcanvas-bottom {
    border-radius: 0.625rem 0.625rem 0 0;
    height: unset;
    border-top: 0; }
  .offcanvas.offcanvas-top {
    border-radius: 0 0 10px 10px;
    height: unset;
    border-bottom: 0;
    bottom: auto; }
  .offcanvas.offcanvas-end {
    width: 100%;
    border-left: 0; }
  .offcanvas .offcanvas-header {
    padding: 15px 15px;
    border-bottom: 1px solid var(--border-color); }
    .offcanvas .offcanvas-header .offcanvas-title {
      line-height: 1.2; }
    .offcanvas .offcanvas-header .btn-close {
      background: none;
      opacity: 1;
      text-align: center;
      display: inline-block;
      line-height: 25px;
      font-size: 18px; }
  .offcanvas .offcanvas-backdrop.show {
    opacity: 0.3 !important; }
  .offcanvas .offcanvas-body {
    max-height: 100vh; }
    .offcanvas .offcanvas-body.fixed {
      border-radius: 0;
      margin-bottom: 200px; }
      .offcanvas .offcanvas-body.fixed .view-title {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--bg-white);
        z-index: 999;
        width: 100%;
        padding: 0; }
    .offcanvas .offcanvas-body .btn-close {
      width: auto;
      height: auto;
      line-height: initial; }

.highlight-text {
  color: var(--primary);
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 600; }

.scale-box {
  position: relative;
  animation: scale-box 2s infinite; }

@keyframes scale-box {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(0.7); }
  100% {
    transform: scale(1); } }

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, 50px); }

.modal.fade.show .modal-dialog {
  transform: none; }

.modal.fade.show.modal-static .modal-dialog {
  transform: scale(1.02); }

.modal .modal-dialog .modal-content {
  border-radius: 0.625rem; }
  .modal .modal-dialog .modal-content .modal-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin: 0; }
    .modal .modal-dialog .modal-content .modal-header .modal-title {
      line-height: 1.2; }

.top-right {
  position: absolute;
  top: 15px;
  right: 15px; }

.btn-close {
  background: none;
  opacity: 1;
  text-align: center;
  line-height: 25px;
  font-size: 18px; }

.pwa-offcanvas {
  text-align: center; }
  .pwa-offcanvas .title {
    margin-bottom: 10px; }
  .pwa-offcanvas .logo {
    width: 80px;
    margin: 0 auto 20px;
    display: block; }
  .pwa-offcanvas p {
    margin-bottom: 25px;
    color: #9c9c9c;
    line-height: 1.6; }
  .pwa-offcanvas.show {
    visibility: visible; }
  .pwa-offcanvas .btn-sm, .pwa-offcanvas .btn-group-sm > .btn {
    padding: 10px 12px;
    border-radius: 6px; }

.pwa-backdrop {
  visibility: hidden; }
  .pwa-backdrop.show {
    visibility: visible;
    transition: opacity 0.15s linear; }

.dz-avatar {
  display: flex;
  align-items: center; }
  .dz-avatar .avatar-list {
    margin-right: 10px;
    margin-bottom: 10px; }
    .dz-avatar .avatar-list .media img {
      border-radius: var(--border-radius-base); }
  .dz-avatar.list-stacked .avatar-list {
    margin-right: -10px;
    margin-bottom: 0; }
    .dz-avatar.list-stacked .avatar-list .media img {
      box-shadow: 0 0 0 2px #fff; }
  .dz-avatar.list-status .avatar-list .media {
    position: relative; }
    .dz-avatar.list-status .avatar-list .media img {
      box-shadow: 0 0 0 2px #fff; }
    .dz-avatar.list-status .avatar-list .media .list-status {
      width: 12px;
      min-width: 12px;
      height: 12px;
      border-radius: 50%;
      position: absolute;
      bottom: 0;
      right: 0;
      border: 2px solid #fff; }

.add-banner {
  box-shadow: none;
  border: 1px solid var(--border-color);
  overflow: hidden;
  z-index: 1;
  height: 168px;
  background-size: cover;
  margin-bottom: 0;
  background-repeat: no-repeat; }
  .add-banner .circle-1 {
    position: absolute;
    top: -60px;
    right: -56px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: rgba(103, 179, 204, 0.33); }
  .add-banner .circle-2 {
    position: absolute;
    bottom: -80px;
    left: 5px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(103, 179, 204, 0.33); }
  .add-banner:after {
    content: "";
    position: absolute;
    background-image: url(../images/svg/shape.svg);
    top: 40px;
    left: 8px;
    width: 25px;
    height: 25px;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat; }
  .add-banner .card-body {
    display: flex;
    align-items: center; }
    .add-banner .card-body .media {
      margin-right: 20px; }
    .add-banner .card-body .location {
      margin-bottom: 10px;
      display: block; }
    .add-banner .card-body .card-info {
      width: 100%;
      color: #203647;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .add-banner .card-body .card-info .title {
        font-weight: 800;
        position: relative;
        z-index: 1;
        color: #203647; }
        .add-banner .card-body .card-info .title:after {
          content: attr(data-text);
          position: absolute;
          top: 4px;
          width: 100%;
          -webkit-text-fill-color: transparent;
          -webkit-text-stroke: #203647;
          z-index: -1;
          -webkit-text-stroke-width: 0.4px;
          right: -2px; }

.add-banner2 {
  box-shadow: none;
  overflow: hidden;
  z-index: 1;
  background-size: cover;
  margin-bottom: 0;
  background-repeat: no-repeat; }
  .add-banner2 .card-body {
    display: flex;
    align-items: center; }
    .add-banner2 .card-body .media {
      margin-right: 20px; }
    .add-banner2 .card-body .location {
      margin-bottom: 10px;
      display: block; }
    .add-banner2 .card-body .card-info {
      width: 100%;
      color: #203647;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .add-banner2 .card-body .card-info .title {
        font-weight: 800;
        position: relative;
        z-index: 1;
        color: #203647; }
        .add-banner2 .card-body .card-info .title:after {
          content: attr(data-text);
          position: absolute;
          top: 4px;
          width: 100%;
          -webkit-text-fill-color: transparent;
          -webkit-text-stroke: #203647;
          z-index: -1;
          -webkit-text-stroke-width: 0.4px;
          right: -2px; }
      .add-banner2 .card-body .card-info span {
        font-size: 12px;
        margin-bottom: 10px; }
    .add-banner2 .card-body .btn {
      width: 90px;
      height: 40px;
      padding: 0; }

.add-banner3 {
  box-shadow: none;
  overflow: hidden;
  z-index: 1;
  background-color: var(--rgba-primary-1);
  margin-bottom: 0;
  border-radius: 0; }
  .add-banner3 .card-body {
    display: flex;
    align-items: center; }
    .add-banner3 .card-body .media {
      margin-right: 20px; }

.add-banner4 {
  overflow: unset;
  box-shadow: none;
  background-color: var(--rgba-primary-1);
  margin: 30px 15px 20px;
  z-index: 1; }
  .add-banner4 .card-body {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 25px; }
    .add-banner4 .card-body .card-media {
      margin: -40px 20px -25px 0px;
      width: 145px;
      transform: rotate(-10deg); }
    .add-banner4 .card-body .media {
      margin-right: 20px; }
    .add-banner4 .card-body .location {
      margin-bottom: 10px;
      display: block; }
    .add-banner4 .card-body .card-info {
      width: 100%;
      color: #203647;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .add-banner4 .card-body .card-info .title {
        font-size: 16px;
        font-weight: 600;
        position: relative;
        z-index: 1; }
      .add-banner4 .card-body .card-info span {
        font-size: 14px;
        margin-bottom: 2px;
        font-weight: 500; }
    .add-banner4 .card-body .btn {
      width: 100px;
      height: 35px;
      padding: 0;
      border-radius: 6px;
      font-size: 13px; }

.add-banner5 {
  overflow: unset;
  background: linear-gradient(122.37deg, #003B37 -1.95%, rgba(0, 59, 55, 0.9) 45.9%, rgba(0, 59, 55, 0.6274) 97.18%, rgba(0, 59, 55, 0) 126.51%);
  margin: 30px 0 80px;
  z-index: 1;
  box-shadow: 0px 25px 70px -30px rgba(0, 0, 0, 0.7);
  position: relative;
  height: unset; }
  .add-banner5 .card-body {
    padding: 30px 20px 18px 20px; }
    .add-banner5 .card-body .card-info {
      width: 100%;
      color: #fff; }
      .add-banner5 .card-body .card-info .title {
        font-weight: 600;
        position: relative;
        font-size: 24px;
        margin-bottom: 7px;
        line-height: 24px;
        z-index: 1;
        color: var(--primary); }
        .add-banner5 .card-body .card-info .title:after {
          position: absolute;
          top: 4px;
          width: 100%;
          -webkit-text-fill-color: transparent;
          -webkit-text-stroke: #664b4b;
          z-index: -1;
          -webkit-text-stroke-width: 1px;
          right: -2px; }
      .add-banner5 .card-body .card-info .card-media {
        position: absolute;
        top: 0px;
        right: -8px; }
      .add-banner5 .card-body .card-info .price {
        margin-bottom: 15px;
        font-weight: 500px; }
        .add-banner5 .card-body .card-info .price del {
          margin-left: 10px;
          color: #AAAAAA; }
    .add-banner5 .card-body .btn {
      width: 100px;
      height: 35px;
      padding: 0;
      background-color: var(--bg-white);
      color: #000;
      border-radius: 6px;
      font-size: 14px; }

/*==== 6. Pages ====*/
.bell-icon {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background-color: var(--rgba-primary-2);
  border-radius: var(--border-radius-base);
  text-align: center;
  display: block; }
  .bell-icon svg path {
    fill: var(--primary); }
  .bell-icon.style-2 {
    line-height: 46px; }
    .bell-icon.style-2 i {
      font-size: 18px;
      color: var(--primary); }

.author-notification .inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.notify-cart {
  width: 80px;
  height: 42px;
  background-color: var(--rgba-primary-1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .notify-cart span {
    display: flex;
    flex: 1;
    justify-content: center; }
  .notify-cart .badge {
    width: 42px;
    height: 42px;
    background-color: #C29C1D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-white); }

.categorie-swiper .swiper-slide {
  width: auto;
  margin-left: 12px; }

.title-bar {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
  justify-content: space-between; }
  .title-bar .dz-title {
    font-weight: 500;
    margin-bottom: 0; }

.swiper-btn-center-lr {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 20px;
  margin-bottom: 20px; }

.recomand-swiper .swiper-slide {
  transform: scaleY(0.9);
  -webkit-transform: scaleY(0.9);
  transition: 0.5s; }
  .recomand-swiper .swiper-slide:first-child {
    margin-right: 15px; }
  .recomand-swiper .swiper-slide.swiper-slide-active {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -o-transform: scaleY(1); }

.recomanded-swiper .swiper-slide:first-child {
  margin-left: 15px; }

.recomanded-swiper .swiper-slide:last-child {
  margin-right: 15px; }

.item-bookmark svg {
  width: 24px;
  height: 24px; }

.item-bookmark.active svg path {
  fill: #FF6464;
  stroke: #FF6464; }

.item-bookmark.active.icon-2 {
  background: #fff; }
  .item-bookmark.active.icon-2 svg path {
    fill: #FF6464;
    stroke: #FF6464; }

.item-bookmark.icon-1 {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  left: 10px; }

.item-bookmark.icon-2 {
  width: 32px;
  background: #ff6464;
  height: 36px;
  box-shadow: 4px 4px 20px -5px rgba(0, 0, 0, 0.7);
  text-align: center;
  line-height: 36px;
  border-radius: 0 0 12px 0;
  position: absolute;
  top: 0;
  left: 0; }
  .item-bookmark.icon-2 svg {
    width: 20px;
    height: 20px; }
    .item-bookmark.icon-2 svg path {
      fill: #fff;
      stroke: #fff; }

.item-bookmark.icon-3 {
  width: 50px;
  height: 50px;
  line-height: 50px;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  background-color: var(--bg-white);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  z-index: 999;
  bottom: -15px;
  right: 15px; }
  .item-bookmark.icon-3 svg {
    width: 24px;
    height: 24px; }

.search-icon svg {
  width: 24px !important;
  height: 24px !important; }

.r-btn {
  color: #7D8FAB !important;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 9;
  display: flex;
  align-content: center;
  justify-content: center; }
  .r-btn:hover, .r-btn:focus {
    color: #7D8FAB; }

.blog-area {
  margin-bottom: 25px; }
  .blog-area .media-box {
    margin-bottom: 10px;
    position: relative; }
    .blog-area .media-box img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-radius: var(--border-radius-base); }
    .blog-area .media-box .badge-bookmark {
      background-color: var(--bg-white);
      width: 25px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      position: absolute;
      top: 10px;
      right: 10px;
      box-shadow: 0 2px 15px -5px rgba(0, 0, 0, 0.7); }
      .blog-area .media-box .badge-bookmark i {
        color: #FFA902; }
  .blog-area .blog-list .list a {
    display: flex; }
  .blog-area .blog-list .blog-content p {
    font-size: 14px;
    color: #767676; }
  .blog-area .blog-list .blog-content .timline li span {
    font-size: 12px; }

.timeline {
  display: flex;
  align-items: center; }
  .timeline li {
    position: relative;
    padding: 0 6px 0 0; }
    .timeline li .saprete-circle {
      width: 6px;
      height: 6px;
      background-color: #a5a0a0;
      border-radius: 50%; }

.blog-detail .media-box {
  margin: -15px;
  position: relative; }
  .blog-detail .media-box .media-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 1; }
    .blog-detail .media-box .media-content h6, .blog-detail .media-box .media-content .h6, .blog-detail .media-box .media-content h2, .blog-detail .media-box .media-content .h2 {
      color: #fff; }
    .blog-detail .media-box .media-content .detail-text .timeline li .text-soft {
      color: #fff !important; }
  .blog-detail .media-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%; }

.like-button {
  position: relative;
  font-size: 20px;
  --xw:10px; }
  .like-button:focus {
    outline: 0; }
  .like-button:before, .like-button:after {
    position: absolute;
    content: '';
    display: block;
    width: 200%;
    height: 100%;
    left: -50%;
    z-index: -1000;
    transition: all ease-in-out 0.5s;
    background-repeat: no-repeat; }
  .like-button:before {
    display: none;
    top: -35%;
    background-image: radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, transparent 20%, #ff0081 20%, transparent 30%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ff0081 15%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%);
    background-size: calc(10% + var(--xw)) calc(10% + var(--xw)), calc(20% + var(--xw)) calc(20% + var(--xw)), calc(15% + var(--xw)) calc(15% + var(--xw)), calc(20% + var(--xw)) calc(20% + var(--xw)), calc(18% + var(--xw)) calc(18% + var(--xw)), calc(10% + var(--xw)) calc(10% + var(--xw)), calc(15% + var(--xw)) calc(15% + var(--xw)), calc(10% + var(--xw)) calc(10% + var(--xw)), calc(18% + var(--xw)) calc(18% + var(--xw)); }
  .like-button:after {
    display: none;
    bottom: -25%;
    background-image: radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ff0081 15%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%);
    background-size: calc(15% + var(--xw)) calc(15% + var(--xw)), calc(20% + var(--xw)) calc(20% + var(--xw)), calc(18% + var(--xw)) calc(18% + var(--xw)), calc(20% + var(--xw)) calc(20% + var(--xw)), calc(15% + var(--xw)) calc(15% + var(--xw)), calc(10% + var(--xw)) calc(10% + var(--xw)), calc(20% + var(--xw)) calc(20% + var(--xw)); }
  .like-button:active {
    transform: scale(0.9); }
  .like-button.active:before {
    display: block;
    animation: likeButton ease-in-out 0.75s forwards; }
  .like-button.active:after {
    display: block;
    animation: likeButtonBottom ease-in-out 0.75s forwards; }
  .like-button.active .fa-heart:before {
    font-weight: 700;
    color: #ff0081; }

@keyframes likeButton {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%; }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%; }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%; } }

@keyframes likeButtonBottom {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%; }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%; }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%; } }

.fb {
  padding-bottom: 80px;
  overflow: hidden; }

.team-swiper-4 .swiper-wrapper .swiper-slide:first-child {
  margin-left: 15px; }

.team-swiper-4 .swiper-wrapper .swiper-slide:last-child {
  margin-right: 15px; }

.text-underline {
  text-decoration: underline !important;
  text-underline-offset: 3px; }

.light-text {
  color: #303733;
  font-size: 0.875rem;
  font-weight: 400; }

.para-title {
  font-size: 14px;
  font-weight: 400; }

ul.list-check {
  line-height: 1.7; }
  ul.list-check li {
    color: #313131;
    font-size: 14px;
    margin-left: 30px;
    position: relative; }
    ul.list-check li:after {
      content: "\f125";
      font-family: Flaticon;
      width: 5px;
      height: 5px;
      top: 10px;
      color: var(--primary);
      left: -30px;
      border-radius: 30px;
      line-height: 5px;
      position: absolute; }

.flex-1 {
  flex: 1; }

.team-swiper-4 .swiper-slide {
  width: auto; }

.dz-banner-heading .overlay-black-light {
  position: relative;
  z-index: -1; }
  .dz-banner-heading .overlay-black-light .bnr-img {
    width: 100%;
    height: 350px;
    object-fit: cover; }
  .dz-banner-heading .overlay-black-light:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0));
    width: 100%;
    height: 100%; }
  .dz-banner-heading .overlay-black-light.style-2:after {
    background: linear-gradient(1deg, rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0)); }

.company-detail .item-inner {
  display: flex;
  align-items: center; }
  .company-detail .item-inner li {
    display: flex;
    align-items: center;
    padding: 3px 8px;
    margin: -3px -8px;
    margin-right: 10px;
    border-right: 1px solid var(--border-color); }
    .company-detail .item-inner li:last-child {
      border-right: 0; }
    .company-detail .item-inner li h6, .company-detail .item-inner li .h6 {
      margin-left: 5px;
      margin-bottom: 0;
      font-size: 14px; }
    .company-detail .item-inner li .delivery {
      color: var(--primary); }
      .company-detail .item-inner li .delivery h6, .company-detail .item-inner li .delivery .h6 {
        color: var(--primary); }
    .company-detail .item-inner li .reviews-info {
      display: flex;
      align-items: center; }
      .company-detail .item-inner li .reviews-info i {
        color: #FFA902;
        font-size: 20px; }

.company-detail.style-2 .item-inner {
  justify-content: space-between;
  margin-bottom: 20px; }
  .company-detail.style-2 .item-inner li {
    padding: 0;
    margin: 0;
    border: 0; }
  .company-detail.style-2 .item-inner .text {
    font-size: 15px;
    font-weight: 500; }

.item-list-2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 20px 0;
  border-bottom: 2px dashed var(--border-color);
  padding-bottom: 20px; }
  .item-list-2 .input-group {
    margin-bottom: 0; }
  .item-list-2 .text-style {
    margin-bottom: 10px;
    display: block; }
  .item-list-2 .price {
    margin-right: 15px; }
    .item-list-2 .price h3, .item-list-2 .price .h3 {
      margin-bottom: 0; }
      .item-list-2 .price h3 del, .item-list-2 .price .h3 del {
        font-weight: 400;
        font-size: 1rem;
        color: #BFC9DA;
        margin-left: 10px; }

.view-title {
  border-top: 2px dashed var(--border-color);
  padding-top: 20px; }
  .view-title ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0; }
    .view-title ul li span {
      display: block;
      font-size: 0.875rem;
      font-weight: 700; }
    .view-title ul li:nth-child(2n+3) {
      padding: 10px 0; }
  .view-title .promo-bx {
    width: 100%;
    height: 100%;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    font-size: 14px; }
    .view-title .promo-bx span {
      color: var(--secondary);
      font-weight: 600; }

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%; }
  .banner-content .timeline {
    display: flex;
    align-items: center; }
    .banner-content .timeline li {
      padding: 0 8px;
      font-size: 0.875rem;
      font-weight: 600;
      border-left: 1px solid var(--border-color); }
      .banner-content .timeline li:first-child {
        padding-left: 0;
        border-left: 0; }

.featured-box .item-bx {
  text-align: center;
  background: var(--bg-white);
  box-shadow: 0 0 15px -5px #d9b6b6;
  border-radius: var(--border-radius-base);
  padding: 15px 10px; }
  .featured-box .item-bx .media {
    margin: 0 auto; }
    .featured-box .item-bx .media img {
      border-radius: 50%; }
  .featured-box .item-bx .item-content small, .featured-box .item-bx .item-content .small {
    display: block;
    font-size: 0.875rem;
    font-weight: 600; }
  .featured-box .item-bx .item-content .price {
    font-weight: 600;
    color: #EF962E; }

.form .form-item {
  margin-bottom: 15px; }
  .form .form-item .form-control {
    border-radius: var(--border-radius-base);
    padding: 10px; }
  .form .form-item .form-label {
    font-size: 0.75rem; }
  .form .form-item .input-group-text {
    border-radius: var(--border-radius-base);
    padding-right: 0; }
    .form .form-item .input-group-text a {
      font-size: 16px;
      color: var(--dark);
      display: flex;
      align-items: center; }
      .form .form-item .input-group-text a img {
        width: 20px;
        min-width: 20px;
        margin-right: 10px; }

.item-list .list {
  padding: 6px 0; }
  .item-list .list a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark); }

.info-line {
  color: var(--dark);
  font-size: 0.75rem;
  margin: 0; }

.payment-confirm-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/background/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; }
  .payment-confirm-wrapper.style-2 {
    background-image: url("../images/milk/bg-shape.jpg"); }
    .payment-confirm-wrapper.style-2 i {
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; }

.payment-box {
  text-align: center;
  color: #fff; }
  .payment-box i {
    font-size: 40px;
    color: var(--primary);
    background: #ededed;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    box-shadow: 0px 12px 30px 0px #027335; }
  .payment-box .delivery-btn {
    width: 190px;
    height: 45px;
    margin-top: 30px;
    color: var(--primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-base); }
    .payment-box .delivery-btn .next {
      width: 30px;
      height: 30px;
      background: var(--primary);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px; }
      .payment-box .delivery-btn .next svg {
        width: 20px;
        height: 20px; }

.account-box.style-1 {
  top: -20px; }

.review-box .card {
  box-shadow: 0 0px 20px -10px rgba(0, 0, 0, 0.25); }

.review-box .review-content ul li {
  padding-right: 4px; }
  .review-box .review-content ul li i {
    color: #FFA902; }

.review-box .add-btn {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9; }

.review-box .add-review .btn-close {
  position: absolute;
  top: 10px;
  right: 10px; }

.review-box .add-review .modal-body {
  text-align: center; }

.review-box .add-review .rating-stars ul li i {
  font-size: 30px; }

.shop-cart-wrapper {
  padding-bottom: 250px; }

.tag-group .tag-btn {
  padding: 12px 25px;
  border: 2px solid var(--border-color);
  display: inline-block;
  border-radius: var(--border-radius-base);
  text-align: center;
  background-color: var(--bg-white);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--dark); }
  .tag-group .tag-btn:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #fff; }
  .tag-group .tag-btn.active {
    display: flex;
    align-items: center;
    padding: 12px 20px; }
  .tag-group .tag-btn .active-status {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px; }

.order-status {
  margin: 25px 0; }
  .order-status .tag-status {
    display: flex;
    align-items: center;
    justify-content: space-between; }

.view-title {
  padding-top: 15px;
  border-top: 2px dashed var(--border-color); }
  .view-title ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0; }
    .view-title ul li span {
      display: block;
      font-size: 0.875rem;
      font-weight: 700; }
    .view-title ul li:nth-child(2n+3) {
      padding: 10px 0; }
  .view-title .promo-bx {
    width: 100%;
    height: 100%;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    background-color: var(--rgba-primary-2);
    padding: 10px 25px;
    border-radius: var(--border-radius-base); }
    .view-title .promo-bx span {
      color: var(--primary);
      font-weight: 600; }

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%; }
  .banner-content .timeline {
    display: flex;
    align-items: center; }
    .banner-content .timeline li {
      padding: 0 8px;
      font-size: 0.875rem;
      font-weight: 600;
      border-left: 1px solid var(--border-color); }
      .banner-content .timeline li:first-child {
        padding-left: 0;
        border-left: 0; }

.form .form-item {
  margin-bottom: 15px; }
  .form .form-item .form-control {
    border-radius: var(--border-radius-base);
    padding: 10px; }
  .form .form-item .form-label {
    font-size: 0.75rem; }
  .form .form-item .input-group-text {
    border-radius: var(--border-radius-base);
    padding-right: 0; }
    .form .form-item .input-group-text a {
      font-size: 16px;
      color: var(--dark);
      display: flex;
      align-items: center; }
      .form .form-item .input-group-text a img {
        width: 20px;
        min-width: 20px;
        margin-right: 10px; }

.item-list .list {
  padding: 6px 0; }
  .item-list .list a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark); }

.info-line {
  color: var(--dark);
  font-size: 0.75rem;
  margin: 0; }

.recent-search-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px; }
  .recent-search-list li .sub-title {
    font-weight: 500; }

.close-1 {
  width: 24px;
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  color: #FFF;
  background-color: #BFC9DA; }

.cart-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-base);
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600; }
  .cart-btn svg {
    width: 22px;
    height: 22px; }
  .cart-btn.style-2 {
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    height: auto;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.4); }
    .cart-btn.style-2 .cart-bx {
      width: 30px;
      height: 30px;
      text-align: center;
      line-height: 30px;
      background: var(--primary);
      border-radius: 5px;
      margin-right: 10px; }
  .cart-btn:active, .cart-btn:focus, .cart-btn:hover {
    color: #fff; }

.dz-wizard .steps {
  display: flex;
  justify-content: center;
  align-items: center; }
  .dz-wizard .steps .number {
    display: none; }
  .dz-wizard .steps a {
    background: transparent !important;
    color: #000 !important;
    text-align: center; }
  .dz-wizard .steps .step-content {
    font-size: 14px;
    font-weight: 600;
    color: #0A3C48; }
  .dz-wizard .steps .box-1 {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0px auto 15px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .dz-wizard .steps .box-1 svg {
      display: none; }
  .dz-wizard .steps ul {
    width: 100%; }
    .dz-wizard .steps ul li {
      width: 33.33%;
      position: relative; }
      .dz-wizard .steps ul li:not(:last-child):before {
        content: "";
        position: absolute;
        height: 2px;
        background: #BFC9DA;
        top: 30px;
        left: 50%;
        width: 100%;
        z-index: -1; }
      .dz-wizard .steps ul li.done .box-1 svg {
        display: block; }
      .dz-wizard .steps ul li.done:before {
        background: var(--primary); }
      .dz-wizard .steps ul li.disabled .box-1 {
        background: #BFC9DA; }
      .dz-wizard .steps ul li.disabled .step-content {
        color: #BFC9DA; }
      .dz-wizard .steps ul li.current:before {
        background: var(--primary); }
      .dz-wizard .steps ul li.current .box-1 {
        position: relative; }
        .dz-wizard .steps ul li.current .box-1:after {
          content: "";
          position: absolute;
          width: 20px;
          height: 20px;
          top: 50%;
          left: 50%;
          background-color: var(--primary);
          z-index: 1;
          border-radius: 50%;
          border: 4px solid var(--bg-white);
          transform: translate(-50%, -50%); }

.dz-wizard .content {
  background-color: transparent;
  margin: 0;
  min-height: 50em;
  margin-bottom: 15px; }
  .dz-wizard .content .body {
    background-color: transparent;
    padding: 0;
    width: 100%;
    height: 100%;
    position: unset;
    margin-bottom: 30px; }
    .dz-wizard .content .body input {
      border: 2px solid transparent !important;
      padding: 10px 20px; }
      .dz-wizard .content .body input:focus {
        border-color: var(--primary) !important; }
    .dz-wizard .content .body .form-check-input {
      padding: 0 !important; }

.dz-wizard .actions {
  position: fixed;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  padding: 10px 15px; }
  .dz-wizard .actions ul {
    width: 100%;
    display: flex; }
    .dz-wizard .actions ul li {
      width: 100%;
      margin: 0;
      padding: 0 5px;
      margin: 0; }
      .dz-wizard .actions ul li a {
        position: unset;
        width: 100%;
        bottom: 0;
        left: 0;
        text-align: center;
        background: var(--primary);
        padding: 10px 25px !important;
        font-size: 16px;
        font-weight: 600;
        border-radius: var(--border-radius-base); }
        .dz-wizard .actions ul li a:hover, .dz-wizard .actions ul li a:focus {
          border-color: var(--primary);
          background: var(--primary);
          border-radius: var(--border-radius-base); }

.short-tag.style-3 {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-evenly; }
  .short-tag.style-3 .btn-check:checked + .tag-btn {
    border-color: var(--primary); }
    .short-tag.style-3 .btn-check:checked + .tag-btn:after {
      display: block; }
    .short-tag.style-3 .btn-check:checked + .tag-btn svg path {
      fill: var(--primary); }
  .short-tag.style-3 .tag-btn {
    margin: 0 10px 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--title);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-base) !important;
    padding: 8px;
    background: var(--bg-white);
    display: inline-flex !important;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 93px;
    height: 110px;
    line-height: 1.5;
    position: relative;
    transition: none; }
    .short-tag.style-3 .tag-btn svg {
      margin-bottom: 8px; }
    .short-tag.style-3 .tag-btn:after {
      content: "\f00c";
      position: absolute;
      top: -6px;
      right: -6px;
      font-family: "Font Awesome 6 free";
      font-weight: 900;
      background: var(--primary);
      width: 16px;
      height: 16px;
      line-height: 16px;
      border-radius: 50%;
      font-size: 0.55rem;
      display: none;
      color: #fff; }
    .short-tag.style-3 .tag-btn img {
      width: 30px;
      min-width: 30px; }

.short-tag.style-4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .short-tag.style-4 .btn-check:checked + .tag-btn {
    border-color: var(--primary);
    background-color: var(--rgba-primary-1); }
    .short-tag.style-4 .btn-check:checked + .tag-btn:after {
      display: block; }
  .short-tag.style-4 .tag-btn {
    margin: 0 10px 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--title);
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    padding: 0;
    background: var(--bg-white);
    display: inline-block;
    width: 60px;
    height: 35px;
    line-height: 30px;
    position: relative;
    transition: none; }
    .short-tag.style-4 .tag-btn:after {
      content: "\f00c";
      position: absolute;
      top: -6px;
      right: -6px;
      font-family: "Font Awesome 6 free";
      font-weight: 900;
      background: var(--primary);
      width: 16px;
      height: 16px;
      line-height: 16px;
      border-radius: 50%;
      font-size: 0.55rem;
      display: none;
      color: #fff; }
    .short-tag.style-4 .tag-btn img {
      width: 30px;
      min-width: 30px; }

.payment-card {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px; }
  .payment-card .card-media {
    display: flex;
    width: 100%;
    height: 100%; }
    .payment-card .card-media img {
      width: 100%;
      min-width: 300px; }
  .payment-card .card-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%; }
    .payment-card .card-info img {
      position: absolute;
      right: 25px;
      top: 25px; }
  .payment-card .card-name {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 15px; }
  .payment-card .card-number {
    color: #fff;
    font-size: 26px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px; }
  .payment-card .bottom-info {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .payment-card .bottom-info p {
      margin: 10px 0 0 0;
      letter-spacing: 1px;
      font-size: 12px;
      color: #fff; }

.card.payment-service {
  box-shadow: 0 0px 20px -10px rgba(0, 0, 0, 0.25); }
  .card.payment-service .card-header {
    padding: 15px; }
    .card.payment-service .card-header .active-style {
      width: 6px;
      height: 30px;
      background: var(--primary);
      position: absolute;
      top: 12px;
      left: 0px;
      border-radius: 0px 10px 10px 0px; }
  .card.payment-service .card-body {
    padding: 15px; }
  .card.payment-service .accordion.style-2 .accordion-item {
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
    border: 0; }
    .card.payment-service .accordion.style-2 .accordion-item .accordion-header .accordion-button {
      padding: 0;
      background: transparent; }
    .card.payment-service .accordion.style-2 .accordion-item .accordion-body {
      background: transparent;
      padding-left: 0;
      padding-right: 0; }

.card-list li .card-key {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--dark); }

.card-list li .icon-bx {
  font-size: 18px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center; }

.card-list .offcanvas.offcanvas-end .btn-close {
  position: absolute;
  z-index: 999;
  top: 10px;
  right: 10px;
  opacity: 1;
  text-align: center;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px; }

.filter-area .filter-head {
  display: flex;
  align-items: center;
  margin-bottom: 30px; }

.filter-area .filter-content .rating-stars .star i {
  font-size: 26px; }

.message-list {
  padding-top: 10px; }
  .message-list li {
    margin: 0 -15px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    display: flex;
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px; }
    .message-list li:last-child {
      border-bottom: 0; }
    .message-list li a {
      display: flex;
      width: 100%; }
    .message-list li .media {
      position: relative; }
      .message-list li .media:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 15px;
        height: 15px;
        background-color: #54D969;
        border: 2px solid #fdf4ee;
        border-radius: 50px; }
    .message-list li .media-content {
      display: flex;
      margin-left: 15px;
      width: 100%; }
      .message-list li .media-content .name {
        margin-bottom: 0; }
      .message-list li .media-content p {
        color: #303733;
        font-size: 13px; }
    .message-list li .left-content {
      width: 60px;
      min-width: 60px;
      text-align: right;
      margin-left: auto; }
      .message-list li .left-content .seen-btn {
        width: 26px;
        height: 26px;
        display: block;
        text-align: center;
        line-height: 24px;
        border-radius: 50%;
        border: 1px solid #BBB6D0;
        float: right; }
        .message-list li .left-content .seen-btn.active {
          background-color: var(--secondary);
          border-color: var(--secondary); }
          .message-list li .left-content .seen-btn.active svg path {
            fill: #fff; }
      .message-list li .left-content .time {
        color: #898A8D;
        display: block; }

.chat-btn {
  font-weight: 500;
  position: fixed;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  display: none;
  margin: 0;
  z-index: 999; }

.message-content {
  background-color: #eee;
  min-height: 100vh; }
  .message-content .chat-content {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-right: 60px; }
    .message-content .chat-content.user {
      justify-content: flex-end;
      margin-right: 0;
      margin-left: 60px; }
      .message-content .chat-content.user .message-item {
        margin-bottom: 10px; }
        .message-content .chat-content.user .message-item .bubble {
          background: var(--secondary);
          color: #FFF;
          border-radius: 12px 12px 0 12px; }
          .message-content .chat-content.user .message-item .bubble .emoji-icon {
            display: inline-flex;
            width: 30px;
            height: 30px;
            margin: 0 3px; }
        .message-content .chat-content.user .message-item .message-time {
          text-align: right; }
    .message-content .chat-content .message-item .bubble {
      padding: 8px 15px;
      background: #fff;
      border-radius: 12px 12px 12px 0;
      color: #141515;
      display: inline-flex;
      margin-top: 4px;
      font-size: 0.875rem;
      line-height: 1.4em;
      align-items: center; }
    .message-content .chat-content .message-item .message-time {
      font-size: 0.75rem;
      padding: 8px 0;
      text-align: left;
      line-height: 1em;
      margin-top: 5px;
      color: #969696;
      height: 14px; }

.notification {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start; }
  .notification .media {
    margin-right: 15px;
    position: relative; }
    .notification .media .notify {
      width: 26px;
      height: 26px;
      line-height: 26px;
      border-radius: 50%;
      position: absolute;
      bottom: -1px;
      right: -1px;
      text-align: center; }
  .notification .notification-content small, .notification .notification-content .small {
    color: #6B6B6B; }
  .notification .notification-content .text-notify {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.76); }

.dz-notification .notification-list .list-items {
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-base);
  margin-bottom: 18px; }
  .dz-notification .notification-list .list-items.fill-color {
    background: var(--rgba-primary-1);
    padding: 12px; }
    .dz-notification .notification-list .list-items.fill-color .dz-icon-box:after {
      display: block; }
  .dz-notification .notification-list .list-items .list-content .title-head {
    font-size: 16px;
    margin-bottom: 0; }
  .dz-notification .notification-list .list-items .list-content p {
    font-size: 12px;
    margin-bottom: 0;
    color: #b7b7b7; }
  .dz-notification .notification-list .list-items .list-content .btn-link {
    font-size: 14px; }
  .dz-notification .notification-list .list-items .dz-icon-box {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-base);
    background-color: var(--rgba-primary-2);
    position: relative; }
    .dz-notification .notification-list .list-items .dz-icon-box:after {
      display: none;
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      width: 16px;
      height: 16px;
      z-index: 1;
      border-radius: 10px;
      background-color: #EF962E;
      border: 2px solid #e5f4f3; }
    .dz-notification .notification-list .list-items .dz-icon-box svg {
      width: 30px;
      height: 30px; }
      .dz-notification .notification-list .list-items .dz-icon-box svg path {
        fill: var(--primary); }

.profile-area {
  padding-top: 0; }
  .profile-area .profile {
    position: relative;
    background: var(--bg-gradient);
    box-shadow: 0px 4px 6px 0px rgba(62, 73, 84, 0.04);
    margin: 0 -15px 15px;
    padding: 15px 15px; }
    .profile-area .profile .media {
      border-radius: var(--border-radius-base);
      background-color: #fff;
      padding: 2px;
      box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.41); }
      .profile-area .profile .media img {
        border: 5px solid var(--primary);
        border-radius: var(--border-radius-base); }
    .profile-area .profile .about-profile .sub-title {
      color: #fff; }
      .profile-area .profile .about-profile .sub-title.fade-text {
        color: rgba(255, 255, 255, 0.7); }
    .profile-area .profile .edit-profile {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 22px;
      color: #fff; }
    .profile-area .profile .location-box {
      display: flex;
      align-items: center;
      padding: 10px 10px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: var(--border-radius-base);
      box-shadow: 0 10px 10px -10px rgba(78, 73, 73, 0.17); }
      .profile-area .profile .location-box .location {
        font-size: 20px;
        color: #fff;
        background-color: var(--primary);
        margin-right: 20px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius-base); }
      .profile-area .profile .location-box .change-btn {
        border: 1px solid var(--border-color);
        padding: 5px 10px;
        color: #fff;
        border-radius: 8px; }
  .profile-area .profile-content ul li {
    padding: 15px;
    margin: 0 -15px;
    border-bottom: 1px solid var(--border-color); }
    .profile-area .profile-content ul li a {
      display: flex;
      align-items: center;
      font-size: 15px;
      color: #242424;
      font-weight: 600; }
      .profile-area .profile-content ul li a i {
        color: var(--primary);
        font-size: 20px;
        margin-right: 12px; }

.detail {
  color: #C3AC58; }

.edit-profile .profile-image {
  margin: 15px 0;
  text-align: center; }
  .edit-profile .profile-image .media {
    margin: 0 auto 12px; }
    .edit-profile .profile-image .media img {
      object-fit: cover; }
  .edit-profile .profile-image a {
    display: block;
    color: var(--secondary);
    font-size: 1rem; }

.link-list li {
  padding: 10px 15px;
  margin: 0 -15px;
  border-bottom: 1px solid var(--border-color); }
  .link-list li a {
    color: var(--secondary);
    font-size: 1rem; }
  .link-list li:first-child a {
    color: var(--dark); }

.contant-section {
  background: var(--bg-white);
  margin: 50px -15px 0;
  padding: 20px 15px 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0px -10px 17px 0px rgba(141, 141, 113, 0.17);
  min-height: 520px; }
  .contant-section.style-2 {
    padding: 0;
    margin: 0 0 0;
    border-radius: 0;
    box-shadow: 0px -10px 17px 0px rgba(193, 193, 178, 0.17); }

.social-bar {
  width: 100%;
  background: var(--secondary);
  border-radius: var(--border-radius-base);
  overflow: hidden;
  margin-top: -50px;
  overflow: hidden; }
  .social-bar ul {
    display: flex;
    align-items: center; }
    .social-bar ul li {
      width: 33.33%;
      text-align: center; }
      .social-bar ul li a {
        display: block;
        padding: 10px 10px; }
        .social-bar ul li a h4, .social-bar ul li a .h4 {
          margin-bottom: 0;
          color: #fff; }
        .social-bar ul li a span {
          color: rgba(255, 255, 255, 0.87); }
      .social-bar ul li.active a {
        background: #5231e2;
        position: relative; }
        .social-bar ul li.active a:after {
          content: "";
          position: absolute;
          width: 50px;
          height: 6px;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(255, 255, 255, 0.5);
          border-radius: 5px 5px 0 0; }

.media.status {
  position: relative; }
  .media.status img {
    border-radius: var(--border-radius-base); }
  .media.status .active-point {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    bottom: 0;
    left: 0;
    background-color: #54D969; }

.dz-user-list .user-grid {
  text-align: center;
  border-radius: var(--border-radius-base);
  border: 1px solid var(--border-color);
  padding: 15px; }
  .dz-user-list .user-grid .media {
    margin-left: auto;
    margin-right: auto; }
  .dz-user-list .user-grid .name {
    display: block;
    margin: 7px 0;
    font-size: 0.875rem;
    color: var(--dark);
    font-weight: 700; }
  .dz-user-list .user-grid.style-2 {
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    justify-content: space-between; }
    .dz-user-list .user-grid.style-2 .name {
      margin-left: 15px; }

.follow-btn {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  text-align: center;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px; }
  .follow-btn.follow {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff; }

.list-item {
  display: flex;
  align-items: flex-start; }

.dz-comments-list li {
  padding-bottom: 20px;
  display: flex; }
  .dz-comments-list li .list-content {
    display: flex;
    align-items: flex-start; }
    .dz-comments-list li .list-content img {
      width: 35px;
      height: 35px;
      border-radius: 30px;
      margin-right: 10px; }
    .dz-comments-list li .list-content p {
      line-height: 1.4; }
    .dz-comments-list li .list-content .bottom-item {
      display: flex;
      align-items: center; }
      .dz-comments-list li .list-content .bottom-item li {
        font-size: 0.75rem;
        margin-right: 15px;
        padding: 0;
        font-weight: 700; }
  .dz-comments-list li.parent-list {
    padding-left: 45px; }

#pages-container .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }

#pages-container-inner {
  overflow-x: hidden;
  height: 100%;
  margin: 0 -15px; }
  #pages-container-inner .title-bar {
    padding: 0 15px; }

.dz-user-list {
  padding: 0 15px; }

#main-navigation ul {
  list-style-type: none;
  display: flex;
  margin: 0; }
  #main-navigation ul .nav-link {
    padding: 10px;
    flex-grow: 1;
    text-align: center;
    border-bottom: 1px solid #dedede;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary); }

.links-container {
  position: relative;
  padding: 0; }

.swiper-scrollbar {
  height: 3px;
  background-color: transparent;
  opacity: 1 !important; }

.swiper-scrollbar-drag {
  background-color: var(--primary);
  border-radius: 0;
  top: -3px; }

.side-preview {
  max-width: 100px;
  height: 130px;
  position: absolute;
  top: 20px;
  right: 20px; }
  .side-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.footer-content {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; }

.button-group-list {
  display: flex;
  align-items: center; }
  .button-group-list li {
    margin-right: 30px; }
    .button-group-list li a {
      width: 50px;
      height: 50px;
      background-color: #3a3a3a;
      display: inline-block;
      border-radius: 50%;
      text-align: center;
      line-height: 50px; }
      .button-group-list li a svg {
        width: 24px;
        height: 24px; }
        .button-group-list li a svg path {
          fill: #fff; }

.error-page {
  display: block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; }
  .error-page .icon-bx {
    margin: 0 0 10px; }

.banner-wrapper {
  padding: 40px 0 40px;
  margin-bottom: -20px;
  text-align: center;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .banner-wrapper .inner-wrapper h1, .banner-wrapper .inner-wrapper .h1, .banner-wrapper .inner-wrapper h2, .banner-wrapper .inner-wrapper .h2, .banner-wrapper .inner-wrapper h3, .banner-wrapper .inner-wrapper .h3, .banner-wrapper .inner-wrapper h4, .banner-wrapper .inner-wrapper .h4, .banner-wrapper .inner-wrapper h5, .banner-wrapper .inner-wrapper .h5, .banner-wrapper .inner-wrapper h6, .banner-wrapper .inner-wrapper .h6 {
    color: #fff; }
  .banner-wrapper .inner-wrapper img {
    margin-bottom: 12px; }
  .banner-wrapper .inner-wrapper p {
    font-size: 1rem;
    color: #fff; }

.account-box {
  border-radius: 20px 20px 0 0;
  box-shadow: 0px -15px 26px 0px rgba(0, 0, 0, 0.02);
  background-color: var(--bg-white);
  position: relative;
  z-index: 2; }

.account-area {
  min-height: calc(100vh - 190px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding-top: 10px; }
  .account-area form {
    display: flex;
    flex-direction: column; }
    .account-area form .saprate {
      display: flex;
      flex: 1;
      align-items: center;
      justify-content: center; }

.social-btn-group {
  margin-top: 10px;
  margin-bottom: auto;
  white-space: nowrap; }
  .social-btn-group .social-btn {
    width: 149px;
    min-width: 149px;
    height: 48px;
    background-color: #fff;
    text-align: center;
    border: 1px solid var(--border-color);
    line-height: 44px;
    border-radius: 50px;
    display: inline-block; }
    .social-btn-group .social-btn img {
      width: 28px;
      height: 28px; }

.saprate {
  display: inline-block;
  font-size: 1rem;
  padding: 0 70px; }

.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: unset; }

.digit-group {
  display: flex;
  flex-direction: initial;
  margin-bottom: 20px;
  justify-content: center; }
  .digit-group input {
    margin: 0 8px;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    color: var(--dark);
    padding: 0;
    width: 50px;
    height: 50px; }

.social-box {
  text-align: center;
  margin: 25px auto;
  width: 100px;
  height: 70px; }
  .social-box span {
    margin-bottom: 10px;
    display: block; }
  .social-box img {
    width: 36px;
    height: 36px; }

.seprate-box {
  display: flex;
  align-items: center; }
  .seprate-box .back-btn {
    margin-right: 15px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    line-height: 43px;
    background-color: var(--rgba-primary-2);
    border-radius: var(--border-radius-base);
    text-align: center;
    color: #fff;
    font-size: 20px; }

.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  width: 100%;
  position: fixed;
  z-index: -1;
  height: 100%; }

.welcome-area {
  flex-direction: column;
  display: flex;
  height: 100%; }
  .welcome-area .welcome-logo {
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center; }
    .welcome-area .welcome-logo img {
      width: 130px;
      height: 130px;
      box-shadow: var(--box-shadow);
      border-radius: 50px; }
    .welcome-area .welcome-logo.style-2 {
      margin: auto;
      z-index: 999;
      padding-top: 30px;
      padding-bottom: 30px; }
      .welcome-area .welcome-logo.style-2 img {
        width: 100px;
        height: 100px;
        border-radius: 40px; }
    .welcome-area .welcome-logo .get-started {
      text-align: center;
      margin-bottom: 15px;
      font-weight: 500;
      margin-top: 15px; }
  @media only screen and (min-width: 420px) {
    .welcome-area .join-area:after {
      background-size: contain; } }
  .welcome-area .join-area .started {
    margin-bottom: 15px;
    text-align: center; }
  .welcome-area .dz-media {
    margin-top: auto;
    margin-bottom: 50px; }
  .welcome-area .swiper-slide {
    height: 100vh; }
  .welcome-area .swiper-btn {
    position: absolute;
    bottom: 100px; }
  .welcome-area .bottom-btn {
    position: fixed;
    bottom: 10px;
    width: 100%;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%); }
  .welcome-area .slide-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 15px 135px; }

.welcome-box {
  box-shadow: none;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-base);
  border: 1px solid var(--border-color);
  margin: 0 0 20px 0;
  color: #000;
  display: block;
  position: relative; }
  .welcome-box img {
    width: 70px;
    min-width: 70px;
    height: 70px; }
  .welcome-box:last-child {
    margin-bottom: 0; }
  .welcome-box h5, .welcome-box .h5 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--primary); }
  .welcome-box p {
    margin-bottom: 0;
    color: #303733; }
  .welcome-box:hover {
    border: 1px solid var(--primary); }

.story-box {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; }
  .story-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.27) 100%);
    z-index: 1; }
  .story-box .container {
    position: relative;
    z-index: 2; }
  .story-box video {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1; }

.story-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px; }
  .story-bar li {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.23);
    border-radius: 12px;
    margin-right: 8px; }
    .story-bar li:first-child {
      background: white; }
    .story-bar li:last-child {
      margin-right: 0; }

.user-profile {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .user-profile .user-info {
    margin-left: 15px;
    color: #fff; }
    .user-profile .user-info h6, .user-profile .user-info .h6 {
      color: #fff; }
  .user-profile .back-btn {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.48); }

.bg-black-gradient {
  background: -moz-linear-gradient(top, rgba(30, 87, 153, 0) 0%, #000102 99%, black 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(30, 87, 153, 0) 0%, #000102 99%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, #000102 99%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-color: transparent !important; }

.story-wrapper {
  padding: 0; }
  .story-wrapper .swiper-wrapper .swiper-slide {
    height: 100vh; }
    .story-wrapper .swiper-wrapper .swiper-slide img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .story-wrapper .user-profile {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    padding: 45px 25px 10px; }
  .story-wrapper .swiper-pagination {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px; }
    .story-wrapper .swiper-pagination .swiper-pagination-bullet {
      height: 5px;
      background-color: rgba(255, 255, 255, 0.5);
      opacity: 1;
      width: 100%;
      border-radius: 10px;
      position: relative;
      overflow: hidden; }
      .story-wrapper .swiper-pagination .swiper-pagination-bullet:after {
        content: "";
        height: 100%;
        width: 0;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0; }
      .story-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
        width: 100%;
        transition: 5s linear; }

.loader-screen {
  position: fixed;
  background-color: var(--primary);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; }

.main-screen {
  overflow: hidden;
  z-index: 999999;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center; }
  .main-screen .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .main-screen .loader {
    width: 90px;
    height: 90px;
    position: relative;
    display: block;
    margin: auto; }
    .main-screen .loader span {
      width: 100%;
      height: 100%;
      transform: rotate(calc(20deg * var(--dz_item)));
      position: absolute;
      top: 0;
      left: 0; }
      .main-screen .loader span:before {
        content: '';
        background: rgba(255, 255, 255, 0.3);
        width: 8px;
        height: 18px;
        border-radius: 60%;
        position: absolute;
        top: 0;
        left: 0;
        animation: dzAnimatePreloder 1s linear infinite;
        animation-delay: calc(0.1s * var(--dz_item)); }

@keyframes dzAnimatePreloder {
  0% {
    transform: scale(1); }
  80%, 100% {
    transform: scale(0); } }

/* Get Started */
.get-started {
  text-align: center;
  flex: 1;
  width: 100%;
  background-image: url("../images/background/bg1.png");
  background-size: cover;
  background-repeat: no-repeat; }
  .get-started .swiper-wrapper {
    margin-bottom: 0; }
  .get-started .dz-title {
    margin-bottom: 12px;
    font-size: 24px; }
  .get-started p {
    width: 260px;
    margin: 0 auto; }

.swiper-btn {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem; }

.swiper-btn-wrapper .swiper-button-next,
.swiper-btn-wrapper .swiper-button-prev {
  position: absolute;
  height: 3rem;
  opacity: 1;
  width: 3rem;
  margin: 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--primary);
  top: 50%;
  border: 1px solid var(--primary); }
  .swiper-btn-wrapper .swiper-button-next i,
  .swiper-btn-wrapper .swiper-button-prev i {
    line-height: .5; }
  .swiper-btn-wrapper .swiper-button-next:after,
  .swiper-btn-wrapper .swiper-button-prev:after {
    content: none; }
  .swiper-btn-wrapper .swiper-button-next:hover,
  .swiper-btn-wrapper .swiper-button-prev:hover {
    background: var(--primary);
    color: #fff; }

.swiper-btn-wrapper .swiper-button-prev {
  left: -60px;
  transform: rotateY(180deg) translateY(-50%); }

.swiper-btn-wrapper .swiper-button-next {
  right: -60px;
  transform: rotateY(180deg) translateY(-50%); }

.swiper-pagination.style-1 {
  bottom: 0 !important;
  opacity: 1;
  position: unset;
  padding: 10px 0;
  z-index: 1; }
  .swiper-pagination.style-1 .swiper-pagination-bullet {
    margin: 0 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BFC9DA;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .swiper-pagination.style-1 .swiper-pagination-bullet-active {
      background: var(--primary);
      transform: scale(1.5); }

.swiper-pagination.style-2 {
  bottom: 20px !important;
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  z-index: 1; }
  .swiper-pagination.style-2 .swiper-pagination-bullet {
    margin: 0 4px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .swiper-pagination.style-2 .swiper-pagination-bullet-active {
      background: var(--primary); }

.swiper-pagination.style-3 {
  bottom: 0 !important;
  opacity: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  z-index: 1; }
  .swiper-pagination.style-3 .swiper-pagination-bullet {
    margin: 0 6px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #eee;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .swiper-pagination.style-3 .swiper-pagination-bullet:after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      border: 1px solid transparent;
      width: 15px;
      height: 15px;
      transform: translate(-50%, -50%); }
    .swiper-pagination.style-3 .swiper-pagination-bullet-active {
      transform: scale(1.2);
      background-color: var(--primary); }
      .swiper-pagination.style-3 .swiper-pagination-bullet-active:after {
        border-color: var(--primary); }

.swiper-pagination.style-4 {
  bottom: 0 !important;
  opacity: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  z-index: 1; }
  .swiper-pagination.style-4 .swiper-pagination-bullet {
    margin: 0 6px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #eee;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .swiper-pagination.style-4 .swiper-pagination-bullet:after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      border: 1px solid transparent;
      width: 15px;
      height: 15px;
      transform: translate(-50%, -50%); }
    .swiper-pagination.style-4 .swiper-pagination-bullet-active {
      transform: scale(1.2);
      background-color: var(--primary); }
      .swiper-pagination.style-4 .swiper-pagination-bullet-active:after {
        border-color: var(--primary); }

.swiper-pagination-bullets.style-5 {
  bottom: -40px !important;
  position: absolute;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  z-index: 1;
  text-align: center; }
  .swiper-pagination-bullets.style-5 .swiper-pagination-bullet {
    margin: 0 6px;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background: #eee;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .swiper-pagination-bullets.style-5 .swiper-pagination-bullet-active {
      width: 15px;
      background-color: var(--primary); }

.started-swiper-box {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  padding: 0;
  flex-direction: column;
  height: calc(100vh - 80px); }
  .started-swiper-box .swiper-slide {
    height: 100%;
    position: relative; }
  .started-swiper-box .dz-media {
    margin: auto auto 40px; }
    .started-swiper-box .dz-media img {
      max-width: 250px; }
  .started-swiper-box .slide-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding-bottom: 10px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100%;
    z-index: 1;
    position: relative; }
  .started-swiper-box .view-logo {
    margin: auto; }
  .started-swiper-box .view-logo + .slide-content {
    margin-top: 0; }
  .started-swiper-box .slide-content {
    z-index: 1;
    position: relative;
    max-width: 320px;
    margin: auto auto;
    text-align: center;
    padding: 15px 15px 0; }
  .started-swiper-box .bg-icon {
    position: absolute;
    left: 0;
    top: 50%;
    opacity: 0.1;
    transform: translateY(-50%); }

.page-onboading .swiper-btn {
  margin-top: 0; }

.page-onboading + .footer {
  background-color: var(--bg-white); }

.main-content {
  display: flex;
  height: 100%;
  align-items: center; }
  .main-content .left-content {
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center; }
  .main-content .mid-content {
    flex: 1; }

.map iframe {
  width: 100%;
  height: 100%;
  position: fixed; }

.detail-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 320px;
  width: 100%;
  height: 115px;
  padding: 20px 20px 20px 20px;
  background-color: var(--bg-white);
  position: fixed;
  bottom: 0;
  left: 0;
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base); }
  .detail-box .handler {
    position: absolute;
    width: 45px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: var(--border-radius-base);
    top: 10px;
    left: 50%;
    transform: translateX(-50%); }
  .detail-box .media img {
    border-radius: var(--border-radius-base); }
  .detail-box .social a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    display: inline-block;
    font-size: 18px; }

.location-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0px 28px 0; }
  .location-area .location-mark {
    width: 40px;
    min-width: 40px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-base); }

.short-map {
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 3px 12px -3px #dfd5d5;
  position: relative;
  border-radius: var(--border-radius-base); }
  .short-map .zone {
    position: absolute;
    background: rgba(255, 255, 255, 0.56);
    border-radius: var(--border-radius-base);
    padding: 10px;
    backdrop-filter: blur(5px);
    text-align: center;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.25); }
    .short-map .zone .time {
      font-size: 18px;
      font-weight: 600;
      color: var(--title);
      line-height: 1; }
  .short-map img {
    width: 100%;
    border-radius: var(--border-radius-base); }

.dz-timeline.style-2 {
  border: 0;
  margin: 15px 0;
  padding: 0; }
  .dz-timeline.style-2 .timeline-item {
    padding: 10px 20px 10px 60px;
    border-radius: var(--border-radius-base);
    position: relative; }
    .dz-timeline.style-2 .timeline-item.active {
      background-color: var(--primary); }
      .dz-timeline.style-2 .timeline-item.active .timeline-tilte,
      .dz-timeline.style-2 .timeline-item.active .timeline-date {
        color: #fff; }
      .dz-timeline.style-2 .timeline-item.active:before {
        border-style: solid;
        border-color: var(--primary); }
      .dz-timeline.style-2 .timeline-item.active:after {
        content: "\f00c";
        font-weight: 700;
        font-family: 'Font Awesome 6 Free';
        color: var(--primary);
        text-align: center;
        height: 28px;
        width: 28px;
        border-radius: 50%;
        left: 16px;
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2); }
    .dz-timeline.style-2 .timeline-item.process:before {
      border-style: solid;
      border-color: var(--primary); }
    .dz-timeline.style-2 .timeline-item.process:after {
      background-color: var(--primary);
      border-color: #fff; }
    .dz-timeline.style-2 .timeline-item:before {
      content: "";
      position: absolute;
      height: 100%;
      border: 0;
      left: 30px;
      top: 50%;
      border-left: 2px solid var(--border-color);
      border-style: dashed;
      z-index: -1; }
    .dz-timeline.style-2 .timeline-item:after {
      left: 24px;
      background: var(--bg-white);
      border: 2px solid var(--border-color);
      top: 50%;
      transform: translateY(-50%); }
  .dz-timeline.style-2 .timeline-tilte {
    margin-top: 0;
    margin-bottom: 3px; }
  .dz-timeline.style-2 .timeline-date {
    color: #303733;
    font-size: 12px; }

.bg-light2 {
  background-color: #f8f8f8 !important; }

.detail-area {
  display: flex;
  margin: 0 -15px 20px; }
  .detail-area .item-swiper2 {
    min-width: 70px;
    height: 100%;
    width: 70px;
    padding: 0 15px;
    margin-left: 15px;
    border: 2px solid var(--border-color);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px; }
    .detail-area .item-swiper2 .swiper-slide {
      width: 40px !important;
      height: 40px !important;
      margin-bottom: 15px; }
      .detail-area .item-swiper2 .swiper-slide img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 2px solid transparent; }
      .detail-area .item-swiper2 .swiper-slide.swiper-slide-thumb-active img {
        border-color: var(--dark); }
      .detail-area .item-swiper2 .swiper-slide:last-child {
        margin-bottom: 0; }
    .detail-area .item-swiper2 .swiper-wrapper {
      margin: 15px 0;
      align-items: center; }
  .detail-area .item-swiper3 {
    border-radius: 0 10px 10px 0;
    overflow: hidden; }
    .detail-area .item-swiper3 .swiper-slide img {
      height: 100%;
      width: 100%;
      object-fit: cover; }

.product-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; }
  .product-detail .dz-meta {
    text-align: right;
    display: flex;
    align-items: flex-end; }
    .product-detail .dz-meta .main-price {
      margin-bottom: -3px;
      font-size: 14px;
      color: #838383; }
    .product-detail .dz-meta .price {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 5px; }
    .product-detail .dz-meta .qty {
      font-size: 14px;
      line-height: 14px;
      position: relative; }
      .product-detail .dz-meta .qty strong {
        font-weight: 600; }
      .product-detail .dz-meta .qty:after {
        content: "";
        position: absolute;
        top: 2px;
        left: -6px;
        width: 1px;
        height: 12px;
        background-color: var(--secondary); }

.filtaring-area {
  margin-bottom: 20px; }
  .filtaring-area .btn-group {
    display: flex; }
  .filtaring-area .btn {
    padding: 17px;
    color: var(--primary);
    border: 2px solid var(--border-color); }
    .filtaring-area .btn:hover {
      color: #fff; }
  .filtaring-area .btn-check:checked + .btn-outline-primary, .filtaring-area .btn-check:active + .btn-outline-primary, .filtaring-area .btn-outline-primary:active, .filtaring-area .btn-outline-primary.active, .filtaring-area .btn-outline-primary.dropdown-toggle.show {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important; }
  .filtaring-area .btn-group > .btn:not(:first-child), .filtaring-area .btn-group > .btn-group:not(:first-child) {
    border-radius: var(--border-radius-base);
    margin-left: 12px; }
  .filtaring-area.style-2 .btn {
    padding: 12px; }

.detail-area.style-1 {
  margin: unset;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-white);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  border-radius: 0 0 25px 25px;
  position: relative; }
  .detail-area.style-1 .media-box {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .detail-area.style-1 .media-box img {
      width: 170px;
      height: 170px;
      object-fit: cover; }

.cart-wrapper {
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: var(--border-radius-base); }

.mide-line {
  width: 1px;
  height: 10px;
  background-color: #fff;
  margin: 0 10px; }

.payment-btn {
  background-color: var(--primary);
  padding: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-base);
  justify-content: space-between; }
  .payment-btn .total-price {
    display: flex;
    align-items: center; }
  .payment-btn .title {
    color: #fff;
    font-size: 16px;
    font-weight: 500; }
  .payment-btn svg {
    width: 15px;
    height: 15px; }
    .payment-btn svg path {
      fill: #fff; }
  .payment-btn:hover {
    color: #fff; }

.content-area {
  margin-top: -70px;
  position: relative;
  z-index: 1; }

.categore-area {
  margin-top: -12px; }

.detail-area.style-2 {
  justify-content: center;
  align-items: center;
  background-color: var(--rgba-primary-5);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  border-radius: 0 0 25px 25px;
  position: relative;
  width: 220px;
  margin: 0 auto; }
  .detail-area.style-2 .media-box {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .detail-area.style-2 .media-box img {
      width: 170px;
      height: 170px;
      object-fit: cover; }

.cart-info-wrapper {
  background-color: var(--bg-white);
  border-radius: 10px;
  padding: 15px 15px 0;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2); }
  .cart-info-wrapper .info-list {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
    padding-bottom: 10px; }
    .cart-info-wrapper .info-list .child-list {
      display: flex;
      align-items: center; }
    .cart-info-wrapper .info-list span {
      display: block;
      font-size: 14px;
      font-weight: 500;
      position: relative; }
      .cart-info-wrapper .info-list span.text-start {
        width: 25%;
        margin-right: 15px; }
        .cart-info-wrapper .info-list span.text-start:after {
          position: absolute;
          content: ":";
          right: 0; }

.bill-wrapper {
  background-color: var(--bg-white);
  padding: 26px 15px 15px 15px;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2); }
  .bill-wrapper .list-wrapper {
    margin-bottom: 20px; }
    .bill-wrapper .list-wrapper li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px; }
      .bill-wrapper .list-wrapper li span {
        font-size: 14px;
        font-weight: 500; }
  .bill-wrapper .radio.circle-radio {
    padding-bottom: 15px; }
    .bill-wrapper .radio.circle-radio .radio-label {
      margin-bottom: 6px;
      padding-left: 25px; }
      .bill-wrapper .radio.circle-radio .radio-label .checkmark {
        width: 16px;
        height: 16px;
        margin-top: 4px; }
        .bill-wrapper .radio.circle-radio .radio-label .checkmark:after {
          width: 14px;
          height: 14px; }
  .bill-wrapper .cart-footer {
    display: flex;
    padding-top: 15px;
    border-top: 2px dashed var(--border-color);
    justify-content: space-between;
    align-items: center; }
    .bill-wrapper .cart-footer .title {
      margin-bottom: 0;
      font-weight: 500; }

.offer-box {
  margin-top: 130px; }

.product-swiper .swiper-wrapper .swiper-slide,
.meat-swiper .swiper-wrapper .swiper-slide {
  width: 300px;
  margin-left: 15px; }
  .product-swiper .swiper-wrapper .swiper-slide:last-child,
  .meat-swiper .swiper-wrapper .swiper-slide:last-child {
    margin-right: 15px; }

.product-swiper .swiper-wrapper .swiper-slide {
  width: auto;
  margin-bottom: 34px; }

.catagore-bx {
  margin-bottom: 18px; }
  .catagore-bx a {
    color: var(--title); }
  .catagore-bx .dz-media {
    margin: 0 auto; }
    .catagore-bx .dz-media img {
      border-radius: 50%; }

.location {
  display: flex;
  align-items: center;
  width: 100%; }
  .location .location-icon svg {
    width: 30px;
    height: 30px;
    margin-right: 10px; }
  .location .location-content {
    flex: 1; }
    .location .location-content .title {
      color: #fff;
      font-weight: 600;
      margin-bottom: 0px; }
    .location .location-content p {
      color: #e1e1e1;
      margin-bottom: 0; }
  .location.style-2 {
    background-color: var(--bg-white); }
    .location.style-2 .location-icon svg {
      width: 30px;
      height: 30px;
      margin-right: 10px; }
    .location.style-2 .location-content {
      flex: 1; }
      .location.style-2 .location-content .title {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 0px; }
      .location.style-2 .location-content p {
        color: var(--title);
        margin-bottom: 0; }

.search-box.style-1 {
  margin-bottom: -35px; }

.product-list {
  display: flex;
  background-color: var(--card-bg);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  padding: 12px;
  border-radius: var(--border-radius-base);
  margin-bottom: 20px;
  position: relative; }
  .product-list .dz-media {
    display: block;
    margin-left: auto; }
  .product-list .dz-content {
    flex: 1;
    padding-right: 14px; }
    .product-list .dz-content .product-title {
      font-weight: 500;
      font-size: 12px;
      display: block;
      margin-bottom: 0;
      color: var(--primary); }
    .product-list .dz-content .item-name {
      font-size: 14px;
      line-height: 1.4;
      color: var(--title);
      font-weight: 500; }
    .product-list .dz-content .offer-code {
      color: #eb8e57;
      font-size: 12px;
      margin-bottom: 10px; }
  .product-list .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .product-list .price-wrapper {
    display: flex;
    align-items: center; }
    .product-list .price-wrapper .current-price {
      color: var(--primary);
      font-size: 18px;
      margin-bottom: 0;
      margin-right: 5px; }
    .product-list .price-wrapper .old-price {
      position: relative;
      font-size: 13px;
      color: #a5a5a5; }
      .product-list .price-wrapper .old-price:after {
        position: absolute;
        content: "";
        background-color: #a5a5a5;
        width: 100%;
        height: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }

.product-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }
  .product-view.style-1 .overlay-black-light img {
    width: 100%;
    height: 230px;
    object-fit: cover; }

.overlay-black-light {
  position: relative;
  z-index: -1; }
  .overlay-black-light img {
    width: 100%; }
  .overlay-black-light .bnr-img {
    width: 100%;
    height: 350px;
    object-fit: cover; }
  .overlay-black-light:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0));
    width: 100%;
    height: 100%; }

.promo-box {
  border: 1px dashed #EF962E;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--border-radius-base);
  margin-bottom: 20px;
  background-color: var(--rgba-primary-1); }

.bill-detail {
  background-color: var(--bg-white);
  border: 2px dashed var(--rgba-primary-3);
  border-radius: var(--border-radius-base);
  padding: 10px 15px; }
  .bill-detail h6, .bill-detail .h6 {
    font-size: 18px;
    font-weight: 500; }
  .bill-detail ul li {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .bill-detail ul li span {
      display: block; }
    .bill-detail ul li:nth-child(2n) {
      border-bottom: 1px solid var(--border-color); }
    .bill-detail ul li .price {
      color: #A8A8A8; }

.notify-cart2 {
  position: relative;
  margin-right: 10px; }
  .notify-cart2 .badge {
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 12px;
    width: 25px;
    padding: 0;
    min-width: 25px;
    height: 25px;
    text-align: center;
    line-height: 22px; }

.profile-area .main-profile {
  margin-bottom: 30px;
  display: flex;
  align-items: center; }
  .profile-area .main-profile .profile-image {
    width: 90px;
    min-width: 90px;
    height: 90px;
    margin-right: 20px; }
    .profile-area .main-profile .profile-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid #CDCDCD; }
  .profile-area .main-profile .profile-detail .name {
    font-family: "Lato", sans-serif;
    margin-bottom: 0; }
  .profile-area .main-profile .profile-detail .contact {
    display: flex;
    align-items: center;
    color: #7C7C7C; }
    .profile-area .main-profile .profile-detail .contact svg {
      margin-right: 5px; }
  .profile-area .main-profile .profile-detail .location {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ABABAB;
    font-family: "Lato", sans-serif; }
    .profile-area .main-profile .profile-detail .location svg {
      margin-right: 5px;
      width: 16px;
      height: 16px; }

.profile-area .content-box {
  background-color: var(--bg-white);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  border-radius: var(--border-radius-base);
  padding: 15px;
  margin-bottom: 20px; }
  .profile-area .content-box ul li {
    text-align: center; }
    .profile-area .content-box ul li a {
      display: block;
      color: var(--title);
      font-weight: 500; }

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

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

.order-list ul li {
  margin-bottom: 35px; }
  .order-list ul li:last-child {
    margin-bottom: 0; }

.order-list .order-item {
  display: flex; }
  .order-list .order-item .content {
    padding-right: 12px; }
    .order-list .order-item .content .dz-title {
      font-size: 14px; }
    .order-list .order-item .content p {
      color: #878787; }
  .order-list .order-item .end-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: column; }
  .order-list .order-item .date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary); }
  .order-list .order-item .btn {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 6px; }

.offer-swiper1 .swiper-wrapper .swiper-slide {
  width: 200px;
  padding-left: 15px; }
  .offer-swiper1 .swiper-wrapper .swiper-slide:last-child {
    margin-right: 15px; }

.offer-swiper2 .swiper-wrapper .swiper-slide {
  width: 130px;
  padding-left: 15px; }
  .offer-swiper2 .swiper-wrapper .swiper-slide:last-child {
    margin-right: 15px; }

.offer-card {
  border-radius: var(--border-radius-base);
  padding: 20px 10px 10px 10px;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .offer-card.bg-1 {
    background-color: #7C7C7C; }
    .offer-card.bg-1 .title-head {
      color: #7C7C7C; }
  .offer-card.bg-2 {
    background-color: #594C81; }
    .offer-card.bg-2 .title-head {
      color: #594C81; }
  .offer-card.bg-3 {
    background-color: #BA6F97; }
    .offer-card.bg-3 .title-head {
      color: #BA6F97; }
  .offer-card .bg-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    top: -34px;
    right: -34px;
    border-radius: 50%;
    z-index: -1; }
    .offer-card .bg-circle.circle-2 {
      top: auto;
      bottom: -54px;
      left: -45px; }
  .offer-card .title-head {
    height: 20px;
    width: 50px;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    line-height: 20px;
    color: #7c7c7c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px; }
  .offer-card .offer {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 10px; }
    .offer-card .offer span {
      display: block;
      text-align: center;
      line-height: 0.9;
      font-weight: 700; }
  .offer-card .title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 0; }
  .offer-card .offer-detail {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0; }

.detail-card {
  margin-bottom: 20px; }
  .detail-card p {
    margin-bottom: 5px;
    font-size: 12px; }
  .detail-card .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0; }
  .detail-card .content {
    display: flex;
    align-items: center;
    line-height: 1.3; }
    .detail-card .content svg path {
      fill: var(--body-color); }
  .detail-card .dz-meta ul {
    display: flex;
    align-items: center; }
    .detail-card .dz-meta ul li {
      margin-right: 5px; }
    .detail-card .dz-meta ul .dot {
      width: 5px;
      height: 5px;
      background-color: #AE7156;
      border-radius: 50px; }

.offer-card-wrapper {
  box-shadow: none;
  overflow: hidden;
  border: 1px solid var(--border-color); }
  .offer-card-wrapper .card-body {
    padding: 10px 12px; }
  .offer-card-wrapper .media {
    margin-right: 12px; }
  .offer-card-wrapper .card-content {
    flex: 1; }
    .offer-card-wrapper .card-content .title {
      font-weight: 600;
      margin-bottom: 0; }
    .offer-card-wrapper .card-content p {
      margin-bottom: 0;
      font-size: 12px; }
  .offer-card-wrapper .end-content {
    position: absolute;
    top: 0;
    right: 6px;
    text-align: center;
    background-color: var(--rgba-primary-1);
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center; }

.inner-list li {
  align-items: center;
  padding-bottom: 20px; }
  .inner-list li .title {
    font-size: 14px; }

.inner-list .content {
  display: flex;
  align-items: center; }
  .inner-list .content span {
    color: var(--body-color);
    font-weight: 600;
    margin-right: 5px; }
  .inner-list .content svg path {
    fill: var(--body-color); }

.inner-list .sub-list {
  padding-left: 42px;
  padding-top: 15px; }
  .inner-list .sub-list li {
    display: flex;
    align-items: center;
    color: #7D8FAB;
    margin-bottom: 10px;
    font-size: 12px;
    padding-bottom: 0; }
    .inner-list .sub-list li svg {
      margin-right: 5px;
      width: 16px;
      height: 16px; }
      .inner-list .sub-list li svg path {
        fill: var(--primary); }
  .inner-list .sub-list.grid-2 {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px; }
    .inner-list .sub-list.grid-2 li {
      width: 50%;
      padding-left: 15px;
      padding-right: 15px; }

.offer-2.card {
  z-index: 1; }
  .offer-2.card .icon-box {
    position: absolute;
    border: 0;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    z-index: -1;
    opacity: 0.2; }
    .offer-2.card .icon-box img {
      width: 60%; }

.rating-star {
  display: flex;
  align-items: center;
  justify-content: center; }
  .rating-star li {
    padding-right: 2px; }
    .rating-star li svg {
      width: 25px;
      height: 25px; }
      .rating-star li svg path {
        fill: #FFA902;
        stroke: #FFA902; }
    .rating-star li.stroke-star svg path {
      fill: rgba(255, 169, 2, 0.3); }

.review-area {
  margin-bottom: 15px; }

.reviews-type li {
  padding-bottom: 10px; }
  .reviews-type li .review-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--title);
    margin-bottom: 5px; }

.reviews-type .progress {
  height: 8px; }

.payment-wrapper {
  margin-bottom: 20px;
  background-color: var(--rgba-primary-1);
  padding: 12px;
  border-radius: var(--border-radius-base); }
  .payment-wrapper ul li {
    display: flex;
    align-items: center; }
    .payment-wrapper ul li p {
      margin-bottom: 0; }
    .payment-wrapper ul li .offer {
      display: flex;
      align-items: center; }
      .payment-wrapper ul li .offer svg {
        width: 16px;
        height: 16px; }
        .payment-wrapper ul li .offer svg path {
          fill: #1CBD5C; }
    .payment-wrapper ul li .price {
      display: flex;
      align-items: center;
      color: #AE7156; }
      .payment-wrapper ul li .price svg path {
        fill: #AE7156; }

.profile-area.style-1 {
  margin-top: 75px; }
  .profile-area.style-1 .main-profile {
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-white);
    width: 320px;
    height: 100%;
    border-radius: var(--border-radius-base);
    flex-direction: column;
    padding: 15px;
    margin-left: auto;
    margin-right: auto; }
    .profile-area.style-1 .main-profile .profile-image {
      margin-top: -60px;
      margin-right: 0;
      position: relative; }
      .profile-area.style-1 .main-profile .profile-image .name {
        font-size: 18px;
        font-weight: 600; }
      .profile-area.style-1 .main-profile .profile-image img {
        border: 4px solid #fff; }
      .profile-area.style-1 .main-profile .profile-image .icon-bx {
        width: 30px;
        height: 30px;
        background: var(--bg-white);
        box-shadow: 0 4px 11px -1px #b359c391;
        border: 1px solid var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        right: 0; }
        .profile-area.style-1 .main-profile .profile-image .icon-bx svg path {
          fill: var(--primary); }
    .profile-area.style-1 .main-profile .join {
      display: flex;
      align-items: center;
      font-weight: 600;
      font-size: 12px;
      justify-content: center;
      margin-bottom: 5px; }
      .profile-area.style-1 .main-profile .join p {
        font-weight: 600;
        font-size: 12px;
        color: #7A7A7A; }
      .profile-area.style-1 .main-profile .join span {
        color: var(--primary); }
    .profile-area.style-1 .main-profile .review-info {
      display: inline-flex;
      align-items: center; }
      .profile-area.style-1 .main-profile .review-info span {
        font-weight: 600;
        font-size: 12px; }

.bg-shape {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 170px;
  background: linear-gradient(117.7deg, #9C27B0 -20.59%, rgba(156, 39, 176, 0.46) 115.12%);
  z-index: -1;
  transform: unset; }
  @media only screen and (max-width: 35.9375rem) {
    .bg-shape {
      transform: skewY(-15deg) scale(1.6); } }

.profile-content {
  border-bottom: 1px solid var(--border-color);
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px 15px 15px; }
  .profile-content .dz-media {
    width: 100%;
    min-width: 100%;
    height: 170px;
    margin-bottom: 15px; }
    .profile-content .dz-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: 4px solid var(--border-color);
      border-radius: var(--border-radius-base); }
  .profile-content .dz-meta {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .profile-content .dz-meta ul {
      display: flex;
      align-items: center; }
      .profile-content .dz-meta ul li {
        padding: 0 10px 0 0;
        margin: 0;
        border: 0; }

.font-poppins {
  --font-family-base: Poppins, sans-serif; }

.body-bg {
  background-color: #DCEFFA; }
  .body-bg .title-head {
    color: #011063; }

/* HOMEPAGE */
.main-banner {
  position: relative;
  background-color: #102C3C;
  padding-top: 30px;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 0 25px 25px; }
  .main-banner .dz-media {
    margin: -20px auto 0;
    text-align: center; }
  .main-banner .banner-content-2 {
    text-align: center; }
    .main-banner .banner-content-2 .dz-logo {
      margin-bottom: 20px;
      height: 45px; }
    .main-banner .banner-content-2 .title {
      color: #fff;
      font-weight: 600;
      font-size: 28px;
      margin-bottom: 5px; }
    .main-banner .banner-content-2 p {
      font-size: 15px;
      color: #BCCFFF;
      margin-bottom: 0; }
  .main-banner .bg-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%; }
    .main-banner .bg-shape-2 img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -38px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1; }
  .info-wrapper .info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 10px 30px 0px rgba(22, 48, 194, 0.18);
    width: 160px;
    height: 50px; }
    .info-wrapper .info-box .title {
      margin-bottom: 0;
      color: var(--primary); }
    .info-wrapper .info-box p {
      margin-bottom: 0;
      color: #011063;
      font-weight: 500;
      font-size: 15px; }

.package-swiper .swiper-slide {
  width: 145px;
  margin-right: 15px; }
  .package-swiper .swiper-slide:first-child {
    margin-left: 15px; }

.package-card {
  margin-top: 15px;
  margin-bottom: 35px;
  background-color: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(22, 48, 194, 0.18);
  border-radius: 8px;
  text-align: center;
  position: relative; }
  .package-card img {
    margin-bottom: 10px; }
  .package-card .title {
    font-size: 13px;
    font-weight: 600;
    color: #000834;
    margin-bottom: 0; }
  .package-card .btn {
    margin-bottom: -16px; }
  .package-card .content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .package-card .content .title {
      color: #fff;
      font-size: 28px;
      font-weight: 700; }
    .package-card .content p {
      color: #fff;
      font-size: 12px; }
    .package-card .content .icon-btn {
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 40px;
      background: aliceblue;
      display: block;
      margin: 0 auto;
      border-radius: 50%; }
  .package-card .badge {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    background: var(--primary);
    border-radius: 0 0 8px 8px;
    font-weight: 500;
    color: var(--secondary); }

.feature-wrapper {
  position: relative;
  z-index: 1; }
  .feature-wrapper:after {
    content: "";
    position: absolute;
    top: -20px;
    left: -15px;
    width: 180px;
    height: 130px;
    background-color: var(--secondary);
    z-index: -1;
    border-radius: 18px 18px 18px 0; }
  .feature-wrapper .title-bar .title {
    color: var(--secondary);
    margin-right: -20px; }
    .feature-wrapper .title-bar .title span {
      color: #ACCBDD; }
  .feature-wrapper .tag-btn {
    padding: 12px 20px;
    border: 0;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    text-transform: capitalize;
    box-shadow: 0px 10px 30px 0px rgba(22, 48, 194, 0.18);
    margin-top: 15px;
    margin-bottom: 33px; }

.detail-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -15px 40px; }
  .detail-wrapper .detail-item {
    text-align: center;
    background: #fff;
    padding: 15px 12px;
    box-shadow: 0px 10px 30px 0px rgba(22, 48, 194, 0.18); }
    .detail-wrapper .detail-item svg {
      margin-bottom: 15px; }
    .detail-wrapper .detail-item .title {
      margin-bottom: 0;
      font-weight: 500;
      color: #011063; }
    .detail-wrapper .detail-item.mid-content {
      padding: 22px 8px;
      border-radius: 12px;
      background-color: var(--secondary); }
      .detail-wrapper .detail-item.mid-content .title {
        color: #fff; }
    .detail-wrapper .detail-item:first-child {
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
      margin-right: 15px; }
    .detail-wrapper .detail-item:last-child {
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      margin-left: 15px; }

.client-swiper .swiper-slide {
  width: 200px;
  margin-right: 15px; }
  .client-swiper .swiper-slide:first-child {
    margin-left: 15px; }
  .client-swiper .swiper-slide .card .card-body {
    padding: 14px; }
  .client-swiper .swiper-slide .client-review {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0; }

.client-area {
  background-image: url(../images/welcome/client.png);
  background-repeat: repeat;
  background-size: 80%;
  padding: 32px 15px 50px;
  margin: 0 -15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px 20px 0 0; }
  .client-area:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 8, 52, 0.7); }
  .client-area:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #DCEFFA;
    border-radius: 20px 20px 0 0; }
  .client-area .title-head {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500; }
  .client-area .sub-title {
    font-size: 12px;
    color: #fff; }

.purchase-card {
  box-shadow: 0px 10px 30px 0px rgba(16, 44, 60, 0.3);
  background-color: var(--secondary);
  margin-bottom: -50px;
  border-radius: 18px; }
  .purchase-card .card-body {
    padding: 18px 15px; }
    .purchase-card .card-body h6, .purchase-card .card-body .h6 {
      font-size: 14px; }
    .purchase-card .card-body p {
      color: #CCD4FF; }
  .purchase-card .btn {
    border-radius: 8px;
    color: var(--secondary);
    background-color: #fff; }

.contact-area {
  background-color: #051A26;
  margin: 0 -15px;
  border-radius: 20px 20px 0 0;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px; }
  .contact-area.fixed {
    background-color: #051A26 !important;
    margin: 0 auto; }
  .contact-area .dz-logo {
    height: 45px;
    margin-bottom: 15px; }
  .contact-area p {
    color: #A1B0FF;
    font-size: 13px; }
  .contact-area .social-content {
    display: flex;
    align-items: center;
    justify-content: center; }
    .contact-area .social-content li {
      padding-right: 8px; }
      .contact-area .social-content li:last-child {
        padding-right: 0; }
      .contact-area .social-content li .btn-icon {
        min-width: 45px;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.1); }

/* Media Page */
.dz-media-box {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 10px;
  background-color: rgba(34, 34, 34, 0.1);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  border-radius: var(--border-radius-base); }
  .dz-media-box img {
    width: 32px; }

.dz-lightgallery .media-box img {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: var(--border-radius-base);
  width: 100%; }

.dz-lightgallery .media-box.wide img {
  width: 100%;
  height: 80px;
  object-fit: cover; }

.site-filters ul li {
  margin-left: auto;
  margin-right: auto; }
  .site-filters ul li input {
    display: none; }
  .site-filters ul li.btn:not(.active) a {
    color: var(--title); }

.site-filters.style-1 .filters {
  display: flex;
  align-items: center;
  justify-content: center; }
  .site-filters.style-1 .filters .btn {
    padding: 0; }

#masonry .card-container img {
  border-radius: var(--border-radius-base); }

/*==== 7. PreLoader ====*/
/* Editable */
#preloader {
  background-color: #fff;
  padding: 0;
  margin: 0;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  #preloader .loader {
    height: 50px;
    margin: 30px auto 0;
    position: relative;
    display: flex;
    justify-content: center; }
    #preloader .loader span {
      background-color: #909090;
      height: 10px;
      width: 5px;
      border-radius: 5rem;
      transform: translateX(-50%) translateY(-50%);
      transition: all 0.15s ease-in-out;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      margin: 0 5px; }
      #preloader .loader span:nth-child(1) {
        animation: waveUp 2s, smallExtend 2s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite; }
      #preloader .loader span:nth-child(2) {
        animation: waveUp 2s, largeExtend 2s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-delay: 0.15s; }
      #preloader .loader span:nth-child(3) {
        animation: waveUp 2s, smallExtend 2s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-delay: 0.3s; }
      #preloader .loader span:nth-child(4) {
        animation: waveUp 2s, largeExtend 2s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-delay: 0.45s; }
      #preloader .loader span:nth-child(5) {
        animation: waveUp 2s, smallExtend 2s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-delay: 0.6s; }

@keyframes waveUp {
  0%, 15% {
    top: 50%; }
  45%, 65% {
    top: 42.5%; }
  85%, 100% {
    top: 50%; } }

@keyframes smallExtend {
  0%,
  8% {
    background-color: var(--rgba-primary-3);
    height: 20px; }
  14%,
  34% {
    background-color: var(--rgba-primary-6);
    height: 47.5px; }
  46%,
  100% {
    background-color: var(--rgba-primary-9);
    height: 20px; } }

@keyframes largeExtend {
  0%,
  8% {
    background-color: var(--rgba-primary-3);
    height: 20px; }
  14%,
  34% {
    background-color: var(--rgba-primary-6);
    height: 82.5px; }
  46%,
  100% {
    background-color: var(--rgba-primary-9);
    height: 20px; } }

@keyframes loading {
  0% {
    transform: rotate(0deg); }
  0% {
    transform: rotate(360deg); } }

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