/* 	=========================
	Template Name 	 : Foodia
	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");
@import url('https://fonts.cdnfonts.com/css/ping-lcg');
:root {
  --primary: #8e221d;
  --secondary: #ffa440;
  --gradient: linear-gradient(73.08deg, #202021 15.14%, #f3f4f7 92.25%);
  --primary-hover: #8e221d;
  --primary-dark: #000000;
  --rgba-primary-1: rgba(66, 167, 229, 0.1);
  --rgba-primary-2: rgba(66, 167, 229, 0.2);
  --rgba-primary-3: rgba(66, 167, 229, 0.3);
  --rgba-primary-4: rgba(66, 167, 229, 0.4);
  --rgba-primary-5: rgba(66, 167, 229, 0.5);
  --rgba-primary-6: rgba(66, 167, 229, 0.6);
  --rgba-primary-7: rgba(66, 167, 229, 0.7);
  --rgba-primary-8: rgba(66, 167, 229, 0.8);
  --rgba-primary-9: rgba(66, 167, 229, 0.9);
  --font-family-base:  'Ping LCG', sans-serif;
  --font-family-title:  'Ping LCG', sans-serif;
  --border-radius-base: 8px;
  --border-color: #E8EFF3;
  --body-color: #7D8FAB;
  --dark: #000000;
  --bg-white: #FFF;
  --box-shadow: 0px 12px 30px 0px rgba(48, 48, 48, 0.14);
  --title: #4f658b; }

/*
	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: #42A7E5;
  --bs-secondary: #FF6B53;
  --bs-success: #84CA93;
  --bs-info: #A183E0;
  --bs-warning: #FFA902;
  --bs-danger: #f75a5b;
  --bs-light: #E8EFF3;
  --bs-dark: #2C406E;
  --bs-primary-rgb: 66, 167, 229;
  --bs-secondary-rgb: 255, 107, 83;
  --bs-success-rgb: 132, 202, 147;
  --bs-info-rgb: 161, 131, 224;
  --bs-warning-rgb: 255, 169, 2;
  --bs-danger-rgb: 247, 90, 91;
  --bs-light-rgb: 232, 239, 243;
  --bs-dark-rgb: 44, 64, 110;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 125, 143, 171;
  --bs-body-bg-rgb: 247, 247, 247;
  --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:  Ping LCG, sans-serif;
  --bs-body-font-size: 0.875rem;
  --bs-body-font-weight: 500;
  --bs-body-line-height: 1.6;
  --bs-body-color: #7D8FAB;
  --bs-body-bg: #f7f7f7; }

*,
*::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: #4f5051; }

h1, .h1 {
  font-size: calc(1.325rem + 0.9vw); }
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2rem; } }

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

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

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

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: #ea1c30;
  text-decoration: underline; }
a:hover {
  color: #ffa440; }

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: #84CA93;
  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: #f7f7f7;
  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: #7D8FAB;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #7D8FAB;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #7D8FAB;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #7D8FAB;
  vertical-align: top;
  border-color: #E8EFF3; }
.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: #d9edfa;
  --bs-table-striped-bg: #cee1ee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c3d5e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c9dbe7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #c3d5e1; }

.table-secondary {
  --bs-table-bg: #ffe1dd;
  --bs-table-striped-bg: #f2d6d2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6cbc7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ecd0cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6cbc7; }

.table-success {
  --bs-table-bg: #e6f4e9;
  --bs-table-striped-bg: #dbe8dd;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cfdcd2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d5e2d8;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cfdcd2; }

.table-info {
  --bs-table-bg: #ece6f9;
  --bs-table-striped-bg: #e0dbed;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d4cfe0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #dad5e6;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #d4cfe0; }

.table-warning {
  --bs-table-bg: #ffeecc;
  --bs-table-striped-bg: #f2e2c2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6d6b8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ecdcbd;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6d6b8; }

.table-danger {
  --bs-table-bg: #fddede;
  --bs-table-striped-bg: #f0d3d3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e4c8c8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #eacdcd;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e4c8c8; }

.table-light {
  --bs-table-bg: #E8EFF3;
  --bs-table-striped-bg: #dce3e7;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d1d7db;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d7dde1;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #d1d7db; }

.table-dark {
  --bs-table-bg: #2C406E;
  --bs-table-striped-bg: #374a75;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #41537d;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #3c4e79;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #41537d; }

.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: #7D8FAB;
  background-color: #f7f7f7;
  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: #7D8FAB;
  background-color: #f7f7f7;
  border-color: #a1d3f2;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(66, 167, 229, 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: #7D8FAB;
  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: #7D8FAB;
  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: #7D8FAB;
  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: #7D8FAB;
  background-color: #f7f7f7;
  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: #a1d3f2;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(66, 167, 229, 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 #7D8FAB; }

.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: #f7f7f7;
  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: #a1d3f2;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(66, 167, 229, 0.25); }
.form-check-input:checked {
  background-color: #ffa440;
  border-color: #ea1c30; }
.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: #ffa440;
  border-color: #ea1c30;
  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='%23a1d3f2'/%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 #f7f7f7, 0 0 0 0rem rgba(66, 167, 229, 0.25); }
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f7f7f7, 0 0 0 0rem rgba(66, 167, 229, 0.25); }
.form-range::-moz-focus-outer {
  border: 0; }
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #42A7E5;
  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: #c6e5f7; }
.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: #42A7E5;
  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: #c6e5f7; }
.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: #7D8FAB;
  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) {
 }

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

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
 }

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

.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(132, 202, 147, 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: #84CA93;
  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='%2384CA93' 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: #84CA93;
  box-shadow: 0 0 0 0rem rgba(132, 202, 147, 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: #84CA93; }
.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='%2384CA93' 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: #84CA93;
  box-shadow: 0 0 0 0rem rgba(132, 202, 147, 0.25); }

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #84CA93; }
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #84CA93; }
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0rem rgba(132, 202, 147, 0.25); }
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #84CA93; }

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

.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(247, 90, 91, 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: #f75a5b;
  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='%23f75a5b'%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='%23f75a5b' 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: #f75a5b;
  box-shadow: 0 0 0 0rem rgba(247, 90, 91, 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: #f75a5b; }
.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='%23f75a5b'%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='%23f75a5b' 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: #f75a5b;
  box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25); }

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #f75a5b; }
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #f75a5b; }
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25); }
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #f75a5b; }

.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: #7D8FAB;
  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: #7D8FAB; }
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(66, 167, 229, 0.25); }
.btn:disabled, .btn.disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65; }

.btn-primary {
  color: #000;
  background-color: #42A7E5;
  border-color: #42A7E5; }
.btn-primary:hover {
  color: #000;
  background-color: #5eb4e9;
  border-color: #55b0e8; }
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000;
  background-color: #5eb4e9;
  border-color: #55b0e8;
  box-shadow: 0 0 0 0rem rgba(56, 142, 195, 0.5); }
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #68b9ea;
  border-color: #55b0e8; }
.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(56, 142, 195, 0.5); }
.btn-primary:disabled, .btn-primary.disabled {
  color: #000;
  background-color: #42A7E5;
  border-color: #42A7E5; }

.btn-secondary {
  color: #000;
  background-color: #FF6B53;
  border-color: #FF6B53; }
.btn-secondary:hover {
  color: #000;
  background-color: #ff816d;
  border-color: #ff7a64; }
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000;
  background-color: #ff816d;
  border-color: #ff7a64;
  box-shadow: 0 0 0 0rem rgba(217, 91, 71, 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: #ff8975;
  border-color: #ff7a64; }
.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(217, 91, 71, 0.5); }
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #000;
  background-color: #FF6B53;
  border-color: #FF6B53; }

.btn-success {
  color: #000;
  background-color: #84CA93;
  border-color: #84CA93; }
.btn-success:hover {
  color: #000;
  background-color: #96d2a3;
  border-color: #90cf9e; }
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #000;
  background-color: #96d2a3;
  border-color: #90cf9e;
  box-shadow: 0 0 0 0rem rgba(112, 172, 125, 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: #9dd5a9;
  border-color: #90cf9e; }
.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(112, 172, 125, 0.5); }
.btn-success:disabled, .btn-success.disabled {
  color: #000;
  background-color: #84CA93;
  border-color: #84CA93; }

.btn-info {
  color: #000;
  background-color: #A183E0;
  border-color: #A183E0; }
.btn-info:hover {
  color: #000;
  background-color: #af96e5;
  border-color: #aa8fe3; }
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: #af96e5;
  border-color: #aa8fe3;
  box-shadow: 0 0 0 0rem rgba(137, 111, 190, 0.5); }
.btn-check:checked + .btn-info,
.btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
.show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #b49ce6;
  border-color: #aa8fe3; }
.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(137, 111, 190, 0.5); }
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #A183E0;
  border-color: #A183E0; }

.btn-warning {
  color: #000;
  background-color: #FFA902;
  border-color: #FFA902; }
.btn-warning:hover {
  color: #000;
  background-color: #ffb628;
  border-color: #ffb21b; }
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffb628;
  border-color: #ffb21b;
  box-shadow: 0 0 0 0rem rgba(217, 144, 2, 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: #ffba35;
  border-color: #ffb21b; }
.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(217, 144, 2, 0.5); }
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #FFA902;
  border-color: #FFA902; }

.btn-danger {
  color: #000;
  background-color: #f75a5b;
  border-color: #f75a5b; }
.btn-danger:hover {
  color: #000;
  background-color: #f87374;
  border-color: #f86b6b; }
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #000;
  background-color: #f87374;
  border-color: #f86b6b;
  box-shadow: 0 0 0 0rem rgba(210, 77, 77, 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: #f97b7c;
  border-color: #f86b6b; }
.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(210, 77, 77, 0.5); }
.btn-danger:disabled, .btn-danger.disabled {
  color: #000;
  background-color: #f75a5b;
  border-color: #f75a5b; }

.btn-light {
  color: #000;
  background-color: #E8EFF3;
  border-color: #E8EFF3; }
.btn-light:hover {
  color: #000;
  background-color: #ebf1f5;
  border-color: #eaf1f4; }
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #ebf1f5;
  border-color: #eaf1f4;
  box-shadow: 0 0 0 0rem rgba(197, 203, 207, 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: #edf2f5;
  border-color: #eaf1f4; }
.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(197, 203, 207, 0.5); }
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #E8EFF3;
  border-color: #E8EFF3; }

.btn-dark {
  color: #fff;
  background-color: #2C406E;
  border-color: #2C406E; }
.btn-dark:hover {
  color: #fff;
  background-color: #25365e;
  border-color: #233358; }
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #25365e;
  border-color: #233358;
  box-shadow: 0 0 0 0rem rgba(76, 93, 132, 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: #233358;
  border-color: #213053; }
.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(76, 93, 132, 0.5); }
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #2C406E;
  border-color: #2C406E; }

.btn-outline-primary {
  color: #42A7E5;
  border-color: #42A7E5; }
.btn-outline-primary:hover {
  color: #000;
  background-color: #42A7E5;
  border-color: #42A7E5; }
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0rem rgba(66, 167, 229, 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: #000;
  background-color: #42A7E5;
  border-color: #42A7E5; }
.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(66, 167, 229, 0.5); }
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #42A7E5;
  background-color: transparent; }

.btn-outline-secondary {
  color: #FF6B53;
  border-color: #FF6B53; }
.btn-outline-secondary:hover {
  color: #000;
  background-color: #FF6B53;
  border-color: #FF6B53; }
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0rem rgba(255, 107, 83, 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: #FF6B53;
  border-color: #FF6B53; }
.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(255, 107, 83, 0.5); }
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #FF6B53;
  background-color: transparent; }

.btn-outline-success {
  color: #84CA93;
  border-color: #84CA93; }
.btn-outline-success:hover {
  color: #000;
  background-color: #84CA93;
  border-color: #84CA93; }
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0rem rgba(132, 202, 147, 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: #84CA93;
  border-color: #84CA93; }
.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(132, 202, 147, 0.5); }
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #84CA93;
  background-color: transparent; }

.btn-outline-info {
  color: #A183E0;
  border-color: #A183E0; }
.btn-outline-info:hover {
  color: #000;
  background-color: #A183E0;
  border-color: #A183E0; }
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0rem rgba(161, 131, 224, 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: #000;
  background-color: #A183E0;
  border-color: #A183E0; }
.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, 131, 224, 0.5); }
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #A183E0;
  background-color: transparent; }

.btn-outline-warning {
  color: #FFA902;
  border-color: #FFA902; }
.btn-outline-warning:hover {
  color: #000;
  background-color: #FFA902;
  border-color: #FFA902; }
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0rem rgba(255, 169, 2, 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: #FFA902;
  border-color: #FFA902; }
.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(255, 169, 2, 0.5); }
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #FFA902;
  background-color: transparent; }

.btn-outline-danger {
  color: #f75a5b;
  border-color: #f75a5b; }
.btn-outline-danger:hover {
  color: #000;
  background-color: #f75a5b;
  border-color: #f75a5b; }
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0rem rgba(247, 90, 91, 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: #f75a5b;
  border-color: #f75a5b; }
.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(247, 90, 91, 0.5); }
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #f75a5b;
  background-color: transparent; }

.btn-outline-light {
  color: #E8EFF3;
  border-color: #E8EFF3; }
.btn-outline-light:hover {
  color: #000;
  background-color: #E8EFF3;
  border-color: #E8EFF3; }
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0rem rgba(232, 239, 243, 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: #E8EFF3;
  border-color: #E8EFF3; }
.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(232, 239, 243, 0.5); }
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #E8EFF3;
  background-color: transparent; }

.btn-outline-dark {
  color: #2C406E;
  border-color: #2C406E; }
.btn-outline-dark:hover {
  color: #fff;
  background-color: #2C406E;
  border-color: #2C406E; }
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0rem rgba(44, 64, 110, 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: #2C406E;
  border-color: #2C406E; }
.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(44, 64, 110, 0.5); }
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #2C406E;
  background-color: transparent; }

.btn-link {
  font-weight: 400;
  color: #ec062e;
  text-decoration: underline; }
.btn-link:hover {
  color: #ffa440; }
.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: #7D8FAB;
  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: #42A7E5; }
.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: #42A7E5; }
.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: #42A7E5;
  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: #3586b7; }
.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: #f7f7f7;
  border-color: #dee2e6 #dee2e6 #f7f7f7; }
.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: #42A7E5; }

.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-tabs .nav-link.active {
  background-color: #fff;
  border-bottom-color: #fff; }

.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: #7D8FAB;
  text-align: left;
  background-color: #f7f7f7;
  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: #3b96ce;
  background-color: #ecf6fc;
  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='%233b96ce'%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='%237D8FAB'%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: #a1d3f2;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(66, 167, 229, 0.25); }

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

.accordion-item {
  background-color: #f7f7f7;
  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, "https://foodia.dexignzone.com/") /* 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: #42A7E5;
  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: #3586b7;
  background-color: #e9ecef;
  border-color: #dee2e6; }
.page-link:focus {
  z-index: 3;
  color: #3586b7;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(66, 167, 229, 0.25); }

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

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

.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: #286489;
  background-color: #d9edfa;
  border-color: #c6e5f7; }
.alert-primary .alert-link {
  color: #20506e; }

.alert-secondary {
  color: #994032;
  background-color: #ffe1dd;
  border-color: #ffd3cb; }
.alert-secondary .alert-link {
  color: #7a3328; }

.alert-success {
  color: #35513b;
  background-color: #e6f4e9;
  border-color: #daefdf; }
.alert-success .alert-link {
  color: #2a412f; }

.alert-info {
  color: #614f86;
  background-color: #ece6f9;
  border-color: #e3daf6; }
.alert-info .alert-link {
  color: #4e3f6b; }

.alert-warning {
  color: #664401;
  background-color: #ffeecc;
  border-color: #ffe5b3; }
.alert-warning .alert-link {
  color: #523601; }

.alert-danger {
  color: #943637;
  background-color: #fddede;
  border-color: #fdcece; }
.alert-danger .alert-link {
  color: #762b2c; }

.alert-light {
  color: #5d6061;
  background-color: #fafcfd;
  border-color: #f8fafb; }
.alert-light .alert-link {
  color: #4a4d4e; }

.alert-dark {
  color: #1a2642;
  background-color: #d5d9e2;
  border-color: #c0c6d4; }
.alert-dark .alert-link {
  color: #151e35; }

@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: #42A7E5;
  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: #7D8FAB;
  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: #42A7E5;
  border-color: #42A7E5; }
.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: #286489;
  background-color: #d9edfa; }
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #286489;
  background-color: #c3d5e1; }
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #286489;
  border-color: #286489; }

.list-group-item-secondary {
  color: #994032;
  background-color: #ffe1dd; }
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #994032;
  background-color: #e6cbc7; }
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #994032;
  border-color: #994032; }

.list-group-item-success {
  color: #35513b;
  background-color: #e6f4e9; }
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #35513b;
  background-color: #cfdcd2; }
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #35513b;
  border-color: #35513b; }

.list-group-item-info {
  color: #614f86;
  background-color: #ece6f9; }
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #614f86;
  background-color: #d4cfe0; }
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #614f86;
  border-color: #614f86; }

.list-group-item-warning {
  color: #664401;
  background-color: #ffeecc; }
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664401;
  background-color: #e6d6b8; }
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664401;
  border-color: #664401; }

.list-group-item-danger {
  color: #943637;
  background-color: #fddede; }
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #943637;
  background-color: #e4c8c8; }
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #943637;
  border-color: #943637; }

.list-group-item-light {
  color: #5d6061;
  background-color: #fafcfd; }
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #5d6061;
  background-color: #e1e3e4; }
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #5d6061;
  border-color: #5d6061; }

.list-group-item-dark {
  color: #1a2642;
  background-color: #d5d9e2; }
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1a2642;
  background-color: #c0c3cb; }
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1a2642;
  border-color: #1a2642; }

.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(66, 167, 229, 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: 0px 12px 30px 0px rgba(48, 48, 48, 0.14);
  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 #E8EFF3;
  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 #E8EFF3;
  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: #4f658b;
  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: #7D8FAB; }

.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: #42A7E5; }
.link-primary:hover, .link-primary:focus {
  color: #68b9ea; }

.link-secondary {
  color: #FF6B53; }
.link-secondary:hover, .link-secondary:focus {
  color: #ff8975; }

.link-success {
  color: #84CA93; }
.link-success:hover, .link-success:focus {
  color: #9dd5a9; }

.link-info {
  color: #A183E0; }
.link-info:hover, .link-info:focus {
  color: #b49ce6; }

.link-warning {
  color: #FFA902; }
.link-warning:hover, .link-warning:focus {
  color: #ffba35; }

.link-danger {
  color: #f75a5b; }
.link-danger:hover, .link-danger:focus {
  color: #f97b7c; }

.link-light {
  color: #E8EFF3; }
.link-light:hover, .link-light:focus {
  color: #edf2f5; }

.link-dark {
  color: #2C406E; }
.link-dark:hover, .link-dark:focus {
  color: #233358; }

.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: 0px 12px 30px 0px rgba(48, 48, 48, 0.14) !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 #E8EFF3 !important; }

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

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

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

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

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

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

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

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

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

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

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

.border-success {
  border-color: #84CA93 !important; }

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

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

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

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

.border-dark {
  border-color: #2C406E !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.325rem + 0.9vw) !important; }

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

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

.fs-4 {
  font-size: calc(1.2625rem + 0.15vw) !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: 2rem !important; }
  .fs-2 {
    font-size: 1.75rem !important; }
  .fs-3 {
    font-size: 1.5rem !important; }
  .fs-4 {
    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: #202021;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-family-base); }
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); }

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

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

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

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

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-bottom {
  border-bottom: 1px solid #F1F1F1 !important; }

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

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

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

#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: 40px;
  padding-bottom: 20px; }

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

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

body {
  -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; }
.dz-icon img {
  border-radius: 50%; }

.bottom-content {
  padding-bottom: 80px; }

small, .small, .small {
  font-size: 0.75rem;
  font-weight: 300;
  display: block; }

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

.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-20 {
  font-size: 20px !important; }

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

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

.font-26 {
  font-size: 26px !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-70 {
  font-size: 70px !important; }

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

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

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

.font-100 {
  font-size: 100px !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; }

.p-a0 {
  padding: 0px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-b30 {
  padding-bottom: 30px; }

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px; }

.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px; }

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

.p-b35 {
  padding-bottom: 35px; }

.p-lr35 {
  padding-left: 35px;
  padding-right: 35px; }

.p-tb35 {
  padding-bottom: 35px;
  padding-top: 35px; }

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

.p-b40 {
  padding-bottom: 40px; }

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px; }

.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px; }

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

.p-b45 {
  padding-bottom: 45px; }

.p-lr45 {
  padding-left: 45px;
  padding-right: 45px; }

.p-tb45 {
  padding-bottom: 45px;
  padding-top: 45px; }

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

.p-b50 {
  padding-bottom: 50px; }

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px; }

.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px; }

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

.p-b55 {
  padding-bottom: 55px; }

.p-lr55 {
  padding-left: 55px;
  padding-right: 55px; }

.p-tb55 {
  padding-bottom: 55px;
  padding-top: 55px; }

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

.p-b60 {
  padding-bottom: 60px; }

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px; }

.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px; }

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

.p-b65 {
  padding-bottom: 65px; }

.p-lr65 {
  padding-left: 65px;
  padding-right: 65px; }

.p-tb65 {
  padding-bottom: 65px;
  padding-top: 65px; }

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

.p-b70 {
  padding-bottom: 70px; }

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px; }

.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px; }

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

.p-b75 {
  padding-bottom: 75px; }

.p-lr75 {
  padding-left: 75px;
  padding-right: 75px; }

.p-tb75 {
  padding-bottom: 75px;
  padding-top: 75px; }

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

.p-b80 {
  padding-bottom: 80px; }

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px; }

.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px; }

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

.p-b85 {
  padding-bottom: 85px; }

.p-lr85 {
  padding-left: 85px;
  padding-right: 85px; }

.p-tb85 {
  padding-bottom: 85px;
  padding-top: 85px; }

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

.p-b90 {
  padding-bottom: 90px; }

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px; }

.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px; }

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

.p-b95 {
  padding-bottom: 95px; }

.p-lr95 {
  padding-left: 95px;
  padding-right: 95px; }

.p-tb95 {
  padding-bottom: 95px;
  padding-top: 95px; }

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

.p-b100 {
  padding-bottom: 100px; }

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px; }

.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px; }

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

/* Letter Spacing */
.letter-1 {
  letter-spacing: 1px; }

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

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

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

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

/*==== 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.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: #bfc9da; }
.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 .left-content h5, .header.transparent .main-bar.sticky-header .left-content .h5 {
  color: var(--title); }
.header.transparent .main-bar.sticky-header .left-content .menu-toggler {
  color: var(--primary); }
.header.transparent .main-bar.sticky-header .header-content .back-btn {
  color: #000; }
.header.transparent .main-bar.sticky-header .header-content .back-btn svg path {
  fill: #bfc9da; }
.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: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 h5, .header.transparent .main-bar .h5 {
  color: #fff; }
.header.transparent .main-bar .dropdown .dropdown-toggle:after {
  content: none; }
.header.transparent .right-content .theme-btn,
.header.transparent .right-content .theme-color {
  width: 35px;
  display: inline-block;
  height: 35px;
  text-align: center;
  line-height: 35px;
  padding: 0; }
.header.transparent .right-content .theme-btn svg,
.header.transparent .right-content .theme-color svg {
  fill: #bfc9da; }
.header.transparent .right-content .theme-btn svg path,
.header.transparent .right-content .theme-color svg path {
  fill: #bfc9da; }
.header.transparent .right-content .theme-btn svg.color-plate path,
.header.transparent .right-content .theme-color svg.color-plate path {
  fill: #bfc9da; }
.header.transparent .right-content .theme-btn .light,
.header.transparent .right-content .theme-color .light {
  display: none; }
.header.transparent .right-content .theme-btn.active .light,
.header.transparent .right-content .theme-color.active .light {
  display: inline-block; }
.header.transparent .right-content .theme-btn.active .dark,
.header.transparent .right-content .theme-color.active .dark {
  display: none; }
.header .back-btn {
  display: flex;
  line-height: 1;
  font-size: 16px;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center; }
.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 */
.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; }
.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 p {
  margin: 0;
  font-size: 13px; }
.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; }

.menu-toggler {
  position: relative; }
.menu-toggler.show:after {
  content: "";
  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; }

.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);
  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;
  padding-left: 0;
  padding-right: 0; }
.footer .chat-footer form .input-wrapper .form-control::placeholder {
  color: #B0B0B0; }
.footer .chat-footer form .input-wrapper .btn {
  position: absolute;
  bottom: 5px;
  right: 5px; }
.footer .chat-footer form .input-wrapper .btn:hover svg path {
  fill: #fff; }
.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 {
  background-color: var(--bg-white);
  position: relative;
  padding-right: 48px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border-color);
  padding-left: 45px; }
.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 .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); }

.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 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 12px 26px 0 rgba(0, 0, 0, 0.3); }
.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 .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 i,
.menubar-area .toolbar-inner .menu-toggler i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center; }
.menubar-area .toolbar-inner .nav-link.active,
.menubar-area .toolbar-inner .menu-toggler.active {
  position: relative; }
.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.active:after,
.menubar-area .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 .toolbar-inner .nav-link .title,
.menubar-area .toolbar-inner .menu-toggler .title {
  display: block;
  margin-top: 5px;
  font-weight: 500;
  font-size: 12px; }

[data-theme-color="color-primary"] {
  --primary: #8e221d;
  --primary-hover: #ec062e;
  --primary-dark: #261543;
  --gradient: linear-gradient(73.08deg, #673ab7 15.14%, #9a70e5 92.25%);
  --rgba-primary-1: rgba(103,58,183,0.1);
  --rgba-primary-2: rgba(103,58,183,0.2);
  --rgba-primary-3: rgba(103,58,183,0.3);
  --rgba-primary-4: rgba(103,58,183,0.4);
  --rgba-primary-5: rgba(103,58,183,0.5);
  --rgba-primary-6: rgba(103,58,183,0.6);
  --rgba-primary-7: rgba(103,58,183,0.7);
  --rgba-primary-8: rgba(103,58,183,0.8);
  --rgba-primary-9: rgba(103,58,183,0.9); }

[data-theme-color="color-green"] {
  --primary: #4cd964;
  --primary-hover: #2ac845;
  --primary-dark: #197328;
  --gradient: linear-gradient(73.08deg, #44b156 15.14%, #4cd964 92.25%);
  --rgba-primary-1: rgba(76,217,100,0.1);
  --rgba-primary-2: rgba(76,217,100,0.2);
  --rgba-primary-3: rgba(76,217,100,0.3);
  --rgba-primary-4: rgba(76,217,100,0.4);
  --rgba-primary-5: rgba(76,217,100,0.5);
  --rgba-primary-6: rgba(76,217,100,0.6);
  --rgba-primary-7: rgba(76,217,100,0.7);
  --rgba-primary-8: rgba(76,217,100,0.8);
  --rgba-primary-9: rgba(76,217,100,0.9); }

[data-theme-color="color-blue"] {
  --primary: #2196f3;
  --primary-hover: #0c7cd5;
  --primary-dark: #064475;
  --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); }

[data-theme-color="color-pink"] {
  --primary: #ff9eb1;
  --primary-hover: #ff6b88;
  --primary-dark: #ff0536;
  --gradient: linear-gradient(73.08deg, #ff9eb1 15.14%, #ffb9c6 92.25%);
  --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); }

[data-theme-color="color-yellow"] {
  --primary: #e3b706;
  --primary-hover: #cca300;
  --primary-dark: #665200;
  --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); }

[data-theme-color="color-orange"] {
  --primary: #ff9500;
  --primary-hover: #cc7700;
  --primary-dark: #663c00;
  --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); }

[data-theme-color="color-purple"] {
  --primary: #9237e3;
  --primary-hover: #791ccb;
  --primary-dark: #431071;
  --gradient: linear-gradient(73.08deg, #9237e3 15.14%, #c482ff 92.25%);
  --rgba-primary-1: rgba(146,55,227,0.1);
  --rgba-primary-2: rgba(146,55,227,0.2);
  --rgba-primary-3: rgba(146,55,227,0.3);
  --rgba-primary-4: rgba(146,55,227,0.4);
  --rgba-primary-5: rgba(146,55,227,0.5);
  --rgba-primary-6: rgba(146,55,227,0.6);
  --rgba-primary-7: rgba(146,55,227,0.7);
  --rgba-primary-8: rgba(146,55,227,0.8);
  --rgba-primary-9: rgba(146,55,227,0.9); }

[data-theme-color="color-red"] {
  --primary: #ff3b30;
  --primary-hover: #ff7b73;
  --gradient: linear-gradient(73.08deg, #ff3b30 15.14%, #ff5d54 92.25%);
  --primary-dark: #ea1c30;
  --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); }

[data-theme-color="color-lightblue"] {
  --primary: #5ac8fa;
  --primary-hover: #29b8f9;
  --primary-dark: #067fb6;
  --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); }

[data-theme-color="color-teal"] {
  --primary: #009688;
  --primary-hover: #00635a;
  --primary-dark: #000;
  --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); }

[data-theme-color="color-lime"] {
  --primary: #cddc39;
  --primary-hover: #b2c022;
  --primary-dark: #616913;
  --gradient: linear-gradient(73.08deg, #cddc39 15.14%, #cddc39 92.25%);
  --rgba-primary-1: rgba(205,220,57,0.1);
  --rgba-primary-2: rgba(205,220,57,0.2);
  --rgba-primary-3: rgba(205,220,57,0.3);
  --rgba-primary-4: rgba(205,220,57,0.4);
  --rgba-primary-5: rgba(205,220,57,0.5);
  --rgba-primary-6: rgba(205,220,57,0.6);
  --rgba-primary-7: rgba(205,220,57,0.7);
  --rgba-primary-8: rgba(205,220,57,0.8);
  --rgba-primary-9: rgba(205,220,57,0.9); }

[data-theme-color="color-deeporange"] {
  --primary: #ea1c30;
  --primary-hover: #ee4f00;
  --primary-dark: #882d00;
  --gradient: linear-gradient(73.08deg, #ff6b22 15.14%, #ff9f70 92.25%);
  --rgba-primary-1: rgba(255,107,34,0.1);
  --rgba-primary-2: rgba(255,107,34,0.2);
  --rgba-primary-3: rgba(255,107,34,0.3);
  --rgba-primary-4: rgba(255,107,34,0.4);
  --rgba-primary-5: rgba(255,107,34,0.5);
  --rgba-primary-6: rgba(255,107,34,0.6);
  --rgba-primary-7: rgba(255,107,34,0.7);
  --rgba-primary-8: rgba(255,107,34,0.8);
  --rgba-primary-9: rgba(255,107,34,0.9); }

/* Theme Dark */
.theme-dark {
  background-color: #1d1d1e !important;
  color: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.2);
  --bg-white: #ea1c30;
  --title: rgba(255, 255, 255, 0.7);
  --dark: var(--primary); }
.theme-dark .text-primary,
.theme-dark .text-dark {
  color: #fff !important; }
.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, .theme-dark .h1, .theme-dark .h2, .theme-dark .h3, .theme-dark .h4, .theme-dark .h5, .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, .theme-dark .h1 a, .theme-dark .h2 a, .theme-dark .h3 a, .theme-dark .h4 a, .theme-dark .h5 a, .theme-dark .h6 a {
  color: #fff; }
.theme-dark .light.btn-primary {
  border: 1px solid var(--border-color); }
.theme-dark .border-bottom {
  border-color: var(--border-color) !important; }
.theme-dark .btn-close {
  color: #fff; }
.theme-dark .search-icon svg path {
  fill: var(--primary); }
.theme-dark .map .detail-box {
  background-color: #201030; }
.theme-dark .contact-section ul li p {
  color: #fff; }
.theme-dark .input-group .input-group-text {
  background-color: #4f5051 !important;
  border-color: var(--border-color); }
.theme-dark .input-group .form-control {
  border-color: var(--border-color); }
.theme-dark .form-control {
  background: #4f5051;
  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: #1d1d1e; }
.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;
  border: 1px solid var(--border-color); }
.theme-dark .short-tag.style-3 .tag-btn {
  background-color: #fff; }
.theme-dark .short-tag.style-3 .btn-check:checked + .tag-btn {
  background-color: #fff; }
.theme-dark .detail-box {
  background-color: #202021; }
.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 .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: #202021; }
.theme-dark .footer .chat-footer {
  /* form .input-wrapper{
                &.message-area{
                    background-color: #110021;
                    border-color: var(--border-color);
                }
            } */ }
.theme-dark .footer .chat-footer .btn svg path {
  fill: #fff; }
.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 .card {
  background-color: #201030; }
.theme-dark .card.bg-light {
  background-color: #201030 !important; }
.theme-dark .card .text-primary {
  color: var(--primary) !important; }
.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: #201030;
  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 .imageuploadify.well {
  background-color: #201030 !important; }
.theme-dark .imageuploadify.well .imageuploadify-images-list .btn-default {
  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 .message-content .chat-content .message-item .bubble {
  background: #2c3f6d;
  color: #fff; }
.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-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: #42a7e5; }
.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: #9237e3; }
.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: #ff6b22; }

/*==== 5. Components ====*/
.imageuploadify.well {
  width: 100%;
  border: 2px dashed var(--border-color) !important;
  background: #fff;
  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: #fff !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; }

:root {
  --primary: #ec062e;
  --secondary: #f69f25;
  --gradient: linear-gradient(73.08deg, #000000 15.14%, #e6e7ea 92.25%);
  --primary-hover: #FF6B53;
  --primary-dark: #000000;
  --rgba-primary-1: rgba(66, 167, 229, 0.1);
  --rgba-primary-2: rgba(66, 167, 229, 0.2);
  --rgba-primary-3: rgba(66, 167, 229, 0.3);
  --rgba-primary-4: rgba(66, 167, 229, 0.4);
  --rgba-primary-5: rgba(66, 167, 229, 0.5);
  --rgba-primary-6: rgba(66, 167, 229, 0.6);
  --rgba-primary-7: rgba(66, 167, 229, 0.7);
  --rgba-primary-8: rgba(66, 167, 229, 0.8);
  --rgba-primary-9: rgba(66, 167, 229, 0.9);
  --font-family-base: Lato, sans-serif;
  --font-family-title: Lato, sans-serif;
  --border-radius-base: 8px;
  --border-color: #E8EFF3;
  --body-color: #f69f25;
  --dark: #000000;
  --bg-white: #FFF;
  --box-shadow: 0px 12px 30px 0px rgba(48, 48, 48, 0.14);
  --title: #4f658b; }

.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: #84CA93; }
.noUi-connect.c-2-color {
  background-color: #A183E0; }
.noUi-connect.c-3-color {
  background-color: var(--primary); }
.noUi-connect.c-4-color {
  background-color: #FFA902; }

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #7D8FAB;
  margin-bottom: 10px;
  background: transparent;
  border-color: #E8EFF3; }

.input-icon + .form-control {
  padding: 0 10px 0 48px; }

.form-control {
  height: 48px;
  border: 1px solid #E8EFF3;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease-in-out;
  background: #fff; }
.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 {
  height: 120px;
  resize: none; }

.input-group {
  margin-bottom: 15px; }
.input-group .input-group-text {
  background-color: var(--bg-white) !important;
  color: #a19fa8;
  border-color: var(--border-color);
  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); }

/* .input-group > :not(:first-child){
    padding: 10px 18px;
} */
.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 .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem; }

.form-check .form-check-label {
  margin-left: 8px; }

/* == 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 .form-control,
.input-radius .input-group-text {
  border-radius: 50px; }

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

.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: #f75a5b;
  border-color: #f75a5b;
  color: #fff;
  box-shadow: 0 0.9375rem 1.25rem 0 rgba(247, 90, 91, 0.15);
  background: #feecec;
  border-color: #feecec;
  color: #211c37;
  box-shadow: none; }

.accordion-danger-solid .accordion-header {
  background: #f75a5b;
  border-color: #f75a5b;
  color: #fff;
  box-shadow: 0 -0.625rem 1.25rem 0 rgba(247, 90, 91, 0.15);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
.accordion-danger-solid .accordion-header.collapsed {
  background: #feecec;
  border-color: #feecec;
  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 #f75a5b;
  border-top: none;
  box-shadow: 0 0.9375rem 1.25rem 0 rgba(247, 90, 91, 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 #E8EFF3; }

.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: #FF6B53;
  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: #A183E0;
  color: #fff;
  border-color: #A183E0; }
.accordion-header-bg .accordion-header-success {
  background-color: #84CA93;
  color: #fff;
  border-color: #84CA93; }

.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: #A183E0;
  border-color: #A183E0;
  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-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: #ffefec;
  border-color: #ffefec;
  color: #FF6B53; }

.alert-success {
  background: #eff8f1;
  border-color: #eff8f1;
  color: #84CA93; }

.alert-warning {
  background: #fffcf7;
  border-color: #fffcf7;
  color: #FFA902; }

.alert-danger {
  background: #feecec;
  border-color: #feecec;
  color: #f75a5b; }

.alert-info {
  background: white;
  border-color: white;
  color: #A183E0; }

.alert-dark {
  background: #b7c4e2;
  border-color: #b7c4e2;
  color: #2C406E; }

.alert-light {
  background: #E8EFF3;
  border-color: #E8EFF3;
  color: #2C406E; }

.alert-alt.alert-primary {
  border-left: 0.25rem solid var(--primary); }

.alert-alt.alert-secondary {
  border-left: 0.25rem solid #FF6B53; }

.alert-alt.alert-success {
  border-left: 0.25rem solid #84CA93; }

.alert-alt.alert-warning {
  border-left: 0.25rem solid #FFA902; }

.alert-alt.alert-danger {
  border-left: 0.25rem solid #f75a5b; }

.alert-alt.alert-info {
  border-left: 0.25rem solid #A183E0; }

.alert-alt.alert-dark {
  border-left: 0.25rem solid #2C406E; }

.alert-alt.alert-light {
  border-left: 0.25rem solid #b6ccd9; }

.alert-alt.alert-primary.solid {
  border-left: 0.25rem solid var(--primary-dark) !important; }

.alert-alt.alert-secondary.solid {
  border-left: 0.25rem solid #d31d00 !important; }

.alert-alt.alert-success.solid {
  border-left: 0.25rem solid #3e9050 !important; }

.alert-alt.alert-warning.solid {
  border-left: 0.25rem solid #825500 !important; }

.alert-alt.alert-danger.solid {
  border-left: 0.25rem solid #c80a0b !important; }

.alert-alt.alert-info.solid {
  border-left: 0.25rem solid #5a2eb6 !important; }

.alert-alt.alert-dark.solid {
  border-left: 0.25rem solid #080b13 !important; }

.alert-alt.alert-light.solid {
  border-left: 0.25rem solid #94b5c7 !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: #2C406E !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: #FF6B53;
  color: #fff;
  border-color: #FF6B53; }

.alert.alert-success.solid {
  background: #84CA93;
  color: #fff;
  border-color: #84CA93; }

.alert.alert-warning.solid {
  background: #FFA902;
  color: #fff;
  border-color: #FFA902; }

.alert.alert-danger.solid {
  background: #f75a5b;
  color: #fff;
  border-color: #f75a5b; }

.alert.alert-info.solid {
  background: #A183E0;
  color: #fff;
  border-color: #A183E0; }

.alert.alert-dark.solid {
  background: #2C406E;
  color: #fff;
  border-color: #2C406E; }

.alert.alert-light.solid {
  background: #E8EFF3;
  color: #2C406E;
  border-color: #E8EFF3; }

.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: #7D8FAB;
  border-color: #FF6B53; }

.alert.alert-outline-success {
  background: transparent;
  color: #84CA93;
  border-color: #84CA93; }

.alert.alert-outline-info {
  background: transparent;
  color: #A183E0;
  border-color: #A183E0; }

.alert.alert-outline-warning {
  background: transparent;
  color: #FFA902;
  border-color: #FFA902; }

.alert.alert-outline-danger {
  background: transparent;
  color: #f75a5b;
  border-color: #f75a5b; }

.alert.alert-outline-dark {
  background: transparent;
  color: #7D8FAB;
  border-color: #2C406E; }

.alert.alert-outline-light {
  background: transparent;
  color: #2C406E;
  border-color: #E8EFF3; }

.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: #84CA93;
  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: #2C406E; }

a[class*="badge-outline-"]:hover {
  color: #2C406E; }

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

.badge-outline-success {
  border-color: #84CA93;
  color: #84CA93; }

.badge-outline-info {
  border-color: #A183E0;
  color: #A183E0; }

.badge-outline-warning {
  border-color: #FFA902;
  color: #FFA902; }

.badge-outline-danger {
  border-color: #f75a5b;
  color: #f75a5b; }

.badge-outline-light {
  border-color: #dbe6ec;
  color: #2C406E; }

.badge-outline-dark {
  border-color: #2C406E;
  color: #2C406E; }

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

.badge-secondary {
  background-color: #FF6B53; }

.badge-info {
  background-color: #A183E0; }

.badge-primary {
  background-color: var(--primary); }

.badge-warning {
  background-color: #FFA902; }

.badge-danger {
  background-color: #f75a5b; }

.badge-dark {
  background-color: #2C406E; }

.badge-light {
  background-color: #dbe6ec;
  color: #2C406E; }

.light.badge-default {
  background: #ADB6C7; }

.light.badge-primary {
  background-color: #c8e6f8;
  color: #42A7E5; }

.light.badge-success {
  background-color: #eff8f1;
  color: #84CA93; }

.light.badge-info {
  background-color: #dfd5f4;
  color: #A183E0; }

.light.badge-secondary {
  background-color: #ffefec;
  color: #FF6B53; }

.light.badge-warning {
  background-color: #fffcf7;
  color: #FFA902; }

.light.badge-danger {
  background-color: #feecec;
  color: #f75a5b; }

.light.badge-dark {
  background-color: #b7c4e2;
  color: #2C406E; }

.light.badge-light {
  background-color: #ebf1f5;
  color: #2C406E; }

.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, 131, 224, 0.5);
  transition: all 0.5s !important; }
.shadow-info:hover {
  box-shadow: none; }

.shadow-secondary {
  box-shadow: 0px 8px 14px -4px rgba(255, 107, 83, 0.5);
  transition: all 0.5s !important; }
.shadow-secondary:hover {
  box-shadow: none; }

.shadow-dark {
  box-shadow: 0px 8px 14px -4px rgba(44, 64, 110, 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: #fff; }
.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: 10px 10px;
  line-height: 1.1;
  font-size: 12px;
  border-radius: var(--border-radius-base); }
.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: 14px;
  font-weight: 500;
  text-decoration: none; }

button {
  cursor: pointer; }
button:focus {
  outline: 0;
  box-shadow: none; }

.btn-primary {
  background-color: #8e221d;
  border-color: #8e221d; }
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  border-color: #8e221d;
  background-color: #b98550;
  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: #eff8f1;
  border-color: #eff8f1;
  color: #84CA93; }
.light.btn-success g [fill] {
  fill: #84CA93; }
.light.btn-success:hover {
  background-color: #84CA93;
  border-color: #84CA93;
  color: #fff; }
.light.btn-success:hover g [fill] {
  fill: #fff; }
.light.btn-info {
  background-color: #dfd5f4;
  border-color: #dfd5f4;
  color: #A183E0; }
.light.btn-info g [fill] {
  fill: #A183E0; }
.light.btn-info:hover {
  background-color: #A183E0;
  border-color: #A183E0;
  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: #ffefec;
  color: #FF6B53; }
.light.btn-secondary g [fill] {
  fill: #FF6B53; }
.light.btn-secondary:hover {
  background-color: #FF6B53;
  color: #fff; }
.light.btn-secondary:hover g [fill] {
  fill: #fff; }
.light.btn-warning {
  background-color: #fffcf7;
  color: #FFA902; }
.light.btn-warning g [fill] {
  fill: #FFA902; }
.light.btn-warning:hover {
  background-color: #FFA902;
  color: #fff; }
.light.btn-warning:hover g [fill] {
  fill: #fff; }
.light.btn-danger {
  background-color: #feecec;
  color: #f75a5b; }
.light.btn-danger g [fill] {
  fill: #f75a5b; }
.light.btn-danger:hover {
  background-color: #f75a5b;
  color: #fff; }
.light.btn-danger:hover g [fill] {
  fill: #fff; }
.light.btn-dark {
  background-color: #b7c4e2;
  border-color: #b7c4e2;
  color: #2C406E; }
.light.btn-dark g [fill] {
  fill: #2C406E; }
[data-theme-version="dark"] .light.btn-dark {
  background-color: rgba(44, 64, 110, 0.35);
  color: #fff; }
.light.btn-dark:hover {
  background-color: #2C406E;
  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: #84CA93; }
.btn.tp-btn.btn-success g [fill] {
  fill: #84CA93; }
.btn.tp-btn.btn-success:hover {
  background-color: #84CA93;
  border-color: #84CA93;
  color: #fff; }
.btn.tp-btn.btn-success:hover g [fill] {
  fill: #fff; }
.btn.tp-btn.btn-info {
  color: #A183E0; }
.btn.tp-btn.btn-info g [fill] {
  fill: #A183E0; }
.btn.tp-btn.btn-info:hover {
  background-color: #A183E0;
  border-color: #A183E0;
  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: #FF6B53; }
.btn.tp-btn.btn-secondary g [fill] {
  fill: #FF6B53; }
.btn.tp-btn.btn-secondary:hover {
  background-color: #FF6B53;
  border-color: #FF6B53;
  color: #fff; }
.btn.tp-btn.btn-secondary:hover g [fill] {
  fill: #fff; }
.btn.tp-btn.btn-warning {
  color: #FFA902; }
.btn.tp-btn.btn-warning g [fill] {
  fill: #FFA902; }
.btn.tp-btn.btn-warning:hover {
  background-color: #FFA902;
  border-color: #FFA902;
  color: #fff; }
.btn.tp-btn.btn-warning:hover g [fill] {
  fill: #fff; }
.btn.tp-btn.btn-danger {
  color: #f75a5b; }
.btn.tp-btn.btn-danger g [fill] {
  fill: #f75a5b; }
.btn.tp-btn.btn-danger:hover {
  background-color: #f75a5b;
  border-color: #f75a5b;
  color: #fff; }
.btn.tp-btn.btn-danger:hover g [fill] {
  fill: #fff; }
.btn.tp-btn.btn-light {
  color: #2C406E; }
.btn.tp-btn.btn-light g [fill] {
  fill: #2C406E; }
.btn.tp-btn.btn-light:hover {
  background-color: #E8EFF3;
  border-color: #E8EFF3;
  color: #2C406E; }
.btn.tp-btn.btn-light:hover g [fill] {
  fill: #fff; }
.btn.tp-btn.btn-dark {
  color: #2C406E; }
.btn.tp-btn.btn-dark g [fill] {
  fill: #2C406E; }
.btn.tp-btn.btn-dark:hover {
  background-color: #2C406E;
  border-color: #2C406E;
  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: #84CA93; }
.btn.tp-btn-light.btn-success g [fill] {
  fill: #84CA93; }
.btn.tp-btn-light.btn-success:hover {
  background-color: #eff8f1;
  border-color: #eff8f1;
  color: #84CA93; }
.btn.tp-btn-light.btn-success:hover g [fill] {
  fill: #84CA93; }
.btn.tp-btn-light.btn-info {
  color: #A183E0; }
.btn.tp-btn-light.btn-info g [fill] {
  fill: #A183E0; }
.btn.tp-btn-light.btn-info:hover {
  background-color: #dfd5f4;
  border-color: #dfd5f4;
  color: #A183E0; }
.btn.tp-btn-light.btn-info:hover g [fill] {
  fill: #A183E0; }
.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: #FF6B53; }
.btn.tp-btn-light.btn-secondary g [fill] {
  fill: #FF6B53; }
.btn.tp-btn-light.btn-secondary:hover {
  background-color: #ffefec;
  border-color: #ffefec;
  color: #FF6B53; }
.btn.tp-btn-light.btn-secondary:hover g [fill] {
  fill: #FF6B53; }
.btn.tp-btn-light.btn-warning {
  color: #FFA902; }
.btn.tp-btn-light.btn-warning g [fill] {
  fill: #FFA902; }
.btn.tp-btn-light.btn-warning:hover {
  background-color: #fffcf7;
  border-color: #fffcf7;
  color: #FFA902; }
.btn.tp-btn-light.btn-warning:hover g [fill] {
  fill: #FFA902; }
.btn.tp-btn-light.btn-danger {
  color: #f75a5b; }
.btn.tp-btn-light.btn-danger g [fill] {
  fill: #f75a5b; }
.btn.tp-btn-light.btn-danger:hover {
  background-color: #feecec;
  border-color: #feecec;
  color: #f75a5b; }
.btn.tp-btn-light.btn-danger:hover g [fill] {
  fill: #fff; }
.btn.tp-btn-light.btn-dark {
  color: #2C406E; }
.btn.tp-btn-light.btn-dark g [fill] {
  fill: #2C406E; }
.btn.tp-btn-light.btn-dark:hover {
  background-color: #b7c4e2;
  border-color: #b7c4e2;
  color: #2C406E; }
.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(255, 107, 83, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(255, 107, 83, 0.2) !important; }

.shadow.btn-warning {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(255, 169, 2, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(255, 169, 2, 0.2) !important; }

.shadow.btn-danger {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(247, 90, 91, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(247, 90, 91, 0.2) !important; }

.shadow.btn-info {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(161, 131, 224, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(161, 131, 224, 0.2) !important; }

.shadow.btn-success {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(132, 202, 147, 0.2) !important;
  box-shadow: 0 0.3125rem 0.9375rem 0 rgba(132, 202, 147, 0.2) !important; }

.btn-light {
  background: #E8EFF3;
  border-color: #E8EFF3;
  color: #959595; }
.btn-light:active, .btn-light:focus, .btn-light:hover {
  background: white;
  color: #2C406E;
  border-color: white; }

.btn-outline-primary:hover {
  color: #fff; }

.btn-outline-warning:hover {
  color: #fff; }

.btn-outline-light {
  color: #2C406E; }

.btn-dark {
  background: #2C406E;
  border-color: #2C406E;
  color: #fff; }
.btn-dark:active, .btn-dark:hover {
  background: #3b5592;
  color: #fff;
  border-color: #1d2b4a; }
.btn-dark:focus {
  background: #a5b5db; }

.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;
  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: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
  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; }

.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: #7D8FAB;
  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(44, 64, 110, 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(44, 64, 110, 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); }

.list-group-item {
  background-color: rgba(255, 255, 255, 0);
  border: 0.0625rem solid #E8EFF3;
  padding: 0.75rem 0.625rem;
  color: #7D8FAB; }
.list-group-item.active {
  background-color: var(--primary);
  border-color: var(--primary); }
.list-group-item:first-child {
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base); }
.list-group-item:last-child {
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base); }

.list-group-item.disabled, .list-group-item:disabled {
  color: #fff;
  background-color: #FF6B53;
  border-color: #FF6B53; }

[class*="bg-"] .list-group-item {
  border-color: rgba(255, 255, 255, 0.05); }

.bg-warning .list-group-item {
  border-color: rgba(0, 0, 0, 0.05); }

.card.text-white .list-group .list-group-item {
  color: #fff; }

.list-group-item-primary {
  color: var(--primary); }

.list-group-item-secondary {
  color: #FF6B53; }

.list-group-item-success {
  color: #84CA93; }

.list-group-item-danger {
  color: #f75a5b; }

.list-group-item-warning {
  color: #FFA902; }

.list-group-item-info {
  color: #A183E0; }

.list-group-item-light {
  color: #E8EFF3; }

.list-group-item-dark {
  color: #2C406E; }

.dz-list > ul > li {
  border-bottom: 1px solid #F2ECF6; }
.dz-list > ul > li:last-child {
  border-bottom: 0; }
.dz-list > ul > li .dz-media {
  margin-right: 15px;
  min-width: 15px; }
.dz-list > ul > li .item-content {
  padding: 12px 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: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3; }
.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; }

.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%;
  height: 100%;
  object-fit: cover; }
.media-primary {
  background: var(--rgba-primary-1);
  color: var(--primary); }
.media-info {
  background: #dfd5f4;
  color: #A183E0; }
.media-warning {
  background: #fffcf7;
  color: #FFA902; }
.media-danger {
  background: #feecec;
  color: #f75a5b; }
.media-success {
  background: #eff8f1;
  color: #84CA93; }
.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: 1.25rem;
  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: #7D8FAB;
  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: #FFA902;
  border-color: #FFA902; }
.form-switch .form-check-input.form-check-success:checked {
  background-color: #84CA93;
  border-color: #84CA93; }
.form-switch .form-check-input.form-check-danger:checked {
  background-color: #f75a5b;
  border-color: #f75a5b; }
.form-switch .form-check-input.form-check-info:checked {
  background-color: #A183E0;
  border-color: #A183E0; }
.form-switch .form-check-input.form-check-dark:checked {
  background-color: #2C406E;
  border-color: #2C406E; }

.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: #84CA93;
  border-color: #84CA93; }
.progress-bar.info {
  background-color: #A183E0;
  border-color: #A183E0; }
.progress-bar.danger {
  background-color: #f75a5b;
  border-color: #f75a5b; }
.progress-bar.warning {
  background-color: #FFA902;
  border-color: #FFA902; }
.progress-bar.pink {
  background-color: #84CA93;
  border-color: #84CA93; }

.progress {
  height: 0.875rem;
  background-color: #F0F0F1;
  overflow: hidden;
  border-radius: 1.25rem; }
.progress-bar {
  border-radius: 1.25rem; }

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

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

.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: #FFA902;
  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: #000;
  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 {
  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: #f75a5b; }
.dz-stepper.danger .bootstrap-touchspin .input-group-btn .btn {
  color: #fff;
  background-color: #f75a5b; }
.dz-stepper.danger .bootstrap-touchspin .form-control {
  border-color: #f75a5b;
  color: #f75a5b; }
.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: #FFA902; }
.dz-stepper.warning .bootstrap-touchspin .input-group-btn .btn {
  color: #fff;
  background-color: #FFA902; }
.dz-stepper.warning .bootstrap-touchspin .form-control {
  border-color: #FFA902;
  color: #FFA902; }
.dz-stepper.success .bootstrap-touchspin {
  border-color: #84CA93; }
.dz-stepper.success .bootstrap-touchspin .input-group-btn .btn {
  color: #fff;
  background-color: #84CA93; }
.dz-stepper.success .bootstrap-touchspin .form-control {
  border-color: #84CA93;
  color: #84CA93; }
.dz-stepper.info .bootstrap-touchspin {
  border-color: #A183E0; }
.dz-stepper.info .bootstrap-touchspin .input-group-btn .btn {
  color: #fff;
  background-color: #A183E0; }
.dz-stepper.info .bootstrap-touchspin .form-control {
  border-color: #A183E0;
  color: #A183E0; }
.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-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: #000; }
.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: #84CA93 !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: #84CA93 !important; }
.dz-timeline .timeline-item.info {
  background-color: #A183E0 !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: #A183E0 !important; }
.dz-timeline .timeline-item.warning {
  background-color: #FFA902 !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: #FFA902 !important; }
.dz-timeline .timeline-item.danger {
  background-color: #f75a5b !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: #f75a5b !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: #fff;
  border-radius: var(--border-radius-base);
  box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.08);
  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); }
.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: #84CA93;
  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: #FFA902;
  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: #f75a5b;
  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: #A183E0;
  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: #2C406E;
  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{
        img{
            margin: 10px 0;
        }
    }
} */
.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.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: #84CA93; }
.divider.inner-divider.border-success.transparent span {
  color: #84CA93; }
.divider.inner-divider.border-danger i,
.divider.inner-divider.border-danger span {
  background-color: #f75a5b; }
.divider.inner-divider.border-danger.transparent span {
  color: #f75a5b; }
.divider.inner-divider.border-info i,
.divider.inner-divider.border-info span {
  background-color: #A183E0; }
.divider.inner-divider.border-info.transparent span {
  color: #A183E0; }
.divider.inner-divider.border-warning i,
.divider.inner-divider.border-warning span {
  background-color: #FFA902; }
.divider.inner-divider.border-warning.transparent span {
  color: #FFA902; }
.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: #2C406E; }
.divider.inner-divider.border-dark.transparent span {
  color: #2C406E; }
.divider.inner-divider.transparent {
  border-width: 1px 0 0 0; }
.divider.inner-divider.transparent span {
  background-color: var(--bg-white);
  color: #7D8FAB; }

.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.offcanvas-bottom {
  border-radius: 0.625rem 0.625rem 0 0;
  height: unset;
  border-top: 0; }
.offcanvas.offcanvas-bottom .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bg-white);
  opacity: 1;
  text-align: center;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  z-index: 999;
  border-radius: var(--border-radius-base);
  box-shadow: 0 2px 13px -2px #edbebe; }
.offcanvas.offcanvas-top {
  border-radius: 0 0 10px 10px;
  height: unset;
  border-bottom: 0;
  bottom: auto; }
.offcanvas.offcanvas-end {
  width: 300px; }
.offcanvas.offcanvas-end .btn-close {
  position: absolute;
  z-index: 999;
  top: 10px;
  right: 10px;
  background: var(--bg-white);
  opacity: 1;
  text-align: center;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: var(--border-radius-base);
  box-shadow: 0 2px 13px -2px #edbebe; }
.offcanvas .offcanvas-header {
  padding: 1rem 0;
  margin: 0 0.875rem !important;
  border-bottom: 1px solid var(--border-color);
  margin: 0; }
.offcanvas .offcanvas-header .offcanvas-title {
  line-height: 1.2; }
.offcanvas .offcanvas-header .btn-close {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  opacity: 0.3;
  line-height: 1; }
.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; }

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

.btn-close {
  /* background: #dc3545;
    padding: 3px;
    opacity: 1;
    margin: 0; */ }

.top-right {
  position: absolute;
  top: 15px;
  right: 15px; }

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

/*==== 6. Pages ====*/
.notify-cart svg path {
  fill: var(--dark); }

.filter {
  margin-left: 6px; }
.filter svg path {
  fill: var(--dark); }

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

.head-title {
  font-size: 1.125rem;
  font-weight: 500; }

.dashboard-area .features-box .card {
  overflow: hidden; }
.dashboard-area .features-box .card img {
  position: absolute;
  bottom: -20px;
  right: -10px;
  opacity: 0.5;
  z-index: -1; }
.dashboard-area .features-box .card.card-bx {
  box-shadow: 0 8px 0.75rem 0 rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius-base);
  height: 169px;
  z-index: -1; }
.dashboard-area .features-box .card.card-content {
  color: #fff; }
.dashboard-area .features-box .card.card-content .title {
  color: #fff;
  font-size: 2.125rem;
  position: relative;
  font-weight: 700; }
.dashboard-area .features-box .card.card-content .title:after {
  content: "";
  position: absolute;
  top: 0px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  z-index: -1;
  left: 23px;
  background-image: url(../images/vector.png); }
.dashboard-area .features-box .card.card-content .card-info {
  position: absolute;
  bottom: 0; }

.categore-box {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-base);
  /*background: var(--bg-white);*/
  }
.categore-box .icon-bx {
  height: 48px;
  width: 48px;
  border-radius: var(--border-radius-base);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto; }
.categore-box.style-1 {
  display: block;
  padding: 6px 6px 12px;
  text-align: center; }
.categore-box.style-1 .title {
  display: block;
  color: var(--title);
  font-size: 14px; }
.categore-box.style-2 {
  display: flex;
  align-items: center;
  padding: 0px 20px 0px 5px; }
.categore-box.style-2 .title {
  color: var(--title);
  font-weight: 600; }
.categore-box.style-2 .icon-bx {
  margin-bottom: 0; }
.categore-box.style-2:hover .title {
  color: #fff; }
.categore-box.style-2:hover.primary {
  background-color: var(--primary); }
.categore-box.style-2:hover.secondary {
  background-color: var(--secondary); }
.categore-box.style-2:hover.green {
  background-color: #84CA93; }
.categore-box.style-2:hover.info {
  background-color: #A183E0; }
.categore-box.style-2:hover .icon-bx svg path {
  fill: #fff; }

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

.add-banner {
  box-shadow: none;
  border: 1px solid var(--border-color);
  overflow: hidden;
  z-index: 1; }
.add-banner .food-1 {
  z-index: -1;
  position: absolute;
  width: 120px;
  height: 120px;
  top: -30px;
  left: -60px;
  transform: rotate(260deg); }
.add-banner .food-2 {
  z-index: -1;
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -45px;
  right: -10px; }
.add-banner .circle-1 {
  position: absolute;
  bottom: -60px;
  right: -56px;
  width: 145px;
  height: 145px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%; }
.add-banner .circle-2 {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%; }
.add-banner:after {
  content: "";
  position: absolute;
  background-image: url(../images/vector.png);
  top: 12px;
  left: 59px;
  width: 30px;
  height: 25px;
  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%;
  text-align: center;
  color: #fff; }
.add-banner .card-body .card-info .title {
  font-weight: 800;
  position: relative;
  z-index: 1;
  color: #fff; }
.add-banner .card-body .card-info .title:after {
  content: attr(data-text);
  position: absolute;
  top: 2px;
  width: 100%;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: rgba(255, 255, 255, 0.57);
  z-index: -1;
  -webkit-text-stroke-width: 0.4px;
  right: -5px; }

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

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

.recomanded-swiper .swiper-slide {
  width: auto; }
.recomanded-swiper .swiper-slide:first-child {
  margin-left: 15px; }
.recomanded-swiper .swiper-slide:last-child {
  margin-right: 15px; }

.recomended-list {
  width: 228px;
  height: 256px;
  background-color: var(--primary);
  border-radius: var(--border-radius-base);
  overflow: hidden;
  margin-bottom: 20px; }
.recomended-list .image-box {
  position: relative; }
.recomended-list .image-box img {
  min-width: 230px;
  height: 154px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-base); }
.recomended-list .image-box .form-check {
  min-height: 0;
  margin-bottom: 0; }
.recomended-list .image-box .form-check.bookmark {
  padding: 0; }
.recomended-list .image-box .form-check.bookmark .form-check-label {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 12px 30px 0px rgba(48, 48, 48, 0.08);
  cursor: pointer; }
.recomended-list .image-box .form-check.bookmark .form-check-input {
  display: none; }
.recomended-list .image-box .form-check.bookmark .form-check-input:checked + .form-check-label {
  background-color: #EAEAEA; }
.recomended-list .image-box .form-check.bookmark .form-check-input:checked + .form-check-label svg path {
  fill: var(--primary); }
.recomended-list .text-content {
  padding: 10px 15px; }
.recomended-list .text-content .title {
  font-weight: 600;
  color: #fff;
  line-height: 1.5; }
.recomended-list .text-content .number {
  color: #BFC9DA; }

.item-box {
  display: flex;
  justify-content: space-between;
  background: var(--bg-white);
  border-radius: var(--border-radius-base);
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 3px 0px 25px -6px rgba(48, 48, 48, 0.1); }
.item-box .item-media {
  overflow: hidden;
  min-width: 135px; }
.item-box .item-content {
  width: 100%;
  padding: 7px 25px;
  background: var(--bg-white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-base);

  display: flex;
  flex-direction: column;
  justify-content: space-evenly; }
.item-box .item-content .item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center; }
.item-box .item-content .item-footer h6, .item-box .item-content .item-footer .h6 {
  margin-bottom: 0;
  color: var(--secondary); }

del {
  color: #BFC9DA !important; }
del h6, del .h6 {
  color: #BFC9DA !important;
  font-weight: 400 !important; }

.item-bookmark.active svg path {
  fill: #ff586e; }

.item-bookmark.active svg path {
  stroke: #ff586e; }

.item-bookmark.icon-2.active svg path {
  fill: #ff586e; }

.item-bookmark.icon-2.active svg path {
  stroke: #ff586e; }

.filter-area {
  display: flex;
  margin: 20px 0;
  align-items: center;
  justify-content: space-between; }

.btn.tag-btn {
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  padding: 0 15px 0px 33px;
  font-size: 12px;
  position: relative;
  margin: 0 5px 10px 0;
  background: var(--rgba-primary-1);
  border: 0;
  font-weight: 500;
  color: var(--primary); }
.btn.tag-btn .cross {
  position: absolute;
  left: 5px;
  font-size: 12px;
  top: 15px;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 21px; }

.fixed-content {
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.head-details {
  background-color: #21085B;
  padding-top: 20px;
  padding-bottom: 50px;
  margin-bottom: -30px; }
.head-details .container {
  display: flex;
  align-items: center;
  justify-content: space-between; }
.head-details .dz-info {
  padding-right: 20px; }
.head-details .title {
  color: #fff; }
.head-details .location {
  color: #fff;
  margin-bottom: 5px; }

.banner-wrapper {
  padding: 40px 0 40px;
  margin-bottom: -20px;
  text-align: center;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  z-index: 1; }
.banner-wrapper:after {
  content: "";
  width: 436px;
  height: 436px;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  top: -270px;
  right: -220px;
  z-index: -1; }
.banner-wrapper:before {
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  bottom: -40px;
  left: -40px;
  z-index: -1; }
.banner-wrapper .circle-1 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  top: 50px;
  left: 40px;
  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 p {
  font-size: 1rem; }

.author-notification {
  padding-top: 40px; }
.author-notification .inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.detail {
  color: #C3AC58; }

.filter-btn {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--secondary);
  border-radius: var(--border-radius-base); }

.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; }
.pwa-offcanvas.show {
  visibility: visible; }

.pwa-backdrop {
  visibility: hidden; }
.pwa-backdrop.show {
  visibility: visible;
  transition: opacity 0.15s linear; }

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

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

svg.text-primary g path {
  fill: #fff; }

.footer-height:after {
  content: "";
  width: 100%;
  height: 80px;
  display: table; }

.categorie-swiper .swiper-slide:first-child {
  margin-left: 15px; }

.swiper-bottom {
  position: fixed;
  bottom: 10px;
  left: 0; }

.short-tag .swiper-wrapper .swiper-slide {
  width: auto; }

.short-tag .tag-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--title);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-base) !important;
  padding: 5px 8px;
  display: inline-block; }

.short-tag.style-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
.short-tag.style-2 .tag-btn {
  margin: 0 6px 8px 0; }
.short-tag.style-2 .tag-btn img {
  width: 24px;
  min-width: 24px;
  margin-right: 8px; }

.short-tag.style-3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
.short-tag.style-3 .btn-check:checked + .tag-btn {
  border-color: var(--primary);
  background-color: var(--rgba-primary-1); }
.short-tag.style-3 .btn-check:checked + .tag-btn:after {
  display: block; }
.short-tag.style-3 .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: var(--border-radius-base) !important;
  padding: 0;
  background: var(--bg-white);
  display: inline-block;
  width: 60px;
  height: 35px;
  line-height: 30px;
  position: relative;
  transition: none; }
.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; }

.form-control.custom-image-select-2 {
  border-radius: 0.35rem; }
.form-control.custom-image-select-2 img {
  width: 24px;
  min-width: 24px;
  margin-right: 10px; }
.form-control.custom-image-select-2 .dropdown-menu {
  width: 100%; }
.form-control.custom-image-select-2 .dropdown-toggle {
  border: 2px solid var(--border-color) !important;
  padding: 10px;
  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: 10px;
  font-family: 'Font Awesome 6 Free';
  border: 0 !important;
  transform: translateY(-50%); }
.form-control.custom-image-select-2 .filter-option-inner-inner {
  margin-right: 20px; }
.form-control.custom-image-select-2 .dropdown-menu .dropdown-item {
  padding: 10px 15px 10px 15px;
  text-align: left; }

.text-justify {
  text-align: justify; }

.list-style {
  padding-left: 2rem; }
.list-style li {
  list-style: unset; }

.fb {
  padding-bottom: 80px;
  overflow: hidden; }

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

.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: #7D8FAB;
  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;
  justify-content: space-between;
  align-items: center; }
.company-detail .item-inner li {
  display: flex;
  align-items: center;
  padding: 3px 15px;
  margin: -3px -15px;
  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: 10px;
  margin-bottom: 0; }
.company-detail .item-inner li .delivery {
  color: #84CA93; }
.company-detail .item-inner li .delivery h6, .company-detail .item-inner li .delivery .h6 {
  font-size: 0.875rem;
  color: #84CA93; }
.company-detail .item-inner li .reviews-info {
  display: flex;
  align-items: center;
  justify-content: space-between; }
.company-detail .item-inner li .reviews-info i {
  color: #FFA902;
  font-size: 20px; }

.item-list-2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 10px 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; }

.tag-group .tag-btn {
  padding: 12px 25px;
  border: 1px solid var(--border-color);
  display: inline-block;
  border-radius: var(--border-radius-base);
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--dark); }
.tag-group .tag-btn:hover {
  background: var(--border-color); }
.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; }

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

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

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

.payment-card {
  width: 100%;
  height: 170px;
  position: relative;
  border-radius: 18px;
  overflow: hidden; }
.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 {
  width: 40px;
  /* position: absolute;
			top: 28px;
			left: 28px; */ }
.payment-card .card-name {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 15px; }
.payment-card .card-number {
  color: #fff;
  font-size: 18px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 2px; }
.payment-card .bottom-info {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
.payment-card .bottom-info p {
  font-weight: 300;
  margin: 10px 0 0 0;
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4); }

.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-box {
  position: relative;
  width: 100%;
  height: 280px;
  background-image: url("../images/bg-shape.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  border-radius: var(--border-radius-base);
  text-align: center; }
.payment-box .payment-successful {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  z-index: 1; }
.payment-box .payment-successful i {
  font-size: 20px;
  color: #fff;
  background: #cfa0b4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 42px; }

.message-list {
  padding-top: 10px; }
.message-list li {
  margin: 0 0 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 15px; }
.message-list li a {
  display: flex;
  align-items: center; }
.message-list li .media {
  position: relative; }
.message-list li .media:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background-color: #54D969;
  border: 3px solid #fff;
  border-radius: 50px; }
.message-list li .media-content {
  display: flex;
  margin-left: 10px;
  width: 100%; }
.message-list li .media-content .name {
  margin-bottom: 0; }
.message-list li .media-content p {
  color: #7D8FAB;
  font-size: 13px; }
.message-list li .media-content .time {
  margin-left: auto;
  color: #898A8D; }

.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: var(--rgba-primary-1);
  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(--primary);
  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 {
  padding: 0 10px;
  display: block;
  margin: 0 0 8px 0;
  border-radius: var(--border-radius-base);
  background-color: var(--bg-white);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color); }
.notification .notification-header ul {
  display: flex;
  align-items: center; }
.notification .notification-header ul li {
  padding-left: 10px;
  display: flex;
  align-items: center; }
.notification .notification-header ul li small, .notification .notification-header ul li .small {
  font-weight: 600;
  color: var(--dark); }
.notification .notification-content .item-content {
  justify-content: unset;
  align-items: flex-start;
  margin: 10px 0; }
.notification .notification-content .item-content .media {
  margin-right: 10px; }
.notification .notification-content .item-content .media img {
  border-radius: 50%; }
.notification .notification-content .item-content .item-inner .title {
  font-size: 0.875rem; }
.notification p {
  color: #7D8FAB;
  font-size: 0.875rem; }
.notification.bg-success .notification-header ul li small, .notification.bg-success .notification-header ul li .small {
  color: #fff; }
.notification.bg-success .title, .notification.bg-success p, .notification.bg-success .fa-share {
  color: #fff; }

.profile-area .profile {
  text-align: center; }
.profile-area .profile .media {
  position: relative;
  margin: 0 auto 15px;
  width: 120px;
  padding: 15px;
  min-width: 120px;
  height: 120px; }
.profile-area .profile .media img {
  border-radius: 50%;
  padding: 5px; }
.profile-area .profile .media .progress-style {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }
.profile-area .profile .media .progress-style #round-1 {
  fill: none;
  stroke-width: 8px;
  stroke-linecap: round; }
.profile-area .profile .media .progress-style #round-2 {
  stroke-dasharray: 120 120;
  fill: none;
  stroke-width: 8px;
  stroke-linecap: round; }

.profile-area .contact-profile {
  display: flex;
  justify-content: center;
  margin: 30px 0; }
.profile-area .contact-profile .contact-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--rgba-primary-2);
  text-align: center;
  line-height: 58px;
  border-radius: 50px; }
.profile-area .contact-profile .contact-icon:hover {
  background: var(--primary); }
.profile-area .contact-profile .contact-icon:hover svg path {
  fill: #fff; }

.profile-area .pdf-bx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary);
  padding: 20px 20px;
  width: 319px;
  height: 89px;
  border-radius: var(--border-radius-base);
  margin: 30px auto;
  color: #fff; }

.contact-section ul {
  margin-bottom: 50px; }
.contact-section ul li a {
  display: flex;
  align-items: center;
  margin: 24px 0; }
.contact-section ul li a .icon-box {
  color: var(--dark);
  font-size: 20px;
  width: 50px;
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--border-color);
  border-radius: 50%; }
.contact-section ul li a p {
  color: #293041;
  font-size: 1rem;
  font-weight: 600; }

.offer-swiper .swiper-wrapper .swiper-slide {
  width: auto; }
.offer-swiper .swiper-wrapper .swiper-slide:first-child {
  margin-left: 15px; }
.offer-swiper .swiper-wrapper .swiper-slide:last-child {
  margin-right: 15px; }

.offer-bx {
  width: 265px;
  background-color: var(--primary);
  height: 100px;
  border-radius: var(--border-radius-base);
  overflow: hidden;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
.offer-bx .offer-content h6, .offer-bx .offer-content .h6 {
  color: #fff; }
.offer-bx .offer-content small, .offer-bx .offer-content .small {
  color: white; }
.offer-bx .point {
  width: 60px;
  height: 60px;
  min-width: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-white);
  margin-left: 15px;
  border-radius: var(--border-radius-base);
  overflow: hidden; }

.icon-box-2 {
  width: 50px;
  min-width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  border: 2px solid #e1d3ff;
  border-radius: var(--border-radius-base);
  box-shadow: inset 0 0 10px 0 #4e23b48f; }
.icon-box-2.style-1 {
  box-shadow: inset 0 0 10px 0 #48a9f8; }

.skill-bar {
  text-align: center;
  background-color: var(--rgba-primary-1);
  padding: 15px 5px;
  border-radius: var(--border-radius-base); }
.skill-bar .donut-chart-sale {
  position: relative;
  width: 64px;
  margin: 0 auto 15px; }
.skill-bar .donut-chart-sale svg {
  z-index: 1;
  position: relative; }
.skill-bar .donut-chart-sale small, .skill-bar .donut-chart-sale .small {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600; }

/* .message-content + .footer {
    &.transparent{
        background-color: var(--rgba-primary-1);
    }
} */
.account-box {
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 20px -7px rgba(179, 179, 179, 0.21);
  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; }
.digit-group input {
  margin: 0 4px;
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  padding-left: 5px;
  padding-right: 5px;
  color: var(--dark); }

.welcome-area {
  flex-direction: column;
  display: flex;
  height: 100%; }
.welcome-area .welcome-logo {
  margin: 200px auto auto;
  text-align: center; }
.welcome-area .welcome-logo img {
  width: 220px; }
.welcome-area .welcome-logo .get-started {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
  margin-top: 15px; }
.welcome-area .welcome-logo .get-started .dz-title {
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 800;
  font-family: 'Roboto Slab', serif; }
.welcome-area .join-area {
  padding: 0 0 70px;
  margin: auto 0 0; }
.welcome-area .join-area .started {
  margin-bottom: 30px; }

.welcome-box {

  box-shadow: none;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 35px;
  border: 1px solid var(--border-color);
  margin: 20px auto;
  color: #efeeee;
  display: block;
  position: relative;
  text-align: center;
  width: 80%;
}
.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: 30px;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 900;
  color: #ec062e;
}
.welcome-box p {
  margin-bottom: 0;
  color: #7D8FAB; }
.welcome-box:hover {
  border: 1px solid var(--primary); }

.brand-title {
  font-size: 2.25rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px; }

.dz-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 800; }

.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; }

.main-screen {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: #2c406e;
  z-index: 999999; }
.main-screen .circle-1 {
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 80px;
  left: -55px;
  overflow: hidden;
  animation: move4 5s infinite; }
.main-screen .circle-2 {
  width: 436px;
  height: 436px;
  border-radius: 50%;
  background: #263965;
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -225px;
  animation: move1 5s infinite; }
.main-screen .circle-3 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #263965;
  position: absolute;
  top: 240px;
  left: 80px;
  animation: move3 5s infinite; }
.main-screen .circle-4 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #334878;
  position: absolute;
  bottom: 60px;
  left: -40px;
  animation: move1 5s infinite; }
.main-screen .circle-5 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #334878;
  position: absolute;
  bottom: 210px;
  left: 20px;
  animation: move3 5s infinite; }
.main-screen .circle-6 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #334878;
  position: absolute;
  bottom: 215px;
  right: 55px;
  animation: move3 5s infinite; }
.main-screen .circle-7 {
  width: 241px;
  height: 241px;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  right: -120px;
  overflow: hidden;
  animation: move2 5s infinite; }
.main-screen .brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
.main-screen .brand-logo .logo {
  width: 90px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  margin: 0 auto;
  background-color: var(--primary);
  border-radius: var(--border-radius-base);
  overflow: hidden; }
.main-screen .brand-logo .logo .brand-title {
  margin-top: 10px; }

@keyframes move1 {
  0% {
    transform: translateY(10px); }
  50% {
    transform: translateY(30px); }
  100% {
    transform: translateY(10px); } }

@keyframes move2 {
  0% {
    transform: translateY(-10px) rotate(0); }
  50% {
    transform: translateY(-30px) rotate(10deg); }
  100% {
    transform: translateY(-10px) rotate(0); } }

@keyframes move3 {
  0% {
    transform: translate(30px); }
  50% {
    transform: translate(10px); }
  100% {
    transform: translate(30px); } }

@keyframes move4 {
  0% {
    transform: translateY(-10px) rotate(0); }
  50% {
    transform: translateY(-30px) rotate(-10deg); }
  100% {
    transform: translateY(-10px) rotate(0); } }

/* Get Started */
.get-started {
  text-align: center;
  flex: 1;
  width: 100%; }
.get-started .swiper-wrapper {
  margin-bottom: 0; }
.get-started .dz-title {
  margin-bottom: 12px;
  font-size: 24px; }
.get-started p {
  margin-bottom: 0;
  margin-top: 0; }

.swiper-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem; }

.swiper-button-prev i {
  transform: rotateY(180deg); }

.swiper-button-next,
.swiper-button-prev {
  position: unset;
  height: 3rem;
  opacity: 1;
  width: 3rem;
  margin: 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  backgroun: transparent;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  color: #767676;
  border: 1px solid #CBCBCB; }
.swiper-button-next i,
.swiper-button-prev i {
  line-height: .5; }
.swiper-button-next:after,
.swiper-button-prev:after {
  content: none; }
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: #fff; }

.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: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--body-color);
  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); }

.swiper-pagination.style-2 {
  bottom: 0 !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); }

.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: 0 20px;
  background-color: var(--dark);
  border-radius: var(--border-radius-base);
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 30px); }
.detail-box .handler {
  position: absolute;
  width: 45px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.6);
  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: #7D8FAB;
  font-size: 12px; }

/*==== 7. PreLoader ====*/
/* Editable */
#preloader {
  background-color: #fff;
  padding: 0;
  margin: 0;
  height: 100%;
  position: fixed;
  z-index: 9999999;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
#preloader .spinner {
  width: 3rem;
  height: 3rem;
  border: 5px solid #e1ded9;
  background: transparent;
  border-top-color: #8e8e8f;
  border-radius: 50%;
  animation: loading 1s linear infinite; }

@keyframes loading {
  0% {
    transform: rotate(0deg); }
  0% {
    transform: rotate(360deg); } }

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

.bg-1{
  background-image: url("../images/bg1987.png"); /* The image used */
  background-position: left bottom;
  background-repeat: no-repeat;



}
.bg-0{
  background-image: url(../images/bgfirst.png), url(../images/bgfirsttop.png);
  background-position: left bottom, left top;
  background-repeat: no-repeat, no-repeat;


}

.font-ar {
  font-family: 'Almarai';
  direction: rtl;
  font-size: 17px;
  text-align: justify-all !important;

}

.st0{
    fill: var(--primary) !important;
   }
.st1{
    fill: var(--primary) !important;
   }

.st2{
    fill: var(--secondary) !important;
   }
   
   .theme-dark .ismail{
       color:white!important;
   }
   .isicon{
           float: left;
    padding-left: 8px;
}
   }
    