/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: 700 !important;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.bi-hs-lp-header {
  background: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 1) 100%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
  border-bottom: 1px solid #f2f2f2;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(5px);
}
.bi-hs-lp-header svg {
  height: 82px;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Banco Invest Styles */
/*!
 * Bootstrap v5.0.0-beta2 (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-blue: #67a8e4;
  --bs-indigo: #564ab1;
  --bs-purple: #6d60b0;
  --bs-pink: #f06292;
  --bs-red: #ea553d;
  --bs-orange: #fb8c00;
  --bs-yellow: #ffbb44;
  --bs-green: #4ac18e;
  --bs-teal: #009688;
  --bs-cyan: #3bc3e9;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #67a8e4;
  --bs-secondary: #6c757d;
  --bs-success: #4ac18e;
  --bs-info: #3bc3e9;
  --bs-warning: #ffbb44;
  --bs-indigo: #564ab1;
  --bs-danger: #ea553d;
  --bs-brown: #8d6e63;
  --bs-teal: #009688;
  --bs-lime: #afb42b;
  --bs-orange: #fb8c00;
  --bs-blue-grey: #90a4ae;
  --bs-purple: #6d60b0;
  --bs-pink: #f06292;
  --bs-light: #f3f3f3;
  --bs-dark: #343a40;
  --bs-font-sans-serif: inherit;
  --bs-font-monospace: inherit;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); }

*,
*::before,
*::after {
  box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; } }

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #303d4a;
  background-color: #f5f5f5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important; }

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.2; }

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: 500;
  line-height: 1.2; }

h1, .h1 {
  font-size: calc(1.35938rem + 1.3125vw); }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 2.34375rem; } }

h2, .h2 {
  font-size: calc(1.3125rem + 0.75vw); }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 1.875rem; } }

h3, .h3 {
  font-size: calc(1.28906rem + 0.46875vw); }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.64062rem; } }

h4, .h4 {
  font-size: calc(1.26562rem + 0.1875vw); }
  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1.40625rem; } }

h5, .h5 {
  font-size: 1.17188rem; }

h6, .h6 {
  font-size: 0.9375rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline;
  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: 600; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small, .small {
  font-size: 80%; }

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: #67a8e4;
  text-decoration: underline; }
  a:hover {
    color: #5286b6; }

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: 87.5%;
  color: #212529; }
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal; }

code {
  font-size: 87.5%;
  color: #f06292;
  word-wrap: break-word; }
  a > code {
    color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem; }
  kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 600; }

figure {
  margin: 0 0 1rem; }

img,
svg {
  vertical-align: middle; }

table {
  caption-side: bottom;
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #707070;
  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; }

[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.17188rem;
  font-weight: 300; }

.display-1 {
  font-size: calc(1.725rem + 5.7vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-1 {
      font-size: 6rem; } }

.display-2 {
  font-size: calc(1.675rem + 5.1vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-2 {
      font-size: 5.5rem; } }

.display-3 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-3 {
      font-size: 4.5rem; } }

.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: 80%;
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.17188rem; }
  .blockquote > :last-child {
    margin-bottom: 0; }

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 80%;
  color: #6c757d; }
  .blockquote-footer::before {
    content: "\2014\00A0"; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: 0.25rem;
  background-color: #f5f5f5;
  border: 1px solid #eeeeee;
  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: 80%;
  color: #6c757d; }

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  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: 1140px; } }

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1360px; } }

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2); }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    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: 1400px) {
  .col-xxl {
    flex: 1 0 0%; }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.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-striped-color: #212529;
  --bs-table-striped-bg: #f7f7f7;
  --bs-table-active-color: #212529;
  --bs-table-active-bg: #f7f7f7;
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: #f7f7f7;
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #eeeeee; }
  .table > :not(caption) > * > * {
    padding: 0.75rem 0.75rem;
    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(:last-child) > :last-child > * {
    border-bottom-color: #eeeeee; }

.caption-top {
  caption-side: top; }

.table-sm > :not(caption) > * > * {
  padding: 0.3rem 0.3rem; }

.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-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: #e1eefa;
  --bs-table-striped-bg: #d6e2ee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbd6e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d0dce7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbd6e1; }

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce; }

.table-success {
  --bs-table-bg: #dbf3e8;
  --bs-table-striped-bg: #d0e7dc;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c5dbd1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #cbe1d7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #c5dbd1; }

.table-info {
  --bs-table-bg: #d8f3fb;
  --bs-table-striped-bg: #cde7ee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c2dbe2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c8e1e8;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #c2dbe2; }

.table-warning {
  --bs-table-bg: #fff1da;
  --bs-table-striped-bg: #f2e5cf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6d9c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ecdfca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6d9c4; }

.table-danger {
  --bs-table-bg: #fbddd8;
  --bs-table-striped-bg: #eed2cd;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e2c7c2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e8ccc8;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e2c7c2; }

.table-light {
  --bs-table-bg: #f3f3f3;
  --bs-table-striped-bg: #e7e7e7;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dbdbdb;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e1e1e1;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dbdbdb; }

.table-dark {
  --bs-table-bg: #343a40;
  --bs-table-striped-bg: #3e444a;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #484e53;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #43494e;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #484e53; }

.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: 1399.98px) {
  .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.5; }

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.17188rem; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.82031rem; }

.form-text {
  margin-top: 0.25rem;
  font-size: 80%;
  color: #707070; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none; } }
  .form-control[type="file"] {
    overflow: hidden; }
    .form-control[type="file"]:not(:disabled):not([readonly]) {
      cursor: pointer; }
  .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #b9bfc4;
    outline: 0;
    box-shadow: none; }
  .form-control::-webkit-date-and-time-value {
    height: 1.5em; }
  .form-control::placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #f3f3f3;
    opacity: 1; }
  .form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #495057;
    background-color: #f3f3f3;
    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: #e7e7e7; }
  .form-control::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #495057;
    background-color: #f3f3f3;
    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: #e7e7e7; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  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.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.82031rem;
  border-radius: 0.2rem; }
  .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.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.17188rem;
  border-radius: 0.4rem; }
  .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.5em + 0.75rem + 2px); }

textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px); }

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px); }

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem; }
  .form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer; }
  .form-control-color::-moz-color-swatch {
    height: 1.5em;
    border-radius: 0.25rem; }
  .form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: 0.25rem; }

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none; }
  .form-select:focus {
    border-color: #b9bfc4;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(103, 168, 228, 0.25); }
  .form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none; }
  .form-select:disabled {
    color: #6c757d;
    background-color: #f3f3f3; }
  .form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057; }

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.82031rem; }

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.17188rem; }

.form-check {
  display: block;
  min-height: 1.40625rem;
  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.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
  transition: background-color 0.15s ease-in-out, background-position 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-check-input {
      transition: none; } }
  .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: #b9bfc4;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(103, 168, 228, 0.25); }
  .form-check-input:checked {
    background-color: #67a8e4;
    border-color: #67a8e4; }
    .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: #67a8e4;
    border-color: #67a8e4;
    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='%23b9bfc4'/%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: 1.3rem;
  padding: 0;
  background-color: transparent;
  appearance: none; }
  .form-range:focus {
    outline: 0; }
    .form-range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 1px #f5f5f5, none; }
    .form-range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 1px #f5f5f5, none; }
  .form-range::-moz-focus-outer {
    border: 0; }
  .form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #67a8e4;
    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: #d1e5f7; }
  .form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #eeeeee;
    border-color: transparent;
    border-radius: 1rem; }
  .form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #67a8e4;
    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: #d1e5f7; }
  .form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #eeeeee;
    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);
    padding: 1rem 0.75rem; }
  .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::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.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #f3f3f3;
  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.17188rem;
  border-radius: 0.4rem; }

.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.82031rem;
  border-radius: 0.2rem; }

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 2.5rem; }

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #4ac18e; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  margin-top: .1rem;
  font-size: 0.82031rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(74, 193, 142, 0.9);
  border-radius: 0.25rem; }

.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: #4ac18e;
  padding-right: calc(1.5em + 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='%234ac18e' 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.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #4ac18e;
    box-shadow: 0 0 0 0.15rem rgba(74, 193, 142, 0.25); }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #4ac18e;
  padding-right: calc(0.75em + 3.0625rem);
  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='%234ac18e' 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.5rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
    border-color: #4ac18e;
    box-shadow: 0 0 0 0.15rem rgba(74, 193, 142, 0.25); }

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #4ac18e; }
  .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    background-color: #4ac18e; }
  .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
    box-shadow: 0 0 0 0.15rem rgba(74, 193, 142, 0.25); }
  .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #4ac18e; }

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em; }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #ea553d; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  margin-top: .1rem;
  font-size: 0.82031rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(234, 85, 61, 0.9);
  border-radius: 0.25rem; }

.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: #ea553d;
  padding-right: calc(1.5em + 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='%23ea553d'%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='%23ea553d' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #ea553d;
    box-shadow: 0 0 0 0.15rem rgba(234, 85, 61, 0.25); }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #ea553d;
  padding-right: calc(0.75em + 3.0625rem);
  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='%23ea553d'%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='%23ea553d' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.5rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
    border-color: #ea553d;
    box-shadow: 0 0 0 0.15rem rgba(234, 85, 61, 0.25); }

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #ea553d; }
  .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
    background-color: #ea553d; }
  .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0.15rem rgba(234, 85, 61, 0.25); }
  .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #ea553d; }

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em; }

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  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.9375rem;
  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: #212529; }
  .btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(103, 168, 228, 0.25); }
  .btn:disabled, .btn.disabled,
  fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65; }

.btn-primary {
  color: #fff;
  background-color: #67a8e4;
  border-color: #67a8e4; }
  .btn-primary:hover {
    color: #fff;
    background-color: #588fc2;
    border-color: #5286b6; }
  .btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #588fc2;
    border-color: #5286b6;
    box-shadow: 0 0 0 0.15rem rgba(126, 181, 232, 0.5); }
  .btn-check:checked + .btn-primary,
  .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #5286b6;
    border-color: #4d7eab; }
    .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 0.15rem rgba(126, 181, 232, 0.5); }
  .btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: #67a8e4;
    border-color: #67a8e4; }

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d; }
  .btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64; }
  .btn-check:focus + .btn-secondary, .btn-secondary:focus {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
    box-shadow: 0 0 0 0.15rem rgba(130, 138, 145, 0.5); }
  .btn-check:checked + .btn-secondary,
  .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active,
  .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #565e64;
    border-color: #51585e; }
    .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 0.15rem rgba(130, 138, 145, 0.5); }
  .btn-secondary:disabled, .btn-secondary.disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }

.btn-success {
  color: #fff;
  background-color: #4ac18e;
  border-color: #4ac18e; }
  .btn-success:hover {
    color: #fff;
    background-color: #3fa479;
    border-color: #3b9a72; }
  .btn-check:focus + .btn-success, .btn-success:focus {
    color: #fff;
    background-color: #3fa479;
    border-color: #3b9a72;
    box-shadow: 0 0 0 0.15rem rgba(101, 202, 159, 0.5); }
  .btn-check:checked + .btn-success,
  .btn-check:active + .btn-success, .btn-success:active, .btn-success.active,
  .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #3b9a72;
    border-color: #38916b; }
    .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 0.15rem rgba(101, 202, 159, 0.5); }
  .btn-success:disabled, .btn-success.disabled {
    color: #fff;
    background-color: #4ac18e;
    border-color: #4ac18e; }

.btn-info {
  color: #fff;
  background-color: #3bc3e9;
  border-color: #3bc3e9; }
  .btn-info:hover {
    color: #fff;
    background-color: #32a6c6;
    border-color: #2f9cba; }
  .btn-check:focus + .btn-info, .btn-info:focus {
    color: #fff;
    background-color: #32a6c6;
    border-color: #2f9cba;
    box-shadow: 0 0 0 0.15rem rgba(88, 204, 236, 0.5); }
  .btn-check:checked + .btn-info,
  .btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
  .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #2f9cba;
    border-color: #2c92af; }
    .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 0.15rem rgba(88, 204, 236, 0.5); }
  .btn-info:disabled, .btn-info.disabled {
    color: #fff;
    background-color: #3bc3e9;
    border-color: #3bc3e9; }

.btn-warning {
  color: #fff;
  background-color: #ffbb44;
  border-color: #ffbb44; }
  .btn-warning:hover {
    color: #fff;
    background-color: #d99f3a;
    border-color: #cc9636; }
  .btn-check:focus + .btn-warning, .btn-warning:focus {
    color: #fff;
    background-color: #d99f3a;
    border-color: #cc9636;
    box-shadow: 0 0 0 0.15rem rgba(255, 197, 96, 0.5); }
  .btn-check:checked + .btn-warning,
  .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,
  .show > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #cc9636;
    border-color: #bf8c33; }
    .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 0.15rem rgba(255, 197, 96, 0.5); }
  .btn-warning:disabled, .btn-warning.disabled {
    color: #fff;
    background-color: #ffbb44;
    border-color: #ffbb44; }

.btn-indigo {
  color: #fff;
  background-color: #564ab1;
  border-color: #564ab1; }
  .btn-indigo:hover {
    color: #fff;
    background-color: #493f96;
    border-color: #453b8e; }
  .btn-check:focus + .btn-indigo, .btn-indigo:focus {
    color: #fff;
    background-color: #493f96;
    border-color: #453b8e;
    box-shadow: 0 0 0 0.15rem rgba(111, 101, 189, 0.5); }
  .btn-check:checked + .btn-indigo,
  .btn-check:active + .btn-indigo, .btn-indigo:active, .btn-indigo.active,
  .show > .btn-indigo.dropdown-toggle {
    color: #fff;
    background-color: #453b8e;
    border-color: #413885; }
    .btn-check:checked + .btn-indigo:focus,
    .btn-check:active + .btn-indigo:focus, .btn-indigo:active:focus, .btn-indigo.active:focus,
    .show > .btn-indigo.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(111, 101, 189, 0.5); }
  .btn-indigo:disabled, .btn-indigo.disabled {
    color: #fff;
    background-color: #564ab1;
    border-color: #564ab1; }

.btn-danger {
  color: #fff;
  background-color: #ea553d;
  border-color: #ea553d; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c74834;
    border-color: #bb4431; }
  .btn-check:focus + .btn-danger, .btn-danger:focus {
    color: #fff;
    background-color: #c74834;
    border-color: #bb4431;
    box-shadow: 0 0 0 0.15rem rgba(237, 111, 90, 0.5); }
  .btn-check:checked + .btn-danger,
  .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,
  .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bb4431;
    border-color: #b0402e; }
    .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 0.15rem rgba(237, 111, 90, 0.5); }
  .btn-danger:disabled, .btn-danger.disabled {
    color: #fff;
    background-color: #ea553d;
    border-color: #ea553d; }

.btn-brown {
  color: #fff;
  background-color: #8d6e63;
  border-color: #8d6e63; }
  .btn-brown:hover {
    color: #fff;
    background-color: #785e54;
    border-color: #71584f; }
  .btn-check:focus + .btn-brown, .btn-brown:focus {
    color: #fff;
    background-color: #785e54;
    border-color: #71584f;
    box-shadow: 0 0 0 0.15rem rgba(158, 132, 122, 0.5); }
  .btn-check:checked + .btn-brown,
  .btn-check:active + .btn-brown, .btn-brown:active, .btn-brown.active,
  .show > .btn-brown.dropdown-toggle {
    color: #fff;
    background-color: #71584f;
    border-color: #6a534a; }
    .btn-check:checked + .btn-brown:focus,
    .btn-check:active + .btn-brown:focus, .btn-brown:active:focus, .btn-brown.active:focus,
    .show > .btn-brown.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(158, 132, 122, 0.5); }
  .btn-brown:disabled, .btn-brown.disabled {
    color: #fff;
    background-color: #8d6e63;
    border-color: #8d6e63; }

.btn-teal {
  color: #fff;
  background-color: #009688;
  border-color: #009688; }
  .btn-teal:hover {
    color: #fff;
    background-color: #008074;
    border-color: #00786d; }
  .btn-check:focus + .btn-teal, .btn-teal:focus {
    color: #fff;
    background-color: #008074;
    border-color: #00786d;
    box-shadow: 0 0 0 0.15rem rgba(38, 166, 154, 0.5); }
  .btn-check:checked + .btn-teal,
  .btn-check:active + .btn-teal, .btn-teal:active, .btn-teal.active,
  .show > .btn-teal.dropdown-toggle {
    color: #fff;
    background-color: #00786d;
    border-color: #007166; }
    .btn-check:checked + .btn-teal:focus,
    .btn-check:active + .btn-teal:focus, .btn-teal:active:focus, .btn-teal.active:focus,
    .show > .btn-teal.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(38, 166, 154, 0.5); }
  .btn-teal:disabled, .btn-teal.disabled {
    color: #fff;
    background-color: #009688;
    border-color: #009688; }

.btn-lime {
  color: #fff;
  background-color: #afb42b;
  border-color: #afb42b; }
  .btn-lime:hover {
    color: #fff;
    background-color: #959925;
    border-color: #8c9022; }
  .btn-check:focus + .btn-lime, .btn-lime:focus {
    color: #fff;
    background-color: #959925;
    border-color: #8c9022;
    box-shadow: 0 0 0 0.15rem rgba(187, 191, 75, 0.5); }
  .btn-check:checked + .btn-lime,
  .btn-check:active + .btn-lime, .btn-lime:active, .btn-lime.active,
  .show > .btn-lime.dropdown-toggle {
    color: #fff;
    background-color: #8c9022;
    border-color: #838720; }
    .btn-check:checked + .btn-lime:focus,
    .btn-check:active + .btn-lime:focus, .btn-lime:active:focus, .btn-lime.active:focus,
    .show > .btn-lime.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(187, 191, 75, 0.5); }
  .btn-lime:disabled, .btn-lime.disabled {
    color: #fff;
    background-color: #afb42b;
    border-color: #afb42b; }

.btn-orange {
  color: #fff;
  background-color: #fb8c00;
  border-color: #fb8c00; }
  .btn-orange:hover {
    color: #fff;
    background-color: #d57700;
    border-color: #c97000; }
  .btn-check:focus + .btn-orange, .btn-orange:focus {
    color: #fff;
    background-color: #d57700;
    border-color: #c97000;
    box-shadow: 0 0 0 0.15rem rgba(252, 157, 38, 0.5); }
  .btn-check:checked + .btn-orange,
  .btn-check:active + .btn-orange, .btn-orange:active, .btn-orange.active,
  .show > .btn-orange.dropdown-toggle {
    color: #fff;
    background-color: #c97000;
    border-color: #bc6900; }
    .btn-check:checked + .btn-orange:focus,
    .btn-check:active + .btn-orange:focus, .btn-orange:active:focus, .btn-orange.active:focus,
    .show > .btn-orange.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(252, 157, 38, 0.5); }
  .btn-orange:disabled, .btn-orange.disabled {
    color: #fff;
    background-color: #fb8c00;
    border-color: #fb8c00; }

.btn-blue-grey {
  color: #fff;
  background-color: #90a4ae;
  border-color: #90a4ae; }
  .btn-blue-grey:hover {
    color: #fff;
    background-color: #7a8b94;
    border-color: #73838b; }
  .btn-check:focus + .btn-blue-grey, .btn-blue-grey:focus {
    color: #fff;
    background-color: #7a8b94;
    border-color: #73838b;
    box-shadow: 0 0 0 0.15rem rgba(161, 178, 186, 0.5); }
  .btn-check:checked + .btn-blue-grey,
  .btn-check:active + .btn-blue-grey, .btn-blue-grey:active, .btn-blue-grey.active,
  .show > .btn-blue-grey.dropdown-toggle {
    color: #fff;
    background-color: #73838b;
    border-color: #6c7b83; }
    .btn-check:checked + .btn-blue-grey:focus,
    .btn-check:active + .btn-blue-grey:focus, .btn-blue-grey:active:focus, .btn-blue-grey.active:focus,
    .show > .btn-blue-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(161, 178, 186, 0.5); }
  .btn-blue-grey:disabled, .btn-blue-grey.disabled {
    color: #fff;
    background-color: #90a4ae;
    border-color: #90a4ae; }

.btn-purple {
  color: #fff;
  background-color: #6d60b0;
  border-color: #6d60b0; }
  .btn-purple:hover {
    color: #fff;
    background-color: #5d5296;
    border-color: #574d8d; }
  .btn-check:focus + .btn-purple, .btn-purple:focus {
    color: #fff;
    background-color: #5d5296;
    border-color: #574d8d;
    box-shadow: 0 0 0 0.15rem rgba(131, 120, 188, 0.5); }
  .btn-check:checked + .btn-purple,
  .btn-check:active + .btn-purple, .btn-purple:active, .btn-purple.active,
  .show > .btn-purple.dropdown-toggle {
    color: #fff;
    background-color: #574d8d;
    border-color: #524884; }
    .btn-check:checked + .btn-purple:focus,
    .btn-check:active + .btn-purple:focus, .btn-purple:active:focus, .btn-purple.active:focus,
    .show > .btn-purple.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(131, 120, 188, 0.5); }
  .btn-purple:disabled, .btn-purple.disabled {
    color: #fff;
    background-color: #6d60b0;
    border-color: #6d60b0; }

.btn-pink {
  color: #fff;
  background-color: #f06292;
  border-color: #f06292; }
  .btn-pink:hover {
    color: #fff;
    background-color: #cc537c;
    border-color: #c04e75; }
  .btn-check:focus + .btn-pink, .btn-pink:focus {
    color: #fff;
    background-color: #cc537c;
    border-color: #c04e75;
    box-shadow: 0 0 0 0.15rem rgba(242, 122, 162, 0.5); }
  .btn-check:checked + .btn-pink,
  .btn-check:active + .btn-pink, .btn-pink:active, .btn-pink.active,
  .show > .btn-pink.dropdown-toggle {
    color: #fff;
    background-color: #c04e75;
    border-color: #b44a6e; }
    .btn-check:checked + .btn-pink:focus,
    .btn-check:active + .btn-pink:focus, .btn-pink:active:focus, .btn-pink.active:focus,
    .show > .btn-pink.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.15rem rgba(242, 122, 162, 0.5); }
  .btn-pink:disabled, .btn-pink.disabled {
    color: #fff;
    background-color: #f06292;
    border-color: #f06292; }

.btn-light {
  color: #000;
  background-color: #f3f3f3;
  border-color: #f3f3f3; }
  .btn-light:hover {
    color: #000;
    background-color: whitesmoke;
    border-color: #f4f4f4; }
  .btn-check:focus + .btn-light, .btn-light:focus {
    color: #000;
    background-color: whitesmoke;
    border-color: #f4f4f4;
    box-shadow: 0 0 0 0.15rem rgba(207, 207, 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: whitesmoke;
    border-color: #f4f4f4; }
    .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 0.15rem rgba(207, 207, 207, 0.5); }
  .btn-light:disabled, .btn-light.disabled {
    color: #000;
    background-color: #f3f3f3;
    border-color: #f3f3f3; }

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40; }
  .btn-dark:hover {
    color: #fff;
    background-color: #2c3136;
    border-color: #2a2e33; }
  .btn-check:focus + .btn-dark, .btn-dark:focus {
    color: #fff;
    background-color: #2c3136;
    border-color: #2a2e33;
    box-shadow: 0 0 0 0.15rem rgba(82, 88, 93, 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: #2a2e33;
    border-color: #272c30; }
    .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 0.15rem rgba(82, 88, 93, 0.5); }
  .btn-dark:disabled, .btn-dark.disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }

.btn-outline-primary {
  color: #67a8e4;
  border-color: #67a8e4; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #67a8e4;
    border-color: #67a8e4; }
  .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: 0 0 0 0.15rem rgba(103, 168, 228, 0.5); }
  .btn-check:checked + .btn-outline-primary,
  .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: #67a8e4;
    border-color: #67a8e4; }
    .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 0.15rem rgba(103, 168, 228, 0.5); }
  .btn-outline-primary:disabled, .btn-outline-primary.disabled {
    color: #67a8e4;
    background-color: transparent; }

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d; }
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
  .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.15rem rgba(108, 117, 125, 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: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
    .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 0.15rem rgba(108, 117, 125, 0.5); }
  .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
    color: #6c757d;
    background-color: transparent; }

.btn-outline-success {
  color: #4ac18e;
  border-color: #4ac18e; }
  .btn-outline-success:hover {
    color: #fff;
    background-color: #4ac18e;
    border-color: #4ac18e; }
  .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
    box-shadow: 0 0 0 0.15rem rgba(74, 193, 142, 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: #fff;
    background-color: #4ac18e;
    border-color: #4ac18e; }
    .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 0.15rem rgba(74, 193, 142, 0.5); }
  .btn-outline-success:disabled, .btn-outline-success.disabled {
    color: #4ac18e;
    background-color: transparent; }

.btn-outline-info {
  color: #3bc3e9;
  border-color: #3bc3e9; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #3bc3e9;
    border-color: #3bc3e9; }
  .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
    box-shadow: 0 0 0 0.15rem rgba(59, 195, 233, 0.5); }
  .btn-check:checked + .btn-outline-info,
  .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
    color: #fff;
    background-color: #3bc3e9;
    border-color: #3bc3e9; }
    .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 0.15rem rgba(59, 195, 233, 0.5); }
  .btn-outline-info:disabled, .btn-outline-info.disabled {
    color: #3bc3e9;
    background-color: transparent; }

.btn-outline-warning {
  color: #ffbb44;
  border-color: #ffbb44; }
  .btn-outline-warning:hover {
    color: #fff;
    background-color: #ffbb44;
    border-color: #ffbb44; }
  .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
    box-shadow: 0 0 0 0.15rem rgba(255, 187, 68, 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: #fff;
    background-color: #ffbb44;
    border-color: #ffbb44; }
    .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 0.15rem rgba(255, 187, 68, 0.5); }
  .btn-outline-warning:disabled, .btn-outline-warning.disabled {
    color: #ffbb44;
    background-color: transparent; }

.btn-outline-indigo {
  color: #564ab1;
  border-color: #564ab1; }
  .btn-outline-indigo:hover {
    color: #fff;
    background-color: #564ab1;
    border-color: #564ab1; }
  .btn-check:focus + .btn-outline-indigo, .btn-outline-indigo:focus {
    box-shadow: 0 0 0 0.15rem rgba(86, 74, 177, 0.5); }
  .btn-check:checked + .btn-outline-indigo,
  .btn-check:active + .btn-outline-indigo, .btn-outline-indigo:active, .btn-outline-indigo.active, .btn-outline-indigo.dropdown-toggle.show {
    color: #fff;
    background-color: #564ab1;
    border-color: #564ab1; }
    .btn-check:checked + .btn-outline-indigo:focus,
    .btn-check:active + .btn-outline-indigo:focus, .btn-outline-indigo:active:focus, .btn-outline-indigo.active:focus, .btn-outline-indigo.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(86, 74, 177, 0.5); }
  .btn-outline-indigo:disabled, .btn-outline-indigo.disabled {
    color: #564ab1;
    background-color: transparent; }

.btn-outline-danger {
  color: #ea553d;
  border-color: #ea553d; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #ea553d;
    border-color: #ea553d; }
  .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
    box-shadow: 0 0 0 0.15rem rgba(234, 85, 61, 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: #fff;
    background-color: #ea553d;
    border-color: #ea553d; }
    .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 0.15rem rgba(234, 85, 61, 0.5); }
  .btn-outline-danger:disabled, .btn-outline-danger.disabled {
    color: #ea553d;
    background-color: transparent; }

.btn-outline-brown {
  color: #8d6e63;
  border-color: #8d6e63; }
  .btn-outline-brown:hover {
    color: #fff;
    background-color: #8d6e63;
    border-color: #8d6e63; }
  .btn-check:focus + .btn-outline-brown, .btn-outline-brown:focus {
    box-shadow: 0 0 0 0.15rem rgba(141, 110, 99, 0.5); }
  .btn-check:checked + .btn-outline-brown,
  .btn-check:active + .btn-outline-brown, .btn-outline-brown:active, .btn-outline-brown.active, .btn-outline-brown.dropdown-toggle.show {
    color: #fff;
    background-color: #8d6e63;
    border-color: #8d6e63; }
    .btn-check:checked + .btn-outline-brown:focus,
    .btn-check:active + .btn-outline-brown:focus, .btn-outline-brown:active:focus, .btn-outline-brown.active:focus, .btn-outline-brown.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(141, 110, 99, 0.5); }
  .btn-outline-brown:disabled, .btn-outline-brown.disabled {
    color: #8d6e63;
    background-color: transparent; }

.btn-outline-teal {
  color: #009688;
  border-color: #009688; }
  .btn-outline-teal:hover {
    color: #fff;
    background-color: #009688;
    border-color: #009688; }
  .btn-check:focus + .btn-outline-teal, .btn-outline-teal:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 150, 136, 0.5); }
  .btn-check:checked + .btn-outline-teal,
  .btn-check:active + .btn-outline-teal, .btn-outline-teal:active, .btn-outline-teal.active, .btn-outline-teal.dropdown-toggle.show {
    color: #fff;
    background-color: #009688;
    border-color: #009688; }
    .btn-check:checked + .btn-outline-teal:focus,
    .btn-check:active + .btn-outline-teal:focus, .btn-outline-teal:active:focus, .btn-outline-teal.active:focus, .btn-outline-teal.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(0, 150, 136, 0.5); }
  .btn-outline-teal:disabled, .btn-outline-teal.disabled {
    color: #009688;
    background-color: transparent; }

.btn-outline-lime {
  color: #afb42b;
  border-color: #afb42b; }
  .btn-outline-lime:hover {
    color: #fff;
    background-color: #afb42b;
    border-color: #afb42b; }
  .btn-check:focus + .btn-outline-lime, .btn-outline-lime:focus {
    box-shadow: 0 0 0 0.15rem rgba(175, 180, 43, 0.5); }
  .btn-check:checked + .btn-outline-lime,
  .btn-check:active + .btn-outline-lime, .btn-outline-lime:active, .btn-outline-lime.active, .btn-outline-lime.dropdown-toggle.show {
    color: #fff;
    background-color: #afb42b;
    border-color: #afb42b; }
    .btn-check:checked + .btn-outline-lime:focus,
    .btn-check:active + .btn-outline-lime:focus, .btn-outline-lime:active:focus, .btn-outline-lime.active:focus, .btn-outline-lime.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(175, 180, 43, 0.5); }
  .btn-outline-lime:disabled, .btn-outline-lime.disabled {
    color: #afb42b;
    background-color: transparent; }

.btn-outline-orange {
  color: #fb8c00;
  border-color: #fb8c00; }
  .btn-outline-orange:hover {
    color: #fff;
    background-color: #fb8c00;
    border-color: #fb8c00; }
  .btn-check:focus + .btn-outline-orange, .btn-outline-orange:focus {
    box-shadow: 0 0 0 0.15rem rgba(251, 140, 0, 0.5); }
  .btn-check:checked + .btn-outline-orange,
  .btn-check:active + .btn-outline-orange, .btn-outline-orange:active, .btn-outline-orange.active, .btn-outline-orange.dropdown-toggle.show {
    color: #fff;
    background-color: #fb8c00;
    border-color: #fb8c00; }
    .btn-check:checked + .btn-outline-orange:focus,
    .btn-check:active + .btn-outline-orange:focus, .btn-outline-orange:active:focus, .btn-outline-orange.active:focus, .btn-outline-orange.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(251, 140, 0, 0.5); }
  .btn-outline-orange:disabled, .btn-outline-orange.disabled {
    color: #fb8c00;
    background-color: transparent; }

.btn-outline-blue-grey {
  color: #90a4ae;
  border-color: #90a4ae; }
  .btn-outline-blue-grey:hover {
    color: #fff;
    background-color: #90a4ae;
    border-color: #90a4ae; }
  .btn-check:focus + .btn-outline-blue-grey, .btn-outline-blue-grey:focus {
    box-shadow: 0 0 0 0.15rem rgba(144, 164, 174, 0.5); }
  .btn-check:checked + .btn-outline-blue-grey,
  .btn-check:active + .btn-outline-blue-grey, .btn-outline-blue-grey:active, .btn-outline-blue-grey.active, .btn-outline-blue-grey.dropdown-toggle.show {
    color: #fff;
    background-color: #90a4ae;
    border-color: #90a4ae; }
    .btn-check:checked + .btn-outline-blue-grey:focus,
    .btn-check:active + .btn-outline-blue-grey:focus, .btn-outline-blue-grey:active:focus, .btn-outline-blue-grey.active:focus, .btn-outline-blue-grey.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(144, 164, 174, 0.5); }
  .btn-outline-blue-grey:disabled, .btn-outline-blue-grey.disabled {
    color: #90a4ae;
    background-color: transparent; }

.btn-outline-purple {
  color: #6d60b0;
  border-color: #6d60b0; }
  .btn-outline-purple:hover {
    color: #fff;
    background-color: #6d60b0;
    border-color: #6d60b0; }
  .btn-check:focus + .btn-outline-purple, .btn-outline-purple:focus {
    box-shadow: 0 0 0 0.15rem rgba(109, 96, 176, 0.5); }
  .btn-check:checked + .btn-outline-purple,
  .btn-check:active + .btn-outline-purple, .btn-outline-purple:active, .btn-outline-purple.active, .btn-outline-purple.dropdown-toggle.show {
    color: #fff;
    background-color: #6d60b0;
    border-color: #6d60b0; }
    .btn-check:checked + .btn-outline-purple:focus,
    .btn-check:active + .btn-outline-purple:focus, .btn-outline-purple:active:focus, .btn-outline-purple.active:focus, .btn-outline-purple.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(109, 96, 176, 0.5); }
  .btn-outline-purple:disabled, .btn-outline-purple.disabled {
    color: #6d60b0;
    background-color: transparent; }

.btn-outline-pink {
  color: #f06292;
  border-color: #f06292; }
  .btn-outline-pink:hover {
    color: #fff;
    background-color: #f06292;
    border-color: #f06292; }
  .btn-check:focus + .btn-outline-pink, .btn-outline-pink:focus {
    box-shadow: 0 0 0 0.15rem rgba(240, 98, 146, 0.5); }
  .btn-check:checked + .btn-outline-pink,
  .btn-check:active + .btn-outline-pink, .btn-outline-pink:active, .btn-outline-pink.active, .btn-outline-pink.dropdown-toggle.show {
    color: #fff;
    background-color: #f06292;
    border-color: #f06292; }
    .btn-check:checked + .btn-outline-pink:focus,
    .btn-check:active + .btn-outline-pink:focus, .btn-outline-pink:active:focus, .btn-outline-pink.active:focus, .btn-outline-pink.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0.15rem rgba(240, 98, 146, 0.5); }
  .btn-outline-pink:disabled, .btn-outline-pink.disabled {
    color: #f06292;
    background-color: transparent; }

.btn-outline-light {
  color: #f3f3f3;
  border-color: #f3f3f3; }
  .btn-outline-light:hover {
    color: #000;
    background-color: #f3f3f3;
    border-color: #f3f3f3; }
  .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
    box-shadow: 0 0 0 0.15rem rgba(243, 243, 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: #f3f3f3;
    border-color: #f3f3f3; }
    .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 0.15rem rgba(243, 243, 243, 0.5); }
  .btn-outline-light:disabled, .btn-outline-light.disabled {
    color: #f3f3f3;
    background-color: transparent; }

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
  .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
    box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 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: #343a40;
    border-color: #343a40; }
    .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 0.15rem rgba(52, 58, 64, 0.5); }
  .btn-outline-dark:disabled, .btn-outline-dark.disabled {
    color: #343a40;
    background-color: transparent; }

.btn-link {
  font-weight: 400;
  color: #67a8e4;
  text-decoration: underline; }
  .btn-link:hover {
    color: #5286b6; }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d; }

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.17188rem;
  border-radius: 0.4rem; }

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.82031rem;
  border-radius: 0.2rem; }

.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; } }

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.9375rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .dropdown-menu[data-bs-popper] {
    left: 0;
    margin-top: 0.125rem; }

.dropdown-menu-start {
  --bs-position: start; }
  .dropdown-menu-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */; }

.dropdown-menu-end {
  --bs-position: end; }
  .dropdown-menu-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */; }

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start; }
    .dropdown-menu-sm-start[data-bs-popper] {
      right: auto /* rtl:ignore */;
      left: 0 /* rtl:ignore */; }
  .dropdown-menu-sm-end {
    --bs-position: end; }
    .dropdown-menu-sm-end[data-bs-popper] {
      right: 0 /* rtl:ignore */;
      left: auto /* rtl:ignore */; } }

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start; }
    .dropdown-menu-md-start[data-bs-popper] {
      right: auto /* rtl:ignore */;
      left: 0 /* rtl:ignore */; }
  .dropdown-menu-md-end {
    --bs-position: end; }
    .dropdown-menu-md-end[data-bs-popper] {
      right: 0 /* rtl:ignore */;
      left: auto /* rtl:ignore */; } }

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start; }
    .dropdown-menu-lg-start[data-bs-popper] {
      right: auto /* rtl:ignore */;
      left: 0 /* rtl:ignore */; }
  .dropdown-menu-lg-end {
    --bs-position: end; }
    .dropdown-menu-lg-end[data-bs-popper] {
      right: 0 /* rtl:ignore */;
      left: auto /* rtl:ignore */; } }

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start; }
    .dropdown-menu-xl-start[data-bs-popper] {
      right: auto /* rtl:ignore */;
      left: 0 /* rtl:ignore */; }
  .dropdown-menu-xl-end {
    --bs-position: end; }
    .dropdown-menu-xl-end[data-bs-popper] {
      right: 0 /* rtl:ignore */;
      left: auto /* rtl:ignore */; } }

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start; }
    .dropdown-menu-xxl-start[data-bs-popper] {
      right: auto /* rtl:ignore */;
      left: 0 /* rtl:ignore */; }
  .dropdown-menu-xxl-end {
    --bs-position: end; }
    .dropdown-menu-xxl-end[data-bs-popper] {
      right: 0 /* rtl:ignore */;
      left: auto /* rtl:ignore */; } }

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%; }
  .dropup .dropdown-menu[data-bs-popper] {
    margin-top: 0;
    margin-bottom: 0.125rem; }

.dropend .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%; }
  .dropend .dropdown-menu[data-bs-popper] {
    margin-top: 0;
    margin-left: 0.125rem; }

.dropend .dropdown-toggle::after {
  vertical-align: 0; }

.dropstart .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto; }
  .dropstart .dropdown-menu[data-bs-popper] {
    margin-top: 0;
    margin-right: 0.125rem; }

.dropstart .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #f3f3f3; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.35rem 1.5rem;
  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: #f7f7f7; }
  .dropdown-item.active, .dropdown-item:active {
    color: #343a40;
    text-decoration: none;
    background-color: #f7f7f7; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.82031rem;
  color: #6c757d;
  white-space: nowrap; }

.dropdown-item-text {
  display: block;
  padding: 0.35rem 1.5rem;
  color: #212529; }

.dropdown-menu-dark {
  color: #eeeeee;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15); }
  .dropdown-menu-dark .dropdown-item {
    color: #eeeeee; }
    .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: #343a40;
      background-color: #f7f7f7; }
    .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
      color: #adb5bd; }
  .dropdown-menu-dark .dropdown-divider {
    border-color: #f3f3f3; }
  .dropdown-menu-dark .dropdown-item-text {
    color: #eeeeee; }
  .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;
  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.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  border-bottom: 1px solid #ced4da; }
  .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: #f3f3f3 #f3f3f3 #ced4da;
      isolation: isolate; }
    .nav-tabs .nav-link.disabled {
      color: #6c757d;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #ced4da #ced4da #fff; }
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #67a8e4; }

.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; }

.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-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem; }
  .navbar > .container,
  .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  padding-top: 0.32422rem;
  padding-bottom: 0.32422rem;
  margin-right: 1rem;
  font-size: 1.17188rem;
  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.17188rem;
  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 0.15rem; }

.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; } }

@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; } }

@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; } }

@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; } }

@media (min-width: 1400px) {
  .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 {
  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-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 #eeeeee;
  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: 1.25rem 1.25rem; }

.card-title {
  margin-bottom: 0.5rem; }

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: none; }

.card-link + .card-link {
  margin-left: 1.25rem /* rtl:ignore */; }

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #eeeeee;
  border-bottom: 1px solid #eeeeee; }
  .card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #eeeeee;
  border-top: 1px solid #eeeeee; }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0; }

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem; }

.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: 0.75rem; }

@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.9375rem;
  color: #212529;
  text-align: left;
  background-color: #eeeeee;
  border: 0 solid rgba(0, 0, 0, 0.125);
  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.collapsed {
    border-bottom-width: 0; }
  .accordion-button:not(.collapsed) {
    color: #343a40;
    background-color: #eeeeee; }
    .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='%23343a40'%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: 16px;
    height: 16px;
    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='%23212529'%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: 16px;
    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: #b9bfc4;
    outline: 0;
    box-shadow: none; }

.accordion-header {
  margin-bottom: 0; }

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem; }

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-width: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-width: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.accordion-collapse {
  border: solid rgba(0, 0, 0, 0.125);
  border-width: 0 0; }

.accordion-body {
  padding: 1rem 1.25rem; }

.accordion-flush .accordion-button {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }

.accordion-flush .accordion-collapse {
  border-width: 0; }

.accordion-flush .accordion-item:first-of-type .accordion-button {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none; }

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem; }
  .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; }

.breadcrumb-item.active {
  color: #6c757d; }

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none; }

.page-link {
  position: relative;
  display: block;
  color: #67a8e4;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ced4da;
  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: #5286b6;
    background-color: #f3f3f3;
    border-color: #ced4da; }
  .page-link:focus {
    z-index: 3;
    color: #5286b6;
    background-color: #f3f3f3;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(103, 168, 228, 0.25); }

.page-item:not(:first-child) .page-link {
  margin-left: -1px; }

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #67a8e4;
  border-color: #67a8e4; }

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #ced4da; }

.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.17188rem; }

.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.82031rem; }

.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.25em 0.4em;
  font-size: 75%;
  font-weight: 500;
  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: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: bolder; }

.alert-dismissible {
  padding-right: 3.75rem; }
  .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.9375rem 1.25rem; }

.alert-primary {
  color: #3e6589;
  background-color: #e1eefa;
  border-color: #d1e5f7; }
  .alert-primary .alert-link {
    color: #32516e; }

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8; }
  .alert-secondary .alert-link {
    color: #34383c; }

.alert-success {
  color: #2c7455;
  background-color: #dbf3e8;
  border-color: #c9ecdd; }
  .alert-success .alert-link {
    color: #235d44; }

.alert-info {
  color: #23758c;
  background-color: #d8f3fb;
  border-color: #c4edf8; }
  .alert-info .alert-link {
    color: #1c5e70; }

.alert-warning {
  color: #997029;
  background-color: #fff1da;
  border-color: #ffebc7; }
  .alert-warning .alert-link {
    color: #7a5a21; }

.alert-indigo {
  color: #342c6a;
  background-color: #dddbef;
  border-color: #ccc9e8; }
  .alert-indigo .alert-link {
    color: #2a2355; }

.alert-danger {
  color: #8c3325;
  background-color: #fbddd8;
  border-color: #f9ccc5; }
  .alert-danger .alert-link {
    color: #70291e; }

.alert-brown {
  color: #55423b;
  background-color: #e8e2e0;
  border-color: #ddd4d0; }
  .alert-brown .alert-link {
    color: #44352f; }

.alert-teal {
  color: #005a52;
  background-color: #cceae7;
  border-color: #b3e0db; }
  .alert-teal .alert-link {
    color: #004842; }

.alert-lime {
  color: #696c1a;
  background-color: #eff0d5;
  border-color: #e7e9bf; }
  .alert-lime .alert-link {
    color: #545615; }

.alert-orange {
  color: #975400;
  background-color: #fee8cc;
  border-color: #feddb3; }
  .alert-orange .alert-link {
    color: #794300; }

.alert-blue-grey {
  color: #566268;
  background-color: #e9edef;
  border-color: #dee4e7; }
  .alert-blue-grey .alert-link {
    color: #454e53; }

.alert-purple {
  color: #413a6a;
  background-color: #e2dfef;
  border-color: #d3cfe7; }
  .alert-purple .alert-link {
    color: #342e55; }

.alert-pink {
  color: #903b58;
  background-color: #fce0e9;
  border-color: #fbd0de; }
  .alert-pink .alert-link {
    color: #732f46; }

.alert-light {
  color: #929292;
  background-color: #fdfdfd;
  border-color: #fbfbfb; }
  .alert-light .alert-link {
    color: #757575; }

.alert-dark {
  color: #1f2326;
  background-color: #d6d8d9;
  border-color: #c2c4c6; }
  .alert-dark .alert-link {
    color: #191c1e; }

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 0.625rem; } }

.progress {
  display: flex;
  height: 0.625rem;
  overflow: hidden;
  font-size: 0.70312rem;
  background-color: #eeeeee;
  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: #67a8e4;
  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: 0.625rem 0.625rem; }

.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-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: #f7f7f7; }
  .list-group-item-action:active {
    color: #212529;
    background-color: #f3f3f3; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #eeeeee; }
  .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: #67a8e4;
    border-color: #67a8e4; }
  .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: 1400px) {
  .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: #3e6589;
  background-color: #e1eefa; }
  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #3e6589;
    background-color: #cbd6e1; }
  .list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #3e6589;
    border-color: #3e6589; }

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5; }
  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #41464b;
    background-color: #cbccce; }
  .list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #41464b;
    border-color: #41464b; }

.list-group-item-success {
  color: #2c7455;
  background-color: #dbf3e8; }
  .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #2c7455;
    background-color: #c5dbd1; }
  .list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #2c7455;
    border-color: #2c7455; }

.list-group-item-info {
  color: #23758c;
  background-color: #d8f3fb; }
  .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #23758c;
    background-color: #c2dbe2; }
  .list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #23758c;
    border-color: #23758c; }

.list-group-item-warning {
  color: #997029;
  background-color: #fff1da; }
  .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #997029;
    background-color: #e6d9c4; }
  .list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #997029;
    border-color: #997029; }

.list-group-item-indigo {
  color: #342c6a;
  background-color: #dddbef; }
  .list-group-item-indigo.list-group-item-action:hover, .list-group-item-indigo.list-group-item-action:focus {
    color: #342c6a;
    background-color: #c7c5d7; }
  .list-group-item-indigo.list-group-item-action.active {
    color: #fff;
    background-color: #342c6a;
    border-color: #342c6a; }

.list-group-item-danger {
  color: #8c3325;
  background-color: #fbddd8; }
  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #8c3325;
    background-color: #e2c7c2; }
  .list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #8c3325;
    border-color: #8c3325; }

.list-group-item-brown {
  color: #55423b;
  background-color: #e8e2e0; }
  .list-group-item-brown.list-group-item-action:hover, .list-group-item-brown.list-group-item-action:focus {
    color: #55423b;
    background-color: #d1cbca; }
  .list-group-item-brown.list-group-item-action.active {
    color: #fff;
    background-color: #55423b;
    border-color: #55423b; }

.list-group-item-teal {
  color: #005a52;
  background-color: #cceae7; }
  .list-group-item-teal.list-group-item-action:hover, .list-group-item-teal.list-group-item-action:focus {
    color: #005a52;
    background-color: #b8d3d0; }
  .list-group-item-teal.list-group-item-action.active {
    color: #fff;
    background-color: #005a52;
    border-color: #005a52; }

.list-group-item-lime {
  color: #696c1a;
  background-color: #eff0d5; }
  .list-group-item-lime.list-group-item-action:hover, .list-group-item-lime.list-group-item-action:focus {
    color: #696c1a;
    background-color: #d7d8c0; }
  .list-group-item-lime.list-group-item-action.active {
    color: #fff;
    background-color: #696c1a;
    border-color: #696c1a; }

.list-group-item-orange {
  color: #975400;
  background-color: #fee8cc; }
  .list-group-item-orange.list-group-item-action:hover, .list-group-item-orange.list-group-item-action:focus {
    color: #975400;
    background-color: #e5d1b8; }
  .list-group-item-orange.list-group-item-action.active {
    color: #fff;
    background-color: #975400;
    border-color: #975400; }

.list-group-item-blue-grey {
  color: #566268;
  background-color: #e9edef; }
  .list-group-item-blue-grey.list-group-item-action:hover, .list-group-item-blue-grey.list-group-item-action:focus {
    color: #566268;
    background-color: #d2d5d7; }
  .list-group-item-blue-grey.list-group-item-action.active {
    color: #fff;
    background-color: #566268;
    border-color: #566268; }

.list-group-item-purple {
  color: #413a6a;
  background-color: #e2dfef; }
  .list-group-item-purple.list-group-item-action:hover, .list-group-item-purple.list-group-item-action:focus {
    color: #413a6a;
    background-color: #cbc9d7; }
  .list-group-item-purple.list-group-item-action.active {
    color: #fff;
    background-color: #413a6a;
    border-color: #413a6a; }

.list-group-item-pink {
  color: #903b58;
  background-color: #fce0e9; }
  .list-group-item-pink.list-group-item-action:hover, .list-group-item-pink.list-group-item-action:focus {
    color: #903b58;
    background-color: #e3cad2; }
  .list-group-item-pink.list-group-item-action.active {
    color: #fff;
    background-color: #903b58;
    border-color: #903b58; }

.list-group-item-light {
  color: #929292;
  background-color: #fdfdfd; }
  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #929292;
    background-color: #e4e4e4; }
  .list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #929292;
    border-color: #929292; }

.list-group-item-dark {
  color: #1f2326;
  background-color: #d6d8d9; }
  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #1f2326;
    background-color: #c1c2c3; }
  .list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1f2326;
    border-color: #1f2326; }

.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: none;
    opacity: 1; }
  .btn-close:disabled, .btn-close.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25; }

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%); }

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .toast:not(.showing):not(.show) {
    opacity: 0; }
  .toast.hide {
    display: none; }

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none; }
  .toast-container > :not(:last-child) {
    margin-bottom: 0.75rem; }

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 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-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  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 #eeeeee;
  border-radius: 0.4rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  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 #eeeeee;
  border-top-left-radius: calc(0.4rem - 1px);
  border-top-right-radius: calc(0.4rem - 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.5; }

.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 #eeeeee;
  border-bottom-right-radius: calc(0.4rem - 1px);
  border-bottom-left-radius: calc(0.4rem - 1px); }
  .modal-footer > * {
    margin: 0.25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@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: 1399.98px) {
  .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: 1070;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  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.82031rem;
  word-wrap: break-word;
  opacity: 0; }
  .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.4rem 0.7rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  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.82031rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eeeeee;
  border-radius: 0.4rem; }
  .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: #eeeeee; }
  .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: #eeeeee; }
  .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: #eeeeee; }
  .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 whitesmoke; }

.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: #eeeeee; }
  .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.9375rem;
  background-color: whitesmoke;
  border-bottom: 1px solid #dddddd;
  border-top-left-radius: calc(0.4rem - 1px);
  border-top-right-radius: calc(0.4rem - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 1rem 1rem;
  color: #212529; }

.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: text-bottom;
  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: text-bottom;
  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: 1050;
  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-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.5;
}

.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;
} */

.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: ;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.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: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}


.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.link-primary {
  color: #67a8e4; }
  .link-primary:hover, .link-primary:focus {
    color: #5286b6; }

.link-secondary {
  color: #6c757d; }
  .link-secondary:hover, .link-secondary:focus {
    color: #565e64; }

.link-success {
  color: #4ac18e; }
  .link-success:hover, .link-success:focus {
    color: #3b9a72; }

.link-info {
  color: #3bc3e9; }
  .link-info:hover, .link-info:focus {
    color: #2f9cba; }

.link-warning {
  color: #ffbb44; }
  .link-warning:hover, .link-warning:focus {
    color: #cc9636; }

.link-indigo {
  color: #564ab1; }
  .link-indigo:hover, .link-indigo:focus {
    color: #453b8e; }

.link-danger {
  color: #ea553d; }
  .link-danger:hover, .link-danger:focus {
    color: #bb4431; }

.link-brown {
  color: #8d6e63; }
  .link-brown:hover, .link-brown:focus {
    color: #71584f; }

.link-teal {
  color: #009688; }
  .link-teal:hover, .link-teal:focus {
    color: #00786d; }

.link-lime {
  color: #afb42b; }
  .link-lime:hover, .link-lime:focus {
    color: #8c9022; }

.link-orange {
  color: #fb8c00; }
  .link-orange:hover, .link-orange:focus {
    color: #c97000; }

.link-blue-grey {
  color: #90a4ae; }
  .link-blue-grey:hover, .link-blue-grey:focus {
    color: #73838b; }

.link-purple {
  color: #6d60b0; }
  .link-purple:hover, .link-purple:focus {
    color: #574d8d; }

.link-pink {
  color: #f06292; }
  .link-pink:hover, .link-pink:focus {
    color: #c04e75; }

.link-light {
  color: #f3f3f3; }
  .link-light:hover, .link-light:focus {
    color: whitesmoke; }

.link-dark {
  color: #343a40; }
  .link-dark:hover, .link-dark:focus {
    color: #2a2e33; }

.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: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.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; }

.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; }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

.overflow-visible {
  overflow: visible !important; }

.overflow-scroll {
  overflow: scroll !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-grid {
  display: grid !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

.d-none {
  display: none !important; }

.shadow {
  box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.15) !important; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

.top-0 {
  top: 0 !important; }

.top-50 {
  top: 50% !important; }

.top-100 {
  top: 100% !important; }

.bottom-0 {
  bottom: 0 !important; }

.bottom-50 {
  bottom: 50% !important; }

.bottom-100 {
  bottom: 100% !important; }

.start-0 {
  left: 0 !important; }

.start-50 {
  left: 50% !important; }

.start-100 {
  left: 100% !important; }

.end-0 {
  right: 0 !important; }

.end-50 {
  right: 50% !important; }

.end-100 {
  right: 100% !important; }

.translate-middle {
  transform: translate(-50%, -50%) !important; }

.translate-middle-x {
  transform: translateX(-50%) !important; }

.translate-middle-y {
  transform: translateY(-50%) !important; }

.border {
  border: 1px solid #eeeeee !important; }

.border-0 {
  border: 0 !important; }

.border-top {
  border-top: 1px solid #eeeeee !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-end {
  border-right: 1px solid #eeeeee !important; }

.border-end-0 {
  border-right: 0 !important; }

.border-bottom {
  border-bottom: 1px solid #eeeeee !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-start {
  border-left: 1px solid #eeeeee !important; }

.border-start-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #67a8e4 !important; }

.border-secondary {
  border-color: #6c757d !important; }

.border-success {
  border-color: #4ac18e !important; }

.border-info {
  border-color: #3bc3e9 !important; }

.border-warning {
  border-color: #ffbb44 !important; }

.border-indigo {
  border-color: #564ab1 !important; }

.border-danger {
  border-color: #ea553d !important; }

.border-brown {
  border-color: #8d6e63 !important; }

.border-teal {
  border-color: #009688 !important; }

.border-lime {
  border-color: #afb42b !important; }

.border-orange {
  border-color: #fb8c00 !important; }

.border-blue-grey {
  border-color: #90a4ae !important; }

.border-purple {
  border-color: #6d60b0 !important; }

.border-pink {
  border-color: #f06292 !important; }

.border-light {
  border-color: #f3f3f3 !important; }

.border-dark {
  border-color: #343a40 !important; }

.border-white {
  border-color: #fff !important; }

.border-0 {
  border-width: 0 !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; }

.m-n1 {
  margin: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important; }

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important; }

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important; }

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important; }

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important; }

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important; }

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important; }

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important; }

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important; }

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important; }

.mt-n1 {
  margin-top: -0.25rem !important; }

.mt-n2 {
  margin-top: -0.5rem !important; }

.mt-n3 {
  margin-top: -1rem !important; }

.mt-n4 {
  margin-top: -1.5rem !important; }

.mt-n5 {
  margin-top: -3rem !important; }

.me-n1 {
  margin-right: -0.25rem !important; }

.me-n2 {
  margin-right: -0.5rem !important; }

.me-n3 {
  margin-right: -1rem !important; }

.me-n4 {
  margin-right: -1.5rem !important; }

.me-n5 {
  margin-right: -3rem !important; }

.mb-n1 {
  margin-bottom: -0.25rem !important; }

.mb-n2 {
  margin-bottom: -0.5rem !important; }

.mb-n3 {
  margin-bottom: -1rem !important; }

.mb-n4 {
  margin-bottom: -1.5rem !important; }

.mb-n5 {
  margin-bottom: -3rem !important; }

.ms-n1 {
  margin-left: -0.25rem !important; }

.ms-n2 {
  margin-left: -0.5rem !important; }

.ms-n3 {
  margin-left: -1rem !important; }

.ms-n4 {
  margin-left: -1.5rem !important; }

.ms-n5 {
  margin-left: -3rem !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; }

.fs-1 {
  font-size: calc(1.35938rem + 1.3125vw) !important; }

.fs-2 {
  font-size: calc(1.3125rem + 0.75vw) !important; }

.fs-3 {
  font-size: calc(1.28906rem + 0.46875vw) !important; }

.fs-4 {
  font-size: calc(1.26562rem + 0.1875vw) !important; }

.fs-5 {
  font-size: 1.17188rem !important; }

.fs-6 {
  font-size: 0.9375rem !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: 600 !important; }

.fw-bolder {
  font-weight: bolder !important; }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.text-start {
  text-align: left !important; }

.text-end {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.text-primary {
  color: #67a8e4 !important; }

.text-secondary {
  color: #6c757d !important; }

.text-success {
  color: #4ac18e !important; }

.text-info {
  color: #3bc3e9 !important; }

.text-warning {
  color: #ffbb44 !important; }

.text-indigo {
  color: #564ab1 !important; }

.text-danger {
  color: #ea553d !important; }

.text-brown {
  color: #8d6e63 !important; }

.text-teal {
  color: #009688 !important; }

.text-lime {
  color: #afb42b !important; }

.text-orange {
  color: #fb8c00 !important; }

.text-blue-grey {
  color: #90a4ae !important; }

.text-purple {
  color: #6d60b0 !important; }

.text-pink {
  color: #f06292 !important; }

.text-light {
  color: #f3f3f3 !important; }

.text-dark {
  color: #343a40 !important; }

.text-white {
  color: #fff !important; }

.text-body {
  color: #212529 !important; }

.text-muted {
  color: #707070 !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-reset {
  color: inherit !important; }

.lh-1 {
  line-height: 1 !important; }

.lh-sm {
  line-height: 1.5 !important; }

.lh-base {
  line-height: 1.5 !important; }

.lh-lg {
  line-height: 1.5 !important; }

.bg-primary {
  background-color: #67a8e4 !important; }

.bg-secondary {
  background-color: #6c757d !important; }

.bg-success {
  background-color: #4ac18e !important; }

.bg-info {
  background-color: #3bc3e9 !important; }

.bg-warning {
  background-color: #ffbb44 !important; }

.bg-indigo {
  background-color: #564ab1 !important; }

.bg-danger {
  background-color: #ea553d !important; }

.bg-brown {
  background-color: #8d6e63 !important; }

.bg-teal {
  background-color: #009688 !important; }

.bg-lime {
  background-color: #afb42b !important; }

.bg-orange {
  background-color: #fb8c00 !important; }

.bg-blue-grey {
  background-color: #90a4ae !important; }

.bg-purple {
  background-color: #6d60b0 !important; }

.bg-pink {
  background-color: #f06292 !important; }

.bg-light {
  background-color: #f3f3f3 !important; }

.bg-dark {
  background-color: #343a40 !important; }

.bg-body {
  background-color: #f5f5f5 !important; }

.bg-white {
  background-color: #fff !important; }

.bg-transparent {
  background-color: transparent !important; }

.bg-gradient {
  background-image: var(--bs-gradient) !important; }

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-decoration-none {
  text-decoration: none !important; }

.text-decoration-underline {
  text-decoration: underline !important; }

.text-decoration-line-through {
  text-decoration: line-through !important; }

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important; }

/* rtl:end:remove */
.font-monospace {
  font-family: var(--bs-font-monospace) !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.4rem !important; }
  
.rounded-4 {
  border-radius: 1rem !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; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important; }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important; }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important; }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important; }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important; }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important; }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important; }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important; }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important; }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important; }
  .mt-sm-n1 {
    margin-top: -0.25rem !important; }
  .mt-sm-n2 {
    margin-top: -0.5rem !important; }
  .mt-sm-n3 {
    margin-top: -1rem !important; }
  .mt-sm-n4 {
    margin-top: -1.5rem !important; }
  .mt-sm-n5 {
    margin-top: -3rem !important; }
  .me-sm-n1 {
    margin-right: -0.25rem !important; }
  .me-sm-n2 {
    margin-right: -0.5rem !important; }
  .me-sm-n3 {
    margin-right: -1rem !important; }
  .me-sm-n4 {
    margin-right: -1.5rem !important; }
  .me-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .mb-sm-n3 {
    margin-bottom: -1rem !important; }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .mb-sm-n5 {
    margin-bottom: -3rem !important; }
  .ms-sm-n1 {
    margin-left: -0.25rem !important; }
  .ms-sm-n2 {
    margin-left: -0.5rem !important; }
  .ms-sm-n3 {
    margin-left: -1rem !important; }
  .ms-sm-n4 {
    margin-left: -1.5rem !important; }
  .ms-sm-n5 {
    margin-left: -3rem !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; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important; }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important; }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important; }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important; }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important; }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important; }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important; }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important; }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important; }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important; }
  .mt-md-n1 {
    margin-top: -0.25rem !important; }
  .mt-md-n2 {
    margin-top: -0.5rem !important; }
  .mt-md-n3 {
    margin-top: -1rem !important; }
  .mt-md-n4 {
    margin-top: -1.5rem !important; }
  .mt-md-n5 {
    margin-top: -3rem !important; }
  .me-md-n1 {
    margin-right: -0.25rem !important; }
  .me-md-n2 {
    margin-right: -0.5rem !important; }
  .me-md-n3 {
    margin-right: -1rem !important; }
  .me-md-n4 {
    margin-right: -1.5rem !important; }
  .me-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important; }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important; }
  .mb-md-n3 {
    margin-bottom: -1rem !important; }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important; }
  .mb-md-n5 {
    margin-bottom: -3rem !important; }
  .ms-md-n1 {
    margin-left: -0.25rem !important; }
  .ms-md-n2 {
    margin-left: -0.5rem !important; }
  .ms-md-n3 {
    margin-left: -1rem !important; }
  .ms-md-n4 {
    margin-left: -1.5rem !important; }
  .ms-md-n5 {
    margin-left: -3rem !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; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important; }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important; }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important; }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important; }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important; }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important; }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important; }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important; }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important; }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important; }
  .mt-lg-n1 {
    margin-top: -0.25rem !important; }
  .mt-lg-n2 {
    margin-top: -0.5rem !important; }
  .mt-lg-n3 {
    margin-top: -1rem !important; }
  .mt-lg-n4 {
    margin-top: -1.5rem !important; }
  .mt-lg-n5 {
    margin-top: -3rem !important; }
  .me-lg-n1 {
    margin-right: -0.25rem !important; }
  .me-lg-n2 {
    margin-right: -0.5rem !important; }
  .me-lg-n3 {
    margin-right: -1rem !important; }
  .me-lg-n4 {
    margin-right: -1.5rem !important; }
  .me-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .mb-lg-n3 {
    margin-bottom: -1rem !important; }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .mb-lg-n5 {
    margin-bottom: -3rem !important; }
  .ms-lg-n1 {
    margin-left: -0.25rem !important; }
  .ms-lg-n2 {
    margin-left: -0.5rem !important; }
  .ms-lg-n3 {
    margin-left: -1rem !important; }
  .ms-lg-n4 {
    margin-left: -1.5rem !important; }
  .ms-lg-n5 {
    margin-left: -3rem !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; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important; }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important; }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important; }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important; }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important; }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important; }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important; }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important; }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important; }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important; }
  .mt-xl-n1 {
    margin-top: -0.25rem !important; }
  .mt-xl-n2 {
    margin-top: -0.5rem !important; }
  .mt-xl-n3 {
    margin-top: -1rem !important; }
  .mt-xl-n4 {
    margin-top: -1.5rem !important; }
  .mt-xl-n5 {
    margin-top: -3rem !important; }
  .me-xl-n1 {
    margin-right: -0.25rem !important; }
  .me-xl-n2 {
    margin-right: -0.5rem !important; }
  .me-xl-n3 {
    margin-right: -1rem !important; }
  .me-xl-n4 {
    margin-right: -1.5rem !important; }
  .me-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .mb-xl-n3 {
    margin-bottom: -1rem !important; }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .mb-xl-n5 {
    margin-bottom: -3rem !important; }
  .ms-xl-n1 {
    margin-left: -0.25rem !important; }
  .ms-xl-n2 {
    margin-left: -0.5rem !important; }
  .ms-xl-n3 {
    margin-left: -1rem !important; }
  .ms-xl-n4 {
    margin-left: -1.5rem !important; }
  .ms-xl-n5 {
    margin-left: -3rem !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: 1400px) {
  .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; }
  .m-xxl-n1 {
    margin: -0.25rem !important; }
  .m-xxl-n2 {
    margin: -0.5rem !important; }
  .m-xxl-n3 {
    margin: -1rem !important; }
  .m-xxl-n4 {
    margin: -1.5rem !important; }
  .m-xxl-n5 {
    margin: -3rem !important; }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important; }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important; }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important; }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important; }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important; }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important; }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important; }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important; }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important; }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important; }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important; }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important; }
  .mt-xxl-n3 {
    margin-top: -1rem !important; }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important; }
  .mt-xxl-n5 {
    margin-top: -3rem !important; }
  .me-xxl-n1 {
    margin-right: -0.25rem !important; }
  .me-xxl-n2 {
    margin-right: -0.5rem !important; }
  .me-xxl-n3 {
    margin-right: -1rem !important; }
  .me-xxl-n4 {
    margin-right: -1.5rem !important; }
  .me-xxl-n5 {
    margin-right: -3rem !important; }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important; }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important; }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important; }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important; }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important; }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important; }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important; }
  .ms-xxl-n3 {
    margin-left: -1rem !important; }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important; }
  .ms-xxl-n5 {
    margin-left: -3rem !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: 2.34375rem !important; }
  .fs-2 {
    font-size: 1.875rem !important; }
  .fs-3 {
    font-size: 1.64062rem !important; }
  .fs-4 {
    font-size: 1.40625rem !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; } }

/* =============
   General
============= */
html {
  position: relative;
  min-height: 100%; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  /* font-family: "Roboto", sans-serif;  */
  font-family: var(--font-rubik); 
}

a {
  text-decoration: none !important; }

label {
  font-weight: 500;
  /* font-family: "Roboto", sans-serif;  */
  font-family: var(--font-rubik); 
}

.blockquote {
  padding: 10px 20px;
  border-left: 4px solid #eeeeee; }

.blockquote-reverse {
  border-left: 0;
  border-right: 4px solid #eeeeee;
  text-align: right; }

.bg-soft-primary {
  background-color: rgba(103, 168, 228, 0.25) !important; }

.bg-soft-secondary {
  background-color: rgba(108, 117, 125, 0.25) !important; }

.bg-soft-success {
  background-color: rgba(74, 193, 142, 0.25) !important; }

.bg-soft-info {
  background-color: rgba(59, 195, 233, 0.25) !important; }

.bg-soft-warning {
  background-color: rgba(255, 187, 68, 0.25) !important; }

.bg-soft-indigo {
  background-color: rgba(86, 74, 177, 0.25) !important; }

.bg-soft-danger {
  background-color: rgba(234, 85, 61, 0.25) !important; }

.bg-soft-brown {
  background-color: rgba(141, 110, 99, 0.25) !important; }

.bg-soft-teal {
  background-color: rgba(0, 150, 136, 0.25) !important; }

.bg-soft-lime {
  background-color: rgba(175, 180, 43, 0.25) !important; }

.bg-soft-orange {
  background-color: rgba(251, 140, 0, 0.25) !important; }

.bg-soft-blue-grey {
  background-color: rgba(144, 164, 174, 0.25) !important; }

.bg-soft-purple {
  background-color: rgba(109, 96, 176, 0.25) !important; }

.bg-soft-pink {
  background-color: rgba(240, 98, 146, 0.25) !important; }

.bg-soft-light {
  background-color: rgba(243, 243, 243, 0.25) !important; }

.bg-soft-dark {
  background-color: rgba(52, 58, 64, 0.25) !important; }

.badge[href]:hover, .badge[href]:focus {
  color: #fff; }

.badge.bg-primary[href]:hover, .badge.bg-primary[href]:focus {
  background-color: #569ee1 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-primary {
  color: #67a8e4;
  background-color: rgba(103, 168, 228, 0.18); }
  .badge-soft-primary[href]:hover, .badge-soft-primary[href]:focus {
    color: #67a8e4;
    text-decoration: none;
    background-color: rgba(103, 168, 228, 0.4); }

.badge.bg-secondary[href]:hover, .badge.bg-secondary[href]:focus {
  background-color: #636b72 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-secondary {
  color: #6c757d;
  background-color: rgba(108, 117, 125, 0.18); }
  .badge-soft-secondary[href]:hover, .badge-soft-secondary[href]:focus {
    color: #6c757d;
    text-decoration: none;
    background-color: rgba(108, 117, 125, 0.4); }

.badge.bg-success[href]:hover, .badge.bg-success[href]:focus {
  background-color: #3fb884 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-success {
  color: #4ac18e;
  background-color: rgba(74, 193, 142, 0.18); }
  .badge-soft-success[href]:hover, .badge-soft-success[href]:focus {
    color: #4ac18e;
    text-decoration: none;
    background-color: rgba(74, 193, 142, 0.4); }

.badge.bg-info[href]:hover, .badge.bg-info[href]:focus {
  background-color: #29bde7 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-info {
  color: #3bc3e9;
  background-color: rgba(59, 195, 233, 0.18); }
  .badge-soft-info[href]:hover, .badge-soft-info[href]:focus {
    color: #3bc3e9;
    text-decoration: none;
    background-color: rgba(59, 195, 233, 0.4); }

.badge.bg-warning[href]:hover, .badge.bg-warning[href]:focus {
  background-color: #ffb430 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-warning {
  color: #ffbb44;
  background-color: rgba(255, 187, 68, 0.18); }
  .badge-soft-warning[href]:hover, .badge-soft-warning[href]:focus {
    color: #ffbb44;
    text-decoration: none;
    background-color: rgba(255, 187, 68, 0.4); }

.badge.bg-indigo[href]:hover, .badge.bg-indigo[href]:focus {
  background-color: #4f44a3 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-indigo {
  color: #564ab1;
  background-color: rgba(86, 74, 177, 0.18); }
  .badge-soft-indigo[href]:hover, .badge-soft-indigo[href]:focus {
    color: #564ab1;
    text-decoration: none;
    background-color: rgba(86, 74, 177, 0.4); }

.badge.bg-danger[href]:hover, .badge.bg-danger[href]:focus {
  background-color: #e8452b !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-danger {
  color: #ea553d;
  background-color: rgba(234, 85, 61, 0.18); }
  .badge-soft-danger[href]:hover, .badge-soft-danger[href]:focus {
    color: #ea553d;
    text-decoration: none;
    background-color: rgba(234, 85, 61, 0.4); }

.badge.bg-brown[href]:hover, .badge.bg-brown[href]:focus {
  background-color: #81655b !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-brown {
  color: #8d6e63;
  background-color: rgba(141, 110, 99, 0.18); }
  .badge-soft-brown[href]:hover, .badge-soft-brown[href]:focus {
    color: #8d6e63;
    text-decoration: none;
    background-color: rgba(141, 110, 99, 0.4); }

.badge.bg-teal[href]:hover, .badge.bg-teal[href]:focus {
  background-color: #008276 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-teal {
  color: #009688;
  background-color: rgba(0, 150, 136, 0.18); }
  .badge-soft-teal[href]:hover, .badge-soft-teal[href]:focus {
    color: #009688;
    text-decoration: none;
    background-color: rgba(0, 150, 136, 0.4); }

.badge.bg-lime[href]:hover, .badge.bg-lime[href]:focus {
  background-color: #9fa427 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-lime {
  color: #afb42b;
  background-color: rgba(175, 180, 43, 0.18); }
  .badge-soft-lime[href]:hover, .badge-soft-lime[href]:focus {
    color: #afb42b;
    text-decoration: none;
    background-color: rgba(175, 180, 43, 0.4); }

.badge.bg-orange[href]:hover, .badge.bg-orange[href]:focus {
  background-color: #e78100 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-orange {
  color: #fb8c00;
  background-color: rgba(251, 140, 0, 0.18); }
  .badge-soft-orange[href]:hover, .badge-soft-orange[href]:focus {
    color: #fb8c00;
    text-decoration: none;
    background-color: rgba(251, 140, 0, 0.4); }

.badge.bg-blue-grey[href]:hover, .badge.bg-blue-grey[href]:focus {
  background-color: #849aa5 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-blue-grey {
  color: #90a4ae;
  background-color: rgba(144, 164, 174, 0.18); }
  .badge-soft-blue-grey[href]:hover, .badge-soft-blue-grey[href]:focus {
    color: #90a4ae;
    text-decoration: none;
    background-color: rgba(144, 164, 174, 0.4); }

.badge.bg-purple[href]:hover, .badge.bg-purple[href]:focus {
  background-color: #6154a8 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-purple {
  color: #6d60b0;
  background-color: rgba(109, 96, 176, 0.18); }
  .badge-soft-purple[href]:hover, .badge-soft-purple[href]:focus {
    color: #6d60b0;
    text-decoration: none;
    background-color: rgba(109, 96, 176, 0.4); }

.badge.bg-pink[href]:hover, .badge.bg-pink[href]:focus {
  background-color: #ee4f85 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-pink {
  color: #f06292;
  background-color: rgba(240, 98, 146, 0.18); }
  .badge-soft-pink[href]:hover, .badge-soft-pink[href]:focus {
    color: #f06292;
    text-decoration: none;
    background-color: rgba(240, 98, 146, 0.4); }

.badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  background-color: #e9e9e9 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-light {
  color: #f3f3f3;
  background-color: rgba(243, 243, 243, 0.18); }
  .badge-soft-light[href]:hover, .badge-soft-light[href]:focus {
    color: #f3f3f3;
    text-decoration: none;
    background-color: rgba(243, 243, 243, 0.4); }

.badge.bg-dark[href]:hover, .badge.bg-dark[href]:focus {
  background-color: #2b3035 !important; }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge-soft-dark {
  color: #343a40;
  background-color: rgba(52, 58, 64, 0.18); }
  .badge-soft-dark[href]:hover, .badge-soft-dark[href]:focus {
    color: #343a40;
    text-decoration: none;
    background-color: rgba(52, 58, 64, 0.4); }

.rounded-pill {
  padding-right: .6em;
  padding-left: .6em; }

.badge.bg-dark {
  color: #f3f3f3; }

button, a {
  outline: none !important; }

.btn-rounded {
  border-radius: 30px; }

.btn-dark {
  color: #f3f3f3 !important; }

.breadcrumb-item > a {
  color: #495057; }

.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Material Design Icons"; }

.card {
  margin-bottom: 1.5rem; }

.card-drop {
  color: #212529; }

.card-title {
  font-size: 16px;
  margin: 0 0 7px 0; }

.card-title-desc {
  color: #6c757d;
  margin-bottom: 24px; }

.card-subtitle {
  margin-top: -6px;
  margin-bottom: 0; }

.dropdown-menu {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  animation-name: DropDownSlide;
  animation-duration: .3s;
  animation-fill-mode: both;
  margin: 0;
  position: absolute;
  z-index: 1000; }
  .dropdown-menu.show {
    top: 100% !important; }

.dropdown-menu-end[style] {
  left: auto !important;
  right: 0 !important; }

.dropdown-menu[data-popper-placement^=right], .dropdown-menu[data-popper-placement^=top], .dropdown-menu[data-popper-placement^=left] {
  top: auto !important;
  animation: none !important; }

@keyframes DropDownSlide {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); } }

@media (min-width: 600px) {
  .dropdown-menu-lg {
    width: 320px; } }

.dropdown-divider {
  border-top-color: #eeeeee; }

.dropdown-mega {
  position: static !important; }

.dropdown-megamenu {
  padding: 20px;
  left: 20px !important;
  right: 20px !important; }

.dropdown-mega-menu-xl {
  width: 40rem; }

.dropdown-mega-menu-lg {
  width: 26rem; }

.nav-tabs > li > a, .nav-pills > li > a {
  color: #495057;
  font-weight: 500; }

.nav-pills > a {
  color: #495057;
  font-weight: 500; }

.nav-tabs-custom {
  border-bottom: 2px solid #eeeeee; }
  .nav-tabs-custom .nav-item {
    position: relative;
    color: #343a40; }
    .nav-tabs-custom .nav-item .nav-link {
      border: none; }
      .nav-tabs-custom .nav-item .nav-link::after {
        content: "";
        background: #67a8e4;
        height: 2px;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: -1px;
        transition: all 250ms ease 0s;
        transform: scale(0); }
      .nav-tabs-custom .nav-item .nav-link.active {
        color: #67a8e4; }
        .nav-tabs-custom .nav-item .nav-link.active:after {
          transform: scale(1); }

.table th {
  font-weight: 400;
  /* font-family: "Roboto", sans-serif;  */
  font-family: var(--font-rubik); 
}

.table-centered td, .table-centered th {
  vertical-align: middle !important; }

.table-nowrap th, .table-nowrap td {
  white-space: nowrap; }

.table-bordered {
  border: 1px solid #eeeeee; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #eeeeee; }

.pagination-rounded .page-link {
  border-radius: 30px !important;
  margin: 0 3px;
  border: none; }

.progress-sm {
  height: 5px; }

.progress-md {
  height: 8px; }

.progress-lg {
  height: 12px; }

.custom-progess {
  position: relative; }
  .custom-progess .progress-icon {
    position: absolute;
    top: -12px; }
    .custom-progess .progress-icon .avatar-title {
      background: #fff; }
.uk-link {
    color: #1e87f0;
    text-decoration: none;
    cursor: pointer;
  }
  .uk-link:hover,
  .uk-link-toggle:hover .uk-link {
    color: #0f6ecd;
    text-decoration: underline;
  }
  a.uk-link-muted,
  .uk-link-muted a,
  .uk-link-toggle .uk-link-muted {
    color: #999;
  }
  a.uk-link-muted:hover,
  .uk-link-muted a:hover,
  .uk-link-toggle:hover .uk-link-muted {
    color: #666;
  }
  a.uk-link-text,
  .uk-link-text a,
  .uk-link-toggle .uk-link-text {
    color: inherit;
  }
  a.uk-link-text:hover,
  .uk-link-text a:hover,
  .uk-link-toggle:hover .uk-link-text {
    color: #999;
  }
  a.uk-link-heading,
  .uk-link-heading a,
  .uk-link-toggle .uk-link-heading {
    color: inherit;
  }
  a.uk-link-heading:hover,
  .uk-link-heading a:hover,
  .uk-link-toggle:hover .uk-link-heading {
    color: #1e87f0;
    text-decoration: none;
  }
  a.uk-link-reset,
  .uk-link-reset a {
    color: inherit !important;
    text-decoration: none !important;
  }
  .uk-link-toggle {
    color: inherit !important;
    text-decoration: none !important;
  }
  .uk-heading-small {
    font-size: 2.6rem;
    line-height: 1.2;
  }
  .uk-heading-medium {
    font-size: 2.8875rem;
    line-height: 1.1;
  }
  .uk-heading-large {
    font-size: 3.4rem;
    line-height: 1.1;
  }
  .uk-heading-xlarge {
    font-size: 4rem;
    line-height: 1;
  }
  .uk-heading-2xlarge {
    font-size: 6rem;
    line-height: 1;
  }
  .uk-heading-3xlarge {
    font-size: 8rem;
    line-height: 1;
  }
  @media (min-width: 960px) {
    .uk-heading-small {
      font-size: 3.25rem;
    }
    .uk-heading-medium {
      font-size: 3.5rem;
    }
    .uk-heading-large {
      font-size: 4rem;
    }
    .uk-heading-xlarge {
      font-size: 6rem;
    }
    .uk-heading-2xlarge {
      font-size: 8rem;
    }
    .uk-heading-3xlarge {
      font-size: 11rem;
    }
  }
  @media (min-width: 1200px) {
    .uk-heading-medium {
      font-size: 4rem;
    }
    .uk-heading-large {
      font-size: 6rem;
    }
    .uk-heading-xlarge {
      font-size: 8rem;
    }
    .uk-heading-2xlarge {
      font-size: 11rem;
    }
    .uk-heading-3xlarge {
      font-size: 15rem;
    }
  }
  .uk-heading-divider {
    padding-bottom: calc(5px + 0.1em);
    border-bottom: calc(0.2px + 0.05em) solid #e5e5e5;
  }
  .uk-heading-bullet {
    position: relative;
  }
  .uk-heading-bullet::before {
    content: "";
    display: inline-block;
    position: relative;
    top: calc(-0.1 * 1em);
    vertical-align: middle;
    height: calc(4px + 0.7em);
    margin-right: calc(5px + 0.2em);
    border-left: calc(5px + 0.1em) solid #e5e5e5;
  }
  .uk-heading-line {
    overflow: hidden;
  }
  .uk-heading-line > * {
    display: inline-block;
    position: relative;
  }
  .uk-heading-line > ::before,
  .uk-heading-line > ::after {
    content: "";
    position: absolute;
    top: calc(50% - (calc(0.2px + 0.05em) / 2));
    width: 2000px;
    border-bottom: calc(0.2px + 0.05em) solid #e5e5e5;
  }
  .uk-heading-line > ::before {
    right: 100%;
    margin-right: calc(5px + 0.3em);
  }
  .uk-heading-line > ::after {
    left: 100%;
    margin-left: calc(5px + 0.3em);
  }
  [class*="uk-divider"] {
    border: none;
    margin-bottom: 20px;
  }
  * + [class*="uk-divider"] {
    margin-top: 20px;
  }
  .uk-divider-icon {
    position: relative;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23e5e5e5%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .uk-divider-icon::before,
  .uk-divider-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    max-width: calc(50% - (50px / 2));
    border-bottom: 1px solid #e5e5e5;
  }
  .uk-divider-icon::before {
    right: calc(50% + (50px / 2));
    width: 100%;
  }
  .uk-divider-icon::after {
    left: calc(50% + (50px / 2));
    width: 100%;
  }
  .uk-divider-small {
    line-height: 0;
  }
  .uk-divider-small::after {
    content: "";
    display: inline-block;
    width: 100px;
    max-width: 100%;
    border-top: 1px solid #e5e5e5;
    vertical-align: top;
  }
  .uk-divider-vertical {
    width: max-content;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid #e5e5e5;
  }
  .uk-list {
    padding: 0;
    list-style: none;
  }
  .uk-list > * {
    break-inside: avoid-column;
  }
  .uk-list > * > :last-child {
    margin-bottom: 0;
  }
  .uk-list > :nth-child(n+2),
  .uk-list > * > ul {
    margin-top: 10px;
  }
  .uk-list-disc > *,
  .uk-list-circle > *,
  .uk-list-square > *,
  .uk-list-decimal > *,
  .uk-list-hyphen > * {
    padding-left: 30px;
  }
  .uk-list-decimal {
    counter-reset: decimal;
  }
  .uk-list-decimal > * {
    counter-increment: decimal;
  }
  .uk-list-disc > ::before,
  .uk-list-circle > ::before,
  .uk-list-square > ::before,
  .uk-list-decimal > ::before,
  .uk-list-hyphen > ::before {
    content: "";
    position: relative;
    left: -30px;
    width: 30px;
    height: 1.5em;
    margin-bottom: -1.5em;
    display: list-item;
    list-style-position: inside;
    text-align: right;
  }
  .uk-list-disc > ::before {
    list-style-type: disc;
  }
  .uk-list-circle > ::before {
    list-style-type: circle;
  }
  .uk-list-square > ::before {
    list-style-type: square;
  }
  .uk-list-decimal > ::before {
    content: counter(decimal, decimal) '\200A.\00A0';
  }
  .uk-list-hyphen > ::before {
    content: 'â€“\00A0\00A0';
  }
  .uk-list-muted > ::before {
    color: #999 !important;
  }
  .uk-list-emphasis > ::before {
    color: #333 !important;
  }
  .uk-list-primary > ::before {
    color: #1e87f0 !important;
  }
  .uk-list-secondary > ::before {
    color: #222 !important;
  }
  .uk-list-bullet > * {
    padding-left: 30px;
  }
  .uk-list-bullet > ::before {
    content: "";
    display: list-item;
    position: relative;
    left: -30px;
    width: 30px;
    height: 1.5em;
    margin-bottom: -1.5em;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .uk-list-divider > :nth-child(n+2) {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
  }
  .uk-list-striped > * {
    padding: 10px 10px;
  }
  .uk-list-striped > *:nth-of-type(odd) {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
  .uk-list-striped > :nth-of-type(odd) {
    background: #f8f8f8;
  }
  .uk-list-striped > :nth-child(n+2) {
    margin-top: 0;
  }
  .uk-list-large > :nth-child(n+2),
  .uk-list-large > * > ul {
    margin-top: 20px;
  }
  .uk-list-collapse > :nth-child(n+2),
  .uk-list-collapse > * > ul {
    margin-top: 0;
  }
  .uk-list-large.uk-list-divider > :nth-child(n+2) {
    margin-top: 20px;
    padding-top: 20px;
  }
  .uk-list-collapse.uk-list-divider > :nth-child(n+2) {
    margin-top: 0;
    padding-top: 0;
  }
  .uk-list-large.uk-list-striped > * {
    padding: 20px 10px;
  }
  .uk-list-collapse.uk-list-striped > * {
    padding-top: 0;
    padding-bottom: 0;
  }
  .uk-list-large.uk-list-striped > :nth-child(n+2),
  .uk-list-collapse.uk-list-striped > :nth-child(n+2) {
    margin-top: 0;
  }
  .uk-description-list > dt {
    color: #333;
    font-size: 0.875rem;
    font-weight: normal;
    text-transform: uppercase;
  }
  .uk-description-list > dt:nth-child(n+2) {
    margin-top: 20px;
  }
  .uk-description-list-divider > dt:nth-child(n+2) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
  }
  .uk-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  * + .uk-table {
    margin-top: 20px;
  }
  .uk-table th {
    padding: 16px 12px;
    text-align: left;
    vertical-align: bottom;
    font-size: 0.875rem;
    font-weight: normal;
    color: #999;
    text-transform: uppercase;
  }
  .uk-table td {
    padding: 16px 12px;
    vertical-align: top;
  }
  .uk-table td > :last-child {
    margin-bottom: 0;
  }
  .uk-table tfoot {
    font-size: 0.875rem;
  }
  .uk-table caption {
    font-size: 0.875rem;
    text-align: left;
    color: #999;
  }
  .uk-table-middle,
  .uk-table-middle td {
    vertical-align: middle !important;
  }
  .uk-table-divider > tr:not(:first-child),
  .uk-table-divider > :not(:first-child) > tr,
  .uk-table-divider > :first-child > tr:not(:first-child) {
    border-top: 1px solid #e5e5e5;
  }
  .uk-table-striped > tr:nth-of-type(odd),
  .uk-table-striped tbody tr:nth-of-type(odd) {
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
  .uk-table-hover > tr:hover,
  .uk-table-hover tbody tr:hover {
    background: #ffd;
  }
  .uk-table > tr.uk-active,
  .uk-table tbody tr.uk-active {
    background: #ffd;
  }
  .uk-table-small th,
  .uk-table-small td {
    padding: 10px 12px;
  }
  .uk-table-large th,
  .uk-table-large td {
    padding: 22px 12px;
  }
  .uk-table-justify th:first-child,
  .uk-table-justify td:first-child {
    padding-left: 0;
  }
  .uk-table-justify th:last-child,
  .uk-table-justify td:last-child {
    padding-right: 0;
  }
  .uk-table-shrink {
    width: 1px;
  }
  .uk-table-expand {
    min-width: 150px;
  }
  .uk-table-link {
    padding: 0 !important;
  }
  .uk-table-link > a {
    display: block;
    padding: 16px 12px;
  }
  .uk-table-small .uk-table-link > a {
    padding: 10px 12px;
  }
  @media (max-width: 959px) {
    .uk-table-responsive,
    .uk-table-responsive tbody,
    .uk-table-responsive th,
    .uk-table-responsive td,
    .uk-table-responsive tr {
      display: block;
    }
    .uk-table-responsive thead {
      display: none;
    }
    .uk-table-responsive th,
    .uk-table-responsive td {
      width: auto !important;
      max-width: none !important;
      min-width: 0 !important;
      overflow: visible !important;
      white-space: normal !important;
    }
    .uk-table-responsive th:not(:first-child):not(.uk-table-link),
    .uk-table-responsive td:not(:first-child):not(.uk-table-link),
    .uk-table-responsive .uk-table-link:not(:first-child) > a {
      padding-top: 5px !important;
    }
    .uk-table-responsive th:not(:last-child):not(.uk-table-link),
    .uk-table-responsive td:not(:last-child):not(.uk-table-link),
    .uk-table-responsive .uk-table-link:not(:last-child) > a {
      padding-bottom: 5px !important;
    }
    .uk-table-justify.uk-table-responsive th,
    .uk-table-justify.uk-table-responsive td {
      padding-left: 0;
      padding-right: 0;
    }
  }
  .uk-table tbody tr {
    transition: background-color 0.1s linear;
  }
  .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-table-striped tbody tr:nth-of-type(even):last-child {
    border-bottom: 1px solid #e5e5e5;
  }
  .uk-icon {
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    padding: 0;
    background-color: transparent;
    display: inline-block;
    fill: currentcolor;
    line-height: 0;
  }
  button.uk-icon:not(:disabled) {
    cursor: pointer;
  }
  .uk-icon::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  .uk-icon:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
    fill: currentcolor;
  }
  .uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
    stroke: currentcolor;
  }
  .uk-icon > * {
    transform: translate(0, 0);
  }
  .uk-icon-image {
    width: 20px;
    height: 20px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    object-fit: scale-down;
    max-width: none;
  }
  .uk-icon-link {
    color: #999;
    text-decoration: none !important;
  }
  .uk-icon-link:hover {
    color: #666;
  }
  .uk-icon-link:active,
  .uk-active > .uk-icon-link {
    color: #595959;
  }
  .uk-icon-button {
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    border-radius: 500px;
    background: #f8f8f8;
    color: #999;
    vertical-align: middle;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;
  }
  .uk-icon-button:hover {
    background-color: #ebebeb;
    color: #666;
  }
  .uk-icon-button:active,
  .uk-active > .uk-icon-button {
    background-color: #dfdfdf;
    color: #666;
  }
  .uk-range {
    -webkit-appearance: none;
    box-sizing: border-box;
    margin: 0;
    vertical-align: middle;
    max-width: 100%;
    width: 100%;
    background: transparent;
  }
  .uk-range:focus {
    outline: none;
  }
  .uk-range::-moz-focus-outer {
    border: none;
  }
  .uk-range:not(:disabled)::-webkit-slider-thumb {
    cursor: pointer;
  }
  .uk-range:not(:disabled)::-moz-range-thumb {
    cursor: pointer;
  }
  .uk-range::-webkit-slider-runnable-track {
    height: 3px;
    background: #ebebeb;
    border-radius: 500px;
  }
  .uk-range:focus::-webkit-slider-runnable-track,
  .uk-range:active::-webkit-slider-runnable-track {
    background: #dedede;
  }
  .uk-range::-moz-range-track {
    height: 3px;
    background: #ebebeb;
    border-radius: 500px;
  }
  .uk-range:focus::-moz-range-track {
    background: #dedede;
  }
  .uk-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -7px;
    height: 15px;
    width: 15px;
    border-radius: 500px;
    background: #fff;
    border: 1px solid #cccccc;
  }
  .uk-range::-moz-range-thumb {
    border: none;
    height: 15px;
    width: 15px;
    margin-top: -7px;
    border-radius: 500px;
    background: #fff;
    border: 1px solid #cccccc;
  }
  .uk-input,
  .uk-select,
  .uk-textarea,
  .uk-radio,
  .uk-checkbox {
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    font: inherit;
  }
  .uk-input {
    overflow: visible;
  }
  .uk-select {
    text-transform: none;
  }
  .uk-select optgroup {
    font: inherit;
    font-weight: bold;
  }
  .uk-textarea {
    overflow: auto;
  }
  .uk-input[type="search"]::-webkit-search-cancel-button,
  .uk-input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  .uk-input[type="number"]::-webkit-inner-spin-button,
  .uk-input[type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  .uk-input::-moz-placeholder,
  .uk-textarea::-moz-placeholder {
    opacity: 1;
  }
  .uk-radio:not(:disabled),
  .uk-checkbox:not(:disabled) {
    cursor: pointer;
  }
  .uk-fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  .uk-input,
  .uk-textarea {
    -webkit-appearance: none;
  }
  .uk-input,
  .uk-select,
  .uk-textarea {
    max-width: 100%;
    width: 100%;
    border: 0 none;
    padding: 0 10px;
    background: #fff;
    color: #666;
    border: 1px solid #e5e5e5;
    transition: 0.2s ease-in-out;
    transition-property: color, background-color, border;
  }
  .uk-input,
  .uk-select:not([multiple]):not([size]) {
    height: 40px;
    vertical-align: middle;
    display: inline-block;
  }
  .uk-input:not(input),
  .uk-select:not(select) {
    line-height: 38px;
  }
  .uk-select[multiple],
  .uk-select[size],
  .uk-textarea {
    padding-top: 6px;
    padding-bottom: 6px;
    vertical-align: top;
  }
  .uk-select[multiple],
  .uk-select[size] {
    resize: vertical;
  }
  .uk-input:focus,
  .uk-select:focus,
  .uk-textarea:focus {
    outline: none;
    background-color: #fff;
    color: #666;
    border-color: #1e87f0;
  }
  .uk-input:disabled,
  .uk-select:disabled,
  .uk-textarea:disabled {
    background-color: #f8f8f8;
    color: #999;
    border-color: #e5e5e5;
  }
  .uk-input::placeholder {
    color: #999;
  }
  .uk-textarea::placeholder {
    color: #999;
  }
  .uk-form-small {
    font-size: 0.875rem;
  }
  .uk-form-small:not(textarea):not([multiple]):not([size]) {
    height: 30px;
    padding-left: 8px;
    padding-right: 8px;
  }
  textarea.uk-form-small,
  [multiple].uk-form-small,
  [size].uk-form-small {
    padding: 5px 8px;
  }
  .uk-form-small:not(select):not(input):not(textarea) {
    line-height: 28px;
  }
  .uk-form-large {
    font-size: 1.25rem;
  }
  .uk-form-large:not(textarea):not([multiple]):not([size]) {
    height: 55px;
    padding-left: 12px;
    padding-right: 12px;
  }
  textarea.uk-form-large,
  [multiple].uk-form-large,
  [size].uk-form-large {
    padding: 7px 12px;
  }
  .uk-form-large:not(select):not(input):not(textarea) {
    line-height: 53px;
  }
  .uk-form-danger,
  .uk-form-danger:focus {
    color: #f0506e;
    border-color: #f0506e;
  }
  .uk-form-success,
  .uk-form-success:focus {
    color: #32d296;
    border-color: #32d296;
  }
  .uk-form-blank {
    background: none;
    border-color: transparent;
  }
  .uk-form-blank:focus {
    border-color: #e5e5e5;
    border-style: solid;
  }
  input.uk-form-width-xsmall {
    width: 50px;
  }
  select.uk-form-width-xsmall {
    width: 75px;
  }
  .uk-form-width-small {
    width: 130px;
  }
  .uk-form-width-medium {
    width: 200px;
  }
  .uk-form-width-large {
    width: 500px;
  }
  .uk-select:not([multiple]):not([size]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-repeat: no-repeat;
    background-position: 100% 50%;
  }
  .uk-select:not([multiple]):not([size]) option {
    color: #666;
  }
  .uk-select:not([multiple]):not([size]):disabled {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-input[list] {
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: 100% 50%;
  }
  .uk-input[list]:hover,
  .uk-input[list]:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
  }
  .uk-radio,
  .uk-checkbox {
    display: inline-block;
    height: 16px;
    width: 16px;
    overflow: hidden;
    margin-top: -4px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #cccccc;
    transition: 0.2s ease-in-out;
    transition-property: background-color, border;
  }
  .uk-radio {
    border-radius: 50%;
  }
  .uk-radio:focus,
  .uk-checkbox:focus {
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border-color: #1e87f0;
  }
  .uk-radio:checked,
  .uk-checkbox:checked,
  .uk-checkbox:indeterminate {
    background-color: #1e87f0;
    border-color: transparent;
  }
  .uk-radio:checked:focus,
  .uk-checkbox:checked:focus,
  .uk-checkbox:indeterminate:focus {
    background-color: #0e6dcd;
  }
  .uk-radio:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-checkbox:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-checkbox:indeterminate {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-radio:disabled,
  .uk-checkbox:disabled {
    background-color: #f8f8f8;
    border-color: #e5e5e5;
  }
  .uk-radio:disabled:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-checkbox:disabled:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-checkbox:disabled:indeterminate {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-legend {
    width: 100%;
    color: inherit;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .uk-form-custom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-form-custom select,
  .uk-form-custom input[type="file"] {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-appearance: none;
    opacity: 0;
    cursor: pointer;
  }
  .uk-form-custom input[type="file"] {
    font-size: 500px;
    overflow: hidden;
  }
  .uk-form-label {
    color: #333;
    font-size: 0.875rem;
  }
  .uk-form-stacked .uk-form-label {
    display: block;
    margin-bottom: 5px;
  }
  @media (max-width: 959px) {
    .uk-form-horizontal .uk-form-label {
      display: block;
      margin-bottom: 5px;
    }
  }
  @media (min-width: 960px) {
    .uk-form-horizontal .uk-form-label {
      width: 200px;
      margin-top: 7px;
      float: left;
    }
    .uk-form-horizontal .uk-form-controls {
      margin-left: 215px;
    }
    .uk-form-horizontal .uk-form-controls-text {
      padding-top: 7px;
    }
  }
  .uk-form-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #999;
  }
  .uk-form-icon:hover {
    color: #666;
  }
  .uk-form-icon:not(a):not(button):not(input) {
    pointer-events: none;
  }
  .uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input {
    padding-left: 40px !important;
  }
  .uk-form-icon-flip {
    right: 0;
    left: auto;
  }
  .uk-form-icon-flip ~ .uk-input {
    padding-right: 40px !important;
  }
  .uk-button {
    margin: 0;
    border: none;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    -webkit-appearance: none;
    border-radius: 0;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 30px;
    vertical-align: middle;
    font-size: 0.875rem;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color, border-color;
  }
  .uk-button:not(:disabled) {
    cursor: pointer;
  }
  .uk-button::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  .uk-button:hover {
    text-decoration: none;
  }
  .uk-button-default {
    background-color: transparent;
    color: #333;
    border: 1px solid #e5e5e5;
  }
  .uk-button-default:hover {
    background-color: transparent;
    color: #333;
    border-color: #b2b2b2;
  }
  .uk-button-default:active,
  .uk-button-default.uk-active {
    background-color: transparent;
    color: #333;
    border-color: #999999;
  }
  .uk-button-primary {
    background-color: #1e87f0;
    color: #fff;
    border: 1px solid transparent;
  }
  .uk-button-primary:hover {
    background-color: #0f7ae5;
    color: #fff;
  }
  .uk-button-primary:active,
  .uk-button-primary.uk-active {
    background-color: #0e6dcd;
    color: #fff;
  }
  .uk-button-secondary {
    background-color: #222;
    color: #fff;
    border: 1px solid transparent;
  }
  .uk-button-secondary:hover {
    background-color: #151515;
    color: #fff;
  }
  .uk-button-secondary:active,
  .uk-button-secondary.uk-active {
    background-color: #080808;
    color: #fff;
  }
  .uk-button-danger {
    background-color: #f0506e;
    color: #fff;
    border: 1px solid transparent;
  }
  .uk-button-danger:hover {
    background-color: #ee395b;
    color: #fff;
  }
  .uk-button-danger:active,
  .uk-button-danger.uk-active {
    background-color: #ec2147;
    color: #fff;
  }
  .uk-button-default:disabled,
  .uk-button-primary:disabled,
  .uk-button-secondary:disabled,
  .uk-button-danger:disabled {
    background-color: transparent;
    color: #999;
    border-color: #e5e5e5;
  }
  .uk-button-small {
    padding: 0 15px;
    line-height: 28px;
    font-size: 0.875rem;
  }
  .uk-button-large {
    padding: 0 40px;
    line-height: 53px;
    font-size: 0.875rem;
  }
  .uk-button-text {
    padding: 0;
    line-height: 1.5;
    background: none;
    color: #333;
    position: relative;
  }
  .uk-button-text::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    border-bottom: 1px solid currentColor;
    transition: right 0.3s ease-out;
  }
  .uk-button-text:hover {
    color: #333;
  }
  .uk-button-text:hover::before {
    right: 0;
  }
  .uk-button-text:disabled {
    color: #999;
  }
  .uk-button-text:disabled::before {
    display: none;
  }
  .uk-button-link {
    padding: 0;
    line-height: 1.5;
    background: none;
    color: #333;
  }
  .uk-button-link:hover {
    color: #999;
    text-decoration: none;
  }
  .uk-button-link:disabled {
    color: #999;
    text-decoration: none;
  }
  .uk-button-group {
    display: inline-flex;
    vertical-align: middle;
    position: relative;
  }
  .uk-button-group > .uk-button:nth-child(n+2),
  .uk-button-group > div:nth-child(n+2) .uk-button {
    margin-left: -1px;
  }
  .uk-button-group .uk-button:hover,
  .uk-button-group .uk-button:focus,
  .uk-button-group .uk-button:active,
  .uk-button-group .uk-button.uk-active {
    position: relative;
    z-index: 1;
  }
  .uk-progress {
    vertical-align: baseline;
    display: block;
    width: 100%;
    border: 0;
    background-color: #f8f8f8;
    margin-bottom: 20px;
    height: 15px;
    border-radius: 500px;
    overflow: hidden;
  }
  * + .uk-progress {
    margin-top: 20px;
  }
  .uk-progress::-webkit-progress-bar {
    background-color: transparent;
  }
  .uk-progress::-webkit-progress-value {
    background-color: #1e87f0;
    transition: width 0.6s ease;
  }
  .uk-progress::-moz-progress-bar {
    background-color: #1e87f0;
    transition: width 0.6s ease;
  }
  .uk-section {
    display: flow-root;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  @media (min-width: 960px) {
    .uk-section {
      padding-top: 70px;
      padding-bottom: 70px;
    }
  }
  .uk-section > :last-child {
    margin-bottom: 0;
  }
  .uk-section-xsmall {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .uk-section-small {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .uk-section-large {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  @media (min-width: 960px) {
    .uk-section-large {
      padding-top: 140px;
      padding-bottom: 140px;
    }
  }
  .uk-section-xlarge {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  @media (min-width: 960px) {
    .uk-section-xlarge {
      padding-top: 210px;
      padding-bottom: 210px;
    }
  }
  .uk-section-default {
    --uk-inverse: dark;
    background: #fff;
  }
  .uk-section-muted {
    --uk-inverse: dark;
    background: #f8f8f8;
  }
  .uk-section-primary {
    --uk-inverse: light;
    background: #1e87f0;
  }
  .uk-section-secondary {
    --uk-inverse: light;
    background: #222;
  }
  .uk-container {
    display: flow-root;
    box-sizing: content-box;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  @media (min-width: 640px) {
    .uk-container {
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  @media (min-width: 960px) {
    .uk-container {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  .uk-container > :last-child {
    margin-bottom: 0;
  }
  .uk-container .uk-container {
    padding-left: 0;
    padding-right: 0;
  }
  .uk-container-xsmall {
    max-width: 750px;
  }
  .uk-container-small {
    max-width: 900px;
  }
  .uk-container-large {
    max-width: 1400px;
  }
  .uk-container-xlarge {
    max-width: 1600px;
  }
  .uk-container-expand {
    max-width: none;
  }
  .uk-container-expand-left {
    margin-left: 0;
  }
  .uk-container-expand-right {
    margin-right: 0;
  }
  @media (min-width: 640px) {
    .uk-container-expand-left.uk-container-xsmall,
    .uk-container-expand-right.uk-container-xsmall {
      max-width: calc(50% + (750px / 2) - 30px);
    }
    .uk-container-expand-left.uk-container-small,
    .uk-container-expand-right.uk-container-small {
      max-width: calc(50% + (900px / 2) - 30px);
    }
  }
  @media (min-width: 960px) {
    .uk-container-expand-left,
    .uk-container-expand-right {
      max-width: calc(50% + (1200px / 2) - 40px);
    }
    .uk-container-expand-left.uk-container-xsmall,
    .uk-container-expand-right.uk-container-xsmall {
      max-width: calc(50% + (750px / 2) - 40px);
    }
    .uk-container-expand-left.uk-container-small,
    .uk-container-expand-right.uk-container-small {
      max-width: calc(50% + (900px / 2) - 40px);
    }
    .uk-container-expand-left.uk-container-large,
    .uk-container-expand-right.uk-container-large {
      max-width: calc(50% + (1400px / 2) - 40px);
    }
    .uk-container-expand-left.uk-container-xlarge,
    .uk-container-expand-right.uk-container-xlarge {
      max-width: calc(50% + (1600px / 2) - 40px);
    }
  }
  .uk-container-item-padding-remove-left,
  .uk-container-item-padding-remove-right {
    width: calc(100% + 15px);
  }
  .uk-container-item-padding-remove-left {
    margin-left: -15px;
  }
  .uk-container-item-padding-remove-right {
    margin-right: -15px;
  }
  @media (min-width: 640px) {
    .uk-container-item-padding-remove-left,
    .uk-container-item-padding-remove-right {
      width: calc(100% + 30px);
    }
    .uk-container-item-padding-remove-left {
      margin-left: -30px;
    }
    .uk-container-item-padding-remove-right {
      margin-right: -30px;
    }
  }
  @media (min-width: 960px) {
    .uk-container-item-padding-remove-left,
    .uk-container-item-padding-remove-right {
      width: calc(100% + 40px);
    }
    .uk-container-item-padding-remove-left {
      margin-left: -40px;
    }
    .uk-container-item-padding-remove-right {
      margin-right: -40px;
    }
  }
  .uk-tile {
    display: flow-root;
    position: relative;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  @media (min-width: 640px) {
    .uk-tile {
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  @media (min-width: 960px) {
    .uk-tile {
      padding-left: 40px;
      padding-right: 40px;
      padding-top: 70px;
      padding-bottom: 70px;
    }
  }
  .uk-tile > :last-child {
    margin-bottom: 0;
  }
  .uk-tile-xsmall {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .uk-tile-small {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .uk-tile-large {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  @media (min-width: 960px) {
    .uk-tile-large {
      padding-top: 140px;
      padding-bottom: 140px;
    }
  }
  .uk-tile-xlarge {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  @media (min-width: 960px) {
    .uk-tile-xlarge {
      padding-top: 210px;
      padding-bottom: 210px;
    }
  }
  .uk-tile-default {
    --uk-inverse: dark;
    background-color: #fff;
  }
  .uk-tile-muted {
    --uk-inverse: dark;
    background-color: #f8f8f8;
  }
  .uk-tile-primary {
    --uk-inverse: light;
    background-color: #1e87f0;
  }
  .uk-tile-secondary {
    --uk-inverse: light;
    background-color: #222;
  }
  .uk-card {
    position: relative;
    box-sizing: border-box;
    transition: box-shadow 0.1s ease-in-out;
  }
  .uk-card-body {
    display: flow-root;
    padding: 30px 30px;
  }
  .uk-card-header {
    display: flow-root;
    padding: 15px 30px;
  }
  .uk-card-footer {
    display: flow-root;
    padding: 15px 30px;
  }
  @media (min-width: 1200px) {
    .uk-card-body {
      padding: 40px 40px;
    }
    .uk-card-header {
      padding: 20px 40px;
    }
    .uk-card-footer {
      padding: 20px 40px;
    }
  }
  .uk-card-body > :last-child,
  .uk-card-header > :last-child,
  .uk-card-footer > :last-child {
    margin-bottom: 0;
  }
  .uk-card-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .uk-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    height: 22px;
    padding: 0 10px;
    background: #1e87f0;
    color: #fff;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    border-radius: 2px;
    text-transform: uppercase;
  }
  .uk-card-badge:first-child + * {
    margin-top: 0;
  }
  .uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary):hover {
    background-color: #fff;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  }
  .uk-card-default {
    --uk-inverse: dark;
    background-color: #fff;
    color: #666;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  .uk-card-default .uk-card-title {
    color: #333;
  }
  .uk-card-default.uk-card-hover:hover {
    background-color: #fff;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  }
  .uk-card-default .uk-card-header {
    border-bottom: 1px solid #e5e5e5;
  }
  .uk-card-default .uk-card-footer {
    border-top: 1px solid #e5e5e5;
  }
  .uk-card-primary {
    --uk-inverse: light;
    background-color: #1e87f0;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  .uk-card-primary .uk-card-title {
    color: #fff;
  }
  .uk-card-primary.uk-card-hover:hover {
    background-color: #1e87f0;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  }
  .uk-card-secondary {
    --uk-inverse: light;
    background-color: #222;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  .uk-card-secondary .uk-card-title {
    color: #fff;
  }
  .uk-card-secondary.uk-card-hover:hover {
    background-color: #222;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  }
  .uk-card-small.uk-card-body,
  .uk-card-small .uk-card-body {
    padding: 20px 20px;
  }
  .uk-card-small .uk-card-header {
    padding: 13px 20px;
  }
  .uk-card-small .uk-card-footer {
    padding: 13px 20px;
  }
  @media (min-width: 1200px) {
    .uk-card-large.uk-card-body,
    .uk-card-large .uk-card-body {
      padding: 70px 70px;
    }
    .uk-card-large .uk-card-header {
      padding: 35px 70px;
    }
    .uk-card-large .uk-card-footer {
      padding: 35px 70px;
    }
  }
  .uk-card-body > .uk-nav-default {
    margin-left: -30px;
    margin-right: -30px;
  }
  .uk-card-body > .uk-nav-default:only-child {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .uk-card-body > .uk-nav-default > li > a,
  .uk-card-body > .uk-nav-default .uk-nav-header,
  .uk-card-body > .uk-nav-default .uk-nav-divider {
    padding-left: 30px;
    padding-right: 30px;
  }
  .uk-card-body > .uk-nav-default .uk-nav-sub {
    padding-left: 45px;
  }
  @media (min-width: 1200px) {
    .uk-card-body > .uk-nav-default {
      margin-left: -40px;
      margin-right: -40px;
    }
    .uk-card-body > .uk-nav-default:only-child {
      margin-top: -25px;
      margin-bottom: -25px;
    }
    .uk-card-body > .uk-nav-default > li > a,
    .uk-card-body > .uk-nav-default .uk-nav-header,
    .uk-card-body > .uk-nav-default .uk-nav-divider {
      padding-left: 40px;
      padding-right: 40px;
    }
    .uk-card-body > .uk-nav-default .uk-nav-sub {
      padding-left: 55px;
    }
  }
  .uk-card-small > .uk-nav-default {
    margin-left: -20px;
    margin-right: -20px;
  }
  .uk-card-small > .uk-nav-default:only-child {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .uk-card-small > .uk-nav-default > li > a,
  .uk-card-small > .uk-nav-default .uk-nav-header,
  .uk-card-small > .uk-nav-default .uk-nav-divider {
    padding-left: 20px;
    padding-right: 20px;
  }
  .uk-card-small > .uk-nav-default .uk-nav-sub {
    padding-left: 35px;
  }
  @media (min-width: 1200px) {
    .uk-card-large > .uk-nav-default {
      margin: 0;
    }
    .uk-card-large > .uk-nav-default:only-child {
      margin: 0;
    }
    .uk-card-large > .uk-nav-default > li > a,
    .uk-card-large > .uk-nav-default .uk-nav-header,
    .uk-card-large > .uk-nav-default .uk-nav-divider {
      padding-left: 0;
      padding-right: 0;
    }
    .uk-card-large > .uk-nav-default .uk-nav-sub {
      padding-left: 15px;
    }
  }
  .uk-close {
    color: #999;
    transition: 0.1s ease-in-out;
    transition-property: color, opacity;
  }
  .uk-close:hover {
    color: #666;
  }
  .uk-spinner > * {
    animation: uk-spinner-rotate 1.4s linear infinite;
  }
  @keyframes uk-spinner-rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(270deg);
    }
  }
  .uk-spinner > * > * {
    stroke-dasharray: 88px;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: uk-spinner-dash 1.4s ease-in-out infinite;
    stroke-width: 1;
    stroke-linecap: round;
  }
  @keyframes uk-spinner-dash {
    0% {
      stroke-dashoffset: 88px;
    }
    50% {
      stroke-dashoffset: 22px;
      transform: rotate(135deg);
    }
    100% {
      stroke-dashoffset: 88px;
      transform: rotate(450deg);
    }
  }
  .uk-totop {
    padding: 5px;
    color: #999;
    transition: color 0.1s ease-in-out;
  }
  .uk-totop:hover {
    color: #666;
  }
  .uk-totop:active {
    color: #333;
  }
  .uk-marker {
    padding: 5px;
    background: #222;
    color: #fff;
    border-radius: 500px;
  }
  .uk-marker:hover {
    color: #fff;
  }
  .uk-alert {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 29px 15px 15px;
    background: #f8f8f8;
    color: #666;
  }
  * + .uk-alert {
    margin-top: 20px;
  }
  .uk-alert > :last-child {
    margin-bottom: 0;
  }
  .uk-alert-close {
    position: absolute;
    top: 20px;
    right: 15px;
    color: inherit;
    opacity: 0.4;
  }
  .uk-alert-close:first-child + * {
    margin-top: 0;
  }
  .uk-alert-close:hover {
    color: inherit;
    opacity: 0.8;
  }
  .uk-alert-primary {
    background: #d8eafc;
    color: #1e87f0;
  }
  .uk-alert-success {
    background: #edfbf6;
    color: #32d296;
  }
  .uk-alert-warning {
    background: #fff6ee;
    color: #faa05a;
  }
  .uk-alert-danger {
    background: #fef4f6;
    color: #f0506e;
  }
  .uk-alert h1,
  .uk-alert h2,
  .uk-alert h3,
  .uk-alert h4,
  .uk-alert h5,
  .uk-alert h6 {
    color: inherit;
  }
  .uk-alert a:not([class]) {
    color: inherit;
    text-decoration: underline;
  }
  .uk-alert a:not([class]):hover {
    color: inherit;
    text-decoration: underline;
  }
  .uk-placeholder {
    margin-bottom: 20px;
    padding: 30px 30px;
    background: transparent;
    border: 1px dashed #e5e5e5;
  }
  * + .uk-placeholder {
    margin-top: 20px;
  }
  .uk-placeholder > :last-child {
    margin-bottom: 0;
  }
  .uk-badge {
    box-sizing: border-box;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 500px;
    vertical-align: middle;
    background: #1e87f0;
    color: #fff !important;
    font-size: 11px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
  }
  .uk-badge:hover {
    text-decoration: none;
  }
  .uk-label {
    display: inline-block;
    padding: 0 10px;
    background: #1e87f0;
    line-height: 1.5;
    font-size: 0.875rem;
    color: #fff;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 2px;
    text-transform: uppercase;
  }
  .uk-label-success {
    background-color: #32d296;
    color: #fff;
  }
  .uk-label-warning {
    background-color: #faa05a;
    color: #fff;
  }
  .uk-label-danger {
    background-color: #f0506e;
    color: #fff;
  }
  .uk-overlay {
    padding: 30px 30px;
  }
  .uk-overlay > :last-child {
    margin-bottom: 0;
  }
  .uk-overlay-default {
    --uk-inverse: dark;
    background: rgba(255, 255, 255, 0.8);
  }
  .uk-overlay-primary {
    --uk-inverse: light;
    background: rgba(34, 34, 34, 0.8);
  }
  .uk-article {
    display: flow-root;
  }
  .uk-article > :last-child {
    margin-bottom: 0;
  }
  .uk-article + .uk-article {
    margin-top: 70px;
  }
  .uk-article-title {
    font-size: 2.23125rem;
    line-height: 1.2;
  }
  @media (min-width: 960px) {
    .uk-article-title {
      font-size: 2.625rem;
    }
  }
  .uk-article-meta {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #999;
  }
  .uk-article-meta a {
    color: #999;
  }
  .uk-article-meta a:hover {
    color: #666;
    text-decoration: none;
  }
  .uk-comment-body {
    display: flow-root;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .uk-comment-header {
    display: flow-root;
    margin-bottom: 20px;
  }
  .uk-comment-body > :last-child,
  .uk-comment-header > :last-child {
    margin-bottom: 0;
  }
  .uk-comment-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .uk-comment-meta {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #999;
  }
  .uk-comment-list {
    padding: 0;
    list-style: none;
  }
  .uk-comment-list > :nth-child(n+2) {
    margin-top: 70px;
  }
  .uk-comment-list .uk-comment ~ ul {
    margin: 70px 0 0 0;
    padding-left: 30px;
    list-style: none;
  }
  @media (min-width: 960px) {
    .uk-comment-list .uk-comment ~ ul {
      padding-left: 100px;
    }
  }
  .uk-comment-list .uk-comment ~ ul > :nth-child(n+2) {
    margin-top: 70px;
  }
  .uk-comment-primary {
    padding: 30px;
    background-color: #f8f8f8;
  }
  .uk-search {
    display: inline-block;
    position: relative;
    max-width: 100%;
    margin: 0;
  }
  .uk-search-input::-webkit-search-cancel-button,
  .uk-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  .uk-search-input::-moz-placeholder {
    opacity: 1;
  }
  .uk-search-input {
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    font: inherit;
    overflow: visible;
    -webkit-appearance: none;
    vertical-align: middle;
    width: 100%;
    border: none;
    color: #666;
  }
  .uk-search-input:focus {
    outline: none;
  }
  .uk-search-input::placeholder {
    color: #999;
  }
  .uk-search .uk-search-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #999;
  }
  .uk-search .uk-search-icon:hover {
    color: #999;
  }
  .uk-search .uk-search-icon:not(a):not(button):not(input) {
    pointer-events: none;
  }
  .uk-search .uk-search-icon-flip {
    right: 0;
    left: auto;
  }
  .uk-search-default {
    width: 240px;
  }
  .uk-search-default .uk-search-input {
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    background: transparent;
    border: 1px solid #e5e5e5;
  }
  .uk-search-default .uk-search-input:focus {
    background-color: rgba(0, 0, 0, 0);
    border-color: #1e87f0;
  }
  .uk-search-default .uk-search-icon {
    width: 40px;
  }
  .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
    padding-left: 40px;
  }
  .uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
    padding-right: 40px;
  }
  .uk-search-navbar {
    width: 240px;
  }
  .uk-search-navbar .uk-search-input {
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
  }
  .uk-search-navbar .uk-search-input:focus {
    background-color: #fff;
    border-color: #1e87f0;
  }
  .uk-search-navbar .uk-search-icon {
    width: 40px;
  }
  .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
    padding-left: 40px;
  }
  .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
    padding-right: 40px;
  }
  .uk-search-medium {
    width: 400px;
  }
  .uk-search-medium .uk-search-input {
    height: 40px;
    background: transparent;
    font-size: 1.5rem;
  }
  .uk-search-medium .uk-search-icon {
    width: 24px;
  }
  .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
    padding-left: 34px;
  }
  .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
    padding-right: 34px;
  }
  .uk-search-large {
    width: 500px;
  }
  .uk-search-large .uk-search-input {
    height: 80px;
    background: transparent;
    font-size: 2.625rem;
  }
  .uk-search-large .uk-search-icon {
    width: 40px;
  }
  .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
    padding-left: 60px;
  }
  .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
    padding-right: 60px;
  }
  .uk-search-toggle {
    color: #999;
  }
  .uk-search-toggle:hover {
    color: #666;
  }
  .uk-accordion {
    padding: 0;
    list-style: none;
  }
  .uk-accordion > :nth-child(n+2) {
    margin-top: 20px;
  }
  .uk-accordion-title {
    display: block;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #333;
    overflow: hidden;
  }
  .uk-accordion-title::before {
    content: "";
    width: 1.4em;
    height: 1.4em;
    margin-left: 10px;
    float: right;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .uk-open > .uk-accordion-title::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-accordion-title:hover {
    color: #666;
    text-decoration: none;
  }
  .uk-accordion-content {
    display: flow-root;
    margin-top: 20px;
  }
  .uk-accordion-content > :last-child {
    margin-bottom: 0;
  }
  .uk-drop {
    display: none;
    position: absolute;
    z-index: 1020;
    --uk-position-offset: 20px;
    --uk-position-viewport-offset: 15px;
    box-sizing: border-box;
    width: 300px;
  }
  .uk-drop.uk-open {
    display: block;
  }
  .uk-drop-stack .uk-drop-grid > * {
    width: 100% !important;
  }
  .uk-drop-parent-icon {
    margin-left: 0.25em;
    transition: transform 0.3s ease-out;
  }
  [aria-expanded="true"] > .uk-drop-parent-icon {
    transform: rotateX(180deg);
  }
  .uk-dropbar {
    --uk-position-offset: 0;
    --uk-position-shift-offset: 0;
    --uk-position-viewport-offset: 0;
    --uk-inverse: dark;
    width: auto;
    padding: 25px 15px 25px 15px;
    background: #fff;
    color: #666;
  }
  .uk-dropbar > :last-child {
    margin-bottom: 0;
  }
  @media (min-width: 640px) {
    .uk-dropbar {
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  @media (min-width: 960px) {
    .uk-dropbar {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  .uk-dropbar :focus-visible {
    outline-color: #333 !important;
  }
  .uk-dropbar-large {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .uk-dropbar-top {
    box-shadow: 0 12px 7px -6px rgba(0, 0, 0, 0.05);
  }
  .uk-dropbar-bottom {
    box-shadow: 0 -12px 7px -6px rgba(0, 0, 0, 0.05);
  }
  .uk-dropbar-left {
    box-shadow: 12px 0 7px -6px rgba(0, 0, 0, 0.05);
  }
  .uk-dropbar-right {
    box-shadow: -12px 0 7px -6px rgba(0, 0, 0, 0.05);
  }
  .uk-dropnav-dropbar {
    position: absolute;
    z-index: 980;
    padding: 0;
    left: 0;
    right: 0;
  }
  .uk-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1010;
    overflow-y: auto;
    padding: 15px 15px;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.15s linear;
  }
  @media (min-width: 640px) {
    .uk-modal {
      padding: 50px 30px;
    }
  }
  @media (min-width: 960px) {
    .uk-modal {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  .uk-modal.uk-open {
    opacity: 1;
  }
  .uk-modal-page {
    overflow: hidden;
  }
  .uk-modal-dialog {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    width: 600px;
    max-width: 100% !important;
    background: #fff;
    opacity: 0;
    transform: translateY(-100px);
    transition: 0.3s linear;
    transition-property: opacity, transform;
  }
  .uk-open > .uk-modal-dialog {
    opacity: 1;
    transform: translateY(0);
  }
  .uk-modal-container .uk-modal-dialog {
    width: 1200px;
  }
  .uk-modal-full {
    padding: 0;
    background: none;
  }
  .uk-modal-full .uk-modal-dialog {
    margin: 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(0);
  }
  .uk-modal-body {
    display: flow-root;
    padding: 20px 20px;
  }
  .uk-modal-header {
    display: flow-root;
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
  }
  .uk-modal-footer {
    display: flow-root;
    padding: 10px 20px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
  }
  @media (min-width: 640px) {
    .uk-modal-body {
      padding: 30px 30px;
    }
    .uk-modal-header {
      padding: 15px 30px;
    }
    .uk-modal-footer {
      padding: 15px 30px;
    }
  }
  .uk-modal-body > :last-child,
  .uk-modal-header > :last-child,
  .uk-modal-footer > :last-child {
    margin-bottom: 0;
  }
  .uk-modal-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  [class*="uk-modal-close-"] {
    position: absolute;
    z-index: 1010;
    top: 10px;
    right: 10px;
    padding: 5px;
  }
  [class*="uk-modal-close-"]:first-child + * {
    margin-top: 0;
  }
  .uk-modal-close-outside {
    top: 0;
    right: -5px;
    transform: translate(0, -100%);
    color: #ffffff;
  }
  .uk-modal-close-outside:hover {
    color: #fff;
  }
  @media (min-width: 960px) {
    .uk-modal-close-outside {
      right: 0;
      transform: translate(100%, -100%);
    }
  }
  .uk-modal-close-full {
    top: 0;
    right: 0;
    padding: 10px;
    background: #fff;
  }
  @media (min-width: 960px) {
    .uk-modal-close-full {
      padding: 20px;
    }
  }
  .uk-slideshow {
    -webkit-tap-highlight-color: transparent;
  }
  .uk-slideshow-items {
    position: relative;
    z-index: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    -webkit-touch-callout: none;
    touch-action: pan-y;
  }
  .uk-slideshow-items > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    will-change: transform, opacity;
  }
  .uk-slideshow-items > :not(.uk-active) {
    display: none;
  }
  .uk-slider {
    -webkit-tap-highlight-color: transparent;
  }
  .uk-slider-container {
    overflow: hidden;
    overflow: clip;
  }
  .uk-slider-container-offset {
    margin: -11px -25px -39px -25px;
    padding: 11px 25px 39px 25px;
  }
  .uk-slider-items {
    will-change: transform;
    position: relative;
    touch-action: pan-y;
  }
  .uk-slider-items:not(.uk-grid) {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-touch-callout: none;
  }
  .uk-slider-items.uk-grid {
    flex-wrap: nowrap;
  }
  .uk-slider-items > * {
    flex: none !important;
    box-sizing: border-box;
    max-width: 100%;
    position: relative;
  }
  .uk-sticky {
    position: relative;
    z-index: 980;
    box-sizing: border-box;
  }
  .uk-sticky-fixed {
    margin: 0 !important;
  }
  .uk-sticky[class*="uk-animation-"] {
    animation-duration: 0.2s;
  }
  .uk-sticky.uk-animation-reverse {
    animation-duration: 0.2s;
  }
  .uk-sticky-placeholder {
    pointer-events: none;
  }
  .uk-offcanvas {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
  }
  .uk-offcanvas-flip .uk-offcanvas {
    right: 0;
    left: auto;
  }
  .uk-offcanvas-bar {
    --uk-inverse: light;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -270px;
    box-sizing: border-box;
    width: 270px;
    padding: 20px 20px;
    background: #222;
    overflow-y: auto;
  }
  @media (min-width: 640px) {
    .uk-offcanvas-bar {
      left: -350px;
      width: 350px;
      padding: 30px 30px;
    }
  }
  .uk-offcanvas-flip .uk-offcanvas-bar {
    left: auto;
    right: -270px;
  }
  @media (min-width: 640px) {
    .uk-offcanvas-flip .uk-offcanvas-bar {
      right: -350px;
    }
  }
  .uk-open > .uk-offcanvas-bar {
    left: 0;
  }
  .uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
    left: auto;
    right: 0;
  }
  .uk-offcanvas-bar-animation {
    transition: left 0.3s ease-out;
  }
  .uk-offcanvas-flip .uk-offcanvas-bar-animation {
    transition-property: right;
  }
  .uk-offcanvas-reveal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease-out;
  }
  .uk-offcanvas-reveal .uk-offcanvas-bar {
    left: 0;
  }
  .uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
    left: auto;
    right: 0;
  }
  .uk-open > .uk-offcanvas-reveal {
    width: 270px;
  }
  @media (min-width: 640px) {
    .uk-open > .uk-offcanvas-reveal {
      width: 350px;
    }
  }
  .uk-offcanvas-flip .uk-offcanvas-reveal {
    right: 0;
    left: auto;
  }
  .uk-offcanvas-close {
    position: absolute;
    z-index: 1000;
    top: 5px;
    right: 5px;
    padding: 5px;
  }
  @media (min-width: 640px) {
    .uk-offcanvas-close {
      top: 10px;
      right: 10px;
    }
  }
  .uk-offcanvas-close:first-child + * {
    margin-top: 0;
  }
  .uk-offcanvas-overlay {
    width: 100vw;
    touch-action: none;
  }
  .uk-offcanvas-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.15s linear;
  }
  .uk-offcanvas-overlay.uk-open::before {
    opacity: 1;
  }
  .uk-offcanvas-page,
  .uk-offcanvas-container {
    overflow-x: hidden;
    overflow-x: clip;
  }
  .uk-offcanvas-container {
    position: relative;
    left: 0;
    transition: left 0.3s ease-out;
    box-sizing: border-box;
    width: 100%;
  }
  :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
    left: 270px;
  }
  .uk-offcanvas-flip.uk-offcanvas-container-animation {
    left: -270px;
  }
  @media (min-width: 640px) {
    :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
      left: 350px;
    }
    .uk-offcanvas-flip.uk-offcanvas-container-animation {
      left: -350px;
    }
  }
  .uk-switcher {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .uk-switcher > :not(.uk-active) {
    display: none;
  }
  .uk-switcher > * > :last-child {
    margin-bottom: 0;
  }
  .uk-leader {
    overflow: hidden;
  }
  .uk-leader-fill::after {
    display: inline-block;
    margin-left: 15px;
    width: 0;
    content: attr(data-fill);
    white-space: nowrap;
  }
  .uk-leader-fill.uk-leader-hide::after {
    display: none;
  }
  :root {
    --uk-leader-fill-content: .;
  }
  .uk-notification {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1040;
    box-sizing: border-box;
    width: 350px;
  }
  .uk-notification-top-right,
  .uk-notification-bottom-right {
    left: auto;
    right: 10px;
  }
  .uk-notification-top-center,
  .uk-notification-bottom-center {
    left: 50%;
    margin-left: -175px;
  }
  .uk-notification-bottom-left,
  .uk-notification-bottom-right,
  .uk-notification-bottom-center {
    top: auto;
    bottom: 10px;
  }
  @media (max-width: 639px) {
    .uk-notification {
      left: 10px;
      right: 10px;
      width: auto;
      margin: 0;
    }
  }
  .uk-notification-message {
    position: relative;
    padding: 15px;
    background: #f8f8f8;
    color: #666;
    font-size: 1.25rem;
    line-height: 1.4;
    cursor: pointer;
  }
  * + .uk-notification-message {
    margin-top: 10px;
  }
  .uk-notification-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 15px;
  }
  .uk-notification-message:hover .uk-notification-close {
    display: block;
  }
  .uk-notification-message-primary {
    color: #1e87f0;
  }
  .uk-notification-message-success {
    color: #32d296;
  }
  .uk-notification-message-warning {
    color: #faa05a;
  }
  .uk-notification-message-danger {
    color: #f0506e;
  }
  .uk-tooltip {
    display: none;
    position: absolute;
    z-index: 1030;
    --uk-position-offset: 10px;
    --uk-position-viewport-offset: 10;
    top: 0;
    box-sizing: border-box;
    max-width: 200px;
    padding: 3px 6px;
    background: #666;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
  }
  .uk-tooltip.uk-active {
    display: block;
  }
  .uk-sortable {
    position: relative;
  }
  .uk-sortable > :last-child {
    margin-bottom: 0;
  }
  .uk-sortable-drag {
    position: fixed !important;
    z-index: 1050 !important;
    pointer-events: none;
  }
  .uk-sortable-placeholder {
    opacity: 0;
    pointer-events: none;
  }
  .uk-sortable-empty {
    min-height: 50px;
  }
  .uk-sortable-handle:hover {
    cursor: move;
  }
  .uk-countdown-number {
    font-variant-numeric: tabular-nums;
    font-size: 2rem;
    line-height: 0.8;
  }
  @media (min-width: 640px) {
    .uk-countdown-number {
      font-size: 4rem;
    }
  }
  @media (min-width: 960px) {
    .uk-countdown-number {
      font-size: 6rem;
    }
  }
  .uk-countdown-separator {
    font-size: 1rem;
    line-height: 1.6;
  }
  @media (min-width: 640px) {
    .uk-countdown-separator {
      font-size: 2rem;
    }
  }
  @media (min-width: 960px) {
    .uk-countdown-separator {
      font-size: 3rem;
    }
  }
  .uk-thumbnav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -15px;
  }
  .uk-thumbnav > * {
    padding-left: 15px;
  }
  .uk-thumbnav > * > * {
    display: inline-block;
    position: relative;
  }
  .uk-thumbnav > * > *::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
    transition: opacity 0.1s ease-in-out;
  }
  .uk-thumbnav > * > :hover::after {
    opacity: 0;
  }
  .uk-thumbnav > .uk-active > *::after {
    opacity: 0;
  }
  .uk-thumbnav-vertical {
    flex-direction: column;
    margin-left: 0;
    margin-top: -15px;
  }
  .uk-thumbnav-vertical > * {
    padding-left: 0;
    padding-top: 15px;
  }
  .uk-iconnav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -10px;
  }
  .uk-iconnav > * {
    padding-left: 10px;
  }
  .uk-iconnav > * > a {
    display: flex;
    align-items: center;
    column-gap: 0.25em;
    line-height: 0;
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;
  }
  .uk-iconnav > * > a:hover {
    color: #666;
  }
  .uk-iconnav > .uk-active > a {
    color: #666;
  }
  .uk-iconnav-vertical {
    flex-direction: column;
    margin-left: 0;
    margin-top: -10px;
  }
  .uk-iconnav-vertical > * {
    padding-left: 0;
    padding-top: 10px;
  }
  .uk-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .uk-grid > * {
    margin: 0;
  }
  .uk-grid > * > :last-child {
    margin-bottom: 0;
  }
  .uk-grid {
    margin-left: -30px;
  }
  .uk-grid > * {
    padding-left: 30px;
  }
  .uk-grid + .uk-grid,
  .uk-grid > .uk-grid-margin,
  * + .uk-grid-margin {
    margin-top: 30px;
  }
  @media (min-width: 1200px) {
    .uk-grid {
      margin-left: -40px;
    }
    .uk-grid > * {
      padding-left: 40px;
    }
    .uk-grid + .uk-grid,
    .uk-grid > .uk-grid-margin,
    * + .uk-grid-margin {
      margin-top: 40px;
    }
  }
  .uk-grid-small,
  .uk-grid-column-small {
    margin-left: -15px;
  }
  .uk-grid-small > *,
  .uk-grid-column-small > * {
    padding-left: 15px;
  }
  .uk-grid + .uk-grid-small,
  .uk-grid + .uk-grid-row-small,
  .uk-grid-small > .uk-grid-margin,
  .uk-grid-row-small > .uk-grid-margin,
  * + .uk-grid-margin-small {
    margin-top: 15px;
  }
  .uk-grid-medium,
  .uk-grid-column-medium {
    margin-left: -30px;
  }
  .uk-grid-medium > *,
  .uk-grid-column-medium > * {
    padding-left: 30px;
  }
  .uk-grid + .uk-grid-medium,
  .uk-grid + .uk-grid-row-medium,
  .uk-grid-medium > .uk-grid-margin,
  .uk-grid-row-medium > .uk-grid-margin,
  * + .uk-grid-margin-medium {
    margin-top: 30px;
  }
  .uk-grid-large,
  .uk-grid-column-large {
    margin-left: -40px;
  }
  .uk-grid-large > *,
  .uk-grid-column-large > * {
    padding-left: 40px;
  }
  .uk-grid + .uk-grid-large,
  .uk-grid + .uk-grid-row-large,
  .uk-grid-large > .uk-grid-margin,
  .uk-grid-row-large > .uk-grid-margin,
  * + .uk-grid-margin-large {
    margin-top: 40px;
  }
  @media (min-width: 1200px) {
    .uk-grid-large,
    .uk-grid-column-large {
      margin-left: -70px;
    }
    .uk-grid-large > *,
    .uk-grid-column-large > * {
      padding-left: 70px;
    }
    .uk-grid + .uk-grid-large,
    .uk-grid + .uk-grid-row-large,
    .uk-grid-large > .uk-grid-margin,
    .uk-grid-row-large > .uk-grid-margin,
    * + .uk-grid-margin-large {
      margin-top: 70px;
    }
  }
  .uk-grid-collapse,
  .uk-grid-column-collapse {
    margin-left: 0;
  }
  .uk-grid-collapse > *,
  .uk-grid-column-collapse > * {
    padding-left: 0;
  }
  .uk-grid + .uk-grid-collapse,
  .uk-grid + .uk-grid-row-collapse,
  .uk-grid-collapse > .uk-grid-margin,
  .uk-grid-row-collapse > .uk-grid-margin {
    margin-top: 0;
  }
  .uk-grid-divider > * {
    position: relative;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    border-left: 1px solid #e5e5e5;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid #e5e5e5;
  }
  .uk-grid-divider {
    margin-left: -60px;
  }
  .uk-grid-divider > * {
    padding-left: 60px;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 30px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 60px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -30px;
    left: 60px;
  }
  @media (min-width: 1200px) {
    .uk-grid-divider {
      margin-left: -80px;
    }
    .uk-grid-divider > * {
      padding-left: 80px;
    }
    .uk-grid-divider > :not(.uk-first-column)::before {
      left: 40px;
    }
    .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
      margin-top: 80px;
    }
    .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
      top: -40px;
      left: 80px;
    }
  }
  .uk-grid-divider.uk-grid-small,
  .uk-grid-divider.uk-grid-column-small {
    margin-left: -30px;
  }
  .uk-grid-divider.uk-grid-small > *,
  .uk-grid-divider.uk-grid-column-small > * {
    padding-left: 30px;
  }
  .uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before,
  .uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
    left: 15px;
  }
  .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
  .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
    margin-top: 30px;
  }
  .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
    top: -15px;
    left: 30px;
  }
  .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
    top: -15px;
  }
  .uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
    left: 30px;
  }
  .uk-grid-divider.uk-grid-medium,
  .uk-grid-divider.uk-grid-column-medium {
    margin-left: -60px;
  }
  .uk-grid-divider.uk-grid-medium > *,
  .uk-grid-divider.uk-grid-column-medium > * {
    padding-left: 60px;
  }
  .uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before,
  .uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
    left: 30px;
  }
  .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
  .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
    margin-top: 60px;
  }
  .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
    top: -30px;
    left: 60px;
  }
  .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
    top: -30px;
  }
  .uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
    left: 60px;
  }
  .uk-grid-divider.uk-grid-large,
  .uk-grid-divider.uk-grid-column-large {
    margin-left: -80px;
  }
  .uk-grid-divider.uk-grid-large > *,
  .uk-grid-divider.uk-grid-column-large > * {
    padding-left: 80px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
  .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 40px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
  }
  .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 80px;
  }
  @media (min-width: 1200px) {
    .uk-grid-divider.uk-grid-large,
    .uk-grid-divider.uk-grid-column-large {
      margin-left: -140px;
    }
    .uk-grid-divider.uk-grid-large > *,
    .uk-grid-divider.uk-grid-column-large > * {
      padding-left: 140px;
    }
    .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
    .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
      left: 70px;
    }
    .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
    .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
      margin-top: 140px;
    }
    .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
      top: -70px;
      left: 140px;
    }
    .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
      top: -70px;
    }
    .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
      left: 140px;
    }
  }
  .uk-grid-match > *,
  .uk-grid-item-match {
    display: flex;
    flex-wrap: wrap;
  }
  .uk-grid-match > * > :not([class*="uk-width"]),
  .uk-grid-item-match > :not([class*="uk-width"]) {
    box-sizing: border-box;
    width: 100%;
    flex: auto;
  }
  .uk-nav,
  .uk-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .uk-nav li > a {
    display: flex;
    align-items: center;
    column-gap: 0.25em;
    text-decoration: none;
  }
  .uk-nav > li > a {
    padding: 5px 0;
  }
  ul.uk-nav-sub {
    padding: 5px 0 5px 15px;
  }
  .uk-nav-sub ul {
    padding-left: 15px;
  }
  .uk-nav-sub a {
    padding: 2px 0;
  }
  .uk-nav-parent-icon {
    margin-left: auto;
    transition: transform 0.3s ease-out;
  }
  .uk-nav > li.uk-open > a .uk-nav-parent-icon {
    transform: rotateX(180deg);
  }
  .uk-nav-header {
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 0.875rem;
  }
  .uk-nav-header:not(:first-child) {
    margin-top: 20px;
  }
  .uk-nav .uk-nav-divider {
    margin: 5px 0;
  }
  .uk-nav-default {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .uk-nav-default > li > a {
    color: #999;
  }
  .uk-nav-default > li > a:hover {
    color: #666;
  }
  .uk-nav-default > li.uk-active > a {
    color: #333;
  }
  .uk-nav-default .uk-nav-subtitle {
    font-size: 12px;
  }
  .uk-nav-default .uk-nav-header {
    color: #333;
  }
  .uk-nav-default .uk-nav-divider {
    border-top: 1px solid #e5e5e5;
  }
  .uk-nav-default .uk-nav-sub {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .uk-nav-default .uk-nav-sub a {
    color: #999;
  }
  .uk-nav-default .uk-nav-sub a:hover {
    color: #666;
  }
  .uk-nav-default .uk-nav-sub li.uk-active > a {
    color: #333;
  }
  .uk-nav-primary {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .uk-nav-primary > li > a {
    color: #999;
  }
  .uk-nav-primary > li > a:hover {
    color: #666;
  }
  .uk-nav-primary > li.uk-active > a {
    color: #333;
  }
  .uk-nav-primary .uk-nav-subtitle {
    font-size: 1.25rem;
  }
  .uk-nav-primary .uk-nav-header {
    color: #333;
  }
  .uk-nav-primary .uk-nav-divider {
    border-top: 1px solid #e5e5e5;
  }
  .uk-nav-primary .uk-nav-sub {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .uk-nav-primary .uk-nav-sub a {
    color: #999;
  }
  .uk-nav-primary .uk-nav-sub a:hover {
    color: #666;
  }
  .uk-nav-primary .uk-nav-sub li.uk-active > a {
    color: #333;
  }
  .uk-nav-secondary {
    font-size: 16px;
    line-height: 1.5;
  }
  .uk-nav-secondary > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
    margin-top: 0;
  }
  .uk-nav-secondary > li > a {
    color: #333;
    padding: 10px 10px;
  }
  .uk-nav-secondary > li > a:hover {
    color: #333;
    background-color: #f8f8f8;
  }
  .uk-nav-secondary > li.uk-active > a {
    color: #333;
    background-color: #f8f8f8;
  }
  .uk-nav-secondary .uk-nav-subtitle {
    font-size: 0.875rem;
    color: #999;
  }
  .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
    color: #666;
  }
  .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
    color: #333;
  }
  .uk-nav-secondary .uk-nav-header {
    color: #333;
  }
  .uk-nav-secondary .uk-nav-divider {
    border-top: 1px solid #e5e5e5;
  }
  .uk-nav-secondary .uk-nav-sub {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .uk-nav-secondary .uk-nav-sub a {
    color: #999;
  }
  .uk-nav-secondary .uk-nav-sub a:hover {
    color: #666;
  }
  .uk-nav-secondary .uk-nav-sub li.uk-active > a {
    color: #333;
  }
  .uk-nav-medium {
    font-size: 2.8875rem;
    line-height: 1;
  }
  .uk-nav-large {
    font-size: 3.4rem;
    line-height: 1;
  }
  .uk-nav-xlarge {
    font-size: 4rem;
    line-height: 1;
  }
  @media (min-width: 960px) {
    .uk-nav-medium {
      font-size: 3.5rem;
    }
    .uk-nav-large {
      font-size: 4rem;
    }
    .uk-nav-xlarge {
      font-size: 6rem;
    }
  }
  @media (min-width: 1200px) {
    .uk-nav-medium {
      font-size: 4rem;
    }
    .uk-nav-large {
      font-size: 6rem;
    }
    .uk-nav-xlarge {
      font-size: 8rem;
    }
  }
  .uk-nav-center {
    text-align: center;
  }
  .uk-nav-center li > a {
    justify-content: center;
  }
  .uk-nav-center .uk-nav-sub,
  .uk-nav-center .uk-nav-sub ul {
    padding-left: 0;
  }
  .uk-nav-center .uk-nav-parent-icon {
    margin-left: 0.25em;
  }
  .uk-nav.uk-nav-divider > :not(.uk-nav-header, .uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #e5e5e5;
  }
  .uk-navbar {
    display: flex;
    position: relative;
  }
  .uk-navbar-container:not(.uk-navbar-transparent) {
    background: #f8f8f8;
  }
  .uk-navbar-left,
  .uk-navbar-right,
  [class*="uk-navbar-center"] {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .uk-navbar-right {
    margin-left: auto;
  }
  .uk-navbar-center:only-child {
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .uk-navbar-center:not(:only-child) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    box-sizing: border-box;
    z-index: 990;
  }
  .uk-navbar-center-left,
  .uk-navbar-center-right {
    position: absolute;
    top: 0;
  }
  .uk-navbar-center-left {
    right: calc(100% + 15px);
  }
  .uk-navbar-center-right {
    left: calc(100% + 15px);
  }
  [class*="uk-navbar-center-"] {
    width: max-content;
    box-sizing: border-box;
  }
  .uk-navbar-nav {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .uk-navbar-left,
  .uk-navbar-right,
  .uk-navbar-center:only-child {
    flex-wrap: wrap;
  }
  .uk-navbar-nav > li > a,
  .uk-navbar-item,
  .uk-navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.25em;
    box-sizing: border-box;
    min-height: 80px;
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-decoration: none;
  }
  .uk-navbar-nav > li > a {
    padding: 0 0;
    color: #999;
    text-transform: uppercase;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;
  }
  .uk-navbar-nav > li:hover > a,
  .uk-navbar-nav > li > a[aria-expanded="true"] {
    color: #666;
  }
  .uk-navbar-nav > li > a:active {
    color: #333;
  }
  .uk-navbar-nav > li.uk-active > a {
    color: #333;
  }
  .uk-navbar-parent-icon {
    margin-left: 4px;
    transition: transform 0.3s ease-out;
  }
  .uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
    transform: rotateX(180deg);
  }
  .uk-navbar-item {
    padding: 0 0;
    color: #666;
  }
  .uk-navbar-item > :last-child {
    margin-bottom: 0;
  }
  .uk-navbar-toggle {
    padding: 0 0;
    color: #999;
  }
  .uk-navbar-toggle:hover,
  .uk-navbar-toggle[aria-expanded="true"] {
    color: #666;
    text-decoration: none;
  }
  .uk-navbar-subtitle {
    font-size: 0.875rem;
  }
  .uk-navbar-justify .uk-navbar-left,
  .uk-navbar-justify .uk-navbar-right,
  .uk-navbar-justify .uk-navbar-nav,
  .uk-navbar-justify .uk-navbar-nav > li,
  .uk-navbar-justify .uk-navbar-item,
  .uk-navbar-justify .uk-navbar-toggle {
    flex-grow: 1;
  }
  .uk-navbar-dropdown {
    --uk-position-offset: 15px;
    --uk-position-shift-offset: 0;
    --uk-position-viewport-offset: 15px;
    --uk-inverse: dark;
    width: 200px;
    padding: 25px;
    background: #fff;
    color: #666;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  }
  .uk-navbar-dropdown > :last-child {
    margin-bottom: 0;
  }
  .uk-navbar-dropdown :focus-visible {
    outline-color: #333 !important;
  }
  .uk-navbar-dropdown .uk-drop-grid {
    margin-left: -30px;
  }
  .uk-navbar-dropdown .uk-drop-grid > * {
    padding-left: 30px;
  }
  .uk-navbar-dropdown .uk-drop-grid > .uk-grid-margin {
    margin-top: 30px;
  }
  .uk-navbar-dropdown-width-2:not(.uk-drop-stack) {
    width: 400px;
  }
  .uk-navbar-dropdown-width-3:not(.uk-drop-stack) {
    width: 600px;
  }
  .uk-navbar-dropdown-width-4:not(.uk-drop-stack) {
    width: 800px;
  }
  .uk-navbar-dropdown-width-5:not(.uk-drop-stack) {
    width: 1000px;
  }
  .uk-navbar-dropdown-large {
    --uk-position-shift-offset: 0;
    padding: 40px;
  }
  .uk-navbar-dropdown-dropbar {
    width: auto;
    background: transparent;
    padding: 25px 0 25px 0;
    --uk-position-offset: 0;
    --uk-position-shift-offset: 0;
    --uk-position-viewport-offset: 15px;
    box-shadow: none;
  }
  @media (min-width: 640px) {
    .uk-navbar-dropdown-dropbar {
      --uk-position-viewport-offset: 30px;
    }
  }
  @media (min-width: 960px) {
    .uk-navbar-dropdown-dropbar {
      --uk-position-viewport-offset: 40px;
    }
  }
  .uk-navbar-dropdown-dropbar-large {
    --uk-position-shift-offset: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .uk-navbar-dropdown-nav {
    font-size: 0.875rem;
  }
  .uk-navbar-dropdown-nav > li > a {
    color: #999;
  }
  .uk-navbar-dropdown-nav > li > a:hover {
    color: #666;
  }
  .uk-navbar-dropdown-nav > li.uk-active > a {
    color: #333;
  }
  .uk-navbar-dropdown-nav .uk-nav-subtitle {
    font-size: 12px;
  }
  .uk-navbar-dropdown-nav .uk-nav-header {
    color: #333;
  }
  .uk-navbar-dropdown-nav .uk-nav-divider {
    border-top: 1px solid #e5e5e5;
  }
  .uk-navbar-dropdown-nav .uk-nav-sub a {
    color: #999;
  }
  .uk-navbar-dropdown-nav .uk-nav-sub a:hover {
    color: #666;
  }
  .uk-navbar-dropdown-nav .uk-nav-sub li.uk-active > a {
    color: #333;
  }
  .uk-navbar-container {
    transition: 0.1s ease-in-out;
    transition-property: background-color;
  }
  @media (min-width: 960px) {
    .uk-navbar-left,
    .uk-navbar-right,
    [class*="uk-navbar-center"] {
      gap: 30px;
    }
    .uk-navbar-center-left {
      right: calc(100% + 30px);
    }
    .uk-navbar-center-right {
      left: calc(100% + 30px);
    }
  }
  @media (min-width: 960px) {
    .uk-navbar-nav {
      gap: 30px;
    }
  }
  .uk-subnav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -20px;
    padding: 0;
    list-style: none;
  }
  .uk-subnav > * {
    flex: none;
    padding-left: 20px;
    position: relative;
  }
  .uk-subnav > * > :first-child {
    display: flex;
    align-items: center;
    column-gap: 0.25em;
    color: #999;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;
  }
  .uk-subnav > * > a:hover {
    color: #666;
    text-decoration: none;
  }
  .uk-subnav > .uk-active > a {
    color: #333;
  }
  .uk-subnav-divider {
    margin-left: -41px;
  }
  .uk-subnav-divider > * {
    display: flex;
    align-items: center;
  }
  .uk-subnav-divider > ::before {
    content: "";
    height: 1.5em;
    margin-left: 0px;
    margin-right: 20px;
    border-left: 1px solid transparent;
  }
  .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
    border-left-color: #e5e5e5;
  }
  .uk-subnav-pill > * > :first-child {
    padding: 5px 10px;
    background: transparent;
    color: #999;
  }
  .uk-subnav-pill > * > a:hover {
    background-color: #f8f8f8;
    color: #666;
  }
  .uk-subnav-pill > * > a:active {
    background-color: #f8f8f8;
    color: #666;
  }
  .uk-subnav-pill > .uk-active > a {
    background-color: #1e87f0;
    color: #fff;
  }
  .uk-subnav > .uk-disabled > a {
    color: #999;
  }
  .uk-breadcrumb {
    padding: 0;
    list-style: none;
  }
  .uk-breadcrumb > * {
    display: contents;
  }
  .uk-breadcrumb > * > * {
    font-size: 0.875rem;
    color: #999;
  }
  .uk-breadcrumb > * > :hover {
    color: #666;
    text-decoration: none;
  }
  .uk-breadcrumb > :last-child > span,
  .uk-breadcrumb > :last-child > a:not([href]) {
    color: #666;
  }
  .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    content: "/";
    display: inline-block;
    margin: 0 20px 0 calc(20px - 4px);
    font-size: 0.875rem;
    color: #999;
  }
  .uk-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 0;
    padding: 0;
    list-style: none;
  }
  .uk-pagination > * {
    flex: none;
    padding-left: 0;
    position: relative;
  }
  .uk-pagination > * > * {
    display: flex;
    align-items: center;
    column-gap: 0.25em;
    padding: 5px 10px;
    color: #999;
    transition: color 0.1s ease-in-out;
  }
  .uk-pagination > * > :hover {
    color: #666;
    text-decoration: none;
  }
  .uk-pagination > .uk-active > * {
    color: #666;
  }
  .uk-pagination > .uk-disabled > * {
    color: #999;
  }
  .uk-tab {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    padding: 0;
    list-style: none;
    position: relative;
  }
  .uk-tab::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 0;
    border-bottom: 1px solid #e5e5e5;
  }
  .uk-tab > * {
    flex: none;
    padding-left: 20px;
    position: relative;
  }
  .uk-tab > * > a {
    display: flex;
    align-items: center;
    column-gap: 0.25em;
    justify-content: center;
    padding: 5px 10px;
    color: #999;
    border-bottom: 1px solid transparent;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: color 0.1s ease-in-out;
  }
  .uk-tab > * > a:hover {
    color: #666;
    text-decoration: none;
  }
  .uk-tab > .uk-active > a {
    color: #333;
    border-color: #1e87f0;
  }
  .uk-tab > .uk-disabled > a {
    color: #999;
  }
  .uk-tab-bottom::before {
    top: 0;
    bottom: auto;
  }
  .uk-tab-bottom > * > a {
    border-top: 1px solid transparent;
    border-bottom: none;
  }
  .uk-tab-left,
  .uk-tab-right {
    flex-direction: column;
    margin-left: 0;
  }
  .uk-tab-left > *,
  .uk-tab-right > * {
    padding-left: 0;
  }
  .uk-tab-left::before {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    border-left: 1px solid #e5e5e5;
    border-bottom: none;
  }
  .uk-tab-right::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    border-left: 1px solid #e5e5e5;
    border-bottom: none;
  }
  .uk-tab-left > * > a {
    justify-content: left;
    border-right: 1px solid transparent;
    border-bottom: none;
  }
  .uk-tab-right > * > a {
    justify-content: left;
    border-left: 1px solid transparent;
    border-bottom: none;
  }
  .uk-tab .uk-dropdown {
    margin-left: 30px;
  }
  .uk-slidenav {
    padding: 5px 10px;
    color: rgba(102, 102, 102, 0.5);
    transition: color 0.1s ease-in-out;
  }
  .uk-slidenav:hover {
    color: rgba(102, 102, 102, 0.9);
  }
  .uk-slidenav:active {
    color: rgba(102, 102, 102, 0.5);
  }
  .uk-slidenav-large {
    padding: 10px 10px;
  }
  .uk-slidenav-container {
    display: flex;
  }
  .uk-dotnav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -12px;
  }
  .uk-dotnav > * {
    flex: none;
    padding-left: 12px;
  }
  .uk-dotnav > * > * {
    display: block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid rgba(102, 102, 102, 0.4);
    transition: 0.2s ease-in-out;
    transition-property: background-color, border-color;
  }
  .uk-dotnav > * > :hover {
    background-color: rgba(102, 102, 102, 0.6);
    border-color: transparent;
  }
  .uk-dotnav > * > :active {
    background-color: rgba(102, 102, 102, 0.2);
    border-color: transparent;
  }
  .uk-dotnav > .uk-active > * {
    background-color: rgba(102, 102, 102, 0.6);
    border-color: transparent;
  }
  .uk-dotnav-vertical {
    flex-direction: column;
    margin-left: 0;
    margin-top: -12px;
  }
  .uk-dotnav-vertical > * {
    padding-left: 0;
    padding-top: 12px;
  }
  .uk-dropdown {
    --uk-position-offset: 10px;
    --uk-position-viewport-offset: 15px;
    --uk-inverse: dark;
    width: auto;
    min-width: 200px;
    padding: 25px;
    background: #fff;
    color: #666;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  }
  .uk-dropdown > :last-child {
    margin-bottom: 0;
  }
  .uk-dropdown :focus-visible {
    outline-color: #333 !important;
  }
  .uk-dropdown-large {
    padding: 40px;
  }
  .uk-dropdown-dropbar {
    width: auto;
    background: transparent;
    padding: 5px 0 25px 0;
    --uk-position-viewport-offset: 15px;
    box-shadow: none;
  }
  @media (min-width: 640px) {
    .uk-dropdown-dropbar {
      --uk-position-viewport-offset: 30px;
    }
  }
  @media (min-width: 960px) {
    .uk-dropdown-dropbar {
      --uk-position-viewport-offset: 40px;
    }
  }
  .uk-dropdown-dropbar-large {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .uk-dropdown-nav {
    font-size: 0.875rem;
  }
  .uk-dropdown-nav > li > a {
    color: #999;
  }
  .uk-dropdown-nav > li > a:hover,
  .uk-dropdown-nav > li.uk-active > a {
    color: #666;
  }
  .uk-dropdown-nav .uk-nav-subtitle {
    font-size: 12px;
  }
  .uk-dropdown-nav .uk-nav-header {
    color: #333;
  }
  .uk-dropdown-nav .uk-nav-divider {
    border-top: 1px solid #e5e5e5;
  }
  .uk-dropdown-nav .uk-nav-sub a {
    color: #999;
  }
  .uk-dropdown-nav .uk-nav-sub a:hover,
  .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
    color: #666;
  }
  .uk-lightbox {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1010;
    background: #000;
    opacity: 0;
    transition: opacity 0.15s linear;
    touch-action: pinch-zoom;
  }
  .uk-lightbox.uk-open {
    display: block;
    opacity: 1;
  }
  .uk-lightbox :focus-visible {
    outline-color: rgba(255, 255, 255, 0.7);
  }
  .uk-lightbox-page {
    overflow: hidden;
  }
  .uk-lightbox-items > * {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    will-change: transform, opacity;
  }
  .uk-lightbox-items > * > * {
    max-width: 100vw;
    max-height: 100vh;
  }
  .uk-lightbox-items > * > :not(iframe) {
    width: auto;
    height: auto;
  }
  .uk-lightbox-items > .uk-active {
    display: flex;
  }
  .uk-lightbox-toolbar {
    padding: 10px 10px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-lightbox-toolbar > * {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-lightbox-toolbar-icon {
    padding: 5px;
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-lightbox-toolbar-icon:hover {
    color: #fff;
  }
  .uk-lightbox-button {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .uk-lightbox-button:hover {
    color: #fff;
  }
  .uk-lightbox-caption:empty {
    display: none;
  }
  .uk-lightbox-iframe {
    width: 80%;
    height: 80%;
  }
  [class*="uk-animation-"] {
    animation: 0.5s ease-out both;
  }
  .uk-animation-fade {
    animation-name: uk-fade;
    animation-duration: 0.8s;
    animation-timing-function: linear;
  }
  .uk-animation-scale-up {
    animation-name: uk-fade, uk-scale-up;
  }
  .uk-animation-scale-down {
    animation-name: uk-fade, uk-scale-down;
  }
  .uk-animation-slide-top {
    animation-name: uk-fade, uk-slide-top;
  }
  .uk-animation-slide-bottom {
    animation-name: uk-fade, uk-slide-bottom;
  }
  .uk-animation-slide-left {
    animation-name: uk-fade, uk-slide-left;
  }
  .uk-animation-slide-right {
    animation-name: uk-fade, uk-slide-right;
  }
  .uk-animation-slide-top-small {
    animation-name: uk-fade, uk-slide-top-small;
  }
  .uk-animation-slide-bottom-small {
    animation-name: uk-fade, uk-slide-bottom-small;
  }
  .uk-animation-slide-left-small {
    animation-name: uk-fade, uk-slide-left-small;
  }
  .uk-animation-slide-right-small {
    animation-name: uk-fade, uk-slide-right-small;
  }
  .uk-animation-slide-top-medium {
    animation-name: uk-fade, uk-slide-top-medium;
  }
  .uk-animation-slide-bottom-medium {
    animation-name: uk-fade, uk-slide-bottom-medium;
  }
  .uk-animation-slide-left-medium {
    animation-name: uk-fade, uk-slide-left-medium;
  }
  .uk-animation-slide-right-medium {
    animation-name: uk-fade, uk-slide-right-medium;
  }
  .uk-animation-kenburns {
    animation-name: uk-kenburns;
    animation-duration: 15s;
  }
  .uk-animation-shake {
    animation-name: uk-shake;
  }
  .uk-animation-stroke {
    animation-name: uk-stroke;
    animation-duration: 2s;
    stroke-dasharray: var(--uk-animation-stroke);
  }
  .uk-animation-reverse {
    animation-direction: reverse;
    animation-timing-function: ease-in;
  }
  .uk-animation-fast {
    animation-duration: 0.1s;
  }
  .uk-animation-toggle:not(:hover):not(:focus) [class*="uk-animation-"] {
    animation-name: none;
  }
  @keyframes uk-fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes uk-scale-up {
    0% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes uk-scale-down {
    0% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes uk-slide-top {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes uk-slide-bottom {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes uk-slide-left {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes uk-slide-right {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes uk-slide-top-small {
    0% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes uk-slide-bottom-small {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes uk-slide-left-small {
    0% {
      transform: translateX(-10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes uk-slide-right-small {
    0% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes uk-slide-top-medium {
    0% {
      transform: translateY(-50px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes uk-slide-bottom-medium {
    0% {
      transform: translateY(50px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes uk-slide-left-medium {
    0% {
      transform: translateX(-50px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes uk-slide-right-medium {
    0% {
      transform: translateX(50px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes uk-kenburns {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
  }
  @keyframes uk-shake {
    0%,
    100% {
      transform: translateX(0);
    }
    10% {
      transform: translateX(-9px);
    }
    20% {
      transform: translateX(8px);
    }
    30% {
      transform: translateX(-7px);
    }
    40% {
      transform: translateX(6px);
    }
    50% {
      transform: translateX(-5px);
    }
    60% {
      transform: translateX(4px);
    }
    70% {
      transform: translateX(-3px);
    }
    80% {
      transform: translateX(2px);
    }
    90% {
      transform: translateX(-1px);
    }
  }
  @keyframes uk-stroke {
    0% {
      stroke-dashoffset: var(--uk-animation-stroke);
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  [class*="uk-child-width"] > * {
    box-sizing: border-box;
    width: 100%;
  }
  .uk-child-width-1-2 > * {
    width: 50%;
  }
  .uk-child-width-1-3 > * {
    width: calc(100% / 3);
  }
  .uk-child-width-1-4 > * {
    width: 25%;
  }
  .uk-child-width-1-5 > * {
    width: 20%;
  }
  .uk-child-width-1-6 > * {
    width: calc(100% / 6);
  }
  .uk-child-width-auto > * {
    width: auto;
  }
  .uk-child-width-expand > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
  @media (min-width: 640px) {
    .uk-child-width-1-1\@s > * {
      width: 100%;
    }
    .uk-child-width-1-2\@s > * {
      width: 50%;
    }
    .uk-child-width-1-3\@s > * {
      width: calc(100% / 3);
    }
    .uk-child-width-1-4\@s > * {
      width: 25%;
    }
    .uk-child-width-1-5\@s > * {
      width: 20%;
    }
    .uk-child-width-1-6\@s > * {
      width: calc(100% / 6);
    }
    .uk-child-width-auto\@s > * {
      width: auto;
    }
    .uk-child-width-expand\@s > :not([class*="uk-width"]) {
      flex: 1;
      min-width: 1px;
    }
    .uk-child-width-1-1\@s > :not([class*="uk-width"]),
    .uk-child-width-1-2\@s > :not([class*="uk-width"]),
    .uk-child-width-1-3\@s > :not([class*="uk-width"]),
    .uk-child-width-1-4\@s > :not([class*="uk-width"]),
    .uk-child-width-1-5\@s > :not([class*="uk-width"]),
    .uk-child-width-1-6\@s > :not([class*="uk-width"]),
    .uk-child-width-auto\@s > :not([class*="uk-width"]) {
      flex: initial;
    }
  }
  @media (min-width: 960px) {
    .uk-child-width-1-1\@m > * {
      width: 100%;
    }
    .uk-child-width-1-2\@m > * {
      width: 50%;
    }
    .uk-child-width-1-3\@m > * {
      width: calc(100% / 3);
    }
    .uk-child-width-1-4\@m > * {
      width: 25%;
    }
    .uk-child-width-1-5\@m > * {
      width: 20%;
    }
    .uk-child-width-1-6\@m > * {
      width: calc(100% / 6);
    }
    .uk-child-width-auto\@m > * {
      width: auto;
    }
    .uk-child-width-expand\@m > :not([class*="uk-width"]) {
      flex: 1;
      min-width: 1px;
    }
    .uk-child-width-1-1\@m > :not([class*="uk-width"]),
    .uk-child-width-1-2\@m > :not([class*="uk-width"]),
    .uk-child-width-1-3\@m > :not([class*="uk-width"]),
    .uk-child-width-1-4\@m > :not([class*="uk-width"]),
    .uk-child-width-1-5\@m > :not([class*="uk-width"]),
    .uk-child-width-1-6\@m > :not([class*="uk-width"]),
    .uk-child-width-auto\@m > :not([class*="uk-width"]) {
      flex: initial;
    }
  }
  @media (min-width: 1200px) {
    .uk-child-width-1-1\@l > * {
      width: 100%;
    }
    .uk-child-width-1-2\@l > * {
      width: 50%;
    }
    .uk-child-width-1-3\@l > * {
      width: calc(100% / 3);
    }
    .uk-child-width-1-4\@l > * {
      width: 25%;
    }
    .uk-child-width-1-5\@l > * {
      width: 20%;
    }
    .uk-child-width-1-6\@l > * {
      width: calc(100% / 6);
    }
    .uk-child-width-auto\@l > * {
      width: auto;
    }
    .uk-child-width-expand\@l > :not([class*="uk-width"]) {
      flex: 1;
      min-width: 1px;
    }
    .uk-child-width-1-1\@l > :not([class*="uk-width"]),
    .uk-child-width-1-2\@l > :not([class*="uk-width"]),
    .uk-child-width-1-3\@l > :not([class*="uk-width"]),
    .uk-child-width-1-4\@l > :not([class*="uk-width"]),
    .uk-child-width-1-5\@l > :not([class*="uk-width"]),
    .uk-child-width-1-6\@l > :not([class*="uk-width"]),
    .uk-child-width-auto\@l > :not([class*="uk-width"]) {
      flex: initial;
    }
  }
  @media (min-width: 1600px) {
    .uk-child-width-1-1\@xl > * {
      width: 100%;
    }
    .uk-child-width-1-2\@xl > * {
      width: 50%;
    }
    .uk-child-width-1-3\@xl > * {
      width: calc(100% / 3);
    }
    .uk-child-width-1-4\@xl > * {
      width: 25%;
    }
    .uk-child-width-1-5\@xl > * {
      width: 20%;
    }
    .uk-child-width-1-6\@xl > * {
      width: calc(100% / 6);
    }
    .uk-child-width-auto\@xl > * {
      width: auto;
    }
    .uk-child-width-expand\@xl > :not([class*="uk-width"]) {
      flex: 1;
      min-width: 1px;
    }
    .uk-child-width-1-1\@xl > :not([class*="uk-width"]),
    .uk-child-width-1-2\@xl > :not([class*="uk-width"]),
    .uk-child-width-1-3\@xl > :not([class*="uk-width"]),
    .uk-child-width-1-4\@xl > :not([class*="uk-width"]),
    .uk-child-width-1-5\@xl > :not([class*="uk-width"]),
    .uk-child-width-1-6\@xl > :not([class*="uk-width"]),
    .uk-child-width-auto\@xl > :not([class*="uk-width"]) {
      flex: initial;
    }
  }
  [class*="uk-width"] {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  .uk-width-1-2 {
    width: 50%;
  }
  .uk-width-1-3 {
    width: calc(100% / 3);
  }
  .uk-width-2-3 {
    width: calc(200% / 3);
  }
  .uk-width-1-4 {
    width: 25%;
  }
  .uk-width-3-4 {
    width: 75%;
  }
  .uk-width-1-5 {
    width: 20%;
  }
  .uk-width-2-5 {
    width: 40%;
  }
  .uk-width-3-5 {
    width: 60%;
  }
  .uk-width-4-5 {
    width: 80%;
  }
  .uk-width-1-6 {
    width: calc(100% / 6);
  }
  .uk-width-5-6 {
    width: calc(500% / 6);
  }
  .uk-width-small {
    width: 150px;
  }
  .uk-width-medium {
    width: 300px;
  }
  .uk-width-large {
    width: 450px;
  }
  .uk-width-xlarge {
    width: 600px;
  }
  .uk-width-2xlarge {
    width: 750px;
  }
  .uk-width-auto {
    width: auto;
  }
  .uk-width-expand {
    flex: 1;
    min-width: 1px;
  }
  @media (min-width: 640px) {
    .uk-width-1-1\@s {
      width: 100%;
    }
    .uk-width-1-2\@s {
      width: 50%;
    }
    .uk-width-1-3\@s {
      width: calc(100% / 3);
    }
    .uk-width-2-3\@s {
      width: calc(200% / 3);
    }
    .uk-width-1-4\@s {
      width: 25%;
    }
    .uk-width-3-4\@s {
      width: 75%;
    }
    .uk-width-1-5\@s {
      width: 20%;
    }
    .uk-width-2-5\@s {
      width: 40%;
    }
    .uk-width-3-5\@s {
      width: 60%;
    }
    .uk-width-4-5\@s {
      width: 80%;
    }
    .uk-width-1-6\@s {
      width: calc(100% / 6);
    }
    .uk-width-5-6\@s {
      width: calc(500% / 6);
    }
    .uk-width-small\@s {
      width: 150px;
    }
    .uk-width-medium\@s {
      width: 300px;
    }
    .uk-width-large\@s {
      width: 450px;
    }
    .uk-width-xlarge\@s {
      width: 600px;
    }
    .uk-width-2xlarge\@s {
      width: 750px;
    }
    .uk-width-auto\@s {
      width: auto;
    }
    .uk-width-expand\@s {
      flex: 1;
      min-width: 1px;
    }
    .uk-width-1-1\@s,
    .uk-width-1-2\@s,
    .uk-width-1-3\@s,
    .uk-width-2-3\@s,
    .uk-width-1-4\@s,
    .uk-width-3-4\@s,
    .uk-width-1-5\@s,
    .uk-width-2-5\@s,
    .uk-width-3-5\@s,
    .uk-width-4-5\@s,
    .uk-width-1-6\@s,
    .uk-width-5-6\@s,
    .uk-width-small\@s,
    .uk-width-medium\@s,
    .uk-width-large\@s,
    .uk-width-xlarge\@s,
    .uk-width-2xlarge\@s,
    .uk-width-auto\@s {
      flex: initial;
    }
  }
  @media (min-width: 960px) {
    .uk-width-1-1\@m {
      width: 100%;
    }
    .uk-width-1-2\@m {
      width: 50%;
    }
    .uk-width-1-3\@m {
      width: calc(100% / 3);
    }
    .uk-width-2-3\@m {
      width: calc(200% / 3);
    }
    .uk-width-1-4\@m {
      width: 25%;
    }
    .uk-width-3-4\@m {
      width: 75%;
    }
    .uk-width-1-5\@m {
      width: 20%;
    }
    .uk-width-2-5\@m {
      width: 40%;
    }
    .uk-width-3-5\@m {
      width: 60%;
    }
    .uk-width-4-5\@m {
      width: 80%;
    }
    .uk-width-1-6\@m {
      width: calc(100% / 6);
    }
    .uk-width-5-6\@m {
      width: calc(500% / 6);
    }
    .uk-width-small\@m {
      width: 150px;
    }
    .uk-width-medium\@m {
      width: 300px;
    }
    .uk-width-large\@m {
      width: 450px;
    }
    .uk-width-xlarge\@m {
      width: 600px;
    }
    .uk-width-2xlarge\@m {
      width: 750px;
    }
    .uk-width-auto\@m {
      width: auto;
    }
    .uk-width-expand\@m {
      flex: 1;
      min-width: 1px;
    }
    .uk-width-1-1\@m,
    .uk-width-1-2\@m,
    .uk-width-1-3\@m,
    .uk-width-2-3\@m,
    .uk-width-1-4\@m,
    .uk-width-3-4\@m,
    .uk-width-1-5\@m,
    .uk-width-2-5\@m,
    .uk-width-3-5\@m,
    .uk-width-4-5\@m,
    .uk-width-1-6\@m,
    .uk-width-5-6\@m,
    .uk-width-small\@m,
    .uk-width-medium\@m,
    .uk-width-large\@m,
    .uk-width-xlarge\@m,
    .uk-width-2xlarge\@m,
    .uk-width-auto\@m {
      flex: initial;
    }
  }
  @media (min-width: 1200px) {
    .uk-width-1-1\@l {
      width: 100%;
    }
    .uk-width-1-2\@l {
      width: 50%;
    }
    .uk-width-1-3\@l {
      width: calc(100% / 3);
    }
    .uk-width-2-3\@l {
      width: calc(200% / 3);
    }
    .uk-width-1-4\@l {
      width: 25%;
    }
    .uk-width-3-4\@l {
      width: 75%;
    }
    .uk-width-1-5\@l {
      width: 20%;
    }
    .uk-width-2-5\@l {
      width: 40%;
    }
    .uk-width-3-5\@l {
      width: 60%;
    }
    .uk-width-4-5\@l {
      width: 80%;
    }
    .uk-width-1-6\@l {
      width: calc(100% / 6);
    }
    .uk-width-5-6\@l {
      width: calc(500% / 6);
    }
    .uk-width-small\@l {
      width: 150px;
    }
    .uk-width-medium\@l {
      width: 300px;
    }
    .uk-width-large\@l {
      width: 450px;
    }
    .uk-width-xlarge\@l {
      width: 600px;
    }
    .uk-width-2xlarge\@l {
      width: 750px;
    }
    .uk-width-auto\@l {
      width: auto;
    }
    .uk-width-expand\@l {
      flex: 1;
      min-width: 1px;
    }
    .uk-width-1-1\@l,
    .uk-width-1-2\@l,
    .uk-width-1-3\@l,
    .uk-width-2-3\@l,
    .uk-width-1-4\@l,
    .uk-width-3-4\@l,
    .uk-width-1-5\@l,
    .uk-width-2-5\@l,
    .uk-width-3-5\@l,
    .uk-width-4-5\@l,
    .uk-width-1-6\@l,
    .uk-width-5-6\@l,
    .uk-width-small\@l,
    .uk-width-medium\@l,
    .uk-width-large\@l,
    .uk-width-xlarge\@l,
    .uk-width-2xlarge\@l,
    .uk-width-auto\@l {
      flex: initial;
    }
  }
  @media (min-width: 1600px) {
    .uk-width-1-1\@xl {
      width: 100%;
    }
    .uk-width-1-2\@xl {
      width: 50%;
    }
    .uk-width-1-3\@xl {
      width: calc(100% / 3);
    }
    .uk-width-2-3\@xl {
      width: calc(200% / 3);
    }
    .uk-width-1-4\@xl {
      width: 25%;
    }
    .uk-width-3-4\@xl {
      width: 75%;
    }
    .uk-width-1-5\@xl {
      width: 20%;
    }
    .uk-width-2-5\@xl {
      width: 40%;
    }
    .uk-width-3-5\@xl {
      width: 60%;
    }
    .uk-width-4-5\@xl {
      width: 80%;
    }
    .uk-width-1-6\@xl {
      width: calc(100% / 6);
    }
    .uk-width-5-6\@xl {
      width: calc(500% / 6);
    }
    .uk-width-small\@xl {
      width: 150px;
    }
    .uk-width-medium\@xl {
      width: 300px;
    }
    .uk-width-large\@xl {
      width: 450px;
    }
    .uk-width-xlarge\@xl {
      width: 600px;
    }
    .uk-width-2xlarge\@xl {
      width: 750px;
    }
    .uk-width-auto\@xl {
      width: auto;
    }
    .uk-width-expand\@xl {
      flex: 1;
      min-width: 1px;
    }
    .uk-width-1-1\@xl,
    .uk-width-1-2\@xl,
    .uk-width-1-3\@xl,
    .uk-width-2-3\@xl,
    .uk-width-1-4\@xl,
    .uk-width-3-4\@xl,
    .uk-width-1-5\@xl,
    .uk-width-2-5\@xl,
    .uk-width-3-5\@xl,
    .uk-width-4-5\@xl,
    .uk-width-1-6\@xl,
    .uk-width-5-6\@xl,
    .uk-width-small\@xl,
    .uk-width-medium\@xl,
    .uk-width-large\@xl,
    .uk-width-xlarge\@xl,
    .uk-width-2xlarge\@xl,
    .uk-width-auto\@xl {
      flex: initial;
    }
  }
  .uk-width-max-content {
    width: max-content;
  }
  .uk-width-min-content {
    width: min-content;
  }
  [class*="uk-height"] {
    box-sizing: border-box;
  }
  .uk-height-1-1 {
    height: 100%;
  }
  .uk-height-viewport {
    min-height: 100vh;
  }
  .uk-height-viewport-2 {
    min-height: 200vh;
  }
  .uk-height-viewport-3 {
    min-height: 300vh;
  }
  .uk-height-viewport-4 {
    min-height: 400vh;
  }
  .uk-height-small {
    height: 150px;
  }
  .uk-height-medium {
    height: 300px;
  }
  .uk-height-large {
    height: 450px;
  }
  .uk-height-max-small {
    max-height: 150px;
  }
  .uk-height-max-medium {
    max-height: 300px;
  }
  .uk-height-max-large {
    max-height: 450px;
  }
  .uk-text-lead {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #333;
  }
  .uk-text-meta {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #999;
  }
  .uk-text-meta > a {
    color: #999;
  }
  .uk-text-meta > a:hover {
    color: #666;
    text-decoration: none;
  }
  .uk-text-small {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .uk-text-large {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .uk-text-default {
    font-size: 16px;
    line-height: 1.5;
  }
  .uk-text-light {
    font-weight: 300;
  }
  .uk-text-normal {
    font-weight: 400;
  }
  .uk-text-bold {
    font-weight: 700;
  }
  .uk-text-lighter {
    font-weight: lighter;
  }
  .uk-text-bolder {
    font-weight: bolder;
  }
  .uk-text-italic {
    font-style: italic;
  }
  .uk-text-capitalize {
    text-transform: capitalize !important;
  }
  .uk-text-uppercase {
    text-transform: uppercase !important;
  }
  .uk-text-lowercase {
    text-transform: lowercase !important;
  }
  .uk-text-decoration-none {
    text-decoration: none !important;
  }
  .uk-text-muted {
    color: #999 !important;
  }
  .uk-text-emphasis {
    color: #333 !important;
  }
  .uk-text-primary {
    color: #1e87f0 !important;
  }
  .uk-text-secondary {
    color: #222 !important;
  }
  .uk-text-success {
    color: #32d296 !important;
  }
  .uk-text-warning {
    color: #faa05a !important;
  }
  .uk-text-danger {
    color: #f0506e !important;
  }
  .uk-text-background {
    -webkit-background-clip: text;
    color: transparent !important;
    display: inline-block;
    background-color: #1e87f0;
    background-image: linear-gradient(90deg, #1e87f0 0%, #411ef0 100%);
  }
  .uk-text-left {
    text-align: left !important;
  }
  .uk-text-right {
    text-align: right !important;
  }
  .uk-text-center {
    text-align: center !important;
  }
  .uk-text-justify {
    text-align: justify !important;
  }
  @media (min-width: 640px) {
    .uk-text-left\@s {
      text-align: left !important;
    }
    .uk-text-right\@s {
      text-align: right !important;
    }
    .uk-text-center\@s {
      text-align: center !important;
    }
  }
  @media (min-width: 960px) {
    .uk-text-left\@m {
      text-align: left !important;
    }
    .uk-text-right\@m {
      text-align: right !important;
    }
    .uk-text-center\@m {
      text-align: center !important;
    }
  }
  @media (min-width: 1200px) {
    .uk-text-left\@l {
      text-align: left !important;
    }
    .uk-text-right\@l {
      text-align: right !important;
    }
    .uk-text-center\@l {
      text-align: center !important;
    }
  }
  @media (min-width: 1600px) {
    .uk-text-left\@xl {
      text-align: left !important;
    }
    .uk-text-right\@xl {
      text-align: right !important;
    }
    .uk-text-center\@xl {
      text-align: center !important;
    }
  }
  .uk-text-top {
    vertical-align: top !important;
  }
  .uk-text-middle {
    vertical-align: middle !important;
  }
  .uk-text-bottom {
    vertical-align: bottom !important;
  }
  .uk-text-baseline {
    vertical-align: baseline !important;
  }
  .uk-text-nowrap {
    white-space: nowrap;
  }
  .uk-text-truncate {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  th.uk-text-truncate,
  td.uk-text-truncate {
    max-width: 0;
  }
  .uk-text-break {
    overflow-wrap: break-word;
  }
  th.uk-text-break,
  td.uk-text-break {
    word-break: break-word;
  }
  [class*="uk-column-"] {
    column-gap: 30px;
  }
  @media (min-width: 1200px) {
    [class*="uk-column-"] {
      column-gap: 40px;
    }
  }
  [class*="uk-column-"] img {
    transform: translate3d(0, 0, 0);
  }
  .uk-column-divider {
    column-rule: 1px solid #e5e5e5;
    column-gap: 60px;
  }
  @media (min-width: 1200px) {
    .uk-column-divider {
      column-gap: 80px;
    }
  }
  .uk-column-1-2 {
    column-count: 2;
  }
  .uk-column-1-3 {
    column-count: 3;
  }
  .uk-column-1-4 {
    column-count: 4;
  }
  .uk-column-1-5 {
    column-count: 5;
  }
  .uk-column-1-6 {
    column-count: 6;
  }
  @media (min-width: 640px) {
    .uk-column-1-2\@s {
      column-count: 2;
    }
    .uk-column-1-3\@s {
      column-count: 3;
    }
    .uk-column-1-4\@s {
      column-count: 4;
    }
    .uk-column-1-5\@s {
      column-count: 5;
    }
    .uk-column-1-6\@s {
      column-count: 6;
    }
  }
  @media (min-width: 960px) {
    .uk-column-1-2\@m {
      column-count: 2;
    }
    .uk-column-1-3\@m {
      column-count: 3;
    }
    .uk-column-1-4\@m {
      column-count: 4;
    }
    .uk-column-1-5\@m {
      column-count: 5;
    }
    .uk-column-1-6\@m {
      column-count: 6;
    }
  }
  @media (min-width: 1200px) {
    .uk-column-1-2\@l {
      column-count: 2;
    }
    .uk-column-1-3\@l {
      column-count: 3;
    }
    .uk-column-1-4\@l {
      column-count: 4;
    }
    .uk-column-1-5\@l {
      column-count: 5;
    }
    .uk-column-1-6\@l {
      column-count: 6;
    }
  }
  @media (min-width: 1600px) {
    .uk-column-1-2\@xl {
      column-count: 2;
    }
    .uk-column-1-3\@xl {
      column-count: 3;
    }
    .uk-column-1-4\@xl {
      column-count: 4;
    }
    .uk-column-1-5\@xl {
      column-count: 5;
    }
    .uk-column-1-6\@xl {
      column-count: 6;
    }
  }
  .uk-column-span {
    column-span: all;
  }
  [uk-cover]:where(canvas, iframe, svg),
  [data-uk-cover]:where(canvas, iframe, svg) {
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    --uk-position-translate-x: -50%;
    --uk-position-translate-y: -50%;
    transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
  }
  iframe[uk-cover],
  iframe[data-uk-cover] {
    pointer-events: none;
  }
  [uk-cover]:where(img, video),
  [data-uk-cover]:where(img, video) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
    object-position: center;
  }
  .uk-cover-container {
    overflow: hidden;
    position: relative;
  }
  .uk-background-default {
    background-color: #fff;
  }
  .uk-background-muted {
    background-color: #f8f8f8;
  }
  .uk-background-primary {
    background-color: #1e87f0;
  }
  .uk-background-secondary {
    background-color: #222;
  }
  .uk-background-cover,
  .uk-background-contain,
  .uk-background-width-1-1,
  .uk-background-height-1-1 {
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  .uk-background-cover {
    background-size: cover;
  }
  .uk-background-contain {
    background-size: contain;
  }
  .uk-background-width-1-1 {
    background-size: 100%;
  }
  .uk-background-height-1-1 {
    background-size: auto 100%;
  }
  .uk-background-top-left {
    background-position: 0 0;
  }
  .uk-background-top-center {
    background-position: 50% 0;
  }
  .uk-background-top-right {
    background-position: 100% 0;
  }
  .uk-background-center-left {
    background-position: 0 50%;
  }
  .uk-background-center-center {
    background-position: 50% 50%;
  }
  .uk-background-center-right {
    background-position: 100% 50%;
  }
  .uk-background-bottom-left {
    background-position: 0 100%;
  }
  .uk-background-bottom-center {
    background-position: 50% 100%;
  }
  .uk-background-bottom-right {
    background-position: 100% 100%;
  }
  .uk-background-norepeat {
    background-repeat: no-repeat;
  }
  .uk-background-fixed {
    background-attachment: fixed;
  }
  @media (pointer: coarse) {
    .uk-background-fixed {
      background-attachment: scroll;
    }
  }
  @media (max-width: 639px) {
    .uk-background-image\@s {
      background-image: none !important;
    }
  }
  @media (max-width: 959px) {
    .uk-background-image\@m {
      background-image: none !important;
    }
  }
  @media (max-width: 1199px) {
    .uk-background-image\@l {
      background-image: none !important;
    }
  }
  @media (max-width: 1599px) {
    .uk-background-image\@xl {
      background-image: none !important;
    }
  }
  .uk-background-blend-multiply {
    background-blend-mode: multiply;
  }
  .uk-background-blend-screen {
    background-blend-mode: screen;
  }
  .uk-background-blend-overlay {
    background-blend-mode: overlay;
  }
  .uk-background-blend-darken {
    background-blend-mode: darken;
  }
  .uk-background-blend-lighten {
    background-blend-mode: lighten;
  }
  .uk-background-blend-color-dodge {
    background-blend-mode: color-dodge;
  }
  .uk-background-blend-color-burn {
    background-blend-mode: color-burn;
  }
  .uk-background-blend-hard-light {
    background-blend-mode: hard-light;
  }
  .uk-background-blend-soft-light {
    background-blend-mode: soft-light;
  }
  .uk-background-blend-difference {
    background-blend-mode: difference;
  }
  .uk-background-blend-exclusion {
    background-blend-mode: exclusion;
  }
  .uk-background-blend-hue {
    background-blend-mode: hue;
  }
  .uk-background-blend-saturation {
    background-blend-mode: saturation;
  }
  .uk-background-blend-color {
    background-blend-mode: color;
  }
  .uk-background-blend-luminosity {
    background-blend-mode: luminosity;
  }
  [class*="uk-align"] {
    display: block;
    margin-bottom: 30px;
  }
  * + [class*="uk-align"] {
    margin-top: 30px;
  }
  .uk-align-center {
    margin-left: auto;
    margin-right: auto;
  }
  .uk-align-left {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
  @media (min-width: 640px) {
    .uk-align-left\@s {
      margin-top: 0;
      margin-right: 30px;
      float: left;
    }
    .uk-align-right\@s {
      margin-top: 0;
      margin-left: 30px;
      float: right;
    }
  }
  @media (min-width: 960px) {
    .uk-align-left\@m {
      margin-top: 0;
      margin-right: 30px;
      float: left;
    }
    .uk-align-right\@m {
      margin-top: 0;
      margin-left: 30px;
      float: right;
    }
  }
  @media (min-width: 1200px) {
    .uk-align-left\@l {
      margin-top: 0;
      float: left;
    }
    .uk-align-right\@l {
      margin-top: 0;
      float: right;
    }
    .uk-align-left,
    .uk-align-left\@s,
    .uk-align-left\@m,
    .uk-align-left\@l {
      margin-right: 40px;
    }
    .uk-align-right,
    .uk-align-right\@s,
    .uk-align-right\@m,
    .uk-align-right\@l {
      margin-left: 40px;
    }
  }
  @media (min-width: 1600px) {
    .uk-align-left\@xl {
      margin-top: 0;
      margin-right: 40px;
      float: left;
    }
    .uk-align-right\@xl {
      margin-top: 0;
      margin-left: 40px;
      float: right;
    }
  }
  .uk-svg,
  .uk-svg:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
    fill: currentcolor;
  }
  .uk-svg:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
    stroke: currentcolor;
  }
  .uk-svg {
    transform: translate(0, 0);
  }
  .uk-panel {
    display: flow-root;
    position: relative;
    box-sizing: border-box;
  }
  .uk-panel > :last-child {
    margin-bottom: 0;
  }
  .uk-panel-scrollable {
    height: 170px;
    padding: 10px;
    border: 1px solid #e5e5e5;
    overflow: auto;
    resize: both;
  }
  .uk-clearfix::before {
    content: "";
    display: table-cell;
  }
  .uk-clearfix::after {
    content: "";
    display: table;
    clear: both;
  }
  .uk-float-left {
    float: left;
  }
  .uk-float-right {
    float: right;
  }
  [class*="uk-float-"] {
    max-width: 100%;
  }
  .uk-overflow-hidden {
    overflow: hidden;
  }
  .uk-overflow-auto {
    overflow: auto;
  }
  .uk-overflow-auto > :last-child {
    margin-bottom: 0;
  }
  .uk-box-sizing-content {
    box-sizing: content-box;
  }
  .uk-box-sizing-border {
    box-sizing: border-box;
  }
  .uk-resize {
    resize: both;
  }
  .uk-resize-horizontal {
    resize: horizontal;
  }
  .uk-resize-vertical {
    resize: vertical;
  }
  .uk-display-block {
    display: block !important;
  }
  .uk-display-inline {
    display: inline !important;
  }
  .uk-display-inline-block {
    display: inline-block !important;
  }
  [class*="uk-inline"] {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
  }
  .uk-inline-clip {
    overflow: hidden;
  }
  .uk-preserve-width,
  .uk-preserve-width canvas,
  .uk-preserve-width img,
  .uk-preserve-width svg,
  .uk-preserve-width video {
    max-width: none;
  }
  .uk-responsive-width,
  .uk-responsive-height {
    box-sizing: border-box;
  }
  .uk-responsive-width {
    max-width: 100% !important;
    height: auto;
  }
  .uk-responsive-height {
    max-height: 100%;
    width: auto;
    max-width: none;
  }
  [uk-responsive],
  [data-uk-responsive] {
    max-width: 100%;
  }
  .uk-object-cover {
    object-fit: cover;
  }
  .uk-object-contain {
    object-fit: contain;
  }
  .uk-object-fill {
    object-fit: fill;
  }
  .uk-object-none {
    object-fit: none;
  }
  .uk-object-scale-down {
    object-fit: scale-down;
  }
  .uk-object-top-left {
    object-position: 0 0;
  }
  .uk-object-top-center {
    object-position: 50% 0;
  }
  .uk-object-top-right {
    object-position: 100% 0;
  }
  .uk-object-center-left {
    object-position: 0 50%;
  }
  .uk-object-center-center {
    object-position: 50% 50%;
  }
  .uk-object-center-right {
    object-position: 100% 50%;
  }
  .uk-object-bottom-left {
    object-position: 0 100%;
  }
  .uk-object-bottom-center {
    object-position: 50% 100%;
  }
  .uk-object-bottom-right {
    object-position: 100% 100%;
  }
  .uk-border-circle {
    border-radius: 50%;
  }
  .uk-border-pill {
    border-radius: 500px;
  }
  .uk-border-rounded {
    border-radius: 5px;
  }
  .uk-inline-clip[class*="uk-border-"] {
    -webkit-transform: translateZ(0);
  }
  .uk-box-shadow-small {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .uk-box-shadow-medium {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  .uk-box-shadow-large {
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  }
  .uk-box-shadow-xlarge {
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
  }
  [class*="uk-box-shadow-hover"] {
    transition: box-shadow 0.1s ease-in-out;
  }
  .uk-box-shadow-hover-small:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .uk-box-shadow-hover-medium:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  .uk-box-shadow-hover-large:hover {
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  }
  .uk-box-shadow-hover-xlarge:hover {
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
  }
  @supports (filter: blur(0)) {
    .uk-box-shadow-bottom {
      display: inline-block;
      position: relative;
      z-index: 0;
      max-width: 100%;
      vertical-align: middle;
    }
    .uk-box-shadow-bottom::after {
      content: "";
      position: absolute;
      bottom: -30px;
      left: 0;
      right: 0;
      z-index: -1;
      height: 30px;
      border-radius: 100%;
      background: #444;
      filter: blur(20px);
      will-change: filter;
    }
  }
  .uk-dropcap::first-letter,
  .uk-dropcap > p:first-of-type::first-letter {
    display: block;
    margin-right: 10px;
    float: left;
    font-size: 4.5em;
    line-height: 1;
    margin-bottom: -2px;
  }
  @-moz-document url-prefix() {
    .uk-dropcap::first-letter,
    .uk-dropcap > p:first-of-type::first-letter {
      margin-top: 1.1%;
    }
  }
  .uk-logo {
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #333;
    text-decoration: none;
  }
  :where(.uk-logo) {
    display: inline-block;
    vertical-align: middle;
  }
  .uk-logo:hover {
    color: #333;
    text-decoration: none;
  }
  .uk-logo :where(img, svg, video) {
    display: block;
  }
  .uk-logo-inverse {
    display: none;
  }
  .uk-disabled {
    pointer-events: none;
  }
  .uk-drag,
  .uk-drag * {
    cursor: move;
  }
  .uk-drag iframe {
    pointer-events: none;
  }
  .uk-dragover {
    box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
  }
  .uk-blend-multiply {
    mix-blend-mode: multiply;
  }
  .uk-blend-screen {
    mix-blend-mode: screen;
  }
  .uk-blend-overlay {
    mix-blend-mode: overlay;
  }
  .uk-blend-darken {
    mix-blend-mode: darken;
  }
  .uk-blend-lighten {
    mix-blend-mode: lighten;
  }
  .uk-blend-color-dodge {
    mix-blend-mode: color-dodge;
  }
  .uk-blend-color-burn {
    mix-blend-mode: color-burn;
  }
  .uk-blend-hard-light {
    mix-blend-mode: hard-light;
  }
  .uk-blend-soft-light {
    mix-blend-mode: soft-light;
  }
  .uk-blend-difference {
    mix-blend-mode: difference;
  }
  .uk-blend-exclusion {
    mix-blend-mode: exclusion;
  }
  .uk-blend-hue {
    mix-blend-mode: hue;
  }
  .uk-blend-saturation {
    mix-blend-mode: saturation;
  }
  .uk-blend-color {
    mix-blend-mode: color;
  }
  .uk-blend-luminosity {
    mix-blend-mode: luminosity;
  }
  .uk-transform-center {
    transform: translate(-50%, -50%);
  }
  .uk-transform-origin-top-left {
    transform-origin: 0 0;
  }
  .uk-transform-origin-top-center {
    transform-origin: 50% 0;
  }
  .uk-transform-origin-top-right {
    transform-origin: 100% 0;
  }
  .uk-transform-origin-center-left {
    transform-origin: 0 50%;
  }
  .uk-transform-origin-center-right {
    transform-origin: 100% 50%;
  }
  .uk-transform-origin-bottom-left {
    transform-origin: 0 100%;
  }
  .uk-transform-origin-bottom-center {
    transform-origin: 50% 100%;
  }
  .uk-transform-origin-bottom-right {
    transform-origin: 100% 100%;
  }
  .uk-flex {
    display: flex;
  }
  .uk-flex-inline {
    display: inline-flex;
  }
  .uk-flex-left {
    justify-content: flex-start;
  }
  .uk-flex-center {
    justify-content: center;
  }
  .uk-flex-right {
    justify-content: flex-end;
  }
  .uk-flex-between {
    justify-content: space-between;
  }
  .uk-flex-around {
    justify-content: space-around;
  }
  @media (min-width: 640px) {
    .uk-flex-left\@s {
      justify-content: flex-start;
    }
    .uk-flex-center\@s {
      justify-content: center;
    }
    .uk-flex-right\@s {
      justify-content: flex-end;
    }
    .uk-flex-between\@s {
      justify-content: space-between;
    }
    .uk-flex-around\@s {
      justify-content: space-around;
    }
  }
  @media (min-width: 960px) {
    .uk-flex-left\@m {
      justify-content: flex-start;
    }
    .uk-flex-center\@m {
      justify-content: center;
    }
    .uk-flex-right\@m {
      justify-content: flex-end;
    }
    .uk-flex-between\@m {
      justify-content: space-between;
    }
    .uk-flex-around\@m {
      justify-content: space-around;
    }
  }
  @media (min-width: 1200px) {
    .uk-flex-left\@l {
      justify-content: flex-start;
    }
    .uk-flex-center\@l {
      justify-content: center;
    }
    .uk-flex-right\@l {
      justify-content: flex-end;
    }
    .uk-flex-between\@l {
      justify-content: space-between;
    }
    .uk-flex-around\@l {
      justify-content: space-around;
    }
  }
  @media (min-width: 1600px) {
    .uk-flex-left\@xl {
      justify-content: flex-start;
    }
    .uk-flex-center\@xl {
      justify-content: center;
    }
    .uk-flex-right\@xl {
      justify-content: flex-end;
    }
    .uk-flex-between\@xl {
      justify-content: space-between;
    }
    .uk-flex-around\@xl {
      justify-content: space-around;
    }
  }
  .uk-flex-stretch {
    align-items: stretch;
  }
  .uk-flex-top {
    align-items: flex-start;
  }
  .uk-flex-middle {
    align-items: center;
  }
  .uk-flex-bottom {
    align-items: flex-end;
  }
  @media (min-width: 640px) {
    .uk-flex-stretch\@s {
      align-items: stretch;
    }
    .uk-flex-top\@s {
      align-items: flex-start;
    }
    .uk-flex-middle\@s {
      align-items: center;
    }
    .uk-flex-bottom\@s {
      align-items: flex-end;
    }
  }
  @media (min-width: 960px) {
    .uk-flex-stretch\@m {
      align-items: stretch;
    }
    .uk-flex-top\@m {
      align-items: flex-start;
    }
    .uk-flex-middle\@m {
      align-items: center;
    }
    .uk-flex-bottom\@m {
      align-items: flex-end;
    }
  }
  @media (min-width: 1200px) {
    .uk-flex-stretch\@l {
      align-items: stretch;
    }
    .uk-flex-top\@l {
      align-items: flex-start;
    }
    .uk-flex-middle\@l {
      align-items: center;
    }
    .uk-flex-bottom\@l {
      align-items: flex-end;
    }
  }
  @media (min-width: 1600px) {
    .uk-flex-stretch\@xl {
      align-items: stretch;
    }
    .uk-flex-top\@xl {
      align-items: flex-start;
    }
    .uk-flex-middle\@xl {
      align-items: center;
    }
    .uk-flex-bottom\@xl {
      align-items: flex-end;
    }
  }
  .uk-flex-row {
    flex-direction: row;
  }
  .uk-flex-row-reverse {
    flex-direction: row-reverse;
  }
  .uk-flex-column {
    flex-direction: column;
  }
  .uk-flex-column-reverse {
    flex-direction: column-reverse;
  }
  @media (min-width: 640px) {
    .uk-flex-row\@s {
      flex-direction: row;
    }
    .uk-flex-column\@s {
      flex-direction: column;
    }
  }
  @media (min-width: 960px) {
    .uk-flex-row\@m {
      flex-direction: row;
    }
    .uk-flex-column\@m {
      flex-direction: column;
    }
  }
  @media (min-width: 1200px) {
    .uk-flex-row\@l {
      flex-direction: row;
    }
    .uk-flex-column\@l {
      flex-direction: column;
    }
  }
  @media (min-width: 1600px) {
    .uk-flex-row\@xl {
      flex-direction: row;
    }
    .uk-flex-column\@xl {
      flex-direction: column;
    }
  }
  .uk-flex-nowrap {
    flex-wrap: nowrap;
  }
  .uk-flex-wrap {
    flex-wrap: wrap;
  }
  .uk-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .uk-flex-wrap-stretch {
    align-content: stretch;
  }
  .uk-flex-wrap-top {
    align-content: flex-start;
  }
  .uk-flex-wrap-middle {
    align-content: center;
  }
  .uk-flex-wrap-bottom {
    align-content: flex-end;
  }
  .uk-flex-wrap-between {
    align-content: space-between;
  }
  .uk-flex-wrap-around {
    align-content: space-around;
  }
  .uk-flex-first {
    order: -1;
  }
  .uk-flex-last {
    order: 99;
  }
  @media (min-width: 640px) {
    .uk-flex-first\@s {
      order: -1;
    }
    .uk-flex-last\@s {
      order: 99;
    }
  }
  @media (min-width: 960px) {
    .uk-flex-first\@m {
      order: -1;
    }
    .uk-flex-last\@m {
      order: 99;
    }
  }
  @media (min-width: 1200px) {
    .uk-flex-first\@l {
      order: -1;
    }
    .uk-flex-last\@l {
      order: 99;
    }
  }
  @media (min-width: 1600px) {
    .uk-flex-first\@xl {
      order: -1;
    }
    .uk-flex-last\@xl {
      order: 99;
    }
  }
  .uk-flex-initial {
    flex: initial;
  }
  .uk-flex-none {
    flex: none;
  }
  .uk-flex-auto {
    flex: auto;
  }
  .uk-flex-1 {
    flex: 1;
  }
  @media (min-width: 640px) {
    .uk-flex-initial\@s {
      flex: initial;
    }
    .uk-flex-none\@s {
      flex: none;
    }
    .uk-flex-1\@s {
      flex: 1;
    }
  }
  @media (min-width: 960px) {
    .uk-flex-initial\@m {
      flex: initial;
    }
    .uk-flex-none\@m {
      flex: none;
    }
    .uk-flex-1\@m {
      flex: 1;
    }
  }
  @media (min-width: 1200px) {
    .uk-flex-initial\@l {
      flex: initial;
    }
    .uk-flex-none\@l {
      flex: none;
    }
    .uk-flex-1\@l {
      flex: 1;
    }
  }
  @media (min-width: 1600px) {
    .uk-flex-initial\@xl {
      flex: initial;
    }
    .uk-flex-none\@xl {
      flex: none;
    }
    .uk-flex-1\@xl {
      flex: 1;
    }
  }
  .uk-margin {
    margin-bottom: 20px;
  }
  * + .uk-margin {
    margin-top: 20px !important;
  }
  .uk-margin-top {
    margin-top: 20px !important;
  }
  .uk-margin-bottom {
    margin-bottom: 20px !important;
  }
  .uk-margin-left {
    margin-left: 20px !important;
  }
  .uk-margin-right {
    margin-right: 20px !important;
  }
  .uk-margin-small {
    margin-bottom: 10px;
  }
  * + .uk-margin-small {
    margin-top: 10px !important;
  }
  .uk-margin-small-top {
    margin-top: 10px !important;
  }
  .uk-margin-small-bottom {
    margin-bottom: 10px !important;
  }
  .uk-margin-small-left {
    margin-left: 10px !important;
  }
  .uk-margin-small-right {
    margin-right: 10px !important;
  }
  .uk-margin-medium {
    margin-bottom: 40px;
  }
  * + .uk-margin-medium {
    margin-top: 40px !important;
  }
  .uk-margin-medium-top {
    margin-top: 40px !important;
  }
  .uk-margin-medium-bottom {
    margin-bottom: 40px !important;
  }
  .uk-margin-medium-left {
    margin-left: 40px !important;
  }
  .uk-margin-medium-right {
    margin-right: 40px !important;
  }
  .uk-margin-large {
    margin-bottom: 40px;
  }
  * + .uk-margin-large {
    margin-top: 40px !important;
  }
  .uk-margin-large-top {
    margin-top: 40px !important;
  }
  .uk-margin-large-bottom {
    margin-bottom: 40px !important;
  }
  .uk-margin-large-left {
    margin-left: 40px !important;
  }
  .uk-margin-large-right {
    margin-right: 40px !important;
  }
  @media (min-width: 1200px) {
    .uk-margin-large {
      margin-bottom: 70px;
    }
    * + .uk-margin-large {
      margin-top: 70px !important;
    }
    .uk-margin-large-top {
      margin-top: 70px !important;
    }
    .uk-margin-large-bottom {
      margin-bottom: 70px !important;
    }
    .uk-margin-large-left {
      margin-left: 70px !important;
    }
    .uk-margin-large-right {
      margin-right: 70px !important;
    }
  }
  .uk-margin-xlarge {
    margin-bottom: 70px;
  }
  * + .uk-margin-xlarge {
    margin-top: 70px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 70px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 70px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 70px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 70px !important;
  }
  @media (min-width: 1200px) {
    .uk-margin-xlarge {
      margin-bottom: 140px;
    }
    * + .uk-margin-xlarge {
      margin-top: 140px !important;
    }
    .uk-margin-xlarge-top {
      margin-top: 140px !important;
    }
    .uk-margin-xlarge-bottom {
      margin-bottom: 140px !important;
    }
    .uk-margin-xlarge-left {
      margin-left: 140px !important;
    }
    .uk-margin-xlarge-right {
      margin-right: 140px !important;
    }
  }
  .uk-margin-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-top {
    margin-top: auto !important;
  }
  .uk-margin-auto-bottom {
    margin-bottom: auto !important;
  }
  .uk-margin-auto-left {
    margin-left: auto !important;
  }
  .uk-margin-auto-right {
    margin-right: auto !important;
  }
  .uk-margin-auto-vertical {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  @media (min-width: 640px) {
    .uk-margin-auto\@s {
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .uk-margin-auto-left\@s {
      margin-left: auto !important;
    }
    .uk-margin-auto-right\@s {
      margin-right: auto !important;
    }
  }
  @media (min-width: 960px) {
    .uk-margin-auto\@m {
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .uk-margin-auto-left\@m {
      margin-left: auto !important;
    }
    .uk-margin-auto-right\@m {
      margin-right: auto !important;
    }
  }
  @media (min-width: 1200px) {
    .uk-margin-auto\@l {
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .uk-margin-auto-left\@l {
      margin-left: auto !important;
    }
    .uk-margin-auto-right\@l {
      margin-right: auto !important;
    }
  }
  @media (min-width: 1600px) {
    .uk-margin-auto\@xl {
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .uk-margin-auto-left\@xl {
      margin-left: auto !important;
    }
    .uk-margin-auto-right\@xl {
      margin-right: auto !important;
    }
  }
  .uk-margin-remove {
    margin: 0 !important;
  }
  .uk-margin-remove-top {
    margin-top: 0 !important;
  }
  .uk-margin-remove-bottom {
    margin-bottom: 0 !important;
  }
  .uk-margin-remove-left {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right {
    margin-right: 0 !important;
  }
  .uk-margin-remove-vertical {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .uk-margin-remove-adjacent + *,
  .uk-margin-remove-first-child > :first-child {
    margin-top: 0 !important;
  }
  .uk-margin-remove-last-child > :last-child {
    margin-bottom: 0 !important;
  }
  @media (min-width: 640px) {
    .uk-margin-remove-left\@s {
      margin-left: 0 !important;
    }
    .uk-margin-remove-right\@s {
      margin-right: 0 !important;
    }
  }
  @media (min-width: 960px) {
    .uk-margin-remove-left\@m {
      margin-left: 0 !important;
    }
    .uk-margin-remove-right\@m {
      margin-right: 0 !important;
    }
  }
  @media (min-width: 1200px) {
    .uk-margin-remove-left\@l {
      margin-left: 0 !important;
    }
    .uk-margin-remove-right\@l {
      margin-right: 0 !important;
    }
  }
  @media (min-width: 1600px) {
    .uk-margin-remove-left\@xl {
      margin-left: 0 !important;
    }
    .uk-margin-remove-right\@xl {
      margin-right: 0 !important;
    }
  }
  .uk-padding {
    padding: 30px;
  }
  @media (min-width: 1200px) {
    .uk-padding {
      padding: 40px;
    }
  }
  .uk-padding-small {
    padding: 15px;
  }
  .uk-padding-large {
    padding: 40px;
  }
  @media (min-width: 1200px) {
    .uk-padding-large {
      padding: 70px;
    }
  }
  .uk-padding-remove {
    padding: 0 !important;
  }
  .uk-padding-remove-top {
    padding-top: 0 !important;
  }
  .uk-padding-remove-bottom {
    padding-bottom: 0 !important;
  }
  .uk-padding-remove-left {
    padding-left: 0 !important;
  }
  .uk-padding-remove-right {
    padding-right: 0 !important;
  }
  .uk-padding-remove-vertical {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .uk-padding-remove-horizontal {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  :root {
    --uk-position-margin-offset: 0px;
  }
  [class*="uk-position-top"],
  [class*="uk-position-bottom"],
  [class*="uk-position-left"],
  [class*="uk-position-right"],
  [class*="uk-position-center"] {
    position: absolute !important;
    max-width: calc(100% - (var(--uk-position-margin-offset) * 2));
    box-sizing: border-box;
  }
  .uk-position-top {
    top: 0;
    left: 0;
    right: 0;
  }
  .uk-position-bottom {
    bottom: 0;
    left: 0;
    right: 0;
  }
  .uk-position-left {
    top: 0;
    bottom: 0;
    left: 0;
  }
  .uk-position-right {
    top: 0;
    bottom: 0;
    right: 0;
  }
  .uk-position-top-left {
    top: 0;
    left: 0;
  }
  .uk-position-top-right {
    top: 0;
    right: 0;
  }
  .uk-position-bottom-left {
    bottom: 0;
    left: 0;
  }
  .uk-position-bottom-right {
    bottom: 0;
    right: 0;
  }
  .uk-position-center {
    top: calc(50% - var(--uk-position-margin-offset));
    left: calc(50% - var(--uk-position-margin-offset));
    --uk-position-translate-x: -50%;
    --uk-position-translate-y: -50%;
    transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
    width: max-content;
  }
  [class*="uk-position-center-left"],
  [class*="uk-position-center-right"],
  .uk-position-center-vertical {
    top: calc(50% - var(--uk-position-margin-offset));
    --uk-position-translate-y: -50%;
    transform: translate(0, var(--uk-position-translate-y));
  }
  .uk-position-center-left {
    left: 0;
  }
  .uk-position-center-right {
    right: 0;
  }
  .uk-position-center-vertical {
    left: 0;
    right: 0;
  }
  .uk-position-center-left-out {
    right: 100%;
    width: max-content;
  }
  .uk-position-center-right-out {
    left: 100%;
    width: max-content;
  }
  .uk-position-top-center,
  .uk-position-bottom-center,
  .uk-position-center-horizontal {
    left: calc(50% - var(--uk-position-margin-offset));
    --uk-position-translate-x: -50%;
    transform: translate(var(--uk-position-translate-x), 0);
    width: max-content;
  }
  .uk-position-top-center {
    top: 0;
  }
  .uk-position-bottom-center {
    bottom: 0;
  }
  .uk-position-center-horizontal {
    top: 0;
    bottom: 0;
  }
  .uk-position-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .uk-position-small {
    margin: 15px;
    --uk-position-margin-offset: 15px;
  }
  .uk-position-medium {
    margin: 30px;
    --uk-position-margin-offset: 30px;
  }
  .uk-position-large {
    margin: 30px;
    --uk-position-margin-offset: 30px;
  }
  @media (min-width: 1200px) {
    .uk-position-large {
      margin: 50px;
      --uk-position-margin-offset: 50px;
    }
  }
  .uk-position-relative {
    position: relative  !important;
  }
  .uk-position-absolute {
    position: absolute  !important;
  }
  .uk-position-fixed {
    position: fixed  !important;
  }
  .uk-position-sticky {
    position: sticky  !important;
  }
  .uk-position-z-index {
    z-index: 1;
  }
  .uk-position-z-index-zero {
    z-index: 0;
  }
  .uk-position-z-index-negative {
    z-index: -1;
  }
  .uk-position-z-index-high {
    z-index: 990;
  }
  :where(.uk-transition-fade),
  :where([class*="uk-transition-scale"]),
  :where([class*="uk-transition-slide"]) {
    --uk-position-translate-x: 0;
    --uk-position-translate-y: 0;
  }
  .uk-transition-fade,
  [class*="uk-transition-scale"],
  [class*="uk-transition-slide"] {
    --uk-translate-x: 0;
    --uk-translate-y: 0;
    --uk-scale-x: 1;
    --uk-scale-y: 1;
    transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y)) translate(var(--uk-translate-x), var(--uk-translate-y)) scale(var(--uk-scale-x), var(--uk-scale-y));
    transition: 0.3s ease-out;
    transition-property: opacity, transform, filter;
    opacity: 0;
  }
  .uk-transition-toggle:hover .uk-transition-fade,
  .uk-transition-toggle:focus .uk-transition-fade,
  .uk-transition-toggle:focus-within .uk-transition-fade,
  .uk-transition-active.uk-active .uk-transition-fade {
    opacity: 1;
  }
  [class*="uk-transition-scale"] {
    -webkit-backface-visibility: hidden;
  }
  .uk-transition-scale-up {
    --uk-scale-x: 1;
    --uk-scale-y: 1;
  }
  .uk-transition-scale-down {
    --uk-scale-x: 1.03;
    --uk-scale-y: 1.03;
  }
  .uk-transition-toggle:hover .uk-transition-scale-up,
  .uk-transition-toggle:focus .uk-transition-scale-up,
  .uk-transition-toggle:focus-within .uk-transition-scale-up,
  .uk-transition-active.uk-active .uk-transition-scale-up {
    --uk-scale-x: 1.03;
    --uk-scale-y: 1.03;
    opacity: 1;
  }
  .uk-transition-toggle:hover .uk-transition-scale-down,
  .uk-transition-toggle:focus .uk-transition-scale-down,
  .uk-transition-toggle:focus-within .uk-transition-scale-down,
  .uk-transition-active.uk-active .uk-transition-scale-down {
    --uk-scale-x: 1;
    --uk-scale-y: 1;
    opacity: 1;
  }
  .uk-transition-slide-top {
    --uk-translate-y: -100%;
  }
  .uk-transition-slide-bottom {
    --uk-translate-y: 100%;
  }
  .uk-transition-slide-left {
    --uk-translate-x: -100%;
  }
  .uk-transition-slide-right {
    --uk-translate-x: 100%;
  }
  .uk-transition-slide-top-small {
    --uk-translate-y: calc(-1 * 10px);
  }
  .uk-transition-slide-bottom-small {
    --uk-translate-y: 10px;
  }
  .uk-transition-slide-left-small {
    --uk-translate-x: calc(-1 * 10px);
  }
  .uk-transition-slide-right-small {
    --uk-translate-x: 10px;
  }
  .uk-transition-slide-top-medium {
    --uk-translate-y: calc(-1 * 50px);
  }
  .uk-transition-slide-bottom-medium {
    --uk-translate-y: 50px;
  }
  .uk-transition-slide-left-medium {
    --uk-translate-x: calc(-1 * 50px);
  }
  .uk-transition-slide-right-medium {
    --uk-translate-x: 50px;
  }
  .uk-transition-toggle:hover [class*="uk-transition-slide"],
  .uk-transition-toggle:focus [class*="uk-transition-slide"],
  .uk-transition-toggle:focus-within [class*="uk-transition-slide"],
  .uk-transition-active.uk-active [class*="uk-transition-slide"] {
    --uk-translate-x: 0;
    --uk-translate-y: 0;
    opacity: 1;
  }
  .uk-transition-opaque {
    opacity: 1;
  }
  .uk-transition-slow {
    transition-duration: 0.7s;
  }
  .uk-transition-disable,
  .uk-transition-disable * {
    transition: none !important;
  }
  [hidden],
  .uk-hidden {
    display: none !important;
  }
  @media (min-width: 640px) {
    .uk-hidden\@s {
      display: none !important;
    }
  }
  @media (min-width: 960px) {
    .uk-hidden\@m {
      display: none !important;
    }
  }
  @media (min-width: 1200px) {
    .uk-hidden\@l {
      display: none !important;
    }
  }
  @media (min-width: 1600px) {
    .uk-hidden\@xl {
      display: none !important;
    }
  }
  @media (max-width: 639px) {
    .uk-visible\@s {
      display: none !important;
    }
  }
  @media (max-width: 959px) {
    .uk-visible\@m {
      display: none !important;
    }
  }
  @media (max-width: 1199px) {
    .uk-visible\@l {
      display: none !important;
    }
  }
  @media (max-width: 1599px) {
    .uk-visible\@xl {
      display: none !important;
    }
  }
  .uk-invisible {
    visibility: hidden !important;
  }
  .uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
  .uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-visible):not(:has(:focus-visible)) {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
    opacity: 0 !important;
  }
  @media (hover: none) {
    .uk-hidden-touch {
      display: none !important;
    }
  }
  @media (hover) {
    .uk-hidden-notouch {
      display: none !important;
    }
  }
  .uk-light,
  .uk-section-primary:not(.uk-preserve-color),
  .uk-section-secondary:not(.uk-preserve-color),
  .uk-tile-primary:not(.uk-preserve-color),
  .uk-tile-secondary:not(.uk-preserve-color),
  .uk-card-primary.uk-card-body,
  .uk-card-primary > :not([class*="uk-card-media"]),
  .uk-card-secondary.uk-card-body,
  .uk-card-secondary > :not([class*="uk-card-media"]),
  .uk-overlay-primary,
  .uk-offcanvas-bar {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light a,
  .uk-light .uk-link,
  .uk-section-primary:not(.uk-preserve-color) a,
  .uk-section-primary:not(.uk-preserve-color) .uk-link,
  .uk-section-secondary:not(.uk-preserve-color) a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link,
  .uk-tile-primary:not(.uk-preserve-color) a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link,
  .uk-tile-secondary:not(.uk-preserve-color) a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link,
  .uk-card-primary.uk-card-body a,
  .uk-card-primary.uk-card-body .uk-link,
  .uk-card-primary > :not([class*="uk-card-media"]) a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link,
  .uk-card-secondary.uk-card-body a,
  .uk-card-secondary.uk-card-body .uk-link,
  .uk-card-secondary > :not([class*="uk-card-media"]) a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link,
  .uk-overlay-primary a,
  .uk-overlay-primary .uk-link,
  .uk-offcanvas-bar a,
  .uk-offcanvas-bar .uk-link {
    color: #fff;
  }
  .uk-light a:hover,
  .uk-light .uk-link:hover,
  .uk-light .uk-link-toggle:hover .uk-link,
  .uk-section-primary:not(.uk-preserve-color) a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,
  .uk-section-secondary:not(.uk-preserve-color) a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,
  .uk-tile-primary:not(.uk-preserve-color) a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,
  .uk-tile-secondary:not(.uk-preserve-color) a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,
  .uk-card-primary.uk-card-body a:hover,
  .uk-card-primary.uk-card-body .uk-link:hover,
  .uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link,
  .uk-card-primary > :not([class*="uk-card-media"]) a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link,
  .uk-card-secondary.uk-card-body a:hover,
  .uk-card-secondary.uk-card-body .uk-link:hover,
  .uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link,
  .uk-card-secondary > :not([class*="uk-card-media"]) a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link,
  .uk-overlay-primary a:hover,
  .uk-overlay-primary .uk-link:hover,
  .uk-overlay-primary .uk-link-toggle:hover .uk-link,
  .uk-offcanvas-bar a:hover,
  .uk-offcanvas-bar .uk-link:hover,
  .uk-offcanvas-bar .uk-link-toggle:hover .uk-link {
    color: #fff;
  }
  .uk-light :not(pre) > code,
  .uk-light :not(pre) > kbd,
  .uk-light :not(pre) > samp,
  .uk-section-primary:not(.uk-preserve-color) :not(pre) > code,
  .uk-section-primary:not(.uk-preserve-color) :not(pre) > kbd,
  .uk-section-primary:not(.uk-preserve-color) :not(pre) > samp,
  .uk-section-secondary:not(.uk-preserve-color) :not(pre) > code,
  .uk-section-secondary:not(.uk-preserve-color) :not(pre) > kbd,
  .uk-section-secondary:not(.uk-preserve-color) :not(pre) > samp,
  .uk-tile-primary:not(.uk-preserve-color) :not(pre) > code,
  .uk-tile-primary:not(.uk-preserve-color) :not(pre) > kbd,
  .uk-tile-primary:not(.uk-preserve-color) :not(pre) > samp,
  .uk-tile-secondary:not(.uk-preserve-color) :not(pre) > code,
  .uk-tile-secondary:not(.uk-preserve-color) :not(pre) > kbd,
  .uk-tile-secondary:not(.uk-preserve-color) :not(pre) > samp,
  .uk-card-primary.uk-card-body :not(pre) > code,
  .uk-card-primary.uk-card-body :not(pre) > kbd,
  .uk-card-primary.uk-card-body :not(pre) > samp,
  .uk-card-primary > :not([class*="uk-card-media"]) :not(pre) > code,
  .uk-card-primary > :not([class*="uk-card-media"]) :not(pre) > kbd,
  .uk-card-primary > :not([class*="uk-card-media"]) :not(pre) > samp,
  .uk-card-secondary.uk-card-body :not(pre) > code,
  .uk-card-secondary.uk-card-body :not(pre) > kbd,
  .uk-card-secondary.uk-card-body :not(pre) > samp,
  .uk-card-secondary > :not([class*="uk-card-media"]) :not(pre) > code,
  .uk-card-secondary > :not([class*="uk-card-media"]) :not(pre) > kbd,
  .uk-card-secondary > :not([class*="uk-card-media"]) :not(pre) > samp,
  .uk-overlay-primary :not(pre) > code,
  .uk-overlay-primary :not(pre) > kbd,
  .uk-overlay-primary :not(pre) > samp,
  .uk-offcanvas-bar :not(pre) > code,
  .uk-offcanvas-bar :not(pre) > kbd,
  .uk-offcanvas-bar :not(pre) > samp {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.1);
  }
  .uk-light em,
  .uk-section-primary:not(.uk-preserve-color) em,
  .uk-section-secondary:not(.uk-preserve-color) em,
  .uk-tile-primary:not(.uk-preserve-color) em,
  .uk-tile-secondary:not(.uk-preserve-color) em,
  .uk-card-primary.uk-card-body em,
  .uk-card-primary > :not([class*="uk-card-media"]) em,
  .uk-card-secondary.uk-card-body em,
  .uk-card-secondary > :not([class*="uk-card-media"]) em,
  .uk-overlay-primary em,
  .uk-offcanvas-bar em {
    color: #fff;
  }
  .uk-light h1,
  .uk-light .uk-h1,
  .uk-light h2,
  .uk-light .uk-h2,
  .uk-light h3,
  .uk-light .uk-h3,
  .uk-light h4,
  .uk-light .uk-h4,
  .uk-light h5,
  .uk-light .uk-h5,
  .uk-light h6,
  .uk-light .uk-h6,
  .uk-light .uk-heading-small,
  .uk-light .uk-heading-medium,
  .uk-light .uk-heading-large,
  .uk-light .uk-heading-xlarge,
  .uk-light .uk-heading-2xlarge,
  .uk-light .uk-heading-3xlarge,
  .uk-section-primary:not(.uk-preserve-color) h1,
  .uk-section-primary:not(.uk-preserve-color) .uk-h1,
  .uk-section-primary:not(.uk-preserve-color) h2,
  .uk-section-primary:not(.uk-preserve-color) .uk-h2,
  .uk-section-primary:not(.uk-preserve-color) h3,
  .uk-section-primary:not(.uk-preserve-color) .uk-h3,
  .uk-section-primary:not(.uk-preserve-color) h4,
  .uk-section-primary:not(.uk-preserve-color) .uk-h4,
  .uk-section-primary:not(.uk-preserve-color) h5,
  .uk-section-primary:not(.uk-preserve-color) .uk-h5,
  .uk-section-primary:not(.uk-preserve-color) h6,
  .uk-section-primary:not(.uk-preserve-color) .uk-h6,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-small,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-medium,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-large,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
  .uk-section-secondary:not(.uk-preserve-color) h1,
  .uk-section-secondary:not(.uk-preserve-color) .uk-h1,
  .uk-section-secondary:not(.uk-preserve-color) h2,
  .uk-section-secondary:not(.uk-preserve-color) .uk-h2,
  .uk-section-secondary:not(.uk-preserve-color) h3,
  .uk-section-secondary:not(.uk-preserve-color) .uk-h3,
  .uk-section-secondary:not(.uk-preserve-color) h4,
  .uk-section-secondary:not(.uk-preserve-color) .uk-h4,
  .uk-section-secondary:not(.uk-preserve-color) h5,
  .uk-section-secondary:not(.uk-preserve-color) .uk-h5,
  .uk-section-secondary:not(.uk-preserve-color) h6,
  .uk-section-secondary:not(.uk-preserve-color) .uk-h6,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-small,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-medium,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
  .uk-tile-primary:not(.uk-preserve-color) h1,
  .uk-tile-primary:not(.uk-preserve-color) .uk-h1,
  .uk-tile-primary:not(.uk-preserve-color) h2,
  .uk-tile-primary:not(.uk-preserve-color) .uk-h2,
  .uk-tile-primary:not(.uk-preserve-color) h3,
  .uk-tile-primary:not(.uk-preserve-color) .uk-h3,
  .uk-tile-primary:not(.uk-preserve-color) h4,
  .uk-tile-primary:not(.uk-preserve-color) .uk-h4,
  .uk-tile-primary:not(.uk-preserve-color) h5,
  .uk-tile-primary:not(.uk-preserve-color) .uk-h5,
  .uk-tile-primary:not(.uk-preserve-color) h6,
  .uk-tile-primary:not(.uk-preserve-color) .uk-h6,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-small,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-medium,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
  .uk-tile-secondary:not(.uk-preserve-color) h1,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
  .uk-tile-secondary:not(.uk-preserve-color) h2,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-h2,
  .uk-tile-secondary:not(.uk-preserve-color) h3,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-h3,
  .uk-tile-secondary:not(.uk-preserve-color) h4,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-h4,
  .uk-tile-secondary:not(.uk-preserve-color) h5,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-h5,
  .uk-tile-secondary:not(.uk-preserve-color) h6,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-h6,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-small,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-medium,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
  .uk-card-primary.uk-card-body h1,
  .uk-card-primary.uk-card-body .uk-h1,
  .uk-card-primary.uk-card-body h2,
  .uk-card-primary.uk-card-body .uk-h2,
  .uk-card-primary.uk-card-body h3,
  .uk-card-primary.uk-card-body .uk-h3,
  .uk-card-primary.uk-card-body h4,
  .uk-card-primary.uk-card-body .uk-h4,
  .uk-card-primary.uk-card-body h5,
  .uk-card-primary.uk-card-body .uk-h5,
  .uk-card-primary.uk-card-body h6,
  .uk-card-primary.uk-card-body .uk-h6,
  .uk-card-primary.uk-card-body .uk-heading-small,
  .uk-card-primary.uk-card-body .uk-heading-medium,
  .uk-card-primary.uk-card-body .uk-heading-large,
  .uk-card-primary.uk-card-body .uk-heading-xlarge,
  .uk-card-primary.uk-card-body .uk-heading-2xlarge,
  .uk-card-primary.uk-card-body .uk-heading-3xlarge,
  .uk-card-primary > :not([class*="uk-card-media"]) h1,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-h1,
  .uk-card-primary > :not([class*="uk-card-media"]) h2,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-h2,
  .uk-card-primary > :not([class*="uk-card-media"]) h3,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-h3,
  .uk-card-primary > :not([class*="uk-card-media"]) h4,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-h4,
  .uk-card-primary > :not([class*="uk-card-media"]) h5,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-h5,
  .uk-card-primary > :not([class*="uk-card-media"]) h6,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-h6,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-small,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-medium,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-large,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-xlarge,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-2xlarge,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-3xlarge,
  .uk-card-secondary.uk-card-body h1,
  .uk-card-secondary.uk-card-body .uk-h1,
  .uk-card-secondary.uk-card-body h2,
  .uk-card-secondary.uk-card-body .uk-h2,
  .uk-card-secondary.uk-card-body h3,
  .uk-card-secondary.uk-card-body .uk-h3,
  .uk-card-secondary.uk-card-body h4,
  .uk-card-secondary.uk-card-body .uk-h4,
  .uk-card-secondary.uk-card-body h5,
  .uk-card-secondary.uk-card-body .uk-h5,
  .uk-card-secondary.uk-card-body h6,
  .uk-card-secondary.uk-card-body .uk-h6,
  .uk-card-secondary.uk-card-body .uk-heading-small,
  .uk-card-secondary.uk-card-body .uk-heading-medium,
  .uk-card-secondary.uk-card-body .uk-heading-large,
  .uk-card-secondary.uk-card-body .uk-heading-xlarge,
  .uk-card-secondary.uk-card-body .uk-heading-2xlarge,
  .uk-card-secondary.uk-card-body .uk-heading-3xlarge,
  .uk-card-secondary > :not([class*="uk-card-media"]) h1,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-h1,
  .uk-card-secondary > :not([class*="uk-card-media"]) h2,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-h2,
  .uk-card-secondary > :not([class*="uk-card-media"]) h3,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-h3,
  .uk-card-secondary > :not([class*="uk-card-media"]) h4,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-h4,
  .uk-card-secondary > :not([class*="uk-card-media"]) h5,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-h5,
  .uk-card-secondary > :not([class*="uk-card-media"]) h6,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-h6,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-small,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-medium,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-large,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-xlarge,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-2xlarge,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-3xlarge,
  .uk-overlay-primary h1,
  .uk-overlay-primary .uk-h1,
  .uk-overlay-primary h2,
  .uk-overlay-primary .uk-h2,
  .uk-overlay-primary h3,
  .uk-overlay-primary .uk-h3,
  .uk-overlay-primary h4,
  .uk-overlay-primary .uk-h4,
  .uk-overlay-primary h5,
  .uk-overlay-primary .uk-h5,
  .uk-overlay-primary h6,
  .uk-overlay-primary .uk-h6,
  .uk-overlay-primary .uk-heading-small,
  .uk-overlay-primary .uk-heading-medium,
  .uk-overlay-primary .uk-heading-large,
  .uk-overlay-primary .uk-heading-xlarge,
  .uk-overlay-primary .uk-heading-2xlarge,
  .uk-overlay-primary .uk-heading-3xlarge,
  .uk-offcanvas-bar h1,
  .uk-offcanvas-bar .uk-h1,
  .uk-offcanvas-bar h2,
  .uk-offcanvas-bar .uk-h2,
  .uk-offcanvas-bar h3,
  .uk-offcanvas-bar .uk-h3,
  .uk-offcanvas-bar h4,
  .uk-offcanvas-bar .uk-h4,
  .uk-offcanvas-bar h5,
  .uk-offcanvas-bar .uk-h5,
  .uk-offcanvas-bar h6,
  .uk-offcanvas-bar .uk-h6,
  .uk-offcanvas-bar .uk-heading-small,
  .uk-offcanvas-bar .uk-heading-medium,
  .uk-offcanvas-bar .uk-heading-large,
  .uk-offcanvas-bar .uk-heading-xlarge,
  .uk-offcanvas-bar .uk-heading-2xlarge,
  .uk-offcanvas-bar .uk-heading-3xlarge {
    color: #fff;
  }
  .uk-light blockquote,
  .uk-section-primary:not(.uk-preserve-color) blockquote,
  .uk-section-secondary:not(.uk-preserve-color) blockquote,
  .uk-tile-primary:not(.uk-preserve-color) blockquote,
  .uk-tile-secondary:not(.uk-preserve-color) blockquote,
  .uk-card-primary.uk-card-body blockquote,
  .uk-card-primary > :not([class*="uk-card-media"]) blockquote,
  .uk-card-secondary.uk-card-body blockquote,
  .uk-card-secondary > :not([class*="uk-card-media"]) blockquote,
  .uk-overlay-primary blockquote,
  .uk-offcanvas-bar blockquote {
    color: #fff;
  }
  .uk-light blockquote footer,
  .uk-section-primary:not(.uk-preserve-color) blockquote footer,
  .uk-section-secondary:not(.uk-preserve-color) blockquote footer,
  .uk-tile-primary:not(.uk-preserve-color) blockquote footer,
  .uk-tile-secondary:not(.uk-preserve-color) blockquote footer,
  .uk-card-primary.uk-card-body blockquote footer,
  .uk-card-primary > :not([class*="uk-card-media"]) blockquote footer,
  .uk-card-secondary.uk-card-body blockquote footer,
  .uk-card-secondary > :not([class*="uk-card-media"]) blockquote footer,
  .uk-overlay-primary blockquote footer,
  .uk-offcanvas-bar blockquote footer {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light hr,
  .uk-light .uk-hr,
  .uk-section-primary:not(.uk-preserve-color) hr,
  .uk-section-primary:not(.uk-preserve-color) .uk-hr,
  .uk-section-secondary:not(.uk-preserve-color) hr,
  .uk-section-secondary:not(.uk-preserve-color) .uk-hr,
  .uk-tile-primary:not(.uk-preserve-color) hr,
  .uk-tile-primary:not(.uk-preserve-color) .uk-hr,
  .uk-tile-secondary:not(.uk-preserve-color) hr,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-hr,
  .uk-card-primary.uk-card-body hr,
  .uk-card-primary.uk-card-body .uk-hr,
  .uk-card-primary > :not([class*="uk-card-media"]) hr,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-hr,
  .uk-card-secondary.uk-card-body hr,
  .uk-card-secondary.uk-card-body .uk-hr,
  .uk-card-secondary > :not([class*="uk-card-media"]) hr,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-hr,
  .uk-overlay-primary hr,
  .uk-overlay-primary .uk-hr,
  .uk-offcanvas-bar hr,
  .uk-offcanvas-bar .uk-hr {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light :focus-visible,
  .uk-section-primary:not(.uk-preserve-color) :focus-visible,
  .uk-section-secondary:not(.uk-preserve-color) :focus-visible,
  .uk-tile-primary:not(.uk-preserve-color) :focus-visible,
  .uk-tile-secondary:not(.uk-preserve-color) :focus-visible,
  .uk-card-primary.uk-card-body :focus-visible,
  .uk-card-primary > :not([class*="uk-card-media"]) :focus-visible,
  .uk-card-secondary.uk-card-body :focus-visible,
  .uk-card-secondary > :not([class*="uk-card-media"]) :focus-visible,
  .uk-overlay-primary :focus-visible,
  .uk-offcanvas-bar :focus-visible {
    outline-color: #fff;
  }
  .uk-light a.uk-link-muted,
  .uk-light .uk-link-muted a,
  .uk-section-primary:not(.uk-preserve-color) a.uk-link-muted,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-muted a,
  .uk-section-secondary:not(.uk-preserve-color) a.uk-link-muted,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a,
  .uk-tile-primary:not(.uk-preserve-color) a.uk-link-muted,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a,
  .uk-tile-secondary:not(.uk-preserve-color) a.uk-link-muted,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a,
  .uk-card-primary.uk-card-body a.uk-link-muted,
  .uk-card-primary.uk-card-body .uk-link-muted a,
  .uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-muted,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-muted a,
  .uk-card-secondary.uk-card-body a.uk-link-muted,
  .uk-card-secondary.uk-card-body .uk-link-muted a,
  .uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-muted,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-muted a,
  .uk-overlay-primary a.uk-link-muted,
  .uk-overlay-primary .uk-link-muted a,
  .uk-offcanvas-bar a.uk-link-muted,
  .uk-offcanvas-bar .uk-link-muted a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light a.uk-link-muted:hover,
  .uk-light .uk-link-muted a:hover,
  .uk-light .uk-link-toggle:hover .uk-link-muted,
  .uk-section-primary:not(.uk-preserve-color) a.uk-link-muted:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-muted a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,
  .uk-section-secondary:not(.uk-preserve-color) a.uk-link-muted:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,
  .uk-tile-primary:not(.uk-preserve-color) a.uk-link-muted:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,
  .uk-tile-secondary:not(.uk-preserve-color) a.uk-link-muted:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,
  .uk-card-primary.uk-card-body a.uk-link-muted:hover,
  .uk-card-primary.uk-card-body .uk-link-muted a:hover,
  .uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-muted,
  .uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-muted:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-muted a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-muted,
  .uk-card-secondary.uk-card-body a.uk-link-muted:hover,
  .uk-card-secondary.uk-card-body .uk-link-muted a:hover,
  .uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-muted,
  .uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-muted:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-muted a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-muted,
  .uk-overlay-primary a.uk-link-muted:hover,
  .uk-overlay-primary .uk-link-muted a:hover,
  .uk-overlay-primary .uk-link-toggle:hover .uk-link-muted,
  .uk-offcanvas-bar a.uk-link-muted:hover,
  .uk-offcanvas-bar .uk-link-muted a:hover,
  .uk-offcanvas-bar .uk-link-toggle:hover .uk-link-muted {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light a.uk-link-text:hover,
  .uk-light .uk-link-text a:hover,
  .uk-light .uk-link-toggle:hover .uk-link-text,
  .uk-section-primary:not(.uk-preserve-color) a.uk-link-text:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-text a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,
  .uk-section-secondary:not(.uk-preserve-color) a.uk-link-text:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-text a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,
  .uk-tile-primary:not(.uk-preserve-color) a.uk-link-text:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-text a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,
  .uk-tile-secondary:not(.uk-preserve-color) a.uk-link-text:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-text a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,
  .uk-card-primary.uk-card-body a.uk-link-text:hover,
  .uk-card-primary.uk-card-body .uk-link-text a:hover,
  .uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-text,
  .uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-text:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-text a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-text,
  .uk-card-secondary.uk-card-body a.uk-link-text:hover,
  .uk-card-secondary.uk-card-body .uk-link-text a:hover,
  .uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-text,
  .uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-text:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-text a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-text,
  .uk-overlay-primary a.uk-link-text:hover,
  .uk-overlay-primary .uk-link-text a:hover,
  .uk-overlay-primary .uk-link-toggle:hover .uk-link-text,
  .uk-offcanvas-bar a.uk-link-text:hover,
  .uk-offcanvas-bar .uk-link-text a:hover,
  .uk-offcanvas-bar .uk-link-toggle:hover .uk-link-text {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light a.uk-link-heading:hover,
  .uk-light .uk-link-heading a:hover,
  .uk-light .uk-link-toggle:hover .uk-link-heading,
  .uk-section-primary:not(.uk-preserve-color) a.uk-link-heading:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-heading a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,
  .uk-section-secondary:not(.uk-preserve-color) a.uk-link-heading:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,
  .uk-tile-primary:not(.uk-preserve-color) a.uk-link-heading:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-heading a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,
  .uk-tile-secondary:not(.uk-preserve-color) a.uk-link-heading:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,
  .uk-card-primary.uk-card-body a.uk-link-heading:hover,
  .uk-card-primary.uk-card-body .uk-link-heading a:hover,
  .uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-heading,
  .uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-heading:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-heading a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-heading,
  .uk-card-secondary.uk-card-body a.uk-link-heading:hover,
  .uk-card-secondary.uk-card-body .uk-link-heading a:hover,
  .uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-heading,
  .uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-heading:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-heading a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-heading,
  .uk-overlay-primary a.uk-link-heading:hover,
  .uk-overlay-primary .uk-link-heading a:hover,
  .uk-overlay-primary .uk-link-toggle:hover .uk-link-heading,
  .uk-offcanvas-bar a.uk-link-heading:hover,
  .uk-offcanvas-bar .uk-link-heading a:hover,
  .uk-offcanvas-bar .uk-link-toggle:hover .uk-link-heading {
    color: #fff;
  }
  .uk-light .uk-heading-divider,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-divider,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-divider,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-divider,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-divider,
  .uk-card-primary.uk-card-body .uk-heading-divider,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-divider,
  .uk-card-secondary.uk-card-body .uk-heading-divider,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-divider,
  .uk-overlay-primary .uk-heading-divider,
  .uk-offcanvas-bar .uk-heading-divider {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-heading-bullet::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-bullet::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-bullet::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-bullet::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-bullet::before,
  .uk-card-primary.uk-card-body .uk-heading-bullet::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-bullet::before,
  .uk-card-secondary.uk-card-body .uk-heading-bullet::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-bullet::before,
  .uk-overlay-primary .uk-heading-bullet::before,
  .uk-offcanvas-bar .uk-heading-bullet::before {
    border-left-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-heading-line > ::before,
  .uk-light .uk-heading-line > ::after,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-line > ::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-line > ::after,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-line > ::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-line > ::after,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-line > ::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-line > ::after,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line > ::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line > ::after,
  .uk-card-primary.uk-card-body .uk-heading-line > ::before,
  .uk-card-primary.uk-card-body .uk-heading-line > ::after,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-line > ::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-line > ::after,
  .uk-card-secondary.uk-card-body .uk-heading-line > ::before,
  .uk-card-secondary.uk-card-body .uk-heading-line > ::after,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-line > ::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-line > ::after,
  .uk-overlay-primary .uk-heading-line > ::before,
  .uk-overlay-primary .uk-heading-line > ::after,
  .uk-offcanvas-bar .uk-heading-line > ::before,
  .uk-offcanvas-bar .uk-heading-line > ::after {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-divider-icon,
  .uk-section-primary:not(.uk-preserve-color) .uk-divider-icon,
  .uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon,
  .uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon,
  .uk-card-primary.uk-card-body .uk-divider-icon,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-icon,
  .uk-card-secondary.uk-card-body .uk-divider-icon,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-icon,
  .uk-overlay-primary .uk-divider-icon,
  .uk-offcanvas-bar .uk-divider-icon {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.2%29%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-light .uk-divider-icon::before,
  .uk-light .uk-divider-icon::after,
  .uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::after,
  .uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon::after,
  .uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::after,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::after,
  .uk-card-primary.uk-card-body .uk-divider-icon::before,
  .uk-card-primary.uk-card-body .uk-divider-icon::after,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-icon::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-icon::after,
  .uk-card-secondary.uk-card-body .uk-divider-icon::before,
  .uk-card-secondary.uk-card-body .uk-divider-icon::after,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-icon::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-icon::after,
  .uk-overlay-primary .uk-divider-icon::before,
  .uk-overlay-primary .uk-divider-icon::after,
  .uk-offcanvas-bar .uk-divider-icon::before,
  .uk-offcanvas-bar .uk-divider-icon::after {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-divider-small::after,
  .uk-section-primary:not(.uk-preserve-color) .uk-divider-small::after,
  .uk-section-secondary:not(.uk-preserve-color) .uk-divider-small::after,
  .uk-tile-primary:not(.uk-preserve-color) .uk-divider-small::after,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-divider-small::after,
  .uk-card-primary.uk-card-body .uk-divider-small::after,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-small::after,
  .uk-card-secondary.uk-card-body .uk-divider-small::after,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-small::after,
  .uk-overlay-primary .uk-divider-small::after,
  .uk-offcanvas-bar .uk-divider-small::after {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-divider-vertical,
  .uk-section-primary:not(.uk-preserve-color) .uk-divider-vertical,
  .uk-section-secondary:not(.uk-preserve-color) .uk-divider-vertical,
  .uk-tile-primary:not(.uk-preserve-color) .uk-divider-vertical,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-divider-vertical,
  .uk-card-primary.uk-card-body .uk-divider-vertical,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-vertical,
  .uk-card-secondary.uk-card-body .uk-divider-vertical,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-vertical,
  .uk-overlay-primary .uk-divider-vertical,
  .uk-offcanvas-bar .uk-divider-vertical {
    border-left-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-list-muted > ::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-list-muted > ::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-muted > ::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-muted > ::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-muted > ::before,
  .uk-card-primary.uk-card-body .uk-list-muted > ::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-muted > ::before,
  .uk-card-secondary.uk-card-body .uk-list-muted > ::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-muted > ::before,
  .uk-overlay-primary .uk-list-muted > ::before,
  .uk-offcanvas-bar .uk-list-muted > ::before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .uk-light .uk-list-emphasis > ::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
  .uk-card-primary.uk-card-body .uk-list-emphasis > ::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::before,
  .uk-card-secondary.uk-card-body .uk-list-emphasis > ::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::before,
  .uk-overlay-primary .uk-list-emphasis > ::before,
  .uk-offcanvas-bar .uk-list-emphasis > ::before {
    color: #fff !important;
  }
  .uk-light .uk-list-primary > ::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-list-primary > ::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-primary > ::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-primary > ::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-primary > ::before,
  .uk-card-primary.uk-card-body .uk-list-primary > ::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-primary > ::before,
  .uk-card-secondary.uk-card-body .uk-list-primary > ::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-primary > ::before,
  .uk-overlay-primary .uk-list-primary > ::before,
  .uk-offcanvas-bar .uk-list-primary > ::before {
    color: #fff !important;
  }
  .uk-light .uk-list-secondary > ::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-list-secondary > ::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-secondary > ::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-secondary > ::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-secondary > ::before,
  .uk-card-primary.uk-card-body .uk-list-secondary > ::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-secondary > ::before,
  .uk-card-secondary.uk-card-body .uk-list-secondary > ::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-secondary > ::before,
  .uk-overlay-primary .uk-list-secondary > ::before,
  .uk-offcanvas-bar .uk-list-secondary > ::before {
    color: #fff !important;
  }
  .uk-light .uk-list-bullet > ::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-list-bullet > ::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-bullet > ::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-bullet > ::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-bullet > ::before,
  .uk-card-primary.uk-card-body .uk-list-bullet > ::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-bullet > ::before,
  .uk-card-secondary.uk-card-body .uk-list-bullet > ::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-bullet > ::before,
  .uk-overlay-primary .uk-list-bullet > ::before,
  .uk-offcanvas-bar .uk-list-bullet > ::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-light .uk-list-divider > :nth-child(n+2),
  .uk-section-primary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
  .uk-card-primary.uk-card-body .uk-list-divider > :nth-child(n+2),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-divider > :nth-child(n+2),
  .uk-card-secondary.uk-card-body .uk-list-divider > :nth-child(n+2),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-divider > :nth-child(n+2),
  .uk-overlay-primary .uk-list-divider > :nth-child(n+2),
  .uk-offcanvas-bar .uk-list-divider > :nth-child(n+2) {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-list-striped > *:nth-of-type(odd),
  .uk-section-primary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
  .uk-card-primary.uk-card-body .uk-list-striped > *:nth-of-type(odd),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-striped > *:nth-of-type(odd),
  .uk-card-secondary.uk-card-body .uk-list-striped > *:nth-of-type(odd),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-striped > *:nth-of-type(odd),
  .uk-overlay-primary .uk-list-striped > *:nth-of-type(odd),
  .uk-offcanvas-bar .uk-list-striped > *:nth-of-type(odd) {
    border-top-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-list-striped > :nth-of-type(odd),
  .uk-section-primary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
  .uk-section-secondary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
  .uk-tile-primary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
  .uk-card-primary.uk-card-body .uk-list-striped > :nth-of-type(odd),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-striped > :nth-of-type(odd),
  .uk-card-secondary.uk-card-body .uk-list-striped > :nth-of-type(odd),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-striped > :nth-of-type(odd),
  .uk-overlay-primary .uk-list-striped > :nth-of-type(odd),
  .uk-offcanvas-bar .uk-list-striped > :nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .uk-light .uk-table th,
  .uk-section-primary:not(.uk-preserve-color) .uk-table th,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table th,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table th,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table th,
  .uk-card-primary.uk-card-body .uk-table th,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table th,
  .uk-card-secondary.uk-card-body .uk-table th,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table th,
  .uk-overlay-primary .uk-table th,
  .uk-offcanvas-bar .uk-table th {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-table caption,
  .uk-section-primary:not(.uk-preserve-color) .uk-table caption,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table caption,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table caption,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table caption,
  .uk-card-primary.uk-card-body .uk-table caption,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table caption,
  .uk-card-secondary.uk-card-body .uk-table caption,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table caption,
  .uk-overlay-primary .uk-table caption,
  .uk-offcanvas-bar .uk-table caption {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-table > tr.uk-active,
  .uk-light .uk-table tbody tr.uk-active,
  .uk-section-primary:not(.uk-preserve-color) .uk-table > tr.uk-active,
  .uk-section-primary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table > tr.uk-active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table > tr.uk-active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table > tr.uk-active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
  .uk-card-primary.uk-card-body .uk-table > tr.uk-active,
  .uk-card-primary.uk-card-body .uk-table tbody tr.uk-active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table > tr.uk-active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table tbody tr.uk-active,
  .uk-card-secondary.uk-card-body .uk-table > tr.uk-active,
  .uk-card-secondary.uk-card-body .uk-table tbody tr.uk-active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table > tr.uk-active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table tbody tr.uk-active,
  .uk-overlay-primary .uk-table > tr.uk-active,
  .uk-overlay-primary .uk-table tbody tr.uk-active,
  .uk-offcanvas-bar .uk-table > tr.uk-active,
  .uk-offcanvas-bar .uk-table tbody tr.uk-active {
    background: rgba(255, 255, 255, 0.08);
  }
  .uk-light .uk-table-divider > tr:not(:first-child),
  .uk-light .uk-table-divider > :not(:first-child) > tr,
  .uk-light .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-section-primary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
  .uk-section-primary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
  .uk-section-primary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-card-primary.uk-card-body .uk-table-divider > tr:not(:first-child),
  .uk-card-primary.uk-card-body .uk-table-divider > :not(:first-child) > tr,
  .uk-card-primary.uk-card-body .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-divider > tr:not(:first-child),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-divider > :not(:first-child) > tr,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-card-secondary.uk-card-body .uk-table-divider > tr:not(:first-child),
  .uk-card-secondary.uk-card-body .uk-table-divider > :not(:first-child) > tr,
  .uk-card-secondary.uk-card-body .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-divider > tr:not(:first-child),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-divider > :not(:first-child) > tr,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-overlay-primary .uk-table-divider > tr:not(:first-child),
  .uk-overlay-primary .uk-table-divider > :not(:first-child) > tr,
  .uk-overlay-primary .uk-table-divider > :first-child > tr:not(:first-child),
  .uk-offcanvas-bar .uk-table-divider > tr:not(:first-child),
  .uk-offcanvas-bar .uk-table-divider > :not(:first-child) > tr,
  .uk-offcanvas-bar .uk-table-divider > :first-child > tr:not(:first-child) {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-table-striped > tr:nth-of-type(odd),
  .uk-light .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-section-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
  .uk-section-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-card-primary.uk-card-body .uk-table-striped > tr:nth-of-type(odd),
  .uk-card-primary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-striped > tr:nth-of-type(odd),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-card-secondary.uk-card-body .uk-table-striped > tr:nth-of-type(odd),
  .uk-card-secondary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-striped > tr:nth-of-type(odd),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-overlay-primary .uk-table-striped > tr:nth-of-type(odd),
  .uk-overlay-primary .uk-table-striped tbody tr:nth-of-type(odd),
  .uk-offcanvas-bar .uk-table-striped > tr:nth-of-type(odd),
  .uk-offcanvas-bar .uk-table-striped tbody tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-table-hover > tr:hover,
  .uk-light .uk-table-hover tbody tr:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
  .uk-card-primary.uk-card-body .uk-table-hover > tr:hover,
  .uk-card-primary.uk-card-body .uk-table-hover tbody tr:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-hover > tr:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-hover tbody tr:hover,
  .uk-card-secondary.uk-card-body .uk-table-hover > tr:hover,
  .uk-card-secondary.uk-card-body .uk-table-hover tbody tr:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-hover > tr:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-hover tbody tr:hover,
  .uk-overlay-primary .uk-table-hover > tr:hover,
  .uk-overlay-primary .uk-table-hover tbody tr:hover,
  .uk-offcanvas-bar .uk-table-hover > tr:hover,
  .uk-offcanvas-bar .uk-table-hover tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .uk-light .uk-icon-link,
  .uk-section-primary:not(.uk-preserve-color) .uk-icon-link,
  .uk-section-secondary:not(.uk-preserve-color) .uk-icon-link,
  .uk-tile-primary:not(.uk-preserve-color) .uk-icon-link,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link,
  .uk-card-primary.uk-card-body .uk-icon-link,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-link,
  .uk-card-secondary.uk-card-body .uk-icon-link,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-link,
  .uk-overlay-primary .uk-icon-link,
  .uk-offcanvas-bar .uk-icon-link {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-icon-link:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-icon-link:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-icon-link:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:hover,
  .uk-card-primary.uk-card-body .uk-icon-link:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-link:hover,
  .uk-card-secondary.uk-card-body .uk-icon-link:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-link:hover,
  .uk-overlay-primary .uk-icon-link:hover,
  .uk-offcanvas-bar .uk-icon-link:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-icon-link:active,
  .uk-light .uk-active > .uk-icon-link,
  .uk-section-primary:not(.uk-preserve-color) .uk-icon-link:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
  .uk-section-secondary:not(.uk-preserve-color) .uk-icon-link:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
  .uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
  .uk-card-primary.uk-card-body .uk-icon-link:active,
  .uk-card-primary.uk-card-body .uk-active > .uk-icon-link,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-link:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-active > .uk-icon-link,
  .uk-card-secondary.uk-card-body .uk-icon-link:active,
  .uk-card-secondary.uk-card-body .uk-active > .uk-icon-link,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-link:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-active > .uk-icon-link,
  .uk-overlay-primary .uk-icon-link:active,
  .uk-overlay-primary .uk-active > .uk-icon-link,
  .uk-offcanvas-bar .uk-icon-link:active,
  .uk-offcanvas-bar .uk-active > .uk-icon-link {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-icon-button,
  .uk-section-primary:not(.uk-preserve-color) .uk-icon-button,
  .uk-section-secondary:not(.uk-preserve-color) .uk-icon-button,
  .uk-tile-primary:not(.uk-preserve-color) .uk-icon-button,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button,
  .uk-card-primary.uk-card-body .uk-icon-button,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-button,
  .uk-card-secondary.uk-card-body .uk-icon-button,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-button,
  .uk-overlay-primary .uk-icon-button,
  .uk-offcanvas-bar .uk-icon-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-icon-button:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-icon-button:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-icon-button:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:hover,
  .uk-card-primary.uk-card-body .uk-icon-button:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-button:hover,
  .uk-card-secondary.uk-card-body .uk-icon-button:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-button:hover,
  .uk-overlay-primary .uk-icon-button:hover,
  .uk-offcanvas-bar .uk-icon-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-icon-button:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-icon-button:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-icon-button:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:active,
  .uk-card-primary.uk-card-body .uk-icon-button:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-button:active,
  .uk-card-secondary.uk-card-body .uk-icon-button:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-button:active,
  .uk-overlay-primary .uk-icon-button:active,
  .uk-offcanvas-bar .uk-icon-button:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-input,
  .uk-light .uk-select,
  .uk-light .uk-textarea,
  .uk-section-primary:not(.uk-preserve-color) .uk-input,
  .uk-section-primary:not(.uk-preserve-color) .uk-select,
  .uk-section-primary:not(.uk-preserve-color) .uk-textarea,
  .uk-section-secondary:not(.uk-preserve-color) .uk-input,
  .uk-section-secondary:not(.uk-preserve-color) .uk-select,
  .uk-section-secondary:not(.uk-preserve-color) .uk-textarea,
  .uk-tile-primary:not(.uk-preserve-color) .uk-input,
  .uk-tile-primary:not(.uk-preserve-color) .uk-select,
  .uk-tile-primary:not(.uk-preserve-color) .uk-textarea,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-input,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-select,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-textarea,
  .uk-card-primary.uk-card-body .uk-input,
  .uk-card-primary.uk-card-body .uk-select,
  .uk-card-primary.uk-card-body .uk-textarea,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-input,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-select,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-textarea,
  .uk-card-secondary.uk-card-body .uk-input,
  .uk-card-secondary.uk-card-body .uk-select,
  .uk-card-secondary.uk-card-body .uk-textarea,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-input,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-select,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-textarea,
  .uk-overlay-primary .uk-input,
  .uk-overlay-primary .uk-select,
  .uk-overlay-primary .uk-textarea,
  .uk-offcanvas-bar .uk-input,
  .uk-offcanvas-bar .uk-select,
  .uk-offcanvas-bar .uk-textarea {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    background-clip: padding-box;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-input:focus,
  .uk-light .uk-select:focus,
  .uk-light .uk-textarea:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-input:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-select:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-textarea:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-input:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-select:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-textarea:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-input:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-select:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-textarea:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-input:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-select:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-textarea:focus,
  .uk-card-primary.uk-card-body .uk-input:focus,
  .uk-card-primary.uk-card-body .uk-select:focus,
  .uk-card-primary.uk-card-body .uk-textarea:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-input:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-select:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-textarea:focus,
  .uk-card-secondary.uk-card-body .uk-input:focus,
  .uk-card-secondary.uk-card-body .uk-select:focus,
  .uk-card-secondary.uk-card-body .uk-textarea:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-input:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-select:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-textarea:focus,
  .uk-overlay-primary .uk-input:focus,
  .uk-overlay-primary .uk-select:focus,
  .uk-overlay-primary .uk-textarea:focus,
  .uk-offcanvas-bar .uk-input:focus,
  .uk-offcanvas-bar .uk-select:focus,
  .uk-offcanvas-bar .uk-textarea:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-input::placeholder,
  .uk-section-primary:not(.uk-preserve-color) .uk-input::placeholder,
  .uk-section-secondary:not(.uk-preserve-color) .uk-input::placeholder,
  .uk-tile-primary:not(.uk-preserve-color) .uk-input::placeholder,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-input::placeholder,
  .uk-card-primary.uk-card-body .uk-input::placeholder,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-input::placeholder,
  .uk-card-secondary.uk-card-body .uk-input::placeholder,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-input::placeholder,
  .uk-overlay-primary .uk-input::placeholder,
  .uk-offcanvas-bar .uk-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-textarea::placeholder,
  .uk-section-primary:not(.uk-preserve-color) .uk-textarea::placeholder,
  .uk-section-secondary:not(.uk-preserve-color) .uk-textarea::placeholder,
  .uk-tile-primary:not(.uk-preserve-color) .uk-textarea::placeholder,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-textarea::placeholder,
  .uk-card-primary.uk-card-body .uk-textarea::placeholder,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-textarea::placeholder,
  .uk-card-secondary.uk-card-body .uk-textarea::placeholder,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-textarea::placeholder,
  .uk-overlay-primary .uk-textarea::placeholder,
  .uk-offcanvas-bar .uk-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-select:not([multiple]):not([size]),
  .uk-section-primary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
  .uk-section-secondary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
  .uk-tile-primary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
  .uk-card-primary.uk-card-body .uk-select:not([multiple]):not([size]),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-select:not([multiple]):not([size]),
  .uk-card-secondary.uk-card-body .uk-select:not([multiple]):not([size]),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-select:not([multiple]):not([size]),
  .uk-overlay-primary .uk-select:not([multiple]):not([size]),
  .uk-offcanvas-bar .uk-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-light .uk-input[list]:hover,
  .uk-light .uk-input[list]:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-input[list]:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-input[list]:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:focus,
  .uk-card-primary.uk-card-body .uk-input[list]:hover,
  .uk-card-primary.uk-card-body .uk-input[list]:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-input[list]:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-input[list]:focus,
  .uk-card-secondary.uk-card-body .uk-input[list]:hover,
  .uk-card-secondary.uk-card-body .uk-input[list]:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-input[list]:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-input[list]:focus,
  .uk-overlay-primary .uk-input[list]:hover,
  .uk-overlay-primary .uk-input[list]:focus,
  .uk-offcanvas-bar .uk-input[list]:hover,
  .uk-offcanvas-bar .uk-input[list]:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-light .uk-radio,
  .uk-light .uk-checkbox,
  .uk-section-primary:not(.uk-preserve-color) .uk-radio,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox,
  .uk-section-secondary:not(.uk-preserve-color) .uk-radio,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox,
  .uk-tile-primary:not(.uk-preserve-color) .uk-radio,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-radio,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox,
  .uk-card-primary.uk-card-body .uk-radio,
  .uk-card-primary.uk-card-body .uk-checkbox,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-radio,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox,
  .uk-card-secondary.uk-card-body .uk-radio,
  .uk-card-secondary.uk-card-body .uk-checkbox,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox,
  .uk-overlay-primary .uk-radio,
  .uk-overlay-primary .uk-checkbox,
  .uk-offcanvas-bar .uk-radio,
  .uk-offcanvas-bar .uk-checkbox {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-radio:focus,
  .uk-light .uk-checkbox:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-radio:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-radio:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-radio:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-radio:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:focus,
  .uk-card-primary.uk-card-body .uk-radio:focus,
  .uk-card-primary.uk-card-body .uk-checkbox:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:focus,
  .uk-card-secondary.uk-card-body .uk-radio:focus,
  .uk-card-secondary.uk-card-body .uk-checkbox:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:focus,
  .uk-overlay-primary .uk-radio:focus,
  .uk-overlay-primary .uk-checkbox:focus,
  .uk-offcanvas-bar .uk-radio:focus,
  .uk-offcanvas-bar .uk-checkbox:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-radio:checked,
  .uk-light .uk-checkbox:checked,
  .uk-light .uk-checkbox:indeterminate,
  .uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-card-primary.uk-card-body .uk-radio:checked,
  .uk-card-primary.uk-card-body .uk-checkbox:checked,
  .uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:checked,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
  .uk-card-secondary.uk-card-body .uk-radio:checked,
  .uk-card-secondary.uk-card-body .uk-checkbox:checked,
  .uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:checked,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
  .uk-overlay-primary .uk-radio:checked,
  .uk-overlay-primary .uk-checkbox:checked,
  .uk-overlay-primary .uk-checkbox:indeterminate,
  .uk-offcanvas-bar .uk-radio:checked,
  .uk-offcanvas-bar .uk-checkbox:checked,
  .uk-offcanvas-bar .uk-checkbox:indeterminate {
    background-color: #fff;
    border-color: #fff;
  }
  .uk-light .uk-radio:checked:focus,
  .uk-light .uk-checkbox:checked:focus,
  .uk-light .uk-checkbox:indeterminate:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-radio:checked:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
  .uk-card-primary.uk-card-body .uk-radio:checked:focus,
  .uk-card-primary.uk-card-body .uk-checkbox:checked:focus,
  .uk-card-primary.uk-card-body .uk-checkbox:indeterminate:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:checked:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:checked:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate:focus,
  .uk-card-secondary.uk-card-body .uk-radio:checked:focus,
  .uk-card-secondary.uk-card-body .uk-checkbox:checked:focus,
  .uk-card-secondary.uk-card-body .uk-checkbox:indeterminate:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:checked:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:checked:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate:focus,
  .uk-overlay-primary .uk-radio:checked:focus,
  .uk-overlay-primary .uk-checkbox:checked:focus,
  .uk-overlay-primary .uk-checkbox:indeterminate:focus,
  .uk-offcanvas-bar .uk-radio:checked:focus,
  .uk-offcanvas-bar .uk-checkbox:checked:focus,
  .uk-offcanvas-bar .uk-checkbox:indeterminate:focus {
    background-color: #ffffff;
  }
  .uk-light .uk-radio:checked,
  .uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
  .uk-card-primary.uk-card-body .uk-radio:checked,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:checked,
  .uk-card-secondary.uk-card-body .uk-radio:checked,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:checked,
  .uk-overlay-primary .uk-radio:checked,
  .uk-offcanvas-bar .uk-radio:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-light .uk-checkbox:checked,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
  .uk-card-primary.uk-card-body .uk-checkbox:checked,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
  .uk-card-secondary.uk-card-body .uk-checkbox:checked,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
  .uk-overlay-primary .uk-checkbox:checked,
  .uk-offcanvas-bar .uk-checkbox:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .uk-light .uk-checkbox:indeterminate,
  .uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
  .uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
  .uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
  .uk-overlay-primary .uk-checkbox:indeterminate,
  .uk-offcanvas-bar .uk-checkbox:indeterminate {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-light .uk-form-label,
  .uk-section-primary:not(.uk-preserve-color) .uk-form-label,
  .uk-section-secondary:not(.uk-preserve-color) .uk-form-label,
  .uk-tile-primary:not(.uk-preserve-color) .uk-form-label,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-form-label,
  .uk-card-primary.uk-card-body .uk-form-label,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-form-label,
  .uk-card-secondary.uk-card-body .uk-form-label,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-label,
  .uk-overlay-primary .uk-form-label,
  .uk-offcanvas-bar .uk-form-label {
    color: #fff;
  }
  .uk-light .uk-form-icon,
  .uk-section-primary:not(.uk-preserve-color) .uk-form-icon,
  .uk-section-secondary:not(.uk-preserve-color) .uk-form-icon,
  .uk-tile-primary:not(.uk-preserve-color) .uk-form-icon,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon,
  .uk-card-primary.uk-card-body .uk-form-icon,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-form-icon,
  .uk-card-secondary.uk-card-body .uk-form-icon,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-icon,
  .uk-overlay-primary .uk-form-icon,
  .uk-offcanvas-bar .uk-form-icon {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-form-icon:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-form-icon:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-form-icon:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
  .uk-card-primary.uk-card-body .uk-form-icon:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
  .uk-card-secondary.uk-card-body .uk-form-icon:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
  .uk-overlay-primary .uk-form-icon:hover,
  .uk-offcanvas-bar .uk-form-icon:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-button-default,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-default,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-default,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-default,
  .uk-card-primary.uk-card-body .uk-button-default,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default,
  .uk-card-secondary.uk-card-body .uk-button-default,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default,
  .uk-overlay-primary .uk-button-default,
  .uk-offcanvas-bar .uk-button-default {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-button-default:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-default:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-default:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-default:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:hover,
  .uk-card-primary.uk-card-body .uk-button-default:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default:hover,
  .uk-card-secondary.uk-card-body .uk-button-default:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default:hover,
  .uk-overlay-primary .uk-button-default:hover,
  .uk-offcanvas-bar .uk-button-default:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
  }
  .uk-light .uk-button-default:active,
  .uk-light .uk-button-default.uk-active,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-default:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-default:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-default:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
  .uk-card-primary.uk-card-body .uk-button-default:active,
  .uk-card-primary.uk-card-body .uk-button-default.uk-active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default.uk-active,
  .uk-card-secondary.uk-card-body .uk-button-default:active,
  .uk-card-secondary.uk-card-body .uk-button-default.uk-active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default.uk-active,
  .uk-overlay-primary .uk-button-default:active,
  .uk-overlay-primary .uk-button-default.uk-active,
  .uk-offcanvas-bar .uk-button-default:active,
  .uk-offcanvas-bar .uk-button-default.uk-active {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
  }
  .uk-light .uk-button-primary,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-primary,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-primary,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-primary,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary,
  .uk-card-primary.uk-card-body .uk-button-primary,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary,
  .uk-card-secondary.uk-card-body .uk-button-primary,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary,
  .uk-overlay-primary .uk-button-primary,
  .uk-offcanvas-bar .uk-button-primary {
    background-color: #fff;
    color: #666;
  }
  .uk-light .uk-button-primary:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-primary:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
  .uk-card-primary.uk-card-body .uk-button-primary:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary:hover,
  .uk-card-secondary.uk-card-body .uk-button-primary:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary:hover,
  .uk-overlay-primary .uk-button-primary:hover,
  .uk-offcanvas-bar .uk-button-primary:hover {
    background-color: #f2f2f2;
    color: #666;
  }
  .uk-light .uk-button-primary:active,
  .uk-light .uk-button-primary.uk-active,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-primary:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
  .uk-card-primary.uk-card-body .uk-button-primary:active,
  .uk-card-primary.uk-card-body .uk-button-primary.uk-active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary.uk-active,
  .uk-card-secondary.uk-card-body .uk-button-primary:active,
  .uk-card-secondary.uk-card-body .uk-button-primary.uk-active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary.uk-active,
  .uk-overlay-primary .uk-button-primary:active,
  .uk-overlay-primary .uk-button-primary.uk-active,
  .uk-offcanvas-bar .uk-button-primary:active,
  .uk-offcanvas-bar .uk-button-primary.uk-active {
    background-color: #e6e6e6;
    color: #666;
  }
  .uk-light .uk-button-secondary,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-secondary,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary,
  .uk-card-primary.uk-card-body .uk-button-secondary,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary,
  .uk-card-secondary.uk-card-body .uk-button-secondary,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary,
  .uk-overlay-primary .uk-button-secondary,
  .uk-offcanvas-bar .uk-button-secondary {
    background-color: #fff;
    color: #666;
  }
  .uk-light .uk-button-secondary:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
  .uk-card-primary.uk-card-body .uk-button-secondary:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary:hover,
  .uk-card-secondary.uk-card-body .uk-button-secondary:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary:hover,
  .uk-overlay-primary .uk-button-secondary:hover,
  .uk-offcanvas-bar .uk-button-secondary:hover {
    background-color: #f2f2f2;
    color: #666;
  }
  .uk-light .uk-button-secondary:active,
  .uk-light .uk-button-secondary.uk-active,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
  .uk-card-primary.uk-card-body .uk-button-secondary:active,
  .uk-card-primary.uk-card-body .uk-button-secondary.uk-active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary.uk-active,
  .uk-card-secondary.uk-card-body .uk-button-secondary:active,
  .uk-card-secondary.uk-card-body .uk-button-secondary.uk-active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary.uk-active,
  .uk-overlay-primary .uk-button-secondary:active,
  .uk-overlay-primary .uk-button-secondary.uk-active,
  .uk-offcanvas-bar .uk-button-secondary:active,
  .uk-offcanvas-bar .uk-button-secondary.uk-active {
    background-color: #e6e6e6;
    color: #666;
  }
  .uk-light .uk-button-text,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-text,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-text,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-text,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-text,
  .uk-card-primary.uk-card-body .uk-button-text,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-text,
  .uk-card-secondary.uk-card-body .uk-button-text,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-text,
  .uk-overlay-primary .uk-button-text,
  .uk-offcanvas-bar .uk-button-text {
    color: #fff;
  }
  .uk-light .uk-button-text::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-text::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-text::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-text::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-text::before,
  .uk-card-primary.uk-card-body .uk-button-text::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-text::before,
  .uk-card-secondary.uk-card-body .uk-button-text::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-text::before,
  .uk-overlay-primary .uk-button-text::before,
  .uk-offcanvas-bar .uk-button-text::before {
    border-bottom-color: #fff;
  }
  .uk-light .uk-button-text:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-text:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-text:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-text:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:hover,
  .uk-card-primary.uk-card-body .uk-button-text:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-text:hover,
  .uk-card-secondary.uk-card-body .uk-button-text:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-text:hover,
  .uk-overlay-primary .uk-button-text:hover,
  .uk-offcanvas-bar .uk-button-text:hover {
    color: #fff;
  }
  .uk-light .uk-button-text:disabled,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-text:disabled,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-text:disabled,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-text:disabled,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:disabled,
  .uk-card-primary.uk-card-body .uk-button-text:disabled,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-text:disabled,
  .uk-card-secondary.uk-card-body .uk-button-text:disabled,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-text:disabled,
  .uk-overlay-primary .uk-button-text:disabled,
  .uk-offcanvas-bar .uk-button-text:disabled {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-button-link,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-link,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-link,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-link,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-link,
  .uk-card-primary.uk-card-body .uk-button-link,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-link,
  .uk-card-secondary.uk-card-body .uk-button-link,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-link,
  .uk-overlay-primary .uk-button-link,
  .uk-offcanvas-bar .uk-button-link {
    color: #fff;
  }
  .uk-light .uk-button-link:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-button-link:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-link:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-button-link:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-button-link:hover,
  .uk-card-primary.uk-card-body .uk-button-link:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-button-link:hover,
  .uk-card-secondary.uk-card-body .uk-button-link:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-link:hover,
  .uk-overlay-primary .uk-button-link:hover,
  .uk-offcanvas-bar .uk-button-link:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light.uk-card-badge,
  .uk-section-primary:not(.uk-preserve-color).uk-card-badge,
  .uk-section-secondary:not(.uk-preserve-color).uk-card-badge,
  .uk-tile-primary:not(.uk-preserve-color).uk-card-badge,
  .uk-tile-secondary:not(.uk-preserve-color).uk-card-badge,
  .uk-card-primary.uk-card-body.uk-card-badge,
  .uk-card-primary > :not([class*="uk-card-media"]).uk-card-badge,
  .uk-card-secondary.uk-card-body.uk-card-badge,
  .uk-card-secondary > :not([class*="uk-card-media"]).uk-card-badge,
  .uk-overlay-primary.uk-card-badge,
  .uk-offcanvas-bar.uk-card-badge {
    background-color: #fff;
    color: #666;
  }
  .uk-light .uk-close,
  .uk-section-primary:not(.uk-preserve-color) .uk-close,
  .uk-section-secondary:not(.uk-preserve-color) .uk-close,
  .uk-tile-primary:not(.uk-preserve-color) .uk-close,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-close,
  .uk-card-primary.uk-card-body .uk-close,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-close,
  .uk-card-secondary.uk-card-body .uk-close,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-close,
  .uk-overlay-primary .uk-close,
  .uk-offcanvas-bar .uk-close {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-close:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-close:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-close:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-close:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-close:hover,
  .uk-card-primary.uk-card-body .uk-close:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-close:hover,
  .uk-card-secondary.uk-card-body .uk-close:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-close:hover,
  .uk-overlay-primary .uk-close:hover,
  .uk-offcanvas-bar .uk-close:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-totop,
  .uk-section-primary:not(.uk-preserve-color) .uk-totop,
  .uk-section-secondary:not(.uk-preserve-color) .uk-totop,
  .uk-tile-primary:not(.uk-preserve-color) .uk-totop,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-totop,
  .uk-card-primary.uk-card-body .uk-totop,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-totop,
  .uk-card-secondary.uk-card-body .uk-totop,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-totop,
  .uk-overlay-primary .uk-totop,
  .uk-offcanvas-bar .uk-totop {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-totop:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-totop:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-totop:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-totop:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-totop:hover,
  .uk-card-primary.uk-card-body .uk-totop:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-totop:hover,
  .uk-card-secondary.uk-card-body .uk-totop:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-totop:hover,
  .uk-overlay-primary .uk-totop:hover,
  .uk-offcanvas-bar .uk-totop:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-totop:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-totop:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-totop:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-totop:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-totop:active,
  .uk-card-primary.uk-card-body .uk-totop:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-totop:active,
  .uk-card-secondary.uk-card-body .uk-totop:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-totop:active,
  .uk-overlay-primary .uk-totop:active,
  .uk-offcanvas-bar .uk-totop:active {
    color: #fff;
  }
  .uk-light .uk-marker,
  .uk-section-primary:not(.uk-preserve-color) .uk-marker,
  .uk-section-secondary:not(.uk-preserve-color) .uk-marker,
  .uk-tile-primary:not(.uk-preserve-color) .uk-marker,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-marker,
  .uk-card-primary.uk-card-body .uk-marker,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-marker,
  .uk-card-secondary.uk-card-body .uk-marker,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-marker,
  .uk-overlay-primary .uk-marker,
  .uk-offcanvas-bar .uk-marker {
    background: #f8f8f8;
    color: #666;
  }
  .uk-light .uk-marker:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-marker:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-marker:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-marker:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-marker:hover,
  .uk-card-primary.uk-card-body .uk-marker:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-marker:hover,
  .uk-card-secondary.uk-card-body .uk-marker:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-marker:hover,
  .uk-overlay-primary .uk-marker:hover,
  .uk-offcanvas-bar .uk-marker:hover {
    color: #666;
  }
  .uk-light .uk-badge,
  .uk-section-primary:not(.uk-preserve-color) .uk-badge,
  .uk-section-secondary:not(.uk-preserve-color) .uk-badge,
  .uk-tile-primary:not(.uk-preserve-color) .uk-badge,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-badge,
  .uk-card-primary.uk-card-body .uk-badge,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-badge,
  .uk-card-secondary.uk-card-body .uk-badge,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-badge,
  .uk-overlay-primary .uk-badge,
  .uk-offcanvas-bar .uk-badge {
    background-color: #fff;
    color: #666 !important;
  }
  .uk-light .uk-label,
  .uk-section-primary:not(.uk-preserve-color) .uk-label,
  .uk-section-secondary:not(.uk-preserve-color) .uk-label,
  .uk-tile-primary:not(.uk-preserve-color) .uk-label,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-label,
  .uk-card-primary.uk-card-body .uk-label,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-label,
  .uk-card-secondary.uk-card-body .uk-label,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-label,
  .uk-overlay-primary .uk-label,
  .uk-offcanvas-bar .uk-label {
    background-color: #fff;
    color: #666;
  }
  .uk-light .uk-article-meta,
  .uk-section-primary:not(.uk-preserve-color) .uk-article-meta,
  .uk-section-secondary:not(.uk-preserve-color) .uk-article-meta,
  .uk-tile-primary:not(.uk-preserve-color) .uk-article-meta,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-article-meta,
  .uk-card-primary.uk-card-body .uk-article-meta,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-article-meta,
  .uk-card-secondary.uk-card-body .uk-article-meta,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-article-meta,
  .uk-overlay-primary .uk-article-meta,
  .uk-offcanvas-bar .uk-article-meta {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-search-input,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-input,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-input,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
  .uk-card-primary.uk-card-body .uk-search-input,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input,
  .uk-card-secondary.uk-card-body .uk-search-input,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input,
  .uk-overlay-primary .uk-search-input,
  .uk-offcanvas-bar .uk-search-input {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-search-input::placeholder,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
  .uk-card-primary.uk-card-body .uk-search-input::placeholder,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
  .uk-card-secondary.uk-card-body .uk-search-input::placeholder,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
  .uk-overlay-primary .uk-search-input::placeholder,
  .uk-offcanvas-bar .uk-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-search .uk-search-icon,
  .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
  .uk-card-primary.uk-card-body .uk-search .uk-search-icon,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
  .uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
  .uk-overlay-primary .uk-search .uk-search-icon,
  .uk-offcanvas-bar .uk-search .uk-search-icon {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-search .uk-search-icon:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
  .uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
  .uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
  .uk-overlay-primary .uk-search .uk-search-icon:hover,
  .uk-offcanvas-bar .uk-search .uk-search-icon:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-search-default .uk-search-input,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
  .uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
  .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
  .uk-overlay-primary .uk-search-default .uk-search-input,
  .uk-offcanvas-bar .uk-search-default .uk-search-input {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-search-default .uk-search-input:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
  .uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
  .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
  .uk-overlay-primary .uk-search-default .uk-search-input:focus,
  .uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .uk-light .uk-search-navbar .uk-search-input,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
  .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
  .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
  .uk-overlay-primary .uk-search-navbar .uk-search-input,
  .uk-offcanvas-bar .uk-search-navbar .uk-search-input {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-search-navbar .uk-search-input:focus,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
  .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
  .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
  .uk-overlay-primary .uk-search-navbar .uk-search-input:focus,
  .uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .uk-light .uk-search-medium .uk-search-input,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
  .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
  .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
  .uk-overlay-primary .uk-search-medium .uk-search-input,
  .uk-offcanvas-bar .uk-search-medium .uk-search-input {
    background-color: transparent;
  }
  .uk-light .uk-search-large .uk-search-input,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
  .uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
  .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
  .uk-overlay-primary .uk-search-large .uk-search-input,
  .uk-offcanvas-bar .uk-search-large .uk-search-input {
    background-color: transparent;
  }
  .uk-light .uk-search-toggle,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
  .uk-card-primary.uk-card-body .uk-search-toggle,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle,
  .uk-card-secondary.uk-card-body .uk-search-toggle,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle,
  .uk-overlay-primary .uk-search-toggle,
  .uk-offcanvas-bar .uk-search-toggle {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-search-toggle:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
  .uk-card-primary.uk-card-body .uk-search-toggle:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
  .uk-card-secondary.uk-card-body .uk-search-toggle:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
  .uk-overlay-primary .uk-search-toggle:hover,
  .uk-offcanvas-bar .uk-search-toggle:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-accordion-title,
  .uk-section-primary:not(.uk-preserve-color) .uk-accordion-title,
  .uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title,
  .uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title,
  .uk-card-primary.uk-card-body .uk-accordion-title,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-accordion-title,
  .uk-card-secondary.uk-card-body .uk-accordion-title,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-accordion-title,
  .uk-overlay-primary .uk-accordion-title,
  .uk-offcanvas-bar .uk-accordion-title {
    color: #fff;
  }
  .uk-light .uk-accordion-title:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-accordion-title:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title:hover,
  .uk-card-primary.uk-card-body .uk-accordion-title:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-accordion-title:hover,
  .uk-card-secondary.uk-card-body .uk-accordion-title:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-accordion-title:hover,
  .uk-overlay-primary .uk-accordion-title:hover,
  .uk-offcanvas-bar .uk-accordion-title:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-thumbnav > * > *::after,
  .uk-section-primary:not(.uk-preserve-color) .uk-thumbnav > * > *::after,
  .uk-section-secondary:not(.uk-preserve-color) .uk-thumbnav > * > *::after,
  .uk-tile-primary:not(.uk-preserve-color) .uk-thumbnav > * > *::after,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-thumbnav > * > *::after,
  .uk-card-primary.uk-card-body .uk-thumbnav > * > *::after,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-thumbnav > * > *::after,
  .uk-card-secondary.uk-card-body .uk-thumbnav > * > *::after,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-thumbnav > * > *::after,
  .uk-overlay-primary .uk-thumbnav > * > *::after,
  .uk-offcanvas-bar .uk-thumbnav > * > *::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  }
  .uk-light .uk-iconnav > * > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
  .uk-card-primary.uk-card-body .uk-iconnav > * > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
  .uk-card-secondary.uk-card-body .uk-iconnav > * > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
  .uk-overlay-primary .uk-iconnav > * > a,
  .uk-offcanvas-bar .uk-iconnav > * > a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-iconnav > * > a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
  .uk-card-primary.uk-card-body .uk-iconnav > * > a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
  .uk-card-secondary.uk-card-body .uk-iconnav > * > a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
  .uk-overlay-primary .uk-iconnav > * > a:hover,
  .uk-offcanvas-bar .uk-iconnav > * > a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-iconnav > .uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
  .uk-card-primary.uk-card-body .uk-iconnav > .uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
  .uk-card-secondary.uk-card-body .uk-iconnav > .uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
  .uk-overlay-primary .uk-iconnav > .uk-active > a,
  .uk-offcanvas-bar .uk-iconnav > .uk-active > a {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-card-primary.uk-card-body .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-card-secondary.uk-card-body .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-overlay-primary .uk-grid-divider > :not(.uk-first-column)::before,
  .uk-offcanvas-bar .uk-grid-divider > :not(.uk-first-column)::before {
    border-left-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-card-primary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-card-secondary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-overlay-primary .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
  .uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-nav-default > li > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
  .uk-card-primary.uk-card-body .uk-nav-default > li > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default > li > a,
  .uk-card-secondary.uk-card-body .uk-nav-default > li > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default > li > a,
  .uk-overlay-primary .uk-nav-default > li > a,
  .uk-offcanvas-bar .uk-nav-default > li > a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-nav-default > li > a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
  .uk-card-primary.uk-card-body .uk-nav-default > li > a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default > li > a:hover,
  .uk-card-secondary.uk-card-body .uk-nav-default > li > a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default > li > a:hover,
  .uk-overlay-primary .uk-nav-default > li > a:hover,
  .uk-offcanvas-bar .uk-nav-default > li > a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-nav-default > li.uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
  .uk-card-primary.uk-card-body .uk-nav-default > li.uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default > li.uk-active > a,
  .uk-card-secondary.uk-card-body .uk-nav-default > li.uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default > li.uk-active > a,
  .uk-overlay-primary .uk-nav-default > li.uk-active > a,
  .uk-offcanvas-bar .uk-nav-default > li.uk-active > a {
    color: #fff;
  }
  .uk-light .uk-nav-default .uk-nav-header,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
  .uk-card-primary.uk-card-body .uk-nav-default .uk-nav-header,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-header,
  .uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-header,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-header,
  .uk-overlay-primary .uk-nav-default .uk-nav-header,
  .uk-offcanvas-bar .uk-nav-default .uk-nav-header {
    color: #fff;
  }
  .uk-light .uk-nav-default .uk-nav-divider,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
  .uk-card-primary.uk-card-body .uk-nav-default .uk-nav-divider,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-divider,
  .uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-divider,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-divider,
  .uk-overlay-primary .uk-nav-default .uk-nav-divider,
  .uk-offcanvas-bar .uk-nav-default .uk-nav-divider {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-nav-default .uk-nav-sub a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
  .uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a,
  .uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a,
  .uk-overlay-primary .uk-nav-default .uk-nav-sub a,
  .uk-offcanvas-bar .uk-nav-default .uk-nav-sub a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-nav-default .uk-nav-sub a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
  .uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a:hover,
  .uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a:hover,
  .uk-overlay-primary .uk-nav-default .uk-nav-sub a:hover,
  .uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-overlay-primary .uk-nav-default .uk-nav-sub li.uk-active > a,
  .uk-offcanvas-bar .uk-nav-default .uk-nav-sub li.uk-active > a {
    color: #fff;
  }
  .uk-light .uk-nav-primary > li > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a,
  .uk-card-primary.uk-card-body .uk-nav-primary > li > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a,
  .uk-card-secondary.uk-card-body .uk-nav-primary > li > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a,
  .uk-overlay-primary .uk-nav-primary > li > a,
  .uk-offcanvas-bar .uk-nav-primary > li > a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-nav-primary > li > a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
  .uk-card-primary.uk-card-body .uk-nav-primary > li > a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a:hover,
  .uk-card-secondary.uk-card-body .uk-nav-primary > li > a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a:hover,
  .uk-overlay-primary .uk-nav-primary > li > a:hover,
  .uk-offcanvas-bar .uk-nav-primary > li > a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-nav-primary > li.uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
  .uk-card-primary.uk-card-body .uk-nav-primary > li.uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary > li.uk-active > a,
  .uk-card-secondary.uk-card-body .uk-nav-primary > li.uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary > li.uk-active > a,
  .uk-overlay-primary .uk-nav-primary > li.uk-active > a,
  .uk-offcanvas-bar .uk-nav-primary > li.uk-active > a {
    color: #fff;
  }
  .uk-light .uk-nav-primary .uk-nav-header,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
  .uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-header,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-header,
  .uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-header,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-header,
  .uk-overlay-primary .uk-nav-primary .uk-nav-header,
  .uk-offcanvas-bar .uk-nav-primary .uk-nav-header {
    color: #fff;
  }
  .uk-light .uk-nav-primary .uk-nav-divider,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
  .uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-divider,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-divider,
  .uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-divider,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-divider,
  .uk-overlay-primary .uk-nav-primary .uk-nav-divider,
  .uk-offcanvas-bar .uk-nav-primary .uk-nav-divider {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-nav-primary .uk-nav-sub a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
  .uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a,
  .uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a,
  .uk-overlay-primary .uk-nav-primary .uk-nav-sub a,
  .uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-nav-primary .uk-nav-sub a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
  .uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a:hover,
  .uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a:hover,
  .uk-overlay-primary .uk-nav-primary .uk-nav-sub a:hover,
  .uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-overlay-primary .uk-nav-primary .uk-nav-sub li.uk-active > a,
  .uk-offcanvas-bar .uk-nav-primary .uk-nav-sub li.uk-active > a {
    color: #fff;
  }
  .uk-light .uk-nav-secondary > li > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
  .uk-card-primary.uk-card-body .uk-nav-secondary > li > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a,
  .uk-card-secondary.uk-card-body .uk-nav-secondary > li > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a,
  .uk-overlay-primary .uk-nav-secondary > li > a,
  .uk-offcanvas-bar .uk-nav-secondary > li > a {
    color: #fff;
  }
  .uk-light .uk-nav-secondary > li > a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
  .uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover,
  .uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover,
  .uk-overlay-primary .uk-nav-secondary > li > a:hover,
  .uk-offcanvas-bar .uk-nav-secondary > li > a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .uk-light .uk-nav-secondary > li.uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
  .uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a,
  .uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a,
  .uk-overlay-primary .uk-nav-secondary > li.uk-active > a,
  .uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .uk-light .uk-nav-secondary .uk-nav-subtitle,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
  .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-subtitle,
  .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-subtitle,
  .uk-overlay-primary .uk-nav-secondary .uk-nav-subtitle,
  .uk-offcanvas-bar .uk-nav-secondary .uk-nav-subtitle {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-overlay-primary .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
  .uk-offcanvas-bar .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-overlay-primary .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
  .uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
    color: #fff;
  }
  .uk-light .uk-nav-secondary .uk-nav-header,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
  .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-header,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-header,
  .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-header,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-header,
  .uk-overlay-primary .uk-nav-secondary .uk-nav-header,
  .uk-offcanvas-bar .uk-nav-secondary .uk-nav-header {
    color: #fff;
  }
  .uk-light .uk-nav-secondary .uk-nav-divider,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
  .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-divider,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-divider,
  .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-divider,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-divider,
  .uk-overlay-primary .uk-nav-secondary .uk-nav-divider,
  .uk-offcanvas-bar .uk-nav-secondary .uk-nav-divider {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-nav-secondary .uk-nav-sub a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
  .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a,
  .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a,
  .uk-overlay-primary .uk-nav-secondary .uk-nav-sub a,
  .uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-overlay-primary .uk-nav-secondary .uk-nav-sub a:hover,
  .uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-overlay-primary .uk-nav-secondary .uk-nav-sub li.uk-active > a,
  .uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub li.uk-active > a {
    color: #fff;
  }
  .uk-light .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-section-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-tile-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-card-primary.uk-card-body .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-card-secondary.uk-card-body .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-overlay-primary .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
  .uk-offcanvas-bar .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-navbar-nav > li > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
  .uk-card-primary.uk-card-body .uk-navbar-nav > li > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a,
  .uk-card-secondary.uk-card-body .uk-navbar-nav > li > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a,
  .uk-overlay-primary .uk-navbar-nav > li > a,
  .uk-offcanvas-bar .uk-navbar-nav > li > a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-navbar-nav > li:hover > a,
  .uk-light .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-card-primary.uk-card-body .uk-navbar-nav > li:hover > a,
  .uk-card-primary.uk-card-body .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li:hover > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-card-secondary.uk-card-body .uk-navbar-nav > li:hover > a,
  .uk-card-secondary.uk-card-body .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li:hover > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-overlay-primary .uk-navbar-nav > li:hover > a,
  .uk-overlay-primary .uk-navbar-nav > li > a[aria-expanded="true"],
  .uk-offcanvas-bar .uk-navbar-nav > li:hover > a,
  .uk-offcanvas-bar .uk-navbar-nav > li > a[aria-expanded="true"] {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-navbar-nav > li > a:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
  .uk-card-primary.uk-card-body .uk-navbar-nav > li > a:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a:active,
  .uk-card-secondary.uk-card-body .uk-navbar-nav > li > a:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a:active,
  .uk-overlay-primary .uk-navbar-nav > li > a:active,
  .uk-offcanvas-bar .uk-navbar-nav > li > a:active {
    color: #fff;
  }
  .uk-light .uk-navbar-nav > li.uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
  .uk-card-primary.uk-card-body .uk-navbar-nav > li.uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li.uk-active > a,
  .uk-card-secondary.uk-card-body .uk-navbar-nav > li.uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li.uk-active > a,
  .uk-overlay-primary .uk-navbar-nav > li.uk-active > a,
  .uk-offcanvas-bar .uk-navbar-nav > li.uk-active > a {
    color: #fff;
  }
  .uk-light .uk-navbar-item,
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-item,
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-item,
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-item,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-item,
  .uk-card-primary.uk-card-body .uk-navbar-item,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-item,
  .uk-card-secondary.uk-card-body .uk-navbar-item,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-item,
  .uk-overlay-primary .uk-navbar-item,
  .uk-offcanvas-bar .uk-navbar-item {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-navbar-toggle,
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle,
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
  .uk-card-primary.uk-card-body .uk-navbar-toggle,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-toggle,
  .uk-card-secondary.uk-card-body .uk-navbar-toggle,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-toggle,
  .uk-overlay-primary .uk-navbar-toggle,
  .uk-offcanvas-bar .uk-navbar-toggle {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-navbar-toggle:hover,
  .uk-light .uk-navbar-toggle[aria-expanded="true"],
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded="true"],
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded="true"],
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded="true"],
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded="true"],
  .uk-card-primary.uk-card-body .uk-navbar-toggle:hover,
  .uk-card-primary.uk-card-body .uk-navbar-toggle[aria-expanded="true"],
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-toggle:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-toggle[aria-expanded="true"],
  .uk-card-secondary.uk-card-body .uk-navbar-toggle:hover,
  .uk-card-secondary.uk-card-body .uk-navbar-toggle[aria-expanded="true"],
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-toggle:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-toggle[aria-expanded="true"],
  .uk-overlay-primary .uk-navbar-toggle:hover,
  .uk-overlay-primary .uk-navbar-toggle[aria-expanded="true"],
  .uk-offcanvas-bar .uk-navbar-toggle:hover,
  .uk-offcanvas-bar .uk-navbar-toggle[aria-expanded="true"] {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-subnav > * > :first-child,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
  .uk-card-primary.uk-card-body .uk-subnav > * > :first-child,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > * > :first-child,
  .uk-card-secondary.uk-card-body .uk-subnav > * > :first-child,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > * > :first-child,
  .uk-overlay-primary .uk-subnav > * > :first-child,
  .uk-offcanvas-bar .uk-subnav > * > :first-child {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-subnav > * > a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
  .uk-card-primary.uk-card-body .uk-subnav > * > a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > * > a:hover,
  .uk-card-secondary.uk-card-body .uk-subnav > * > a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > * > a:hover,
  .uk-overlay-primary .uk-subnav > * > a:hover,
  .uk-offcanvas-bar .uk-subnav > * > a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-subnav > .uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
  .uk-card-primary.uk-card-body .uk-subnav > .uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > .uk-active > a,
  .uk-card-secondary.uk-card-body .uk-subnav > .uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > .uk-active > a,
  .uk-overlay-primary .uk-subnav > .uk-active > a,
  .uk-offcanvas-bar .uk-subnav > .uk-active > a {
    color: #fff;
  }
  .uk-light .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-primary.uk-card-body .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-secondary.uk-card-body .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-overlay-primary .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-offcanvas-bar .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
    border-left-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-subnav-pill > * > :first-child,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
  .uk-card-primary.uk-card-body .uk-subnav-pill > * > :first-child,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > :first-child,
  .uk-card-secondary.uk-card-body .uk-subnav-pill > * > :first-child,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > :first-child,
  .uk-overlay-primary .uk-subnav-pill > * > :first-child,
  .uk-offcanvas-bar .uk-subnav-pill > * > :first-child {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-subnav-pill > * > a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
  .uk-card-primary.uk-card-body .uk-subnav-pill > * > a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:hover,
  .uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:hover,
  .uk-overlay-primary .uk-subnav-pill > * > a:hover,
  .uk-offcanvas-bar .uk-subnav-pill > * > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-subnav-pill > * > a:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
  .uk-card-primary.uk-card-body .uk-subnav-pill > * > a:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:active,
  .uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:active,
  .uk-overlay-primary .uk-subnav-pill > * > a:active,
  .uk-offcanvas-bar .uk-subnav-pill > * > a:active {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-subnav-pill > .uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
  .uk-card-primary.uk-card-body .uk-subnav-pill > .uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > .uk-active > a,
  .uk-card-secondary.uk-card-body .uk-subnav-pill > .uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > .uk-active > a,
  .uk-overlay-primary .uk-subnav-pill > .uk-active > a,
  .uk-offcanvas-bar .uk-subnav-pill > .uk-active > a {
    background-color: #fff;
    color: #666;
  }
  .uk-light .uk-subnav > .uk-disabled > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
  .uk-card-primary.uk-card-body .uk-subnav > .uk-disabled > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > .uk-disabled > a,
  .uk-card-secondary.uk-card-body .uk-subnav > .uk-disabled > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > .uk-disabled > a,
  .uk-overlay-primary .uk-subnav > .uk-disabled > a,
  .uk-offcanvas-bar .uk-subnav > .uk-disabled > a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-breadcrumb > * > *,
  .uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
  .uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
  .uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
  .uk-card-primary.uk-card-body .uk-breadcrumb > * > *,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > *,
  .uk-card-secondary.uk-card-body .uk-breadcrumb > * > *,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > *,
  .uk-overlay-primary .uk-breadcrumb > * > *,
  .uk-offcanvas-bar .uk-breadcrumb > * > * {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-breadcrumb > * > :hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
  .uk-card-primary.uk-card-body .uk-breadcrumb > * > :hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > :hover,
  .uk-card-secondary.uk-card-body .uk-breadcrumb > * > :hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > :hover,
  .uk-overlay-primary .uk-breadcrumb > * > :hover,
  .uk-offcanvas-bar .uk-breadcrumb > * > :hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-breadcrumb > :last-child > *,
  .uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
  .uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
  .uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
  .uk-card-primary.uk-card-body .uk-breadcrumb > :last-child > *,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > :last-child > *,
  .uk-card-secondary.uk-card-body .uk-breadcrumb > :last-child > *,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-breadcrumb > :last-child > *,
  .uk-overlay-primary .uk-breadcrumb > :last-child > *,
  .uk-offcanvas-bar .uk-breadcrumb > :last-child > * {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-primary.uk-card-body .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-secondary.uk-card-body .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-overlay-primary .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
  .uk-offcanvas-bar .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-pagination > * > *,
  .uk-section-primary:not(.uk-preserve-color) .uk-pagination > * > *,
  .uk-section-secondary:not(.uk-preserve-color) .uk-pagination > * > *,
  .uk-tile-primary:not(.uk-preserve-color) .uk-pagination > * > *,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > * > *,
  .uk-card-primary.uk-card-body .uk-pagination > * > *,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > * > *,
  .uk-card-secondary.uk-card-body .uk-pagination > * > *,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > * > *,
  .uk-overlay-primary .uk-pagination > * > *,
  .uk-offcanvas-bar .uk-pagination > * > * {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-pagination > * > :hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-pagination > * > :hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-pagination > * > :hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-pagination > * > :hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > * > :hover,
  .uk-card-primary.uk-card-body .uk-pagination > * > :hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > * > :hover,
  .uk-card-secondary.uk-card-body .uk-pagination > * > :hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > * > :hover,
  .uk-overlay-primary .uk-pagination > * > :hover,
  .uk-offcanvas-bar .uk-pagination > * > :hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-pagination > .uk-active > *,
  .uk-section-primary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
  .uk-section-secondary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
  .uk-tile-primary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
  .uk-card-primary.uk-card-body .uk-pagination > .uk-active > *,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > .uk-active > *,
  .uk-card-secondary.uk-card-body .uk-pagination > .uk-active > *,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > .uk-active > *,
  .uk-overlay-primary .uk-pagination > .uk-active > *,
  .uk-offcanvas-bar .uk-pagination > .uk-active > * {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-pagination > .uk-disabled > *,
  .uk-section-primary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
  .uk-section-secondary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
  .uk-tile-primary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
  .uk-card-primary.uk-card-body .uk-pagination > .uk-disabled > *,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > .uk-disabled > *,
  .uk-card-secondary.uk-card-body .uk-pagination > .uk-disabled > *,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > .uk-disabled > *,
  .uk-overlay-primary .uk-pagination > .uk-disabled > *,
  .uk-offcanvas-bar .uk-pagination > .uk-disabled > * {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-tab::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-tab::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-tab::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-tab::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-tab::before,
  .uk-card-primary.uk-card-body .uk-tab::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-tab::before,
  .uk-card-secondary.uk-card-body .uk-tab::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab::before,
  .uk-overlay-primary .uk-tab::before,
  .uk-offcanvas-bar .uk-tab::before {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-tab > * > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-tab > * > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-tab > * > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-tab > * > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-tab > * > a,
  .uk-card-primary.uk-card-body .uk-tab > * > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > * > a,
  .uk-card-secondary.uk-card-body .uk-tab > * > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > * > a,
  .uk-overlay-primary .uk-tab > * > a,
  .uk-offcanvas-bar .uk-tab > * > a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-tab > * > a:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-tab > * > a:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-tab > * > a:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-tab > * > a:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-tab > * > a:hover,
  .uk-card-primary.uk-card-body .uk-tab > * > a:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > * > a:hover,
  .uk-card-secondary.uk-card-body .uk-tab > * > a:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > * > a:hover,
  .uk-overlay-primary .uk-tab > * > a:hover,
  .uk-offcanvas-bar .uk-tab > * > a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-tab > .uk-active > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
  .uk-card-primary.uk-card-body .uk-tab > .uk-active > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > .uk-active > a,
  .uk-card-secondary.uk-card-body .uk-tab > .uk-active > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > .uk-active > a,
  .uk-overlay-primary .uk-tab > .uk-active > a,
  .uk-offcanvas-bar .uk-tab > .uk-active > a {
    color: #fff;
    border-color: #fff;
  }
  .uk-light .uk-tab > .uk-disabled > a,
  .uk-section-primary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
  .uk-section-secondary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
  .uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
  .uk-card-primary.uk-card-body .uk-tab > .uk-disabled > a,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > .uk-disabled > a,
  .uk-card-secondary.uk-card-body .uk-tab > .uk-disabled > a,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > .uk-disabled > a,
  .uk-overlay-primary .uk-tab > .uk-disabled > a,
  .uk-offcanvas-bar .uk-tab > .uk-disabled > a {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-slidenav,
  .uk-section-primary:not(.uk-preserve-color) .uk-slidenav,
  .uk-section-secondary:not(.uk-preserve-color) .uk-slidenav,
  .uk-tile-primary:not(.uk-preserve-color) .uk-slidenav,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav,
  .uk-card-primary.uk-card-body .uk-slidenav,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-slidenav,
  .uk-card-secondary.uk-card-body .uk-slidenav,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-slidenav,
  .uk-overlay-primary .uk-slidenav,
  .uk-offcanvas-bar .uk-slidenav {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-slidenav:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-slidenav:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-slidenav:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:hover,
  .uk-card-primary.uk-card-body .uk-slidenav:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-slidenav:hover,
  .uk-card-secondary.uk-card-body .uk-slidenav:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-slidenav:hover,
  .uk-overlay-primary .uk-slidenav:hover,
  .uk-offcanvas-bar .uk-slidenav:hover {
    color: rgba(255, 255, 255, 0.95);
  }
  .uk-light .uk-slidenav:active,
  .uk-section-primary:not(.uk-preserve-color) .uk-slidenav:active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-slidenav:active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:active,
  .uk-card-primary.uk-card-body .uk-slidenav:active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-slidenav:active,
  .uk-card-secondary.uk-card-body .uk-slidenav:active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-slidenav:active,
  .uk-overlay-primary .uk-slidenav:active,
  .uk-offcanvas-bar .uk-slidenav:active {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-dotnav > * > *,
  .uk-section-primary:not(.uk-preserve-color) .uk-dotnav > * > *,
  .uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > * > *,
  .uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > *,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > *,
  .uk-card-primary.uk-card-body .uk-dotnav > * > *,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > * > *,
  .uk-card-secondary.uk-card-body .uk-dotnav > * > *,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > * > *,
  .uk-overlay-primary .uk-dotnav > * > *,
  .uk-offcanvas-bar .uk-dotnav > * > * {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.9);
  }
  .uk-light .uk-dotnav > * > :hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
  .uk-card-primary.uk-card-body .uk-dotnav > * > :hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > * > :hover,
  .uk-card-secondary.uk-card-body .uk-dotnav > * > :hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > * > :hover,
  .uk-overlay-primary .uk-dotnav > * > :hover,
  .uk-offcanvas-bar .uk-dotnav > * > :hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: transparent;
  }
  .uk-light .uk-dotnav > * > :active,
  .uk-section-primary:not(.uk-preserve-color) .uk-dotnav > * > :active,
  .uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > * > :active,
  .uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > :active,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > :active,
  .uk-card-primary.uk-card-body .uk-dotnav > * > :active,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > * > :active,
  .uk-card-secondary.uk-card-body .uk-dotnav > * > :active,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > * > :active,
  .uk-overlay-primary .uk-dotnav > * > :active,
  .uk-offcanvas-bar .uk-dotnav > * > :active {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: transparent;
  }
  .uk-light .uk-dotnav > .uk-active > *,
  .uk-section-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
  .uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
  .uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
  .uk-card-primary.uk-card-body .uk-dotnav > .uk-active > *,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > .uk-active > *,
  .uk-card-secondary.uk-card-body .uk-dotnav > .uk-active > *,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > .uk-active > *,
  .uk-overlay-primary .uk-dotnav > .uk-active > *,
  .uk-offcanvas-bar .uk-dotnav > .uk-active > * {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: transparent;
  }
  .uk-light .uk-text-lead,
  .uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
  .uk-tile-primary:not(.uk-preserve-color) .uk-text-lead,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-text-lead,
  .uk-card-primary.uk-card-body .uk-text-lead,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-text-lead,
  .uk-card-secondary.uk-card-body .uk-text-lead,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-lead,
  .uk-overlay-primary .uk-text-lead,
  .uk-offcanvas-bar .uk-text-lead {
    color: rgba(255, 255, 255, 0.7);
  }
  .uk-light .uk-text-meta,
  .uk-section-primary:not(.uk-preserve-color) .uk-text-meta,
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-meta,
  .uk-tile-primary:not(.uk-preserve-color) .uk-text-meta,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-text-meta,
  .uk-card-primary.uk-card-body .uk-text-meta,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-text-meta,
  .uk-card-secondary.uk-card-body .uk-text-meta,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-meta,
  .uk-overlay-primary .uk-text-meta,
  .uk-offcanvas-bar .uk-text-meta {
    color: rgba(255, 255, 255, 0.5);
  }
  .uk-light .uk-text-muted,
  .uk-section-primary:not(.uk-preserve-color) .uk-text-muted,
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-muted,
  .uk-tile-primary:not(.uk-preserve-color) .uk-text-muted,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-text-muted,
  .uk-card-primary.uk-card-body .uk-text-muted,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-text-muted,
  .uk-card-secondary.uk-card-body .uk-text-muted,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-muted,
  .uk-overlay-primary .uk-text-muted,
  .uk-offcanvas-bar .uk-text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .uk-light .uk-text-emphasis,
  .uk-section-primary:not(.uk-preserve-color) .uk-text-emphasis,
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-emphasis,
  .uk-tile-primary:not(.uk-preserve-color) .uk-text-emphasis,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-text-emphasis,
  .uk-card-primary.uk-card-body .uk-text-emphasis,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-text-emphasis,
  .uk-card-secondary.uk-card-body .uk-text-emphasis,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-emphasis,
  .uk-overlay-primary .uk-text-emphasis,
  .uk-offcanvas-bar .uk-text-emphasis {
    color: #fff !important;
  }
  .uk-light .uk-text-primary,
  .uk-section-primary:not(.uk-preserve-color) .uk-text-primary,
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-primary,
  .uk-tile-primary:not(.uk-preserve-color) .uk-text-primary,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-text-primary,
  .uk-card-primary.uk-card-body .uk-text-primary,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-text-primary,
  .uk-card-secondary.uk-card-body .uk-text-primary,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-primary,
  .uk-overlay-primary .uk-text-primary,
  .uk-offcanvas-bar .uk-text-primary {
    color: #fff !important;
  }
  .uk-light .uk-text-secondary,
  .uk-section-primary:not(.uk-preserve-color) .uk-text-secondary,
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-secondary,
  .uk-tile-primary:not(.uk-preserve-color) .uk-text-secondary,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-text-secondary,
  .uk-card-primary.uk-card-body .uk-text-secondary,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-text-secondary,
  .uk-card-secondary.uk-card-body .uk-text-secondary,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-secondary,
  .uk-overlay-primary .uk-text-secondary,
  .uk-offcanvas-bar .uk-text-secondary {
    color: #fff !important;
  }
  .uk-light .uk-column-divider,
  .uk-section-primary:not(.uk-preserve-color) .uk-column-divider,
  .uk-section-secondary:not(.uk-preserve-color) .uk-column-divider,
  .uk-tile-primary:not(.uk-preserve-color) .uk-column-divider,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-column-divider,
  .uk-card-primary.uk-card-body .uk-column-divider,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-column-divider,
  .uk-card-secondary.uk-card-body .uk-column-divider,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-column-divider,
  .uk-overlay-primary .uk-column-divider,
  .uk-offcanvas-bar .uk-column-divider {
    column-rule-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-logo,
  .uk-section-primary:not(.uk-preserve-color) .uk-logo,
  .uk-section-secondary:not(.uk-preserve-color) .uk-logo,
  .uk-tile-primary:not(.uk-preserve-color) .uk-logo,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
  .uk-card-primary.uk-card-body .uk-logo,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo,
  .uk-card-secondary.uk-card-body .uk-logo,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo,
  .uk-overlay-primary .uk-logo,
  .uk-offcanvas-bar .uk-logo {
    color: #fff;
  }
  .uk-light .uk-logo:hover,
  .uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,
  .uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,
  .uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
  .uk-card-primary.uk-card-body .uk-logo:hover,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:hover,
  .uk-card-secondary.uk-card-body .uk-logo:hover,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:hover,
  .uk-overlay-primary .uk-logo:hover,
  .uk-offcanvas-bar .uk-logo:hover {
    color: #fff;
  }
  .uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
  .uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) {
    display: none;
  }
  .uk-light .uk-logo-inverse,
  .uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse,
  .uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse,
  .uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse,
  .uk-card-primary.uk-card-body .uk-logo-inverse,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo-inverse,
  .uk-card-secondary.uk-card-body .uk-logo-inverse,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo-inverse,
  .uk-overlay-primary .uk-logo-inverse,
  .uk-offcanvas-bar .uk-logo-inverse {
    display: block;
  }
  .uk-light .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-light .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-section-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-section-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-section-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-tile-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-card-primary.uk-card-body .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-card-primary.uk-card-body .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-card-secondary.uk-card-body .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-card-secondary.uk-card-body .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-overlay-primary .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-overlay-primary .uk-table-striped tbody tr:nth-of-type(even):last-child,
  .uk-offcanvas-bar .uk-table-striped > tr:nth-of-type(even):last-child,
  .uk-offcanvas-bar .uk-table-striped tbody tr:nth-of-type(even):last-child {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .uk-light .uk-accordion-title::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-accordion-title::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title::before,
  .uk-card-primary.uk-card-body .uk-accordion-title::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-accordion-title::before,
  .uk-card-secondary.uk-card-body .uk-accordion-title::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-accordion-title::before,
  .uk-overlay-primary .uk-accordion-title::before,
  .uk-offcanvas-bar .uk-accordion-title::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  .uk-light .uk-open > .uk-accordion-title::before,
  .uk-section-primary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
  .uk-section-secondary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
  .uk-tile-primary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
  .uk-tile-secondary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
  .uk-card-primary.uk-card-body .uk-open > .uk-accordion-title::before,
  .uk-card-primary > :not([class*="uk-card-media"]) .uk-open > .uk-accordion-title::before,
  .uk-card-secondary.uk-card-body .uk-open > .uk-accordion-title::before,
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-open > .uk-accordion-title::before,
  .uk-overlay-primary .uk-open > .uk-accordion-title::before,
  .uk-offcanvas-bar .uk-open > .uk-accordion-title::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
  }
  * {
    --uk-inverse: initial;
  }
  .uk-light,
  .uk-section-primary:not(.uk-preserve-color),
  .uk-section-secondary:not(.uk-preserve-color),
  .uk-tile-primary:not(.uk-preserve-color),
  .uk-tile-secondary:not(.uk-preserve-color),
  .uk-card-primary.uk-card-body,
  .uk-card-primary > :not([class*="uk-card-media"]),
  .uk-card-secondary.uk-card-body,
  .uk-card-secondary > :not([class*="uk-card-media"]),
  .uk-overlay-primary,
  .uk-offcanvas-bar {
    --uk-inverse: light;
  }
  .uk-dark,
  .uk-section-default:not(.uk-preserve-color),
  .uk-section-muted:not(.uk-preserve-color),
  .uk-tile-default:not(.uk-preserve-color),
  .uk-tile-muted:not(.uk-preserve-color),
  .uk-card-default.uk-card-body,
  .uk-card-default > :not([class*="uk-card-media"]),
  .uk-overlay-default,
  .uk-dropbar,
  .uk-navbar-container:not(.uk-navbar-transparent),
  .uk-navbar-dropdown,
  .uk-dropdown {
    --uk-inverse: dark;
  }
  .uk-inverse-light {
    --uk-inverse: light !important;
  }
  .uk-inverse-dark {
    --uk-inverse: dark !important;
  }
  @media print {
    *,
    *::before,
    *::after {
      background: transparent !important;
      color: black !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }
    a,
    a:visited {
      text-decoration: underline;
    }
    pre,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
    }
    thead {
      display: table-header-group;
    }
    tr,
    img {
      page-break-inside: avoid;
    }
    img {
      max-width: 100% !important;
    }
    @page {
      margin: 0.5cm;
    }
    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3;
    }
    h2,
    h3 {
      page-break-after: avoid;
    }
  }
/* publico.css */

  @font-face {
      font-family: "FontAwesome";
      font-style: normal;
      font-display: swap;
      src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.0/fonts/fontawesome-webfont.ttf) format('truetype')
  }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


.footer-icons {
    width: auto;
    padding-bottom: 35px;
}

.footer-icons li {
    display: inline;
    padding: 0;
    margin: 0;
}

.footer-icons li a {
    padding: 3px 9px;
    text-align: center;
}

.footer-icons li a i {
    font-size: 1.25em;
    font-weight: normal;
    color: white;
}

.footer-icons li a:hover i {
    color: rgba(255, 255, 255, 0.7);
}

.footer-icons ul.share-buttons {
    list-style: none;
    padding: 0;
}

.footer-icons ul.share-buttons a:hover svg {
    fill: var(--main-color);
}

.footer-icons ul.share-buttons .sr-only {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.footer-distributed {
    display: block;
    overflow: hidden;
    background-color: #001a2d;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 35px 5%;
}

.footer-distributed .footer-left {
    display: block;
    overflow: hidden;
    vertical-align: top;
    white-space: nowrap;
}

.footer-distributed .footer-left h3 span, .footer-distributed .footer-left .h3 span {
    color: #5383d3;
}

.footer-distributed .footer-left a.foot-logo {
    display: inline-block;
    overflow: hidden;
    width: 176px;
    height: 25px;
    background: url(Images/inlines.png) no-repeat 0 -75px;
}

.footer-distributed .footer-left i, .footer-distributed .footer-left em {
    color: #ffffff;
    margin: 0;
    display: inline-block;
}

.footer-distributed .footer-left p {
    color: #ffffff;
    margin: 0;
    font-size: 0.75rem !important;
    display: inline-block;
}

.footer-distributed .footer-left p span {
    display: block;
    font-weight: normal;
    font-size: 0.875em;
    line-height: 1em;
    margin: 20px 0 0 0;
    font-weight: 300;
}

.footer-distributed .footer-left p a {
    color: #fff;
    text-decoration: none;
}

.footer-distributed .footer-center {
    display: none;
    overflow: hidden;
    float: left;
    vertical-align: top;
    width: 33%;
    margin-left: 5%;
    white-space: nowrap;
}

.footer-distributed .footer-center .footer-links:nth-child(1) {
    float: left;
}

.footer-distributed .footer-center .footer-links:nth-child(2) {
    float: right;
}

.footer-distributed .footer-center .footer-links {
    display: block;
    overflow: hidden;
    color: #ffffff;
    padding: 0;
    margin: 0;
    width: 45%;
    white-space: nowrap;
}

.footer-distributed .footer-center .footer-links li {
    padding: 5px 0;
}

.footer-distributed .footer-center .footer-links li:first-child {
    border-bottom: 1px solid #526775;
    white-space: nowrap;
}

.footer-distributed .footer-center .footer-links .foot-title {
    font-size: 15px;
    text-transform: uppercase;
    text-align: left;
    white-space: nowrap;
}

.footer-distributed .footer-center .footer-links a {
    display: inline-block;
    line-height: 1em;
    text-decoration: none;
    color: inherit;
    font-size: 15px;
    font-weight: 300;
}

.footer-distributed .footer-center .footer-links a:hover {
    color: #adadad;
}

.footer-distributed .footer-right {
    display: block;
    overflow: hidden;
    float: left;
    vertical-align: top;
    white-space: nowrap;
    margin-top: 1rem;
}

.footer-distributed .footer-right .footer-links {
    color: #ffffff;
    padding: 0;
    float: left;
    white-space: nowrap;
}

.footer-distributed .footer-right .footer-links li {
    padding: 5px 0;
}

.footer-distributed .footer-right .footer-links .foot-title {
    white-space: nowrap;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-distributed .footer-right .footer-links a {
    display: inline-block;
    line-height: 1em;
    text-decoration: none;
    color: inherit;
    font-weight: 300;
}

.footer-distributed .footer-right .footer-links a:hover {
    color: #adadad;
}

p.footer-company-about {
    line-height: 15px;
    color: #fff;
    font-size: 0.75rem !important;
    font-weight: normal;
    margin: 0;
    white-space: normal;
}

p.footer-company-about span {
    display: block;
    color: #fff;
    font-size: 0.75rem !important;
    font-weight: bold;
}

p.footer-company-name {
    color: #fff;
    font-size: 0.75rem !important;
    font-weight: normal;
    margin: 0;
}

.footer-extra-links {
    display: block;
    background-color: #001a2d;
    position: relative;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 0;
    border-top: 1px solid #193042;
    border-bottom: 1px solid #193042;
    line-height: 4em;
}

.footer-extra-links ul li {
    display: inline-block;
    margin: 0 15px;
}

.footer-extra-links ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: .75em;
    line-height: .75em;
    font-weight: 300;
}

.footer-extra-links ul li a:hover {
    color: #adadad;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 200dpi), only screen and (min-resolution: 1.25dppx) {
    -webkit-font-smoothing: subpixel-antialiased;
}

@media only screen and (min-width: 1920px) {

    .has-children>a::before,
    .has-children>a::after,
    .cd-secondary-nav .go-back a::before,
    .cd-secondary-nav .go-back a::after {
        right: 0;
    }
}

@media only screen and (max-width: 1540px) {
    #ContentCenter_C012_upnlUserLogin .login {
        width: 223px !important;
    }

    #ContentCenter_C012_upnlUserLogin .login .pass {
        margin: 15px 0 0 0 !important;
    }

    #ContentCenter_C012_upnlUserLogin .secWrapper {
        width: 65% !important;
    }
}


@media only screen and (min-width: 1440px) {

    .has-children>a::before,
    .has-children>a::after,
    .cd-secondary-nav .go-back a::before,
    .cd-secondary-nav .go-back a::after {
        right: 0;
    }
}

@media only screen and (max-width: 1300px) {
    .footer-center {
        margin-left: 15px;
    }
}

@media only screen and (min-width: 1280px) {
    .footer-distributed .footer-left {
        float: left;
        width: 24%;
    }

    .footer-distributed .footer-left .footer-icons {
        margin: 0;
    }

    .footer-distributed .footer-right {
        width: 70%;
        margin-left: 5%;
        margin-top: 1rem;
    }

    .footer-distributed .footer-right .footer-links {
        width: 20%;
        margin: 0 0 0 5%;
        clear: none;
    }

    .footer-distributed .footer-right .footer-links .foot-title {
        text-align: left;
        font-size: 0.8em;
    }

    .footer-distributed .footer-right .footer-links a {
        font-size: 0.8em;
    }
}



@media only screen and (max-width: 1279px) {
    .footer-icons {
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    h1, .h1 {
        font-size: 42px !important;
        font-size: 40px;
    }

    h2, .h2 {
        font-size: 36px !important;
        font-size: 34px;
    }

    h3, .h3 {
        font-size: 30px !important;
        font-size: 28px;
    }

    h4, .h4 {
        font-size: 24px !important;
        font-size: 22px;
    }

    h5, .h5 {
        font-size: 20px !important;
        font-size: 18px;
    }

    h6, .h6 {
        font-size: 18px !important;
        font-size: 16px;
    }

    p {
        font-size: 16px !important;
        font-size: 14px;
    }
}


@media only screen and (max-width: 959px) {
    .contentblock {
        font-size: 0.9375em;
        width: 100%;
        padding: 25px 2%;
    }

    .contentblock span {
        display: block;
        text-align: center;
    }

}

@media only screen and (max-width: 900px) {
    .block-awards {
        width: 44% !important;
    }
}



@media only screen and (max-width: 760px) {
    .block-awards {
        width: 92% !important;
    }


    .folders h5, .folders .h5 {
        font-size: 22px !important;
    }


}

@media only screen and (max-width: 600px) {

    .text-content {
        padding: 1em !important;
    }


}

@media only screen and (max-width: 480px) {
    h1, .h1 {
        font-size: 36px !important;
        font-size: 34px;
    }

    h2, .h2 {
        font-size: 30px !important;
        font-size: 28px;
    }

    h3, .h3 {
        font-size: 24px !important;
        font-size: 22px;
    }

    h4, .h4 {
        font-size: 18px !important;
        font-size: 16px;
    }

    h5, .h5 {
        font-size: 16px !important;
        font-size: 14px;
    }

    h6, .h6 {
        font-size: 16px !important;
        font-size: 14px;
    }

    p {
        font-size: 14px !important;
        font-size: 14px;
        line-height: 1.3em !important;
    }

    .text-content p {
        font-size: 14px !important;
        line-height: 1.3em !important;
    }

    .text-content ul li {
        font-size: 14px !important;
        line-height: 1.3em !important;
    }


}


a {
    text-decoration: none;
    color: var(--main-color);
    outline: none;
}

a:link, a:active, a:visited, a:hover {
    cursor: pointer;
}

a:hover {
    color: #006072;
}

*, *::after, *::before {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}



/* MAIN SECTION */
.sfContentBlock {
    width: 100%;
    margin: 0;
    float: none;
    clear: both;
    overflow: hidden;
}

.contentbox {
    width: 100%;
    margin: 0;
    float: none;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat !important;
}

.contentbox .content-wrapper {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contentbox .content-wrapper p {
    line-height: 24px;
}

.contentbox .content-wrapper p .saibamais a {
    display: inline-block;
    background: #474A51;
    color: #f5f5f5;
    padding: .4em 1.5em .45em 1.5em;
    margin: 5px 5px 5px 0;
    font: 500 15px #008aa4;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    border: 0 !important;
}

.contentbox .content-wrapper p .saibamais a:hover {
    background: #006072;
    color: #FFFFFF;
}

.contentbox .content-wrapper h1, .contentbox .content-wrapper h2, .contentbox .content-wrapper h3, .contentbox .content-wrapper h4, .contentbox .content-wrapper h5, .contentbox .content-wrapper h6, .contentbox .content-wrapper .h1, .contentbox .content-wrapper h2, .contentbox .content-wrapper h3, .contentbox .content-wrapper h4, .contentbox .content-wrapper h5, .contentbox .content-wrapper h6 {
    line-height: normal;
    text-transform: uppercase;
}

.contentbox .content-wrapper h1, .contentbox .content-wrapper .h1 {
    display: block;
    overflow: hidden;
    margin: 0 auto;
    color: #3c3f46;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2em;
}

.contentbox .content-wrapper h2, .contentbox .content-wrapper h3, .contentbox .content-wrapper .h2, .contentbox .content-wrapper .h3 {
    display: block;
    overflow: hidden;
    margin: 0 auto;
    color: #3c3f46;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2em;
}

.contentbox .content-wrapper .btn {
    position: relative;
    bottom: 0;
}

.contentbox .content-wrapper .btn .blue {
    display: inline-block;
    background: #008aa4;
    color: #f5f5f5;
    padding: .45em 1.5em .45em 1.5em;
    margin: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    border: 1px solid #008aa4;
    white-space: nowrap;
}

.contentbox .content-wrapper .btn .blue:hover {
    background: #FFFFFF;
    color: #008aa4;
}

.contentbox .content-wrapper .btn .white {
    display: inline-block;
    background: none;
    color: #FFFFFF;
    padding: .45em 1.5em .45em 1.5em;
    margin: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    border: 1px solid #FFFFFF;
    white-space: nowrap;
    vertical-align: bottom;
}

.contentbox .content-wrapper .btn .white:hover {
    background: #FFFFFF;
    color: #008aa4;
}

.contentbox .content-wrapper .btn .gray {
    display: inline-block;
    background: #71767a;
    color: #FFFFFF;
    padding: .45em 1.5em .45em 1.5em;
    margin: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    border: 1px solid #FFFFFF;
    white-space: nowrap;
}

.contentbox .content-wrapper .btn .gray:hover {
    background: rgba(113, 118, 122, 0.7);
    color: #FFFFFF;
}

.contentbox .content-wrapper hr {
    border: 0;
    border-bottom: 1px solid #3c3f46;
}

.text-content {
    display: block;
    overflow: hidden;
    padding: 0 3em 0 3em;
    height: 100%;
    text-align: left;
    color: #3c3f46;
}

.text-content p {
    line-height: 1.5em;
    font-size: 18px;
    margin: 8px auto;
    text-align: center;
    font-weight: 300;
}

.text-content em {
    display: inline-block;
    color: #3c3f46;
    text-transform: uppercase;
    text-align: center;
    font-style: normal;
    line-height: 1.3em;
}

.text-content .btn {
    position: relative;
    bottom: 0;
    padding: 0;
}

.text-content .btn a {
    display: inline-block;
    background: #474A51;
    color: #f5f5f5;
    padding: .45em 1.5em .45em 1.5em;
    margin: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    white-space: nowrap;
    border: 1px solid #008aa4;
}

.text-content .btn a:hover {
    background: #6e83a8;
    color: #FFFFFF;
    border: 1px solid #008aa4;
}

.text-content .btn .left {
    padding-left: 0;
}

.text-content ul li {
    line-height: 1.5em;
    font-size: 18px;
    font-weight: normal;
}

.text-content table td {
    font-size: 18px;
    font-weight: normal;
}


.folders {
    display: block;
    overflow: hidden;
    background-color: #f1f1f2;
}

.folders h5, .folders .h5 {
    line-height: 2em;
    opacity: 1;
    font-weight: normal;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #d8d8d8;
}

.folders h5>div, .folders .h5>div {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2em 0;
}

.folders h5 i, .folders h5 em, .folders .h5 i, .folders .h5 em {
    font: 300 1em/2em FontAwesome;
    cursor: pointer;
    float: right;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.folders h5.active, .folders .h5.active {
    opacity: 0.9;
    color: #008aa4;
}

.folders h5.active i, .folders h5.active em, .folders .h5.active i, .folders .h5.active em {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.folders>div:not(.h5) {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2em 0;
    border-bottom: 1px solid #d8d8d8;
}

.folders>div:not(.h5) p {
    padding: 0 0 1.5em 0;
}

.folders>div:not(.h5) h6, .folders>div:not(.h5) .h6 {
    font-weight: 600;
    padding: 0.5em 0;
}

.folders>div:not(.h5) a {
    display: block;
    color: #008aa4;
}

.folders>div:not(.h5) a:hover {
    color: #006072;
}


.cleartabs {
    display: block;
    overflow: hidden;
    margin-bottom: 15px !important;
    width: 100% !important;
    border-bottom: 1px solid #006072;
}

.cleartabs li {
    cursor: pointer;
    display: block;
    float: left;
    height: 26px;
    font: 400 0.8em 'Roboto Condensed', sans-serif !important;
    color: #006072 !important;
    margin-right: 15px;
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
}

.cleartabs li:hover {
    color: #008aa4;
    border-bottom: 1px solid #008aa4 !important;
}

.cleartabs li a {
    color: #006072;
    font-size: 16px;
}

.cleartabs li a.static.selected {
    color: #008aa4;
    font-size: 18px;
}

.cleartabs li.active {
    color: #006072;
    border-bottom: 1px solid #008aa4;
    font: 600 1em 'Roboto Condensed', sans-serif !important;
}

.clearpages {
    display: block;
    overflow: hidden;
    width: 100%;
}

.clearpages li {
    display: none;
    overflow: hidden;
    width: 100%;
    float: none;
    clear: both;
}

.clearpages li .active {
    display: block;
    overflow: hidden;
    width: 100%;
    float: none;
    clear: both;
}

.clearpages li .infin a {
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 3px;
    text-decoration: none;
    color: #3a3a3a;
    font: 400 1em 'Roboto Condensed', sans-serif !important;
}

.clearpages li .infin a:hover {
    color: #008aa4;
    text-decoration: none;
}

.clearpages li .infin a sup {
    float: right;
    padding-top: 2px;
    margin-left: 10px;
}

.clearpages li.active {
    display: block;
    overflow: hidden;
    width: 100%;
    float: none;
    clear: both;
}

.clearsel {
    cursor: pointer;
    border: 0;
    outline: none;
    border-bottom: 2px solid #006072;
    width: 100%;
    color: #006072;
    font: 400 1em 'Roboto Condensed', sans-serif !important;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}


.AutoExtender {
    line-height: 24px;
    background-color: #FFFFFF;
    width: 100% !important;
    height: 125px;
    overflow-y: auto;
    z-index: 1000;
    position: absolute;
    padding: 0 2.3em;
    backface-visibility: hidden;
    border-bottom: 1px solid #e2e3df;
}

.AutoExtenderList {
    border-top: 1px dotted #f2f2f2;
    cursor: pointer;
    color: #252c2e;
    z-index: 100;
    padding: 5px;
    font-size: .8em;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow-x: hidden;
}

.AutoExtenderHighlight {
    background-color: #f2f2f2;
    font-size: .8em;
    border-top: 1px dotted #f2f2f2;
    cursor: pointer;
    color: #252c2e;
    z-index: 100;
    padding: 5px;
    font-size: .8em;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow-x: hidden;
}

.grayText {
    color: #c9c9c9 !important;
    font-style: italic;
}

.AutoExtenderHighlightText {
    color: #f47730;
    font-weight: 300;
}


.gradient-bg {
    background: #0089a4;
    background: -moz-linear-gradient(-45deg, #0089a4 0%, #014760 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #0089a4), color-stop(100%, #014760));
    background: -webkit-linear-gradient(-45deg, #0089a4 0%, #014760 100%);
    background: -o-linear-gradient(-45deg, #0089a4 0%, #014760 100%);
    background: -ms-linear-gradient(-45deg, #0089a4 0%, #014760 100%);
    background: linear-gradient(135deg, #0089a4 0%, #014760 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089a4', endColorstr='#014760', GradientType=1);
}

.bgsilver {
    background-color: #f1f1f1;
}

.bgsky {
    background-color: #dce7ee;
}


/*FONTS*/
.whiteText {
    color: #FFFFFF !important;
}


/* FORMS */
.bi-forms {
    display: block;
    width: 100%;
    padding: 0;
    margin: 1em auto;
    overflow: hidden;
    background-color: transparent;
    font: 300 18px 'Roboto Condensed', sans-serif !important;
    text-align: center;
}

.bi-forms>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    line-height: 1.5em;
    padding: 1em;
    white-space: nowrap;
    border-bottom: 0px dotted #008aa4;
    border-top: 0px solid #fcfcfc;
}

.bi-forms>div div {
    padding: 1em;
}

.bi-forms>div div ul {
    display: inline-flex;
    float: left;
}

.bi-forms>div div ul li {
    display: inline-flex;
    margin: 0 20px 0 0;
}

.bi-forms>div div ul li input[type='radio'] {
    margin: 15px 0 0 0;
}

.bi-forms>div div label {
    text-align: center;
    font-weight: 400;
}

.bi-forms .bi-buttons {
    padding: 2em;
    display: block;
    width: 100%;
}

.bi-forms .bi-buttons .white {
    display: inline-block;
    background: none;
    color: #FFFFFF;
    padding: .45em 1.5em .45em 1.5em;
    margin: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    border: 1px solid #FFFFFF;
    white-space: nowrap;
}

.bi-forms .bi-buttons .white:hover {
    background: #FFFFFF;
    color: #008aa4;
}

.bi-forms p {
    display: block;
    overflow: hidden;
    clear: both;
    padding: 0;
    width: 100%;
    white-space: normal !important;
}

.bi-forms .bi-inline {
    border: 0px dashed #222;
    margin: 0;
}

.bi-forms .bi-inline label {
    display: inline;
    vertical-align: bottom;
    padding: 16px 0 8px 0;
    margin: 0;
    line-height: 1.2em;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    color: #888;
}

.bi-forms .bi-inline input {
    display: inline;
    vertical-align: bottom;
    padding: 16px 0 8px 0;
    margin: 0;
    line-height: 1.2em;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    color: #888;
}

.bi-forms div label {
    display: block;
    padding: 8px;
    margin: 0 auto;
    white-space: normal !important;
    text-align: center;
    font-weight: 400;
}

.bi-forms div label sup {
    line-height: 0;
    margin: 0;
    padding: 0;
    font-weight: 700;
}

.bi-forms div label .labelInline {
    display: inline;
}

.bi-forms div>span {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    white-space: normal;
}

.bi-forms div>span a {
    text-decoration: underline;
}

.bi-forms div u {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 16px;
    font-weight: normal;
    text-decoration: none;
}

.bi-forms div i, .bi-forms div em {
    display: block;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 12px;
    height: 12px;
    font-weight: normal;
    text-decoration: none;
}

.bi-forms div span[style*='hidden'] {
    display: none;
}

.bi-forms div:nth-of-type(4) {
    flex: 1 100%;
}

.bi-forms div:nth-of-type(4) ul {
    padding: 0;
    overflow: hidden;
    border: 1px solid red;
}

.bi-forms div:nth-of-type(4) ul li {
    display: inline;
}

.bi-forms input[type='checkbox'] {
    float: left;
    margin: 0 .5em .5em 0;
}

.bi-forms input[type='radio'] {
    display: inline-flex;
}

.bi-forms input[type='text'] {
    display: inline-block;
    cursor: default;
    width: 100%;
    border-color: #A9A9A9;
}

.bi-forms input[type='text']:disabled {
    color: #bbb;
}

.bi-forms input[type='text']:disabled:hover {
    color: #bbb;
}

.bi-forms div.bi-1button .k-button {
    width: 100%;
}

.bi-forms div.bi-2button .k-button {
    width: 49%;
}

.bi-forms .x2>input {
    min-width: 360px;
}

.bi-forms .error input[type='radio'] {
    display: inline;
}

.bi-forms select {
    display: inline-block;
    cursor: pointer;
}

.bi-forms select:disabled {
    color: #ccc;
}

.bi-forms select:disabled:hover {
    color: #ccc;
}

.bi-forms div.error {
    white-space: normal;
}

.bi-forms div.error input {
    padding: 0 0 7px 0;
    margin: 0 0 7px 0;
    border: none;
    border-bottom: 2px solid #F44336;
}

.bi-forms div.error input:hover {
    border: none;
    border-bottom: 2px solid #F44336;
}

.bi-forms div.error input:focus {
    border: none;
    border-bottom: 2px solid #F44336;
}

.bi-forms div.error select {
    padding: 0 0 7px 0;
    margin: 0 0 7px 0;
    border: none;
    border-bottom: 2px solid #F44336;
}

.bi-forms div.error select:hover {
    border: none;
    border-bottom: 2px solid #F44336;
}

.bi-forms div.error select:focus {
    padding: 0 0 7px 0;
    margin: 0 0 7px 0;
    border: none;
    border-bottom: 2px solid #F44336;
}

.bi-forms div.error i, .bi-forms div.error em {
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 12px;
    height: auto;
    font-weight: normal;
    text-decoration: none;
    color: #F44336;
    text-align: left;
}

.bi-forms div.error i span, .bi-forms div.error em span {
    color: #F44336;
    white-space: normal;
}

.bi-forms div.error label {
    color: #F44336;
    white-space: normal;
}

.bi-forms span.bigtitles {
    border: 0;
    padding: 0;
    color: #607d8b;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 2.2em;
    white-space: normal;
}

.bi-forms h4, .bi-forms .h4 {
    border: 0;
    padding: .8em 0;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.8em;
    white-space: normal;
}


.bi-ptop10 {
    padding-top: 10px !important;
}

.bi-ptop-20 {
    padding-top: 20px !important;
}

.bi-ptop-30 {
    padding-top: 30px !important;
}

.bi-ptop-40 {
    padding-top: 40px !important;
}

.bi-ptop-60 {
    padding-top: 60px !important;
}

.bi-ptop-80 {
    padding-top: 80px !important;
}

.bi-ptop-85 {
    padding-top: 85px;
}

.bi-ptop-120 {
    padding-top: 120px;
}

.bi-ptop-150 {
    padding-top: 150px;
}

.bi-ptop-null {
    padding-top: 0 !important;
}

.bi-pbot-10 {
    padding-bottom: 10px !important;
}

.bi-pbot-20 {
    padding-bottom: 20px !important;
}

.bi-pbot-30 {
    padding-bottom: 30px !important;
}

.bi-pbot-40 {
    padding-bottom: 40px !important;
}

.bi-pbot-60 {
    padding-bottom: 60px !important;
}

.bi-pbot-80 {
    padding-bottom: 80px;
}

.bi-pbot-100 {
    padding-bottom: 100px;
}

.bi-pbot-150 {
    padding-bottom: 150px;
}

.bi-pbot-200 {
    padding-bottom: 200px;
}

.bi-pbot-null {
    padding-bottom: 0 !important;
}

.toleft {
    text-align: left !important;
}

.toright {
    text-align: right !important;
}

.tocenter {
    text-align: center !important;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}



.clearsel {
    cursor: pointer;
    border: 0;
    outline: none;
    border-bottom: 2px solid #597AA7;
    width: 100%;
    color: #597AA7;
    font: 400 1.25em 'Roboto Condensed', sans-serif;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
}


.cd-main-content {
    padding-top: 0;
    background: #fff;
    min-height: 100vh;
    z-index: 2;
}


/* default.css */
:root {
    --main-color: #009de0;
    --icon-color: #999;
    --icon-hover-color: #666;
    --sell-color: #f0506e;
    --buy-color: #32d296;
    --dark-color: #222;
    --var-color: #00a768;
    --active-tab-color: #333;
    --body-bgcolor: #fcfcfc;
    --body-color: #000;
    --title-color: #263238;
    --divider-color: #e1e1e1;
    --chartH: 444px;
    --font-rubik: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-geologica: "Geologica", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* COLORS */
.bi-main-color {
    color: var(--main-color) !important
}

.bi-title-color {
    color: var(--title-color) !important
}

.bi-icon-color {
    color: var(--icon-color) !important
}

.bi-sell-color {
    color: var(--sell-color) !important
}

.bi-buy-color {
    color: var(--buy-color) !important
}

.bi-dark-color {
    color: var(--dark-color) !important
}

.bi-var-color {
    color: var(--var-color) !important
}

/* TYPOGRAPHY */
html {
    font-family: var(--font-rubik);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: #fff;
    color: var(--body-color)
}

.d-rubik {
    font-family: var(--font-rubik) !important
}

.d-geologica {
    font-family: var(--font-geologica) !important
}

html, body {
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: var(--body-color);
}

html, body, p, input {
    font-family: var(--font-rubik) !important;
}

input {
    font-size: 1rem
}

h1, .h1 {
    font-size: 3rem;
    font-family: var(--font-geologica) !important
}

h2, .h2 {
    font-size: 2.5rem;
    font-family: var(--font-geologica) !important
}

h3, .h3 {
    font-size: 2.1rem;
    font-family: var(--font-geologica) !important
}

h4, .h4 {
    font-size: 1.7rem;
    font-family: var(--font-geologica) !important
}

h5, .h5 {
    font-size: 1.3rem;
    font-family: var(--font-geologica) !important
}

h6, .h6 {
    font-size: 1rem;
    font-family: var(--font-geologica) !important
}

a {
    color: var(--main-color);
}

.d-geologica {
    font-family: var(--font-geologica) !important
}

.d-rubik {
    font-family: var(--font-rubik) !important
}

/* Material Design Symbols (replaces Icons) */
.md-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #fff;
    font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
}

.md-icon.md-16 {
    font-size: 16px;
    color: inherit
}

.md-icon.md-18 {
    font-size: 18px
}

.md-icon.md-24 {
    font-size: 24px
}

.md-icon.md-36 {
    font-size: 36px
}

.md-icon.md-48 {
    font-size: 48px
}

.md-icon.md-64 {
    font-size: 64px
}

.md-icon.md-72 {
    font-size: 72px
}

.md-icon.blue {
    color: var(--main-color);
}

.md-icon.fill {
    font-variation-settings: 'FILL'1, 'wght'400, 'GRAD'0, 'opsz'24;
}

.material-icons-outlined.blue {
    color: var(--main-color) !important;
}

.material-icons-outlined.blue:hover {
    color: var(--main-color) !important;
    opacity: .85 !important
}

.menu-muted:not(.has-arrow) {
    color: #c9c9c9 !important
}

.toast-container {
    z-index: 999;
}

.toast {
    background-color: rgba(255, 255, 255, 1) !important;
}

.thin {
    font-weight: 100 !important
}

.light {
    font-weight: 300 !important
}

.regular {
    font-weight: 500 !important
}

.bold {
    font-weight: 700 !important
}

.white {
    color: #fff !important
}

.black {
    color: #000 !important
}

.opacity-100 {
    opacity: 1 !important
}

.opacity-75 {
    opacity: .75 !important
}

.opacity-50 {
    opacity: .5 !important
}

.opacity-25 {
    opacity: .25 !important
}

.opacity-0 {
    opacity: 0 !important
}

.uk-card-rounded {
    border-radius: 1rem !important;
    overflow: hidden;
}

.uk-card-rounded>.uk-card-body {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.uk-card-rounded>.uk-card-footer {
    background-color: #fff;
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
    border-top: 0 !important;
    padding-top: 0;
    padding-bottom: 2.5em;
    display: flex;
    justify-content: space-between;
}

.uk-card-rounded>.uk-card-footer.uk-light {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 2.5em;
}

.uk-card-rounded .bi-moeda {
    display: inline-block;
    font-size: .75em;
    opacity: .75;
    padding: 1px 6px !important;
    border: 1px solid;
    border-radius: 500px;
    vertical-align: middle;
}

.uk-card-rounded .bi-dif {
    opacity: 0.65;
    color: var(--main-color);
}

.uk-card-rounded .uk-light .bi-dif {
    color: #fff;
}

.uk-card-rounded .bi-dif:hover {
    opacity: 1;
}

.uk-slider-items li>.uk-card {
    overflow: visible;
}


.bi-card-body-img {
    background-position: 80% -25px;
    background-size: cover;
    background-repeat: no-repeat;
}

.bi-card-full-img {
    background-position: 80% 0%;
    background-size: cover;
    background-repeat: no-repeat;
}

.bi-card-body-img .uk-card-body, .bi-card-full-img .uk-card-body, .bi-card-full-img .uk-card-footer {
    background-color: rgba(0, 0, 0, 0.35) !important;
}

.bi-customer-support {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    color: var(--title-color);
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
}

.bi-customer-support i {
    font-size: 36px;
    color: var(--title-color);
    line-height: 1.05;
}

.bi-customer-support small {
    opacity: .75;
}

body[data-sidebar=dark] .bi-customer-support, body[data-sidebar=dark] .bi-customer-support i {
    color: #fff;
}

.vertical-collpsed .bi-customer-support {
    cursor: pointer;
}

.vertical-collpsed .bi-customer-support div {
    display: none;
}

.vertical-collpsed .bi-customer-support:hover div {
    display: block;
    position: absolute;
    left: 70px;
    color: var(--title-color);
    background: #fff;
    width: 190px;
    bottom: 0;
    height: 80px;
    padding-top: 1.25rem;
    box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.15);
}

.vertical-collpsed .bi-customer-support i {
    margin-left: -1.5rem;
    font-size: 24px;
}

body[data-sidebar=dark].vertical-collpsed .bi-customer-support:hover div {
    color: #fff;
    background: var(--title-color);
}


/* custom.css */
small.donut-label {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    color: var(--title-color);
    padding: 0;
    line-height: 1;
    font-weight: 100;
}

.bi-risco-mt {
    margin-top: 6px !important
}

.trend-img {
    position: relative;
    display: inline-block;
    width: 121px;
    height: 121px;
    border-radius: 50%;
    background-size: cover;
    box-shadow: 0 14px 25px rgba(0, 0, 0, .16);
    border: 2px solid #222;
    box-sizing: border-box;
}

.bi-detail-features {
    display: flex;
    justify-items: center;
    justify-content: start;
    flex-flow: wrap;
    column-gap: .75em;
}

.bi-width-40 {
    width: 40px
}

.bi-favorite-header {
    color: var(--main-color);
}

.bi-favorite-header .md-icon {
    line-height: 0;
    align-self: center;
    text-align: center;
    margin: -2px 0 0 4px;
    font-variation-settings: 'wght'200;
}

.uk-card-footer {
    container: detail-sheet / inline-size;
    box-sizing: border-box;
}

.bi-stock-chart {
    height: 428px !important;
    transition: all 250ms;
}

@container detail-sheet (max-width: 1054px) {
    .bi-stock-chart {
        height: 394px !important;
        transition: all 250ms;
    }
}

@container detail-sheet (max-width: 758px) {
    .bi-stock-chart {
        height: 334px !important;
        transition: all 250ms;
    }
}

@container detail-sheet (max-width: 580px) {
    .bi-stock-chart {
        height: 274px !important;
        transition: all 250ms;
    }
}

body {
    margin: 0;
    color: var(--body-color);
    background-color: var(--body-bgcolor);
}

.select2-container .select2-selection--single {
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    height: 38px !important;
}

.select2-container .select2-selection--single:focus {
    outline: none !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
    padding-left: 12px !important;
    color: #495057 !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 34px !important;
    width: 34px !important;
    right: 3px !important;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: #adb5bd transparent transparent transparent !important;
    border-width: 6px 6px 0 6px !important;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #adb5bd transparent !important;
    border-width: 0 6px 6px 6px !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f8f9fa !important;
    color: #16181b !important;
}

.select2-container--default .select2-results__option[aria-selected=true]:hover {
    background-color: #626ed4 !important;
    color: #fff !important;
}

.select2-results__option {
    padding: 6px 12px !important;
}

.select2-dropdown {
    border-color: rgba(0, 0, 0, .15) !important;
}

.select2-container .select2-selection--multiple {
    min-height: 38px !important;
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding: 2px 10px !important;
}

.select2-container .select2-selection--multiple .select2-search__field {
    border: 0;
    color: #495057 !important;
}

.select2-container .select2-selection--multiple .select2-search__field::-webkit-input-placeholder {
    color: #495057 !important;
}

.select2-container .select2-selection--multiple .select2-search__field::-moz-placeholder {
    color: #495057 !important;
}

.select2-container .select2-selection--multiple .select2-search__field:-ms-input-placeholder {
    color: #495057 !important;
}

.select2-container .select2-selection--multiple .select2-search__field::-ms-input-placeholder {
    color: #495057 !important;
}

.select2-container .select2-selection--multiple .select2-search__field::placeholder {
    color: #495057 !important;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #e9ecef !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 1px !important;
    padding: 0 7px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da !important;
    background-color: #fff !important;
    color: #74788d !important;
    outline: 0 !important;
}

.note-editor.note-frame {
    border: 1px solid #ced4da !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
}

.note-editor.note-frame .note-statusbar {
    background-color: #eff2f7 !important;
    border-top: 1px solid #eff2f7 !important;
}

.dropzone {
    min-height: 230px !important;
    border: 2px dashed #ced4da !important;
    background: #fff !important;
    border-radius: 6px !important;
}

.dropzone .dz-message {
    font-size: 24px !important;
}

.ct-series-a .ct-area,
.ct-series-a .ct-slice-pie {
    fill: #626ed4 !important;
}

.irs--square .irs-line {
    background: #f6f6f6 !important;
    border-color: #f6f6f6 !important;
}

.irs--square .irs-max, .irs--square .irs-min {
    color: #ced4da !important;
    background: #f6f6f6 !important;
    font-size: 11px !important;
}

.irs--square .irs-bar, .irs--square .irs-from, .irs--square .irs-single, .irs--square .irs-to {
    background: #556ee6 !important;
    font-size: 11px !important;
}

.irs--square .irs-handle {
    border: 2px solid #556ee6 !important;
    width: 12px !important;
    height: 12px !important;
    top: 26px !important;
    background-color: #fff !important;
}

.irs--square .irs-grid-text {
    font-size: 11px;
    color: #ced4da !important;
}

.fc-event {
    border-radius: 2px !important;
    border: none !important;
    cursor: move !important;
    font-size: 0.8125rem !important;
    margin: 5px 7px !important;
    padding: 5px !important;
    text-align: center !important;
}

#external-events .external-event {
    padding: 8px 16px !important;
}

tr:first-child>td>.fc-day-grid-event {
    margin-top: 2px !important;
}

.fc-day-grid-event .fc-time {
    font-weight: 500 !important;
}

.fc-event .fc-content {
    color: #fff !important;
}

.sp-hidden {
    display: none !important;
}

/* c3 */
.c3-legend-item {
    font-size: 14px !important;
}

.c3-chart-arcs-title {
    font-size: 18px !important;
}

.c3 .c3-axis line, .c3 .c3-axis path {
    stroke: #ced4da !important;
}

code[class*=language-], pre[class*=language-] {
    color: #6c757d !important;
    text-shadow: none !important;
}

.alertify-logs {
    z-index: 9999 !important;
}

.irs--modern .irs-line {
    background: #eee !important;
    border-color: #eee !important;
}

.irs--modern .irs-max, .irs--modern .irs-min {
    color: #adb5bd !important;
    background: #eee !important;
    font-size: 11px !important;
}

.irs--modern .irs-handle>i:nth-child(1) {
    width: 8px !important;
    height: 8px !important;
}

.irs--modern .irs-bar, .irs--modern .irs-from, .irs--modern .irs-single, .irs--modern .irs-to {
    font-size: 11px !important;
}

.irs--modern .irs-grid-text {
    font-size: 11px !important;
    color: #ced4da !important;
}

.irs--modern .irs-handle {
    border: 1px solid #a3adc1;
    border-top-width: 0 !important;
}


.ct-area {
    fill-opacity: .33 !important;
}

.ct-series-a .ct-area, .ct-series-a .ct-slice-pie {
    fill: #564ab1 !important;
}

.bi-left-divider:before {
    content: "";
    line-height: 2em;
    margin-left: 10px;
    margin-right: 4px;
    border-left: 1px solid var(--divider-color);
    box-shadow: 1px 0px 2px 1px #fff;
}

.bi-center-divider:before {
    content: "";
    line-height: 2em;
    margin-left: 8px;
    margin-right: 8px;
    border-left: 1px solid var(--divider-color);
    box-shadow: 1px 0px 2px 1px #fff;
}

.bi-filter-active {
    color: var(--sell-color)
}

.uk-modal-full {
    bottom: 70px;
    top: 0;
    overflow: hidden
}

@media (min-width: 576px) {
    .uk-modal-full {
        top: 70px;
        bottom: 0
    }
}

.bi-iframe-close {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    right: 25px;
    top: 10px;
}

.bi-iframe-close:hover {
    background-color: rgba(0, 0, 0, 0.75);
    color: #ccc;
}




.btn-check+.uk-button.bi-curr-btn {
    font-weight: 100;
    font-size: .725rem;
    border-radius: 500px;
    padding: 0;
    line-height: 26px;
    background-color: var(--icon-hover-color);
}

.btn-check:hover+.uk-button.bi-curr-btn {
    color: #fff;
    background-color: var(--icon-color);
}

.btn-check:checked+.uk-button.bi-curr-btn, .btn-check:active+.uk-button.bi-curr-btn {
    color: #fff;
    background-color: var(--main-color);
    font-weight: 400;
}

.uk-icon.btn-fav-remove {
    font-size: 36px;
}

.uk-icon.btn-fav-remove svg {
    width: 20px;
    height: 20px;
    margin-top: -6px;
}

.bi-risco {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1px;
    place-items: center;
    width: auto;
    max-width: fit-content;
    cursor: pointer;
}

.uk-text-center>.bi-risco, .bi-risco-center {
    margin-left: 50% !important;
    transform: translateX(-50%);
}

.bi-risco>b {
    background: #bbb;
    width: 16px;
    text-align: center;
    color: #fff;
    font-size: .6em;
    font-weight: 300;
    line-height: 1.5;
}

.bi-risco>b.on {
    background: var(--sell-color);
}

.bi-width-max {
    width: max-content !important
}

/*  NOVO ALERTA RISCO SRI (CRM-MRM)  */
.bi-sri {
    border-top: 5px solid #fff;
    border-left: 7px solid #fff;
}

.risco-sri:before {
    content: "Credit Risk (CRM)";
    writing-mode: vertical-rl;
    transform: rotate(180deg) translateY(43%);
    position: absolute;
    top: 57%;
    left: -1.5em;
    white-space: nowrap;
}

.risco-sri:after {
    content: "Market Risk (MRM)";
    position: absolute;
    top: -1.5em;
    white-space: nowrap;
    left: 0;
    right: 0;
    text-align: center;
}

.risco-sri {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 0px 0px;
    grid-auto-flow: row;
    width: 24em;
    height: 10em;
    text-align: center;
    margin: 1em auto
}

.risco-sri p {
    border-bottom: 1px solid;
    margin: 0;
    padding: 0;
}

.risco-sri p:nth-child(-n+2):nth-child(n+2):before {
    content: "MR1"
}

.risco-sri p:nth-child(-n+3):nth-child(n+3):before {
    content: "MR2"
}

.risco-sri p:nth-child(-n+4):nth-child(n+4):before {
    content: "MR3"
}

.risco-sri p:nth-child(-n+5):nth-child(n+5):before {
    content: "MR4"
}

.risco-sri p:nth-child(-n+6):nth-child(n+6):before {
    content: "MR5"
}

.risco-sri p:nth-child(-n+7):nth-child(n+7):before {
    content: "MR6"
}

.risco-sri p:nth-child(-n+8):nth-child(n+8):before {
    content: "MR7"
}

.risco-sri p:nth-child(-n+9):nth-child(n+9):before {
    content: "CR1"
}

.risco-sri p:nth-child(-n+10):nth-child(n+10):before {
    content: "1"
}

.risco-sri p:nth-child(-n+11):nth-child(n+11):before {
    content: "2"
}

.risco-sri p:nth-child(-n+12):nth-child(n+12):before {
    content: "3"
}

.risco-sri p:nth-child(-n+13):nth-child(n+13):before {
    content: "4"
}

.risco-sri p:nth-child(-n+14):nth-child(n+14):before {
    content: "5"
}

.risco-sri p:nth-child(-n+15):nth-child(n+15):before {
    content: "6"
}

.risco-sri p:nth-child(-n+16):nth-child(n+16):before {
    content: "7"
}

.risco-sri p:nth-child(-n+17):nth-child(n+17):before {
    content: "CR2"
}

.risco-sri p:nth-child(-n+18):nth-child(n+18):before {
    content: "1"
}

.risco-sri p:nth-child(-n+19):nth-child(n+19):before {
    content: "2"
}

.risco-sri p:nth-child(-n+20):nth-child(n+20):before {
    content: "3"
}

.risco-sri p:nth-child(-n+21):nth-child(n+21):before {
    content: "4"
}

.risco-sri p:nth-child(-n+22):nth-child(n+22):before {
    content: "5"
}

.risco-sri p:nth-child(-n+23):nth-child(n+23):before {
    content: "6"
}

.risco-sri p:nth-child(-n+24):nth-child(n+24):before {
    content: "7"
}

.risco-sri p:nth-child(-n+25):nth-child(n+25):before {
    content: "CR3"
}

.risco-sri p:nth-child(-n+26):nth-child(n+26):before {
    content: "3"
}

.risco-sri p:nth-child(-n+27):nth-child(n+27):before {
    content: "3"
}

.risco-sri p:nth-child(-n+28):nth-child(n+28):before {
    content: "3"
}

.risco-sri p:nth-child(-n+29):nth-child(n+29):before {
    content: "4"
}

.risco-sri p:nth-child(-n+30):nth-child(n+30):before {
    content: "5"
}

.risco-sri p:nth-child(-n+31):nth-child(n+31):before {
    content: "6"
}

.risco-sri p:nth-child(-n+32):nth-child(n+32):before {
    content: "7"
}

.risco-sri p:nth-child(-n+33):nth-child(n+33):before {
    content: "CR4"
}

.risco-sri p:nth-child(-n+34):nth-child(n+34):before {
    content: "5"
}

.risco-sri p:nth-child(-n+35):nth-child(n+35):before {
    content: "5"
}

.risco-sri p:nth-child(-n+36):nth-child(n+36):before {
    content: "5"
}

.risco-sri p:nth-child(-n+37):nth-child(n+37):before {
    content: "5"
}

.risco-sri p:nth-child(-n+38):nth-child(n+38):before {
    content: "5"
}

.risco-sri p:nth-child(-n+39):nth-child(n+39):before {
    content: "6"
}

.risco-sri p:nth-child(-n+40):nth-child(n+40):before {
    content: "7"
}

.risco-sri p:nth-child(-n+41):nth-child(n+41):before {
    content: "CR5"
}

.risco-sri p:nth-child(-n+42):nth-child(n+42):before {
    content: "5"
}

.risco-sri p:nth-child(-n+43):nth-child(n+43):before {
    content: "5"
}

.risco-sri p:nth-child(-n+44):nth-child(n+44):before {
    content: "5"
}

.risco-sri p:nth-child(-n+45):nth-child(n+45):before {
    content: "5"
}

.risco-sri p:nth-child(-n+46):nth-child(n+46):before {
    content: "5"
}

.risco-sri p:nth-child(-n+47):nth-child(n+47):before {
    content: "6"
}

.risco-sri p:nth-child(-n+48):nth-child(n+48):before {
    content: "7"
}

.risco-sri p:nth-child(-n+49):nth-child(n+49):before {
    content: "CR6"
}

.risco-sri p:nth-child(-n+50):nth-child(n+50):before {
    content: "6"
}

.risco-sri p:nth-child(-n+51):nth-child(n+51):before {
    content: "6"
}

.risco-sri p:nth-child(-n+52):nth-child(n+52):before {
    content: "6"
}

.risco-sri p:nth-child(-n+53):nth-child(n+53):before {
    content: "6"
}

.risco-sri p:nth-child(-n+54):nth-child(n+54):before {
    content: "6"
}

.risco-sri p:nth-child(-n+55):nth-child(n+55):before {
    content: "6"
}

.risco-sri p:nth-child(-n+56):nth-child(n+56):before {
    content: "7"
}

.risco-sri p:nth-child(8n-7), .risco-sri p:nth-child(-n+8) {
    background-color: #ececec;
}

.risco-sri p:nth-child(-n+8) {
    border-top: 1px solid;
}

.risco-sri p:nth-child(8n-7) {
    border-right: 1px solid;
    border-left: 1px solid;
    width: 4em;
}

.risco-sri p:nth-child(8n) {
    border-right: 1px solid;
}

.risco-sri p:nth-child(-n+1) {
    background-color: transparent;
    border-top: 0;
    border-left: 0;
}

.risco-sri.cr1-mr1 p:nth-child(n+9):nth-child(-n+10), .risco-sri.cr1-mr1 p:nth-child(n+2):nth-child(-n+2), .risco-sri.cr1-mr2 p:nth-child(n+9):nth-child(-n+11), .risco-sri.cr1-mr2 p:nth-child(n+3):nth-child(-n+3), .risco-sri.cr1-mr3 p:nth-child(n+9):nth-child(-n+12), .risco-sri.cr1-mr3 p:nth-child(n+4):nth-child(-n+4), .risco-sri.cr1-mr4 p:nth-child(n+9):nth-child(-n+13), .risco-sri.cr1-mr4 p:nth-child(n+5):nth-child(-n+5), .risco-sri.cr1-mr5 p:nth-child(n+9):nth-child(-n+14), .risco-sri.cr1-mr5 p:nth-child(n+6):nth-child(-n+6), .risco-sri.cr1-mr6 p:nth-child(n+9):nth-child(-n+15), .risco-sri.cr1-mr6 p:nth-child(n+7):nth-child(-n+7), .risco-sri.cr1-mr7 p:nth-child(n+9):nth-child(-n+16), .risco-sri.cr1-mr7 p:nth-child(n+8):nth-child(-n+8), .risco-sri.cr2-mr1 p:nth-child(n+17):nth-child(-n+18), .risco-sri.cr2-mr1 p:nth-child(n+2):nth-child(-n+2), .risco-sri.cr2-mr1 p:nth-child(n+10):nth-child(-n+10), .risco-sri.cr2-mr2 p:nth-child(n+17):nth-child(-n+19), .risco-sri.cr2-mr2 p:nth-child(n+3):nth-child(-n+3), .risco-sri.cr2-mr2 p:nth-child(n+11):nth-child(-n+11), .risco-sri.cr2-mr3 p:nth-child(n+17):nth-child(-n+20), .risco-sri.cr2-mr3 p:nth-child(n+4):nth-child(-n+4), .risco-sri.cr2-mr3 p:nth-child(n+12):nth-child(-n+12), .risco-sri.cr2-mr4 p:nth-child(n+17):nth-child(-n+21), .risco-sri.cr2-mr4 p:nth-child(n+5):nth-child(-n+5), .risco-sri.cr2-mr4 p:nth-child(n+13):nth-child(-n+13), .risco-sri.cr2-mr5 p:nth-child(n+17):nth-child(-n+22), .risco-sri.cr2-mr5 p:nth-child(n+6):nth-child(-n+6), .risco-sri.cr2-mr5 p:nth-child(n+14):nth-child(-n+14), .risco-sri.cr2-mr6 p:nth-child(n+17):nth-child(-n+23), .risco-sri.cr2-mr6 p:nth-child(n+7):nth-child(-n+7), .risco-sri.cr2-mr6 p:nth-child(n+15):nth-child(-n+15), .risco-sri.cr2-mr7 p:nth-child(n+17):nth-child(-n+24), .risco-sri.cr2-mr7 p:nth-child(n+8):nth-child(-n+8), .risco-sri.cr2-mr7 p:nth-child(n+16):nth-child(-n+16), .risco-sri.cr3-mr1 p:nth-child(n+25):nth-child(-n+26), .risco-sri.cr3-mr1 p:nth-child(n+2):nth-child(-n+2), .risco-sri.cr3-mr1 p:nth-child(n+10):nth-child(-n+10), .risco-sri.cr3-mr1 p:nth-child(n+18):nth-child(-n+18), .risco-sri.cr3-mr2 p:nth-child(n+25):nth-child(-n+27), .risco-sri.cr3-mr2 p:nth-child(n+3):nth-child(-n+3), .risco-sri.cr3-mr2 p:nth-child(n+11):nth-child(-n+11), .risco-sri.cr3-mr2 p:nth-child(n+19):nth-child(-n+19), .risco-sri.cr3-mr3 p:nth-child(n+25):nth-child(-n+28), .risco-sri.cr3-mr3 p:nth-child(n+4):nth-child(-n+4), .risco-sri.cr3-mr3 p:nth-child(n+12):nth-child(-n+12), .risco-sri.cr3-mr3 p:nth-child(n+20):nth-child(-n+20), .risco-sri.cr3-mr4 p:nth-child(n+25):nth-child(-n+29), .risco-sri.cr3-mr4 p:nth-child(n+5):nth-child(-n+5), .risco-sri.cr3-mr4 p:nth-child(n+13):nth-child(-n+13), .risco-sri.cr3-mr4 p:nth-child(n+21):nth-child(-n+21), .risco-sri.cr3-mr5 p:nth-child(n+25):nth-child(-n+30), .risco-sri.cr3-mr5 p:nth-child(n+6):nth-child(-n+6), .risco-sri.cr3-mr5 p:nth-child(n+14):nth-child(-n+14), .risco-sri.cr3-mr5 p:nth-child(n+22):nth-child(-n+22), .risco-sri.cr3-mr6 p:nth-child(n+25):nth-child(-n+31), .risco-sri.cr3-mr6 p:nth-child(n+7):nth-child(-n+7), .risco-sri.cr3-mr6 p:nth-child(n+15):nth-child(-n+15), .risco-sri.cr3-mr6 p:nth-child(n+23):nth-child(-n+23), .risco-sri.cr3-mr7 p:nth-child(n+25):nth-child(-n+32), .risco-sri.cr3-mr7 p:nth-child(n+8):nth-child(-n+8), .risco-sri.cr3-mr7 p:nth-child(n+16):nth-child(-n+16), .risco-sri.cr3-mr7 p:nth-child(n+24):nth-child(-n+24), .risco-sri.cr4-mr1 p:nth-child(n+33):nth-child(-n+34), .risco-sri.cr4-mr1 p:nth-child(n+2):nth-child(-n+2), .risco-sri.cr4-mr1 p:nth-child(n+10):nth-child(-n+10), .risco-sri.cr4-mr1 p:nth-child(n+18):nth-child(-n+18), .risco-sri.cr4-mr1 p:nth-child(n+26):nth-child(-n+26), .risco-sri.cr4-mr2 p:nth-child(n+33):nth-child(-n+35), .risco-sri.cr4-mr2 p:nth-child(n+3):nth-child(-n+3), .risco-sri.cr4-mr2 p:nth-child(n+11):nth-child(-n+11), .risco-sri.cr4-mr2 p:nth-child(n+19):nth-child(-n+19), .risco-sri.cr4-mr2 p:nth-child(n+27):nth-child(-n+27), .risco-sri.cr4-mr3 p:nth-child(n+33):nth-child(-n+36), .risco-sri.cr4-mr3 p:nth-child(n+4):nth-child(-n+4), .risco-sri.cr4-mr3 p:nth-child(n+12):nth-child(-n+12), .risco-sri.cr4-mr3 p:nth-child(n+20):nth-child(-n+20), .risco-sri.cr4-mr3 p:nth-child(n+28):nth-child(-n+28), .risco-sri.cr4-mr4 p:nth-child(n+33):nth-child(-n+37), .risco-sri.cr4-mr4 p:nth-child(n+5):nth-child(-n+5), .risco-sri.cr4-mr4 p:nth-child(n+13):nth-child(-n+13), .risco-sri.cr4-mr4 p:nth-child(n+21):nth-child(-n+21), .risco-sri.cr4-mr4 p:nth-child(n+29):nth-child(-n+29), .risco-sri.cr4-mr5 p:nth-child(n+33):nth-child(-n+38), .risco-sri.cr4-mr5 p:nth-child(n+6):nth-child(-n+6), .risco-sri.cr4-mr5 p:nth-child(n+14):nth-child(-n+14), .risco-sri.cr4-mr5 p:nth-child(n+22):nth-child(-n+22), .risco-sri.cr4-mr5 p:nth-child(n+30):nth-child(-n+30), .risco-sri.cr4-mr6 p:nth-child(n+33):nth-child(-n+39), .risco-sri.cr4-mr6 p:nth-child(n+7):nth-child(-n+7), .risco-sri.cr4-mr6 p:nth-child(n+15):nth-child(-n+15), .risco-sri.cr4-mr6 p:nth-child(n+23):nth-child(-n+23), .risco-sri.cr4-mr6 p:nth-child(n+31):nth-child(-n+31), .risco-sri.cr4-mr7 p:nth-child(n+33):nth-child(-n+40), .risco-sri.cr4-mr7 p:nth-child(n+8):nth-child(-n+8), .risco-sri.cr4-mr7 p:nth-child(n+16):nth-child(-n+16), .risco-sri.cr4-mr7 p:nth-child(n+24):nth-child(-n+24), .risco-sri.cr4-mr7 p:nth-child(n+32):nth-child(-n+32), .risco-sri.cr5-mr1 p:nth-child(n+41):nth-child(-n+42), .risco-sri.cr5-mr1 p:nth-child(n+2):nth-child(-n+2), .risco-sri.cr5-mr1 p:nth-child(n+10):nth-child(-n+10), .risco-sri.cr5-mr1 p:nth-child(n+18):nth-child(-n+18), .risco-sri.cr5-mr1 p:nth-child(n+26):nth-child(-n+26), .risco-sri.cr5-mr1 p:nth-child(n+34):nth-child(-n+34), .risco-sri.cr5-mr2 p:nth-child(n+41):nth-child(-n+43), .risco-sri.cr5-mr2 p:nth-child(n+3):nth-child(-n+3), .risco-sri.cr5-mr2 p:nth-child(n+11):nth-child(-n+11), .risco-sri.cr5-mr2 p:nth-child(n+19):nth-child(-n+19), .risco-sri.cr5-mr2 p:nth-child(n+27):nth-child(-n+27), .risco-sri.cr5-mr2 p:nth-child(n+35):nth-child(-n+35), .risco-sri.cr5-mr3 p:nth-child(n+41):nth-child(-n+44), .risco-sri.cr5-mr3 p:nth-child(n+4):nth-child(-n+4), .risco-sri.cr5-mr3 p:nth-child(n+12):nth-child(-n+12), .risco-sri.cr5-mr3 p:nth-child(n+20):nth-child(-n+20), .risco-sri.cr5-mr3 p:nth-child(n+28):nth-child(-n+28), .risco-sri.cr5-mr3 p:nth-child(n+36):nth-child(-n+36), .risco-sri.cr5-mr4 p:nth-child(n+41):nth-child(-n+45), .risco-sri.cr5-mr4 p:nth-child(n+5):nth-child(-n+5), .risco-sri.cr5-mr4 p:nth-child(n+13):nth-child(-n+13), .risco-sri.cr5-mr4 p:nth-child(n+21):nth-child(-n+21), .risco-sri.cr5-mr4 p:nth-child(n+29):nth-child(-n+29), .risco-sri.cr5-mr4 p:nth-child(n+37):nth-child(-n+37), .risco-sri.cr5-mr5 p:nth-child(n+41):nth-child(-n+46), .risco-sri.cr5-mr5 p:nth-child(n+6):nth-child(-n+6), .risco-sri.cr5-mr5 p:nth-child(n+14):nth-child(-n+14), .risco-sri.cr5-mr5 p:nth-child(n+22):nth-child(-n+22), .risco-sri.cr5-mr5 p:nth-child(n+30):nth-child(-n+30), .risco-sri.cr5-mr5 p:nth-child(n+38):nth-child(-n+38), .risco-sri.cr5-mr6 p:nth-child(n+41):nth-child(-n+47), .risco-sri.cr5-mr6 p:nth-child(n+7):nth-child(-n+7), .risco-sri.cr5-mr6 p:nth-child(n+15):nth-child(-n+15), .risco-sri.cr5-mr6 p:nth-child(n+23):nth-child(-n+23), .risco-sri.cr5-mr6 p:nth-child(n+31):nth-child(-n+31), .risco-sri.cr5-mr6 p:nth-child(n+39):nth-child(-n+39), .risco-sri.cr5-mr7 p:nth-child(n+41):nth-child(-n+48), .risco-sri.cr5-mr7 p:nth-child(n+8):nth-child(-n+8), .risco-sri.cr5-mr7 p:nth-child(n+16):nth-child(-n+16), .risco-sri.cr5-mr7 p:nth-child(n+24):nth-child(-n+24), .risco-sri.cr5-mr7 p:nth-child(n+32):nth-child(-n+32), .risco-sri.cr5-mr7 p:nth-child(n+40):nth-child(-n+40), .risco-sri.cr6-mr1 p:nth-child(8n-6), .risco-sri.cr6-mr1 p:nth-child(n+49):nth-child(-n+50), .risco-sri.cr6-mr2 p:nth-child(8n-5), .risco-sri.cr6-mr2 p:nth-child(n+49):nth-child(-n+51), .risco-sri.cr6-mr3 p:nth-child(8n-4), .risco-sri.cr6-mr3 p:nth-child(n+49):nth-child(-n+52), .risco-sri.cr6-mr4 p:nth-child(8n-3), .risco-sri.cr6-mr4 p:nth-child(n+49):nth-child(-n+53), .risco-sri.cr6-mr5 p:nth-child(8n-2), .risco-sri.cr6-mr5 p:nth-child(n+49):nth-child(-n+54), .risco-sri.cr6-mr6 p:nth-child(8n-1), .risco-sri.cr6-mr6 p:nth-child(n+49):nth-child(-n+55), .risco-sri.cr6-mr7 p:nth-child(8n), .risco-sri.cr6-mr7 p:nth-child(n+49):nth-child(-n+56) {
    background-color: #93e08e
}

/*
<span class="risk-warning cr5-mr4">SRI</span>
<div class="uk-card uk-card-default uk-card-body uk-width-auto uk-drop" uk-drop="pos: top-center; offset: 10">
<div class="risco-sri cr5-mr4">
    <p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p>
</div>
</div>
*/

.bi-fav-title-mobile {
    display: flow;
}

.accordion-header {
    border: 1px solid #e5e5e5;
    margin-bottom: 1px;
    border-radius: 0.25rem;
}

/* responsive @containers queries */
@container (min-width:320px) {
    .uk-hidden\@s, .uk-hidden\@m, .uk-hidden\@l, .uk-hidden\@xl {
        display: unset !important
    }
}

@container (min-width:640px) {
    .uk-hidden\@s {
        display: none !important
    }
}

@container (min-width:960px) {
    .uk-hidden\@m {
        display: none !important
    }
}

@container (min-width:1200px) {
    .uk-hidden\@l {
        display: none !important
    }
}

@container (min-width:1600px) {
    .uk-hidden\@xl {
        display: none !important
    }
}

@container (max-width:639px) {
    .uk-visible\@s {
        display: none !important
    }
}

@container (max-width:959px) {
    .uk-visible\@m {
        display: none !important
    }
}

@container (max-width:1199px) {
    .uk-visible\@l {
        display: none !important
    }
}

@container (max-width:1599px) {
    .uk-visible\@xl {
        display: none !important
    }
}

/* hijack responsive uikit behaviours inside containers */
@container (min-width:640px) {
    .uk-child-width-1-1\@s>* {
        width: 100%
    }

    .uk-child-width-1-2\@s>* {
        width: 50%
    }

    .uk-child-width-1-3\@s>* {
        width: calc(100% * 1 / 3.001)
    }

    .uk-child-width-1-4\@s>* {
        width: 25%
    }

    .uk-child-width-1-5\@s>* {
        width: 20%
    }

    .uk-child-width-1-6\@s>* {
        width: calc(100% * 1 / 6.001)
    }

    .uk-child-width-auto\@s>* {
        width: auto
    }

    .uk-child-width-expand\@s>:not([class*=uk-width]) {
        flex: 1;
        min-width: 1px
    }
}

@container (min-width:960px) {
    .uk-child-width-1-1\@m>* {
        width: 100%
    }

    .uk-child-width-1-2\@m>* {
        width: 50%
    }

    .uk-child-width-1-3\@m>* {
        width: calc(100% * 1 / 3.001)
    }

    .uk-child-width-1-4\@m>* {
        width: 25%
    }

    .uk-child-width-1-5\@m>* {
        width: 20%
    }

    .uk-child-width-1-6\@m>* {
        width: calc(100% * 1 / 6.001)
    }

    .uk-child-width-auto\@m>* {
        width: auto
    }

    .uk-child-width-expand\@m>:not([class*=uk-width]) {
        flex: 1;
        min-width: 1px
    }
}

@container (min-width:1200px) {
    .uk-child-width-1-1\@l>* {
        width: 100%
    }

    .uk-child-width-1-2\@l>* {
        width: 50%
    }

    .uk-child-width-1-3\@l>* {
        width: calc(100% * 1 / 3.001)
    }

    .uk-child-width-1-4\@l>* {
        width: 25%
    }

    .uk-child-width-1-5\@l>* {
        width: 20%
    }

    .uk-child-width-1-6\@l>* {
        width: calc(100% * 1 / 6.001)
    }

    .uk-child-width-auto\@l>* {
        width: auto
    }

    .uk-child-width-expand\@l>:not([class*=uk-width]) {
        flex: 1;
        min-width: 1px
    }
}

@container (min-width:1600px) {
    .uk-child-width-1-1\@xl>* {
        width: 100%
    }

    .uk-child-width-1-2\@xl>* {
        width: 50%
    }

    .uk-child-width-1-3\@xl>* {
        width: calc(100% * 1 / 3.001)
    }

    .uk-child-width-1-4\@xl>* {
        width: 25%
    }

    .uk-child-width-1-5\@xl>* {
        width: 20%
    }

    .uk-child-width-1-6\@xl>* {
        width: calc(100% * 1 / 6.001)
    }

    .uk-child-width-auto\@xl>* {
        width: auto
    }

    .uk-child-width-expand\@xl>:not([class*=uk-width]) {
        flex: 1;
        min-width: 1px
    }
}


@container (min-width:320px) {

    .uk-width-1-2 {
        width: 50%
    }

    .uk-width-1-3 {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3 {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4 {
        width: 25%
    }

    .uk-width-3-4 {
        width: 75%
    }

    .uk-width-1-5 {
        width: 20%
    }

    .uk-width-2-5 {
        width: 40%
    }

    .uk-width-3-5 {
        width: 60%
    }

    .uk-width-4-5 {
        width: 80%
    }

    .uk-width-1-6 {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6 {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small {
        width: 150px
    }

    .uk-width-medium {
        width: 300px
    }

    .uk-width-large {
        width: 450px
    }

    .uk-width-xlarge {
        width: 600px
    }

    .uk-width-2xlarge {
        width: 750px
    }

    .uk-width-auto {
        width: auto
    }

    .uk-width-expand {
        flex: 1;
        min-width: 1px
    }
}

@container (min-width:640px) {
    .uk-width-1-1\@s {
        width: 100%
    }

    .uk-width-1-2\@s {
        width: 50%
    }

    .uk-width-1-3\@s {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@s {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@s {
        width: 25%
    }

    .uk-width-3-4\@s {
        width: 75%
    }

    .uk-width-1-5\@s {
        width: 20%
    }

    .uk-width-2-5\@s {
        width: 40%
    }

    .uk-width-3-5\@s {
        width: 60%
    }

    .uk-width-4-5\@s {
        width: 80%
    }

    .uk-width-1-6\@s {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@s {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@s {
        width: 150px
    }

    .uk-width-medium\@s {
        width: 300px
    }

    .uk-width-large\@s {
        width: 450px
    }

    .uk-width-xlarge\@s {
        width: 600px
    }

    .uk-width-2xlarge\@s {
        width: 750px
    }

    .uk-width-auto\@s {
        width: auto
    }

    .uk-width-expand\@s {
        flex: 1;
        min-width: 1px
    }
}

@container (min-width:960px) {
    .uk-width-1-1\@m {
        width: 100%
    }

    .uk-width-1-2\@m {
        width: 50%
    }

    .uk-width-1-3\@m {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@m {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@m {
        width: 25%
    }

    .uk-width-3-4\@m {
        width: 75%
    }

    .uk-width-1-5\@m {
        width: 20%
    }

    .uk-width-2-5\@m {
        width: 40%
    }

    .uk-width-3-5\@m {
        width: 60%
    }

    .uk-width-4-5\@m {
        width: 80%
    }

    .uk-width-1-6\@m {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@m {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@m {
        width: 150px
    }

    .uk-width-medium\@m {
        width: 300px
    }

    .uk-width-large\@m {
        width: 450px
    }

    .uk-width-xlarge\@m {
        width: 600px
    }

    .uk-width-2xlarge\@m {
        width: 750px
    }

    .uk-width-auto\@m {
        width: auto
    }

    .uk-width-expand\@m {
        flex: 1;
        min-width: 1px
    }
}

@container (min-width:1200px) {
    .uk-width-1-1\@l {
        width: 100%
    }

    .uk-width-1-2\@l {
        width: 50%
    }

    .uk-width-1-3\@l {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@l {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@l {
        width: 25%
    }

    .uk-width-3-4\@l {
        width: 75%
    }

    .uk-width-1-5\@l {
        width: 20%
    }

    .uk-width-2-5\@l {
        width: 40%
    }

    .uk-width-3-5\@l {
        width: 60%
    }

    .uk-width-4-5\@l {
        width: 80%
    }

    .uk-width-1-6\@l {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@l {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@l {
        width: 150px
    }

    .uk-width-medium\@l {
        width: 300px
    }

    .uk-width-large\@l {
        width: 450px
    }

    .uk-width-xlarge\@l {
        width: 600px
    }

    .uk-width-2xlarge\@l {
        width: 750px
    }

    .uk-width-auto\@l {
        width: auto
    }

    .uk-width-expand\@l {
        flex: 1;
        min-width: 1px
    }
}

@container (min-width:1600px) {
    .uk-width-1-1\@xl {
        width: 100%
    }

    .uk-width-1-2\@xl {
        width: 50%
    }

    .uk-width-1-3\@xl {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@xl {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@xl {
        width: 25%
    }

    .uk-width-3-4\@xl {
        width: 75%
    }

    .uk-width-1-5\@xl {
        width: 20%
    }

    .uk-width-2-5\@xl {
        width: 40%
    }

    .uk-width-3-5\@xl {
        width: 60%
    }

    .uk-width-4-5\@xl {
        width: 80%
    }

    .uk-width-1-6\@xl {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@xl {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@xl {
        width: 150px
    }

    .uk-width-medium\@xl {
        width: 300px
    }

    .uk-width-large\@xl {
        width: 450px
    }

    .uk-width-xlarge\@xl {
        width: 600px
    }

    .uk-width-2xlarge\@xl {
        width: 750px
    }

    .uk-width-auto\@xl {
        width: auto
    }

    .uk-width-expand\@xl {
        flex: 1;
        min-width: 1px
    }
}

@container (max-width:639px) {
    .uk-text-small\@s, .uk-text-small\@s * {
        font-size: .725rem !important;
        line-height: 1.25
    }
}

@container (max-width:959px) {
    .uk-text-small\@s, .uk-text-small\@m * {
        font-size: .725rem;
        line-height: 1.25
    }
}

@container (max-width:1199px) {
    .uk-text-small\@s, .uk-text-small\@l * {
        font-size: .725rem;
        line-height: 1.25
    }
}

@container (max-width:1599px) {
    .uk-text-small\@s, .uk-text-small\@xl * {
        font-size: .725rem;
        line-height: 1.25
    }
}

@container (min-width:640px) {
    .uk-text-left\@s {
        text-align: left !important
    }

    .uk-text-right\@s {
        text-align: right !important
    }

    .uk-text-center\@s {
        text-align: center !important
    }
}

@container (min-width:960px) {
    .uk-text-left\@m {
        text-align: left !important
    }

    .uk-text-right\@m {
        text-align: right !important
    }

    .uk-text-center\@m {
        text-align: center !important
    }
}

@container (min-width:1200px) {
    .uk-text-left\@l {
        text-align: left !important
    }

    .uk-text-right\@l {
        text-align: right !important
    }

    .uk-text-center\@l {
        text-align: center !important
    }
}

@container (min-width:1600px) {
    .uk-text-left\@xl {
        text-align: left !important
    }

    .uk-text-right\@xl {
        text-align: right !important
    }

    .uk-text-center\@xl {
        text-align: center !important
    }
}

@container (min-width:640px) {
    .uk-column-1-2\@s {
        column-count: 2
    }

    .uk-column-1-3\@s {
        column-count: 3
    }

    .uk-column-1-4\@s {
        column-count: 4
    }

    .uk-column-1-5\@s {
        column-count: 5
    }

    .uk-column-1-6\@s {
        column-count: 6
    }
}

@container (min-width:960px) {
    .uk-column-1-2\@m {
        column-count: 2
    }

    .uk-column-1-3\@m {
        column-count: 3
    }

    .uk-column-1-4\@m {
        column-count: 4
    }

    .uk-column-1-5\@m {
        column-count: 5
    }

    .uk-column-1-6\@m {
        column-count: 6
    }
}

@container (min-width:1200px) {
    .uk-column-1-2\@l {
        column-count: 2
    }

    .uk-column-1-3\@l {
        column-count: 3
    }

    .uk-column-1-4\@l {
        column-count: 4
    }

    .uk-column-1-5\@l {
        column-count: 5
    }

    .uk-column-1-6\@l {
        column-count: 6
    }
}

@container (min-width:1600px) {
    .uk-column-1-2\@xl {
        column-count: 2
    }

    .uk-column-1-3\@xl {
        column-count: 3
    }

    .uk-column-1-4\@xl {
        column-count: 4
    }

    .uk-column-1-5\@xl {
        column-count: 5
    }

    .uk-column-1-6\@xl {
        column-count: 6
    }
}

@container (max-width:639px) {
    .uk-background-image\@s {
        background-image: none !important
    }
}

@container (max-width:959px) {
    .uk-background-image\@m {
        background-image: none !important
    }
}

@container (max-width:1199px) {
    .uk-background-image\@l {
        background-image: none !important
    }
}

@container (max-width:1599px) {
    .uk-background-image\@xl {
        background-image: none !important
    }
}

@container (min-width:640px) {
    .uk-align-left\@s {
        margin-top: 0;
        margin-right: 30px;
        float: left
    }

    .uk-align-right\@s {
        margin-top: 0;
        margin-left: 30px;
        float: right
    }
}

@container (min-width:960px) {
    .uk-align-left\@m {
        margin-top: 0;
        margin-right: 30px;
        float: left
    }

    .uk-align-right\@m {
        margin-top: 0;
        margin-left: 30px;
        float: right
    }
}

@container (min-width:1200px) {
    .uk-align-left\@l {
        margin-top: 0;
        float: left
    }

    .uk-align-right\@l {
        margin-top: 0;
        float: right
    }

    .uk-align-left,
    .uk-align-left\@l,
    .uk-align-left\@m,
    .uk-align-left\@s {
        margin-right: 40px
    }

    .uk-align-right,
    .uk-align-right\@l,
    .uk-align-right\@m,
    .uk-align-right\@s {
        margin-left: 40px
    }
}

@container (min-width:1600px) {
    .uk-align-left\@xl {
        margin-top: 0;
        margin-right: 40px;
        float: left
    }

    .uk-align-right\@xl {
        margin-top: 0;
        margin-left: 40px;
        float: right
    }
}

@container (min-width:640px) {
    .uk-flex-left\@s {
        justify-content: flex-start
    }

    .uk-flex-center\@s {
        justify-content: center
    }

    .uk-flex-right\@s {
        justify-content: flex-end
    }

    .uk-flex-between\@s {
        justify-content: space-between
    }

    .uk-flex-around\@s {
        justify-content: space-around
    }
}

@container (min-width:960px) {
    .uk-flex-left\@m {
        justify-content: flex-start
    }

    .uk-flex-center\@m {
        justify-content: center
    }

    .uk-flex-right\@m {
        justify-content: flex-end
    }

    .uk-flex-between\@m {
        justify-content: space-between
    }

    .uk-flex-around\@m {
        justify-content: space-around
    }
}

@container (min-width:1200px) {
    .uk-flex-left\@l {
        justify-content: flex-start
    }

    .uk-flex-center\@l {
        justify-content: center
    }

    .uk-flex-right\@l {
        justify-content: flex-end
    }

    .uk-flex-between\@l {
        justify-content: space-between
    }

    .uk-flex-around\@l {
        justify-content: space-around
    }
}

@container (min-width:1600px) {
    .uk-flex-left\@xl {
        justify-content: flex-start
    }

    .uk-flex-center\@xl {
        justify-content: center
    }

    .uk-flex-right\@xl {
        justify-content: flex-end
    }

    .uk-flex-between\@xl {
        justify-content: space-between
    }

    .uk-flex-around\@xl {
        justify-content: space-around
    }
}

@container (min-width:640px) {
    .uk-flex-first\@s {
        order: -1
    }

    .uk-flex-last\@s {
        order: 99
    }
}

@container (min-width:960px) {
    .uk-flex-first\@m {
        order: -1
    }

    .uk-flex-last\@m {
        order: 99
    }
}

@container (min-width:1200px) {
    .uk-flex-first\@l {
        order: -1
    }

    .uk-flex-last\@l {
        order: 99
    }
}

@container (min-width:1600px) {
    .uk-flex-first\@xl {
        order: -1
    }

    .uk-flex-last\@xl {
        order: 99
    }
}

@container (min-width:640px) {
    .uk-margin-auto\@s {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .uk-margin-auto-left\@s {
        margin-left: auto !important
    }

    .uk-margin-auto-right\@s {
        margin-right: auto !important
    }
}

@container (min-width:960px) {
    .uk-margin-auto\@m {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .uk-margin-auto-left\@m {
        margin-left: auto !important
    }

    .uk-margin-auto-right\@m {
        margin-right: auto !important
    }
}

@container (min-width:1200px) {
    .uk-margin-auto\@l {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .uk-margin-auto-left\@l {
        margin-left: auto !important
    }

    .uk-margin-auto-right\@l {
        margin-right: auto !important
    }
}

@container (min-width:1600px) {
    .uk-margin-auto\@xl {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .uk-margin-auto-left\@xl {
        margin-left: auto !important
    }

    .uk-margin-auto-right\@xl {
        margin-right: auto !important
    }
}

@container (min-width:640px) {
    .uk-margin-remove-left\@s {
        margin-left: 0 !important
    }

    .uk-margin-remove-right\@s {
        margin-right: 0 !important
    }
}

@container (min-width:960px) {
    .uk-margin-remove-left\@m {
        margin-left: 0 !important
    }

    .uk-margin-remove-right\@m {
        margin-right: 0 !important
    }
}

@container (min-width:1200px) {
    .uk-margin-remove-left\@l {
        margin-left: 0 !important
    }

    .uk-margin-remove-right\@l {
        margin-right: 0 !important
    }
}

@container (min-width:1600px) {
    .uk-margin-remove-left\@xl {
        margin-left: 0 !important
    }

    .uk-margin-remove-right\@xl {
        margin-right: 0 !important
    }
}

@container (max-width:640px) {
    .uk-padding-remove\@s {
        padding: 0 !important
    }
}

/* modern dotnav */
.uk-dotnav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 50%;
    margin-bottom: 1.125rem;
    background: #eee;
    border-radius: 1.25em;
    max-width: 350px;
    transform: translateX(-50%);
}

.uk-dotnav>* {
    flex: 1 1 0;
    padding-left: 0;
}

.uk-dotnav>*>* {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2px;
    border-radius: 1.25em;
    background: 0 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: .2s ease-in-out;
    transition-property: background-color, border-color;
    border: 0;
}


.uk-accordion-title::before {
    background: none;
    content: "+";
    color: var(--main-color);
    font-size: 1.5em;
    text-align: right;
}

.uk-open>.uk-accordion-title::before {
    background: none;
    content: "\2212";
    color: var(--main-color);
    font-size: 1.5em;
}






/*=== OVERRIDES ===*/
[class^='k-'] {
    all: unset
}

#layout-wrapper {
    min-height: 100vh
}

.footer {
    z-index: 1002;
    display: none;
}

.uk-heading-smaller {
    font-size: 1.5rem;
}

@media (min-width:960px) {
    .uk-heading-smaller {
        font-size: 1.75rem;
    }
}

.uk-curr {
    box-sizing: border-box;
    display: inline-block;
    width: 38px !important;
    height: 24px !important;
    padding-top: 1px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    background-color: #999;
    border: 0;
    border-radius: 20px;
    color: #fff;
}

.bi-fav-ticker {
    font-weight: 700;
    font-size: .75em;
    line-height: 1;
    align-self: center;
    vertical-align: middle;
}

.bi-fav-curr {
    margin-left: 5px !important;
    font-weight: 400;
    font-size: .65em;
    line-height: 1;
    align-self: center;
}

#bi-negociar-panel {
    z-index: 1050;
    right: -3px
}

.bi-negociar-sell .bi-negociar-buy {
    display: none;
}

.bi-negociar-buy .bi-negociar-sell {
    display: none;
}

.bi-disabled, .bi-btn-sell.bi-disabled>.bi-negociar-vender {
    background: #ececec !important;
    cursor: default;
}

.bi-btn-sell.bi-disabled>.bi-sell svg polyline {
    stroke: #ececec !important;
}

#bi-deal-title {
    max-width: 35%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: .75rem;
}

.bi-fav-title {
    max-width: 84%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: clamp(0.5rem, 0.375vw + 0.5rem, 1rem);
    margin-left: 3px;
}

.bi-movimentos {
    font-size: clamp(0.85rem, 0.375vw + 0.5rem, 1.125rem);
}

.bi-small-text {
    font-size: clamp(.6rem, .625vw, .75rem);
}

.bi-btn-buy, .bi-btn-sell {
    min-height: auto
}

.uk-offcanvas-overlay {
    z-index: 1002;
}

.uk-offcanvas-overlay::before {
    background: rgba(0, 0, 0, .25);
}

.uk-button-default.uk-text-primary {
    border: 1px solid;
}

.uk-button-default.uk-text-primary:hover {
    color: #00638a !important;
    border: 1px solid;
}

.uk-background-muted {
    background-color: #f5f5f5;
}

.AccoesNegociar {
    padding: 3px 0 3px 20px;
    width: 380px;
    margin-bottom: 20px !important;
}

.SBoxClass {
    font-size: .875rem;
    width: 280px !important;
    padding: 0 0 0 5px;
    color: #222;
    border: 1px solid #bcbcbc;
    border-radius: 2px;
    background: #fff;
    outline: none;
    margin-bottom: 0 !important;
    margin-left: 3px;
    height: 26px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.divSearch {
    border: 0;
    padding: 0
}

.bi-detail-sheet {
    height: fit-content !important;
    z-index: 99;
    margin-bottom: 60px;
    position: relative !important;
    top: 0 !important;
}

.uk-text-right span {
    text-align: right
}

.bi-favorite .bi-btn-title {
    margin-bottom: 0;
    font-size: .625em
}

.flatpickr-calendar.open {
    margin-top: -61px
}

.bi-pfc {
    margin-top: -1.75em
}

#bi-deal-dif a {
    color: var(--main-color) !important;
    text-decoration: underline !important
}

#passwordNegociacao {
    width: 100px;
    border-color: #000
}

#bi-negociar-wait {
    position: fixed;
    z-index: 999992;
    width: 100%;
    height: 100%;
    top: 0;
    align-items: center;
    color: var(--main-color);
    background: rgba(255, 255, 255, 0.5);
    display: none
}

#bi-negociar-wait svg {
    display: flex;
    margin: 0 auto;
    height: 100%;
}

#bi-negociar-wait svg circle {
    stroke-width: 1px !important
}

.bi-btn-subscrever-resgatar {
    min-width: 54px;
    align-items: center;
}

.bi-btn-negociar {
    min-width: 30px
}

.bi-btn-negociar a, .bi-btn-subscrever-resgatar a {
    line-height: 1 !important;
    opacity: .8
}

.bi-btn-negociar a:hover, .bi-btn-subscrever-resgatar a:hover {
    opacity: 1
}

.bi-btn-negociar a i, .bi-btn-subscrever-resgatar a i {
    color: var(--main-color);
}


.bi-detail-features span {
    display: inline-block;
    color: var(--icon-color);
    white-space: nowrap;
    margin-right: 5px;
    font-size: .8em;
    text-transform: uppercase;
}

.bi-detail-features span[data-feat='on'],
.bi-detail-features span[data-feat='1'] {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    padding-left: 17px;
    padding-top: 3px;
}

.bi-detail-features span[data-feat='on']:before,
.bi-detail-features span[data-feat='1']:before {
    position: absolute;
    left: 0;
    bottom: -1px;
    font-family: 'Material Symbols Outlined';
    font-size: 1.25em;
    font-weight: 700;
    content: "check_circle";
}

.bi-detail-features span[data-feat='']:before,
.bi-detail-features span[data-feat='off']:before,
.bi-detail-features span[data-feat='0']:before {
    margin-right: 1px;
    font-size: 1.25em;
    content: "\1f5d9";
}

.bi-detail-features span[data-feat='']>.uk-badge,
.bi-detail-features span[data-feat='off']>.uk-badge,
.bi-detail-features span[data-feat='0']>.uk-badge {
    display: none;
}

.bi-fav-detail-close:hover {
    background: #eee;
    color: #007da5;
    transition: all 1s;
}

.bi-fav-detail-close {
    transition: all 1s;
    cursor: pointer;
}

.bi-super {
    vertical-align: super;
}

#btn-install:hover i.md-icon {
    color: var(--main-color)
}

#icon-install {
    display: none;
}

.vertical-collpsed .vertical-menu #sidebar-menu #alert-install {
    display: none;
}

.vertical-collpsed .vertical-menu #sidebar-menu #icon-install {
    display: block;
}


@media screen and (max-width: 780px) {
    .bi-detail-sheet {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important
    }

}

@media screen and (max-width: 480px) {
    #bi-modal-token input, #bi-modal-token .uk-button {
        font-size: .75em
    }
}

/* bottom nav */
.footer .nav-link.active>.md-icon {
    color: #67a8e4;
}

.footer .nav-link.notify:after {
    content: "\2022";
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #ea553d;
    font-size: 1.5em;
}


html[data-theme=dark] .bi-detail-btn, .bi-detail-btn:hover {
    color: #00b5d7;
}


html[data-theme=dark] input::placeholder {
    color: #ffffff80 !important;
}

html[data-theme=dark] .SBoxClass {
    border: 1px solid #000;
    background: #2f3d46;
    color: #fff;
}

html[data-theme=dark] .uk-card-default {
    background-color: #2f3d46;
    background-clip: border-box;
    border: 1px solid #374650;
    color: #f5f5f5;
}

html[data-theme=dark] .uk-card-default .uk-card-footer {
    border-top: 1px solid #1f2c33;
}

html[data-theme=dark] .uk-card-default.uk-card-hover:hover {
    background-color: #405664;
}

html[data-theme=dark] .uk-dropdown {
    background: #405664;
    color: #fff;
}

html[data-theme=dark] .bi-fav-data dd .uk-button .bi-btn-value {
    color: #fff !important;
}

html[data-theme=dark] .bi-cyan {
    color: #00b5d7 !important;
}

html[data-theme=dark] .bi-detail-features span[data-feat='on'],
html[data-theme=dark] .bi-detail-features span[data-feat='1'] {
    color: #00b5d7;
}

html[data-theme=dark] .uk-description-list>dt {
    color: #f5f5f5;
}

html[data-theme=dark] .uk-text-muted {
    color: #d5d5d5 !important;
}

html[data-theme=dark] .uk-background-muted {
    background-color: rgba(0, 0, 0, .125);
}

html[data-theme=dark] .uk-article-meta {
    color: #f5f5f5;
}

@media (prefers-color-scheme: dark) {}

.form-check-input:focus {
    box-shadow: none;
}



/*=== CARDS+FORMS ADJUSTMENTS ====*/
.row {
    max-width: 100%;
    margin: 0 auto;
    box-sizeing: border-box;
}

.uk-card-media-top img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.pos-cards .uk-card-body:focus-within, .pos-cards .uk-card-body>* {
    user-select: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}


ul.uk-slider-items.uk-grid {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

ul.uk-slider-items.uk-grid li {
    scroll-snap-align: start;
    cursor: pointer !important;
}

ul.uk-slider-items.uk-grid li .uk-card {
    /* z-index: -1; */
}

label {
    font-weight: 600;
    opacity: 0.8
}

.uk-form-label {
    font-size: 0.9em;
}

.form-label {
    font-size: 0.9em;
}

.form-control:focus {
    color: #212529
}

.form-control.uk-datepicker:not([disabled]) {
    background-color: #fff;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 1.25em;
    content: "";
}

.btn-outline-secondary, .input-group-text, .form-select, .form-control, .uk-input {
    border-color: #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-secondary:active>span.uk-form-icon.uk-icon, .btn-outline-secondary:hover>span.uk-form-icon.uk-icon {
    color: #fff;
}

.input-group.has-validation> :nth-last-child(n + 3):is(span):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

#btnBenFreq {
    min-width: 50px;
}

.accordion-collapse {
    background-color: #eee;
}

.accordion-button {
    opacity: 0.8;
    font-size: 0.9em;
    font-weight: 600;
}

.account-item.active {
    color: var(--main-color)
}

.ddl-account button span {
    font-size: clamp(0.688rem, 0.625rem + 0.267vw, 0.875rem);
}

.ddl-account button i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.lh-2 {
    line-height: 2em;
}

.lh-3 {
    line-height: 56px;
}



/*======= SLIDDING TABS CSS =======*/

/*======= Tab navigation bar =======*/
.bi-slidetab-navbar {
    position: relative;
    margin: 20px 10px;
}

.bi-slidetab-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    margin: 0 auto;
}

.bi-slidetab-menu {
    color: #fff;
    list-style: none;
    background: rgb(0 142 189 / 60%);
    padding: 10px;
    white-space: nowrap;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
    overflow-x: auto;
    -webkit-user-select: none;
    user-select: none;
    scroll-behavior: smooth;
}

.bi-slidetab-menu.dragging {
    scroll-behavior: unset;
    cursor: grab;
}

.bi-slidetab-menu::-webkit-scrollbar {
    display: none;
}

.bi-slidetab-btn {
    color: #fff;
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    margin: 0 2px;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: 0.5s ease-in;
}

.bi-slidetab-menu.dragging .bi-slidetab-btn {
    pointer-events: none;
}

.bi-slidetab-btn:hover {
    background: rgb(0 142 189 / 70%);
    transition: 0.5s ease-out;
}

.bi-slidetab-btn.active {
    background: rgb(0 142 189 / 100%);
    transition: 0.75s ease;
}

.bi-slidetab-left-btn, .bi-slidetab-right-btn {
    position: absolute;
    color: #fff;
    font-size: 1.8em;
    padding: 4px 10px;
    cursor: pointer;
}

.bi-slidetab-left-btn {
    left: 0;
    background: linear-gradient(to left, transparent, rgb(0 142 189 / 100%));
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    display: none;
}

.bi-slidetab-right-btn {
    right: 0;
    background: linear-gradient(to right, transparent, rgb(0 142 189 / 100%));
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    display: none;
}

.bi-slidetab-left-btn:hover,
.bi-slidetab-right-btn:hover {
    color: rgb(0, 94, 125);
}

/*======= Tab content =======*/
.bi-slidetab-content {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.bi-slidetab {
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 15px 50px;
}

.bi-slidetab.active {
    display: flex;
}

/*======= Media queries (max-width: 1050px) =======*/
@media screen and (max-width: 1050px) {
    .bi-slidetab-navbar {
        margin: 65px 20px 40px 25px;
    }

    .bi-slidetab {
        padding: 15px 25px;
    }
}



/*======= OFERTA TRENDS CSS =======*/

.hilite-trend {
    position: relative;
    text-align: center;
    padding: 3px;
    cursor: pointer;
    transition: all 1s;
}

.ht-desc {
    position: absolute;
    font-family: var(--font-geologica);
    font-size: .65rem;
    font-weight: 400;
    text-transform: uppercase;
    word-break: break-word;
    color: #eee;
    left: 8px;
    right: 8px;
    bottom: 2em;
    -webkit-user-select: none;
    user-select: none;
    line-height: 1.25em;
}

.ht-hovered {
    position: absolute;
    font-size: .65rem;
    font-weight: 400;
    top: 3px;
    bottom: 9px;
    left: 3px;
    right: 3px;
    background-color: rgba(0, 125, 165, 0.8);
    border-radius: 20px;
    padding-top: 12%;
}

.hilite-trend:hover .ht-img {
    box-shadow: 1px 2px 4px 0px rgb(0 0 0 / 50%);
}

.hilite-trend:hover .ht-desc {
    color: #fff;
    text-shadow: 0 1px 2px #00000080;
}

.ht-img {
    position: relative;
    display: inline-block;
    width: 125px;
    height: 125px;
    border-radius: 20px;
    background-size: cover;
}

.ht-img:after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent, black);
    opacity: .5;
    border-radius: inherit;
}

.hilite-trend:hover .ht-img:after {
    background: linear-gradient(to bottom, transparent, black);
    opacity: .1;
}

.hilite-trend.active .ht-img:after {
    background: linear-gradient(to bottom, transparent, black);
    opacity: .1;
}

.hilite-trend.active .ht-img {
    box-shadow: 1px 2px 4px 0px rgb(23 57 69 / 50%);
    border: 2px solid #fff;
}

.hilite-trend.active .ht-desc {
    color: #fff;
    text-shadow: 0 1px 2px #00000080;
}

.hilite-trend.active {
    cursor: default;
}

.hilite-trend.new:before {
    position: absolute;
    top: 39px;
    right: 14px;
    content: '';
    background: #d75600;
    height: 51px;
    width: 20px;
    transform: rotate(45deg);
}

.hilite-trend.new:after {
    position: absolute;
    top: 25px;
    right: -1px;
    padding: 0.5rem;
    width: 7rem;
    background: #f60;
    color: white;
    text-align: center;
    box-shadow: 4px 4px 15px rgba(26, 35, 126, 0.2);
    font-size: .75em;
    content: "NOVO";
}

@media (max-width: 680px) {

    .hilite-trend.new:before {
        display: none;
    }

    .hilite-trend.new:after {
        position: absolute;
        left: calc(50% + 10px);
        padding: 0.25rem 0.5rem;
        width: 3rem;
        background: #f60;
        color: white;
        text-align: center;
        box-shadow: -4px 4px 15px rgb(26 35 126 / 20%);
        font-size: .5em;
        content: "NOVO";
    }
}

@media (max-width: 360px) {
    .ht-desc {
        font-size: 10px;
    }
}





/* MORNINGSTAR RATINGS CROSS-BROWSER */

.funds-rating {
    color: #807f7f45;
    font-size: 18px;
    line-height: 1;
}

.funds-rating>meter {
    display: none;
}

.funds-rating.rating-1 {
    color: #303d4a;
}

.funds-rating.rating0 b {
    color: #807f7f45;
}

.funds-rating.rating1 b:nth-child(-n+1) {
    color: #303d4a;
}

.funds-rating.rating2 b:nth-child(-n+2) {
    color: #303d4a;
}

.funds-rating.rating3 b:nth-child(-n+3) {
    color: #303d4a;
}

.funds-rating.rating4 b:nth-child(-n+4) {
    color: #303d4a;
}

.funds-rating.rating5 b:nth-child(-n+5) {
    color: #303d4a;
}



/* planos poupança reforma */

/* COLORS */
.bi-bgcolor {
    background-color: var(--body-bgcolor) !important;
}

.scrolltext {
    font-size: .675rem;
    font-weight: 100;
    line-height: 1.5 !important;
    display: block;
    margin-top: 30px;
}

.scrolldown {
    animation: scrolldown 1.25s ease-in-out infinite alternate both;
}

@keyframes scrolldown {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.vantagens-slider-title {
    color: var(--main-color) !important;
    -webkit-text-stroke: 1px #00000080;
}

.oferta-slider .uk-cover-container {
    border-radius: 1.125em;
}

.oferta-slider .uk-cover-container.is-active {
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.3);
}

.oferta-slider .uk-cover-container:after {
    content: "";
    background: linear-gradient(180deg, transparent 15%, rgb(255 255 255 / 75%));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    opacity: 1;
}

.oferta-slider .uk-cover-container.is-active:after {
    content: "";
    background: linear-gradient(180deg, rgb(0 0 0 / 25%) 1%, rgb(0 0 0 / 100%));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    opacity: .95;
}

.oferta-slider .uk-cover-container .uk-card.uk-card-default {
    background: none;
    box-shadow: none;
    z-index: 1;
}

.oferta-slider .uk-cover-container.is-active .uk-card.uk-card-default {
    background: none;
}

.oferta-slider .uk-cover-container.is-active .uk-card.uk-card-default .uk-card-body {
    background: none;
}

.oferta-slider .uk-cover-container .uk-card-title {
    color: #161110;
    text-transform: uppercase;
    font-size: 1.125em !important;
    font-weight: 400;
    text-transform: uppercase;
}

.oferta-slider .uk-cover-container.is-active .uk-card-title {
    color: #fff;
    font-weight: 500 !important;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 4em;
    font-size: 1rem !important;
    border: 3px solid #ffffff;
    border-radius: 500px;
    padding: 4px 25px 3px 25px;
    background: linear-gradient(180deg, #009de0, #004e6f);
    cursor: pointer;
    opacity: .9;
    text-shadow: 1px 1px #004765;
}

.oferta-slider .uk-cover-container.is-active .uk-card-title:hover {
    opacity: 1;
}

.ppr-card .uk-card-badge.uk-label.pprs-fav {
    background: transparent;
    color: #fff;
    padding-right: 0;
    opacity: .9;
    cursor: pointer;
    text-shadow: 1px 1px 5px rgb(0 0 0 / 65%);
    line-height: 1;
    top: 5px;
}

.ppr-card[data-fav="1"] .uk-card-badge.uk-label.pprs-fav, .pprs-fav.active {
    color: red !important;
    font-variation-settings: 'FILL'1, 'wght'700;
}

.ppr-card .uk-card-badge.uk-label.pprs-fav:hover {
    opacity: 1;
}

.oferta-slider .uk-dotnav {
    bottom: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 500px;
}

.oferta-slider .uk-dotnav>* {
    margin-left: 3px;
    padding-left: 3px;
}

.oferta-slider .uk-dotnav> :first-child {
    margin-left: 0;
}

.oferta-slider .uk-dotnav>*>* {
    display: block;
    box-sizing: border-box;
    width: auto;
    height: auto;
    border-radius: 15px;
    background: #fff;
    text-indent: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0px solid #0082b980;
    transition: 0.2s ease-in-out;
    transition-property: background-color, border-color;
    font-size: .51em;
    font-weight: 500;
    color: var(--body-color);
    padding: 4px 6px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.oferta-slider .uk-dotnav>*>*:hover {
    background-color: #dce7ee !important;
    transition: all 500ms ease-out;
}

.oferta-slider .uk-dotnav>.uk-active>* {
    background-color: rgba(0, 157, 224, .9) !important;
    color: #fff;
}

@media (min-width: 640px) {
    .oferta-slider .uk-dotnav {
        padding: 10px 20px;
    }

    .oferta-slider .uk-dotnav>*>* {
        line-height: 1.25;
        font-size: .65em;
        font-weight: 400;
        border-radius: 500px;
        padding: 6px;
    }
}


.ui-disabled {
    pointer-events: none;
}

.oferta-slider .uk-slider-items.pprs-filter {
    height: calc(35vh);
    margin-bottom: 70px !important;
}

.oferta-slider .uk-slider-items.pprs-filter .uk-cover-container>img {
    object-position: left center !important;
}

.oferta-slider .uk-slider-items>div {
    user-select: none;
    touch-action: pan-x;
}

.pprs-props {
    text-align: left;
}

.pprs-props div div small {
    font-size: 13px;
    display: block;
    color: #a5a5a5;
    font-weight: 100;
}

.pprs-props div div span {
    padding: 3px 10px 10px 0;
    /*font-size: 1.25em;color: #fff;*/
}

.pprs-props div div:nth-child(3) span {
    font-size: 1.125em;
}

.pprs-props div div:nth-child(even) {
    text-align: right;
}

.pprs-props div div:nth-child(even) span {
    padding-right: 0;
}

.bi-nav-header h1 {
    color: #fff;
    font-weight: 600 !important;
    font-size: clamp(2.85rem, 2.5635rem + 1.2226vw, 4rem);
}

@media (max-width: 480px) {
    .bi-nav-header h1 {
        font-size: 2rem !important;
    }
}

.pprs-vant .uk-card.uk-card-default.uk-card-body {
    color: #000;
    background-color: rgb(255 255 255 / 60%);
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    border-radius: 1.125rem;
    font-size: .925em;
    font-weight: 300;
    border: 1px solid rgb(255 255 255 / 30%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 15px;
    transition: all .2s ease-in-out;
}

.pprs-card-title {
    display: block;
    font-size: 1.25rem !important;
    color: #333 !important;
    font-weight: 400 !important;
    font-family: var(--font-geologica) !important;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body:hover {
    background-color: rgb(255 255 255);
    transform: scale(1.125);
    transition: all .3s ease-in-out;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body:hover .pprs-card-title, .pprs-vant .uk-card.uk-card-default.uk-card-body:hover p {
    color: #007de0 !important;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body .pprs-vant-more {
    padding: 0;
    top: 10px;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body .pprs-vant-more span.md-black {
    transition: all .2s ease-in-out;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body:hover .pprs-vant-more span.md-black {
    color: #007de0 !important;
    transform: scale(1.2);
    transition: all .1s ease-in-out;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body .pprs-vant-more .btn-more {
    font-size: .7125em;
    line-height: 1;
    padding: 5px 7px !important;
    background: rgb(0 0 0 / 75%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 500px;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body .pprs-vant-more .btn-more:hover {
    background: #007de0;
}

.pprs-vant .uk-card.uk-card-default.uk-card-body p[hidden] {
    display: none !important;
}

.pprs-why img.uk-animation-kenburns {
    opacity: .5;
    object-position: bottom left !important;
}

.pprs-why-heading {
    font-size: clamp(1.75rem, 1.4697rem + 0.8vw, 2.875rem) !important;
    line-height: 1.05 !important;
}

.pprs-why-sub {
    font-size: 15px;
    font-weight: 300;
    margin-top: 2em
}

@media (min-width: 960px) {
    .pprs-vant .uk-card.uk-card-default.uk-card-body p[hidden] {
        display: block !important;
    }

    .pprs-vant .uk-card.uk-card-default.uk-card-body {
        padding: 30px;
    }

    .pprs-why img.uk-animation-kenburns {
        opacity: 1;
        object-position: bottom left !important;
    }
}

.pprs-why {
    /*background-image: url('/images/default-source/mockups/pprs-mock-52.jpg');*/
    background: linear-gradient(180deg, #dce7ee, #007de01a);
    background-size: cover;
}

mark {
    background: #00a8ebc7;
    background: rgb(255 255 0 / 60%);
    color: #fff;
    color: #000;
}

.pprs-why .uk-card.uk-card-default.uk-card-body {
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.75) 0px 4px 30px;
    border-radius: 1.125rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.pprs-why-title {
    font-family: var(--font-geologica) !important;
    font-size: clamp(2.2rem, 1rem + 1.2226vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 20px !important;
    text-align: center;
}

.pprs-prize .pprs-why-title {
    text-align: left;
}

.uk-tooltip.uk-active.ppr-comp {
    background: #e50f00;
}

.pprs-compare.contestant {
    text-shadow: 1px 1px #fff;
    margin-top: -6px !important;
    padding: 0 !important;
}

.pprs-compare.contestant>strong {
    text-shadow: 1px 1px #fff;
    text-transform: uppercase;
}

.pprs-compare.contestant>span {
    display: inline-block;
    color: #c75d71 !important;
    line-height: 0;
}

.pprs-compare small.md-icon {
    font-variation-settings: 'FILL'1;
    text-shadow: 1px 1px #fff;
    font-size: 16px !important;
    vertical-align: sub;
    color: #c75d71 !important;
}

.pprs-compare, .sim-inputs span.pprs-compare, .sim-outputs span.pprs-compare {
    color: #c75d71 !important;
    opacity: .75;
    margin-top: -3px !important;
    font-size: .75rem !important;
    visibility: hidden;
}

li.comparing a:after {
    color: #000;
    position: absolute;
    top: 4px;
    content: "\2605";
    font-size: 13px;
}

.uk-subnav.bi-subnav-pill>*:not(:first-child)> :first-child {
    font-size: 0.7125rem;
    text-transform: none;
    color: #666;
    border: 2px solid;
    border-radius: 500px;
}

.uk-subnav.bi-subnav-pill>.uk-active>a {
    background-color: var(--main-color);
    color: #fff !important;
    border-color: var(--main-color) !important;
}

.uk-subnav.bi-subnav-pill>* {
    padding-left: 10px;
}

.uk-subnav.bi-subnav-pill .uk-icon {
    color: #000;
}

.black-yellow-filter::before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .25;
    background: linear-gradient(180deg, transparent, #3d3d00);
}

.pprs-hero-dividers>div {
    color: #fff;
    font-size: 1.35rem !important;
    font-weight: 300 !important;
}

@media (max-width: 959px) {
    .pprs-hero-dividers>div {
        font-size: 1rem !important;
    }

    .black-yellow-filter::before {
        opacity: .5;
    }
}


.half-content {
    width: 50% !important;
}

.contentbox .content-wrapper .btn .blue {
    line-height: 18px !important;
}

.half-content:nth-of-type(2), .half-content:nth-of-type(4), .half-content:nth-of-type(6), .half-content:nth-of-type(8) {
    margin: 0;
}

.top-bar .wrapper h4, .top-bar .wrapper .h4 {
    font-size: 0.5em;
    text-transform: initial;
}

.selo-deco {
    float: right;
}

.selo-20-anos {
    float: left;
    max-height: 220px;
    margin-top: -15px;
}

.square {
    height: 4px;
    width: 150px;
    background-color: var(--main-color);
    margin-top: .5em;
    margin-left: 50%;
    transform: translateX(-50%);
}

.px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important
}

.orange-text {
    display: block;
    text-align: center;
    font-size: 34px;
    color: #f60;
}

.top-bar {
    background-position: right center !important;
}

.reduce-font {
    font-size: 34px;
}

.four-content {
    width: 25% !important;
}

.icons .four-content {
    margin: 0 !important;
}

#steps {
    padding-top: 60px;
    padding-bottom: 60px;
}

.lnr {
    font-family: 'Roboto Condensed', sans-serif;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

span.steps {
    padding: 0;
    font-size: 3.5em;
    font-weight: 900 !important;
    line-height: 55px;
    color: var(--main-color);
    display: block;
    width: 70px;
    height: 67px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

span.steps {
    padding: 5px;
    font-weight: 500;
}

.step-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    padding-left: 8rem;
    padding-right: 8rem;
}

.btn-form3 {
    background-color: var(--main-color);
    border-radius: 5px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 5px 25px;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn3 {
    border-radius: 5px;
    color: #fff;
    border: 2px solid #fff;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 5px 25px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn3:hover {
    color: #fff;
}

.anchor {
    display: block;
    height: 112px;
    margin-top: -112px;
    visibility: hidden;
}

.parallax {
    background-size: cover;
    background-repeat: no-repeat !important;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
}

.container {
    padding: 2px 16px;
}

.parallax-pad {
    padding-top: 60px;
    padding-bottom: 60px;
}

.text-parallax {
    font: 400 16px 'Roboto Condensed', sans-serif !important;
    line-height: 20px !important;
}

.box-agendamento {
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(56, 56, 56, .51);
    -moz-box-shadow: 10px 10px 5px 0px rgba(56, 56, 56, .51);
    box-shadow: 10px 10px 5px 0px rgba(56, 56, 56, .51);
    padding: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0;
    flex-basis: 48% !important;
}

/*FORMULÁRIO DE CONTACTO*/
.form-container {
    padding: 0;
    width: 100%;
    margin-bottom: 2.5rem;
}

.form-title {
    display: block;
    font-weight: 500;
    text-align: center;
    padding: 1em;
    font-size: 26px;
    line-height: 18px;
    margin-top: .5rem !important;
    color: #043F47;
}

.sub-title {
    font-size: 15px;
}

.termos {
    color: #ccc;
    font: 400 13px 'Roboto Condensed', sans-serif !important;
    width: 92%;
    float: right;
    padding-left: 2rem;
}

.box-form {
    margin-bottom: 0px !important;
}

.privacy-policy {
    width: 90%;
    margin-left: 4%;
}

.confirm-data {
    color: #939393;
    font-size: 14px !important;
    line-height: 18px !important;
    width: 90%;
    float: right;
}

.form-container {
    margin-bottom: 0rem;
    padding: 1rem 1rem 2.3rem 1rem;
}

.right-column {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.mail_message {
    display: none;
}

.k-input, input.k-textbox, textarea.k-textbox, input.k-textbox:hover, textarea.k-textbox:hover, .k-textbox>input, .k-multiselect-wrap {
    border: none;
    border-bottom: 1px solid #036572;
    background-color: transparent;
    width: 80%;
}

.title-form {
    color: #036572;
    font-size: 30px !important;
    line-height: 28px !important;
    font-weight: 700 !important;
}

.sub-title {
    color: #036572;
    font-size: 20px !important;
    padding-bottom: 15px;
    padding-top: 15px;
}

.terms {
    margin-left: 10%;
}

#formSubmit {
    background-color: #036572;
    color: #fff;
    border: 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 1rem;
    /*margin-bottom: 2.3rem;*/
    cursor: pointer;
}

#formSubmit[disabled] {
    background-color: grey;
    cursor: default;
}

::placeholder {
    color: rgba(4, 63, 71, .42);
}

:-ms-input-placeholder {
    color: rgba(4, 63, 71, .42);
}

::-ms-input-placeholder {
    color: rgba(4, 63, 71, .42);
}

/*PRELOADER*/
.css3-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    text-align: center;
    background-color: rgba(255, 255, 255, .5);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner .css3-spinner-bounce1 {
    margin-left: -31px;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner .css3-spinner-bounce2 {
    margin-left: -9px;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.half-content:nth-of-type(4) {
    margin-left: 0 !important;
}

.webinar-data {
    font-weight: 700 !important;
    color: #fff;
    background-color: #ce720d;
    padding: 10px 20px;
    float: right;
}

.contentbox .content-wrapper .btn .orange {
    display: inline-block;
    background: #ce720d;
    color: #f5f5f5;
    padding: 0.45em 1.5em 0.45em 1.5em;
    margin: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    border: 1px solid #ce720d;
    white-space: nowrap;
}

.contentbox .content-wrapper .btn .orange:hover {
    background: #FFFFFF;
    color: #ce720d;
}

.ico-ppr {
    background-color: #fff;
    border-radius: 0px;
    padding: 15px;
    fill: #136077;
    transition-property: all;
    transition-duration: 1.4s;
    width: 120px;
}

.ico-ppr:hover {
    background-color: #136077;
    border-radius: 70px;
    padding: 15px;
    fill: #fff;
}

.title-webinar {
    color: #fff !important;
    text-align: left;
    font-weight: 600;
}

.square-white {
    background-color: #fff;
    height: 2px;
    width: 84px;
}

.webinar-topics {
    color: #fff;
    text-align: left;
    padding-top: 1em;
    line-height: 1.65em !important;
}

.btn-webi {
    float: left;
}

.speaker {
    float: right;
}

.selo {
    float: left;
}

.box {
    background-color: #CE720D;
    width: 120px;
}

.box p {
    color: #fff;
    /*text-align: left;*/
    padding: 2px 4px 2px 4px;
}

.larger-content {
    width: 66% !important;
}

.off-canvas {
    position: absolute;
    left: -99999999px
}

#smart-logo {
    width: 200px;
    margin-top: 20px
}

.smart-logo-icon {
    transition: all 2000ms;
}

#smart-logo:hover .smart-logo-icon {
    fill: #8bc34a;
    transition: all 1500ms;
}

.main-range {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 2em 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

label {
    display: block;
    margin-bottom: 1em;
    font-size: 13px;
    font-weight: bold;
}

.rangeslider__tooltip {
    display: block;
    margin-top: 2.5em;
    font-size: 12px;
    color: #a59eb5;
}

.rangeslider, input[type="range"] {
    max-width: 100%;
}

.rangeslider__handle {
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    touch-action: pan-x;
    -ms-touch-action: pan-x;
}

.rangeslider__handle:after {
    background: 0;
}

.rangeslider, .rangeslider__fill {
    display: block;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.rangeslider {
    background: #e6e5ea;
    background-image: linear-gradient(to right, #f1c40f 0%, #ff6600 50%, #ef0e00 95%);
    position: relative;
}

.rangeslider--horizontal {
    height: 10px;
    width: 100%;
}

.rangeslider--vertical {
    width: 20px;
    min-height: 150px;
    max-height: 100%;
}

.rangeslider--disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
}

.rangeslider__fill {
    position: absolute;
}

.rangeslider--horizontal .rangeslider__fill {
    top: 0;
    height: 100%;
}

.rangeslider--vertical .rangeslider__fill {
    bottom: 0;
    width: 100%;
}

.rangeslider__handle {
    background: white;
    border: 3px solid #4bc67d;
    cursor: pointer;
    display: inline-block;
    width: 75px;
    height: 30px;
    position: absolute;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
}

.rangeslider__handle.js-mcons {
    border-color: #4bc67d;
}

.rangeslider__handle.js-cons {
    border-color: #f1c40f;
}

.rangeslider__handle.js-mod {
    border-color: #ff6600;
}

.rangeslider__handle.js-din {
    border-color: #ef0e00;
}

.rangeslider__tooltip.js-cons {
    text-align: left;
}

.rangeslider__tooltip.js-mod {
    text-align: center;
}

.rangeslider__tooltip.js-din {
    text-align: right;
}

.rangeslider__handle:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.rangeslider--horizontal .rangeslider__handle {
    top: -10px;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.rangeslider--vertical .rangeslider__handle {
    left: -10px;
    touch-action: pan-x;
    -ms-touch-action: pan-x;
}

input[type="range"]:focus+.rangeslider .rangeslider__handle {
    -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}

.hideOndesktop {
    display: none;
}

.sec-1 {
    padding-top: 60px;
}

.sec-2 {
    padding-top: 60px;
    padding-bottom: 20px;
}

.sec-3 {
    padding-top: 60px;
    padding-bottom: 40px;
}

.contentbox .content-margin {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contentbox2 .content-margin {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.rangeUI {
    display: block;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #e6e6e6;
    position: relative;
}

.range_handle {
    line-height: 25px;
    text-align: center;
    font-weight: bold;
    font-size: .75em;
    color: var(--main-color);
    background: white;
    border: 3px solid #afafaf;
    cursor: pointer;
    display: inline-block;
    width: 75px;
    height: 30px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    position: absolute;
    top: -10px;
    left: -10px;
    touch-action: pan-x;
    -ms-touch-action: pan-x;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
}

.range_handle:active {
    border: 3px solid rgba(0, 138, 164, 0.75);
}

.range_handle:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: 0;
}

.range_fill {
    display: block;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--main-color);
    background-image: linear-gradient(to right, #00d7ff 0%, var(--main-color) 95%);
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.rangeslider__ruler {
    cursor: pointer;
    font-size: .7em;
    position: relative;
    top: 200%;
    text-align: justify;
}

.rangeslider__ruler:after {
    content: "";
    display: inline-block;
    width: 100%;
}

.range__display {
    position: absolute;
    font-weight: bold;
    font-size: .85em;
    color: var(--main-color);
    top: 0;
    right: 3px;
}

svg.tip {
    position: absolute;
    top: -12px;
    left: 74px;
    cursor: pointer
}

svg.tip:hover #bubble {
    fill: #e91e63;
    transition: all linear 500ms;
}

#sim-inputs-perfil {
    color: var(--main-color);
    font-size: .75em;
}

.sim-inputs, .sim-outputs {
    position: relative;
    text-align: left;
    font-weight: bold;
    font-size: 1em;
    color: #afafaf;
    padding: 0 20px 20px;
    display: block;
    overflow: hidden;
    width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sim-inputs ul, .sim-outputs ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
}

.sim-inputs li, .sim-outputs li {
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 1.75em;
    color: #afafaf;
    min-width: calc(100px + 1em);
    padding: 10px 10px 0 0;
}

.sim-inputs li:last-child, .sim-outputs li:last-child {
    padding-right: 0;
}

.sim-inputs span, .sim-outputs span {
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: .5em;
    color: #3c3f46;
    text-shadow: 1px 1px #fff;
    white-space: nowrap;
}

.sim-inputs sup, .sim-outputs sup {
    display: block;
    font-size: .4em;
    text-shadow: none;
    font-weight: 400;
    color: #3c3f46;
}

.sim-outputs sub {
    display: inline-block;
    font-size: .5em;
    text-shadow: none;
    font-weight: 400;
    background-color: #b5b5b5;
    color: #fff;
}

.sim-outputs {
    font-size: 1em;
    padding: 0 20px 20px;
    margin-top: 0;
}

.sim-outputs span {
    /*text-shadow: none;*/
    color: var(--main-color);
    display: block;
    margin-top: 3px;
}

.sim-output-block {
    display: block;
    overflow: hidden;
    margin-top: 0;
}

.content-inputs {
    margin-bottom: 20px;
}

.render-chart {
    margin-bottom: 20px;
}

.board {
    padding-bottom: 15px;
}

.sim-inputs li:first-child {
    padding-top: 0;
}

.content-wrapper.flex-content>.half-content {
    flex-basis: 42.33%;
    float: none;
    height: auto;
}

.content-wrapper.flex-content>.half-content-form {
    flex-basis: 48%;
    float: none;
    height: auto;
}

.content-wrapper.flex-content>.five-content {
    flex-basis: 13.33%;
    float: none;
    height: auto;
    margin: 2% 0 1% 2% !important;
}

.ico {
    max-width: 180px;
    min-width: 120px;
}

.slide-one-item .owl-nav .owl-prev, .slide-one-item .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

.slide-one-item .owl-nav .owl-prev:hover, .slide-one-item .owl-nav .owl-next:hover {
    color: #fff;
}

.slide-one-item .owl-nav .owl-prev {
    left: 20px;
}

.slide-one-item .owl-nav .owl-next {
    right: 20px;
}

.owl-carousel .owl-item img {
    width: auto;
}

.slide-one-item .owl-dots {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.slide-one-item .owl-dots .owl-dot {
    display: inline-block;
    outline: none;
}

.slide-one-item .owl-dots .owl-dot>span {
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    margin: 3px;
    border: 1px solid var(--main-color);
}

.slide-one-item .owl-dots .owl-dot.active>span {
    width: 7px;
    height: 7px;
    background: var(--main-color);
}

#ibt-heading {
    margin-bottom: 3em;
}

#ibt-heading h4 {
    position: relative;
    font-weight: 100;
    line-height: 1.25em;
    width: 75%;
    margin: 0 auto;
}

#ibt-heading h4:after {
    content: "";
    position: absolute;
    right: calc(50% - 20px);
    bottom: -15px;
    width: 40px;
    height: 4px;
    background-color: var(--main-color);
}

#ibt-heading h4 sub {
    display: inline-block;
    font-size: .675em;
    font-weight: 400;
    line-height: 1.25em;
    margin: .75em 0;
}

svg#ic-award {
    width: 70px;
    fill: var(--main-color);
    margin-bottom: 0.5em;
    padding-bottom: 1em;
    border-bottom: 4px solid var(--main-color);
}

.contentbox .contentblock .four-block-element {
    display: flex;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
    padding: 0.5em;
}

.contentbox .contentblock .four-block-element figure {
    display: block;
    float: left;
    width: 50%;
}

.contentbox .contentblock .four-block-element figure img {
    max-height: 100%;
    object-fit: fill;
    max-height: 187px;
    max-width: 260px;
}

.contentbox .contentblock .four-block-element p {
    float: left;
    width: 50%;
    text-align: left;
    font-style: oblique;
    font-size: 1em;
}

.contentbox .contentblock .four-block-element p span {
    text-transform: uppercase;
    font-style: normal;
    font-size: 1.25em;
    font-weight: 700;
    text-align: left;
}

#telem_ind {
    padding-left: 90px !important;
    margin-left: 0 !important;
    width: 100% !important;
}

.iti {
    width: 90%;
    margin-left: 10%;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}

.ppr-topic {
    flex-basis: 48% !important;
}

.awards {
    margin: 1em !important;
    padding: 1em !important;
    width: 47% !important;
}

.hideOndesktop {
    display: none;
}

.aviso {
    font-size: 12px !important;
}

.image-award {
    background-color: #fff;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    border: 2px solid #fff;
}

.text-award {
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
}

#formSubmit {
    background-color: #57afbf;
}

#formSubmit[disabled] {
    background-color: #ccc;
    cursor: default;
}

.title-form {
    color: #7c7c7c;
}

.sub-title {
    color: #7c7c7c;
}

.k-input, input.k-textbox, textarea.k-textbox, input.k-textbox:hover, textarea.k-textbox:hover, .k-textbox>input, .k-multiselect-wrap {
    width: 100%;
}

.privacy-policy {
    width: 100%;
    margin-left: 0;
}

#campaignid {
    height: 0;
}

.text-content {
    padding: .5em !important;
}


/*MEDIA QUERIES*/
@media (max-width: 1600px) {
    .ppr-topic {
        width: 48%;
    }
}

@media (max-width: 1300px) {
    .form-container {
        width: 100% !important;
    }
}

@media (max-width: 1212px) {
    .bg-webinar {
        height: 370px;
    }
}

@media (max-width: 1206px) {
    .form-container {
        width: 50%;
    }

    .four-content {
        width: 25% !important;
        margin: 0 !important;
    }
}

@media (max-width: 1200px) {
    .awards {
        width: 45% !important;
    }
}

@media (max-width: 1100px) {
    .speaker {
        padding-right: 0em;
    }
}

@media (max-width: 1060px) {
    .bg-webinar {
        height: 280px;
    }
}

@media (max-width: 1000px) {
    .ppr-topic {
        width: 93% !important;
    }
}

@media (max-widdth: 992px) {
    .form-container {
        width: 60%;
    }
}

@media (max-width: 960px) {
    .half-content {
        width: 100% !important;
    }

    h4, .h4 {
        font-size: 20px !important;
        line-height: 1em !important;
    }

    .bg-mut {
        padding-bottom: 30px;
    }

    .box-agendamento {
        margin-bottom: 2rem;
    }

    .selo-deco {
        float: none !important;
    }

    .selo-20-anos {
        float: none !important;
    }

    .hideOnmobile {
        display: none;
    }

    .form-container {
        width: 95%;
    }

    .title-form {
        font-size: 25px !important;
    }

    .terms {
        margin-left: 5%;
    }

    .bg-mut {
        background-position: left !important;
    }

    .title-webinar {
        text-align: center;
    }

    .webinar-topics {
        text-align: center;
    }

    .btn-webi {
        float: initial;
    }

    .box {
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .badges {
        flex-basis: 48% !important;
    }

    .hideOnmobile {
        display: none !important;
    }

    .hideOndesktop {
        display: block !important;
    }

    .sec-1 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sec-2 {
        padding-top: 40px;
    }

    .cont-icon1 {
        padding: 1em !important;
        margin-bottom: 0px !important;
    }

    .cont-icon2 {
        padding: 1em !important;
        margin-bottom: 0px !important;
    }

    .cont-icon3 {
        padding: 1em !important;
        margin-bottom: 0px !important;
    }

    .sec-3 {
        padding-top: 0px;
    }

    .desc-1 {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .desc-2 {
        padding-top: 0;
    }

    .content-margin {
        width: 90% !important;
    }

    #smart-logo {
        width: 120px;
    }

    .simulador {
        padding-top: 40px !important;
    }

    .toleft {
        text-align: center;
    }

    .flip-box-front {
        display: none;
    }

    .flip-box-back {
        transform: none !important;
    }

    .flip-box:hover .flip-box-inner {
        transform: none !important;
    }

    .toggleBtn {
        display: block
    }

    .board div.chart {
        width: 100%;
        border: 0;
        float: none;
    }

    .board div.chart:not(:first-child) {
        display: none;
    }

    #chartRendibilidade {
        padding: 0 10px;
    }

    .content-wrapper.flex-content>.half-content, .content-wrapper.flex-content>.three-content {
        width: auto;
        flex-basis: 100% !important;
    }

    .content-wrapper.flex-content>.five-content {
        flex-basis: 100%;
        width: auto;
    }

    .ico {
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .awards {
        width: 100% !important;
        margin: 0 !important;
    }

    .aviso {
        font-size: 10px;
    }

    .toleft {
        text-align: center;
    }

    .form-container {
        width: 100%;
    }

    .toleft {
        text-align: center !important;
    }

    .text-parallax {
        font: 400 14px 'Roboto Condensed', sans-serif !important;
        line-height: 18px !important;
    }
}

@media (max-width: 800px) {
    .bg-webinar {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .larger-content {
        width: 60% !important;
    }

    .four-content {
        width: 40% !important;
    }
}

@media (max-width: 760px) {
    .form-container {
        width: 100%;
    }

    .bolas {
        min-height: 140px !important;
    }

    .faq {
        margin-bottom: 1.7em !important;
    }

    .content-inputs {
        margin-bottom: 0;
    }

    .sim-inputs, .sim-outputs {
        padding: 0;
    }

    .sim-inputs sup {
        font-size: .325em;
    }

    .main-range {
        padding: 1em .35em;
    }

    .render-chart {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .board {
        padding-bottom: 0px;
    }

    #chartRendibilidade {
        padding: 0px;
    }
}

@media (max-width: 600px) {
    .bg-webinar {
        height: 180px;
    }
}

@media (max-width: 520px) {
    .toleft {
        text-align: center !important;
    }

    .larger-content {
        width: 100% !important;
    }

    .four-content {
        width: 100% !important;
    }

    .ppr-topic {
        width: 90% !important;
    }
}

@media (max-width: 480px) {
    .form-container {
        width: 100%;
    }

    .form-title {
        font-size: 21px;
    }

    .sub-title {
        font-size: 14px;
    }

    .termos {
        font-size: 12px !important;
        width: 90%;
    }

    .head-form {
        margin-bottom: 0px !important;
    }

    .terms {
        margin-left: 10%;
    }

    .content-wrapper.flex-content>.half-content-form {
        flex-basis: 100%;
        float: none;
        height: auto;
    }

    #email_ind {
        margin: 0;
    }

    #telem_ind {
        margin: 0;
    }

    .iti {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 460px) {
    .bg-webinar {
        height: 410px;
    }
}

@media (max-width: 380px) {
    .bg-webinar {
        height: 370px;
    }
}

@media (hover: hover) {
    .range__display {
        display: none
    }
}

@media not all and (hover: hover) {
    .range_handle {
        font-size: 0;
        width: 30px;
    }

    .rangeslider__handle {
        width: 30px;
    }
}

@media (max-width: 760px) {
    .smart-top {
        height: 225px !important;
    }
}


/**************************************************************************************************************************************************************************/


.bi-nav-header>.uk-dotnav {
    margin-left: -3px;
    max-width: 100%;
    column-gap: 2px;
}

.bi-logo-pprs {
    height: 32px;
    fill: #fff;
    top: 20px;
    left: .75%;
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@media (min-width: 1200px) {

    .bi-logo-pprs {
        left: 1.75%;
    }

    .sim-output-block {
        margin-top: 25px;
    }

}

.bi-nav-header>.uk-dotnav>li {
    padding-left: 0 !important;
    background: #fff;
    transition: background 1s;
    cursor: pointer;
}

.bi-nav-header>.uk-dotnav>li>a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    height: 5px;
    background: transparent;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.2s ease-in-out;
    transition-property: background-color, border-color;
    border: 0;
}

.bi-nav-header>.uk-dotnav>li.uk-active {
    background: #009de0;
}



.uk-light>* {
    color: #fff;
}

.uk-slideshow-items>.uk-position-cover::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 18, 35, 0) !important;
}

.uk-slideshow-items>.uk-position-cover>div {
    z-index: 2;
}

[uk-cover]:where(img, video) {
    object-position: center right !important;
}

.uk-light .uk-dotnav>*>* {
    border-color: rgba(255, 255, 255, .75);
}

.uk-light .uk-dotnav>*> :hover {
    border-color: #fff;
    background-color: #ccc;
}

.uk-dotnav>.uk-active>* {
    background-color: rgba(0, 157, 224, .9) !important;
    border-color: #0082b9 !important;
}



.bi-line-comp {
    padding-left: 24px;
    flex-wrap: nowrap;
    font-size: 10px;
    margin-top: 3px;
}

.bi-line-comp>div {
    margin-left: -24px;
    border-radius: 18px;
    overflow: hidden;
    transition: width 2s ease-in 1s
}

.bi-line-comp>div>div {
    padding: 3px 0 3px 36px !important;
    text-align: left;
}

.bi-line-comp>div:first-child>div {
    padding-left: 12px !important;
}

.bi-line-comp small {
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff !important;
    line-height: 1.125em;
}

.bi-line-comp small[uk-tooltip] {
    font-weight: 400;
}

.bi-line-comp>div:nth-child(1) {
    background-color: #00597f;
    z-index: 20;
    background: linear-gradient(to bottom, #a2dbff, #138fdb);
    border-bottom: 1px solid #00000085;
}

.bi-line-comp>div:nth-child(2) {
    background-color: #007fb5;
    z-index: 15;
    background: linear-gradient(to bottom, #5a8dc4, #0e41d9);
    border-bottom: 1px solid #00000085;
}

.bi-line-comp>div:nth-child(3) {
    background-color: #00acf5;
    z-index: 10;
    background: linear-gradient(to bottom, #acbeec, #2c688d);
    border-bottom: 1px solid #00000085;
}

.bi-line-comp>div:nth-child(4) {
    background-color: #759fb1;
    z-index: 5;
    background: linear-gradient(to bottom, #5d5c98, #161671);
    border-bottom: 1px solid #00000085;
}

#pprs-fab {
    position: absolute;
    top: 150px;
    bottom: auto;
    right: 7px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#pprs-fab.hidden {
    opacity: 0;
    pointer-events: none;
}

#pprs-fab-btn {
    width: 270px;
    padding: 20px;
    border-radius: 1rem;
    color: #fff;
    font-size: 30px;
    /* background: linear-gradient(135deg, #1ebcff, #002a3d); */
    background: #000;
    gap: .5rem;
    border: 1px solid #ffffff33;
}

#pprs-fab-btn div {
    background: var(--main-color);
    padding: .5rem;
    gap: .5rem;
    border-radius: 10px;
}

#pprs-fab-btn .md-icon {
    font-size: 18px;
}

#pprs-fab-btn div p {
    font-weight: 500;
    font-size: 1rem !important;
    line-height: 1.1;
}

#pprs-fab-btn>p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
}

#pprs-fab-mob {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#pprs-fab-btn-mob {
    padding: 20px;
    color: #fff;
    font-size: 30px;
    /* background: linear-gradient(135deg, #1ebcff, #002a3d); */
    background: #000;
    gap: .5rem;
}

#pprs-fab-btn-mob div {
    background: var(--main-color);
    padding: .5rem;
    gap: .5rem;
    border-radius: 10px;
}

#pprs-fab-btn-mob .md-icon {
    font-size: 18px;
}

#pprs-fab-btn-mob div p {
    font-weight: 500;
    font-size: 1rem !important;
    line-height: 1.1 !important;
}

#pprs-fab-btn-mob>p {
    font-size: 1.1rem !important;
    font-weight: 500;
    line-height: 1.2 !important;
}

#nome_ind, #email_ind, #telem_ind {
    border: 1px solid #999 !important;
    border-radius: 7px;
    font-size: .825rem;
    width: 100%;
    margin: 0 !important;
}

div.iti {
    width: 100%;
    margin: 0 !important;
}

label.pprs-form-label {
    font-size: 12px;
    font-weight: 400;
    margin: 3px 0 4px 3px;
}

#nome_ind:focus, #email_ind:focus, #telem_ind:focus {
    border-color: #8da5af !important;
    outline: none;
}

.form-group.has-feedback input#formSubmit[disabled] {
    background-color: #d7e0e3 !important;
}

.invalid>#email_ind, .invalid>#nome_ind, .invalid #telem_ind {
    border-color: red !important;
}

#disclaimerPPRS, #faqs-section-risco-pprs, #faqs-section-pprs {
    background-color: #cfd5d7 !important;
}

#disclaimerPPRS {
    border-top: 1px solid #fbfbfb;
    border-bottom: 1px solid #acb3b599;
}

#faqs-section-risco-pprs.folders h5, #faqs-section-pprs.folders h5 {
    line-height: 2em !important;
    opacity: 1 !important;
    border-top: 1px solid #fbfbfb !important;
    border-bottom: 1px solid #acb3b599 !important;
    font-family: var(--font-geologica) !important;
    font-size: 2em !important;
    font-weight: 600 !important;
}

#faqs-section-risco-pprs.folders h5 div, #faqs-section-pprs.folders h5 div {
    white-space: break-spaces;
    display: flex;
    align-items: center;
    word-wrap: break-word;
    line-height: 1.25;
    justify-content: space-between;
}

@media (max-width: 599px) {
    #modal-full-contact .uk-padding-large {
        padding: 15px;
    }

    .form-container .uk-grid.uk-padding {
        padding: 15px;
    }
}

/**************************************************************************************************************************************************************************/

@media print {
    .embVid {
        display: none;
    }
}

.off-canvas {
    position: absolute;
    left: -99999999px
}

#smart-logo {
    width: 200px;
    margin-top: 20px
}

.smart-logo-icon {
    transition: all 2000ms;
}

#smart-logo:hover .smart-logo-icon {
    fill: #8bc34a;
    transition: all 1500ms;
}

.main-range {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

label {
    display: block;
    margin-bottom: 1em;
    font-size: 13px;
    font-weight: bold;
}

.rangeslider__tooltip {
    display: block;
    margin-top: 2.5em;
    font-size: 12px;
    color: #a59eb5;
}

.rangeslider,
input[type="range"] {
    max-width: 100%;
}


.rangeslider__handle {
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    touch-action: pan-x;
    -ms-touch-action: pan-x;
}

.rangeslider__handle:after {
    background: 0;
}

.rangeslider,
.rangeslider__fill {
    display: block;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;

}

.rangeslider {
    background: #e6e5ea;
    background-image: linear-gradient(to right, #f1c40f 0%, #ff6600 50%, #ef0e00 95%);
    position: relative;
}

.rangeslider--horizontal {
    height: 10px;
    width: 100%;
}

.rangeslider--vertical {
    width: 20px;
    min-height: 150px;
    max-height: 100%;
}

.rangeslider--disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
}

.rangeslider__fill {
    position: absolute;
}

.rangeslider--horizontal .rangeslider__fill {
    top: 0;
    height: 100%;
}

.rangeslider--vertical .rangeslider__fill {
    bottom: 0;
    width: 100%;
}

.rangeslider__handle {
    background: white;
    border: 3px solid #4bc67d;
    cursor: pointer;
    display: inline-block;
    width: 75px;
    height: 30px;
    position: absolute;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;

    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));

}

.rangeslider__handle.js-mcons {
    border-color: #4bc67d;
}

.rangeslider__handle.js-cons {
    border-color: #f1c40f;
}

.rangeslider__handle.js-mod {
    border-color: #ff6600;
}

.rangeslider__handle.js-din {
    border-color: #ef0e00;
}

.rangeslider__tooltip.js-cons {
    text-align: left;
}

.rangeslider__tooltip.js-mod {
    text-align: center;
}

.rangeslider__tooltip.js-din {
    text-align: right;
}

.rangeslider__handle:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.rangeslider--horizontal .rangeslider__handle {
    top: -10px;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.rangeslider--vertical .rangeslider__handle {
    left: -10px;
    touch-action: pan-x;
    -ms-touch-action: pan-x;
}

input[type="range"]:focus+.rangeslider .rangeslider__handle {
    -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}

.hideOnmobile {
    display: none;
}

.hideOndesktop {
    display: initial;
}

.sec-1 {
    padding-top: 60px;
}

.sec-2 {
    padding-top: 60px;
    padding-bottom: 20px;
}

.sec-3 {
    padding-top: 60px;
    padding-bottom: 40px;
}


.contentbox .content-margin {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;

}

.contentbox2 .content-margin {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}


@media (max-width: 960px) {
    .hideOnmobile {
        display: initial !important;
    }

    .hideOndesktop {
        display: none !important;
    }

    .sec-1 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sec-2 {
        padding-top: 40px;
    }

    .cont-icon1 {
        padding: 1em !important;
        margin-bottom: 0px !important;
    }

    .cont-icon2 {
        padding: 1em !important;
        margin-bottom: 0px !important;
    }

    .cont-icon3 {
        padding: 1em !important;
        margin-bottom: 0px !important;
    }

    .sec-3 {
        padding-top: 0px;
    }

    .desc-1 {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .desc-2 {
        padding-top: 0;
    }

    .content-margin {
        width: 90% !important;
    }

    #smart-logo {
        width: 120px;
    }

    .simulador {
        padding-top: 0px !important;
    }

    .toleft {
        text-align: center;
    }

    .flip-box-front {
        display: none;
    }

    .flip-box-back {
        transform: none !important;
    }

    .flip-box:hover .flip-box-inner {
        transform: none !important;
    }
}

.hideOndsk {
    display: none;
}

@media (max-width: 960px) {
    .hideOndsk {
        display: initial;
    }
}

/**************************************************************************************************************************************************************************/


.o-v {
    overflow: visible !important
}


/**************************************************************************************************************************************************************************/


.sim-timer {
    position: absolute;
    top: -20px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px
}

#ct-circle-container {
    width: 100%;
    height: 100%;
}

#ct-circle-container svg {
    height: 100%;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    width: 100%
}

#ct-circle-container svg circle {
    fill: none;
    stroke: rgba(0, 138, 164, 0.5);
    stroke-dashoffset: 0;
    stroke-width: 2px
}

svg g:not([role='button'])[aria-labelledby$='title'] {
    display: none
}

.toggleBtn {
    display: block;
    overflow: hidden;
    background-color: #afafaf;
    border: 3px solid #afafaf;
    margin: 0 auto;
    padding: 0;
    border-radius: 25px;
    width: 184px;
    cursor: pointer;
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    height: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggleLeft {
    background-color: #afafaf;
    width: 89px;

    float: left;
    margin: 0;
    color: #f1f1f1;
    border-right: 1px solid #c0c0c0 !important;

}

.toggleMiddle {
    background-color: #afafaf;
    width: 88px;

    float: left;
    margin: 0;
    color: #f1f1f1;
    border-right: 0px solid #c0c0c0 !important;
    border-left: 0px solid #c0c0c0 !important;

}

.toggleRight {
    background-color: #afafaf;
    width: 89px;

    float: left;
    margin: 0;
    color: #f1f1f1;
    border-left: 1px solid #c0c0c0 !important;
}

.toggleOn {
    border-color: #f1f1f1 !important;
    background-color: #fff;
    color: var(--main-color);
    font-weight: 700;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
}

#chartRendibilidade, #chartCarteira, #chartGeografia {
    min-height: 220px;
}

.toggleBtn {
    display: none
}

.board div.chart {
    width: 50%;
    border: 0;
    float: left;
}

.board div div {
    margin: 0;
}

.board div div img {
    width: auto;
}

@media (max-width: 960px) {
    .toggleBtn {
        display: block
    }

    .board div.chart {
        width: 100%;
        border: 0;
        float: none;
    }

    .board div.chart:not(:first-child) {
        display: none;
    }

    /*.content-wrapper {width:100% !important}*/
    .half-content {
        padding: 0 !important
    }

    #chartRendibilidade {
        padding: 0 10px;
    }
}

@media (max-width: 639px) {
    .oferta-slider .uk-slidenav-next {
        color: var(--main-color);
        top: 62px;
        right: -30px;
        z-index: 0;
        line-height: 0.3;
        box-sizing: border-box;
    }

    .oferta-slider .uk-slidenav-previous {
        color: var(--main-color);
        top: 62px;
        left: -30px;
        z-index: 0;
        line-height: 0.3;
        box-sizing: border-box;
    }

    .oferta-slider .uk-slider-items.pprs-filter {
        height: calc(35vh);
        margin-bottom: 70px !important;
    }

    .oferta-slider .uk-cover-container.is-active .uk-card-title {
        margin-bottom: 1em;
    }

    .pprs-prize .pprs-why-title {
        text-align: center;
    }

    .pprs-prize .new-blue-anchor {
        margin: 0 auto;
    }
}

.btn.separador:before {
    content: "";
    position: absolute;
    right: calc(50% - 30px);
    top: 0;
    width: 60px;
    height: 4px;
    background-color: var(--main-color);
}

.btn.separador {
    padding-top: 1.5em;
}


.cd-main-content .sfContentBlock:nth-child(2) h4.faq {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 1rem;
    margin: 0 0 1rem;
}


.sim-inputs, .main-range, .sim-outputs {
    padding: 0 0 10px 0
}

#sim-inputs-inicial, #sim-inputs-reforco, #sim-inputs-prazo {
    color: var(--main-color) !important;
}

/**************************************************************************************************************************************************************************/

.md-black {
    color: #000 !important
}

.md-mx5 {
    margin-left: .5em;
    margin-right: .5em;
}

.uk-button-primary {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid transparent;
}

.uk-button-primary:hover {
    background-color: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.uk-button-primary:active,
.uk-button-primary.uk-active {
    background-color: var(--main-color);
    color: #333;
    border: 1px solid var(--main-color);
}

span.radio {
    background: #ff6600;
    border-radius: 50%;
    text-align: center;
    vertical-align: top;
}

.btn-perfil-risco {
    font-weight: 700;
    font-size: 13px;
    color: var(--main-color);
    cursor: pointer;
    text-decoration: underline;
}

.btn-perfil-risco:hover {

    color: #4f4f4f;
}

.smb-btn {
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    padding: 6px 24px;
    border: 2px solid;
    border-radius: 5px;
}

.smb-btn:hover {
    color: var(--main-color);
}

.smb-answer {
    display: none;
    text-align: left;
    z-index: 10;
    margin: 2em 0;
}

.smb-question {
    font-size: 1em;
    padding: 0;
}

.smb-answer-group {
    padding: 1em;
    background: rgb(0 138 164 / 80%);
    border-radius: 3em;
    margin: 1em 0;
    border: 1px solid var(--main-color);
}

.smb-answer-group input {
    vertical-align: top;
    margin: 3px 3px 0px 3px;
    /*margin-top: .33em;*/
}

.smb-answer-group label {
    display: inline-block;
    margin: 0 0 0 .33em;
    font-size: 1.15em;
    font-weight: 300;
    max-width: 80%;
}

.smb-no-answer {
    border: 1px solid #ff6600;
}

#smb-end, #smb-pc, #smb-pm, #smb-pd {
    display: none
}

#smb-pc {
    background: #ecbf0f;
    border-color: #ecbf0f;
}

#smb-pm {
    background: #fe6300;
    border-color: #fe6300;
}

#smb-pd {
    background: #ef0e00;
    border-color: #ef0e00;
}

.smart-modal {
    background-color: #000;
    position: fixed;
    width: 100%;
    height: 100vh;
    min-width: 320px;
    display: none;
    z-index: 5;
    padding: 32px 0;
    border-bottom: 0px solid #ccc;
    overflow-y: auto;
    margin-bottom: 50px;
    top: 112px;
    transform: translate3d(0, 0, 0);
}

.smart-modal-body {
    position: relative;
    display: block;
    overflow: visible;
    width: 40%;
    min-width: 320px;
    padding: 10px;
    border: 0px solid #eee;
    margin: 0 auto;
    text-align: center;
    color: #fff9;
    height: 150%;
}

.smb-icon {
    font-size: 1.75em;
    color: rgb(0, 138, 164);

}

.smb-title {
    font-weight: 100 !important;
    color: rgb(0, 138, 164);
}

.smb-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    line-height: 21px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    border: 2px solid;
    border-radius: 5px;
    padding: 0;
    text-align: center;
    z-index: 10;
}

.smb-close:hover {
    font-weight: 500;
    color: var(--main-color);

}

.contentbox .content-wrapper .btn .blue.conservador {
    background: #ecbf0f;
    border: 1px solid #ecbf0f;
    padding: 2em;
    border-radius: .5em;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1), 0 0 1rem rgba(0, 0, 0, 0.1);
}

.contentbox .content-wrapper .btn .blue.moderado {
    background: #fe6300;
    border: 1px solid #fe6300;
    padding: 2em;
    border-radius: .5em;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1), 0 0 1rem rgba(0, 0, 0, 0.1);
}

.contentbox .content-wrapper .btn .blue.dinamico {
    background: #ef0e00;
    border: 1px solid #ef0e00;
    padding: 2em;
    border-radius: .5em;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1), 0 0 1rem rgba(0, 0, 0, 0.1);
}

.contentbox .content-wrapper .btn .blue.conservador:hover {
    background: #fff;
    border: 1px solid #ecbf0f;
    color: #ecbf0f
}

.contentbox .content-wrapper .btn .blue.moderado:hover {
    background: #fff;
    border: 1px solid #fe6300;
    color: #ef0e00
}

.contentbox .content-wrapper .btn .blue.dinamico:hover {
    background: #fff;
    border: 1px solid #ef0e00;
    color: #ef0e00
}

@media only screen and (max-width: 959px) {
    .smart-modal {
        top: 50px;
    }
}

@media (max-width: 480px) {
    .tabela td, .tabelaDesk td {
        font-size: 18px !important;
    }
}


/**************************************************************************************************************************************************************************/


.timeline {
    counter-reset: day 0;
    position: relative;
}

.timeline li {
    list-style: none;
    float: left;
    width: 33.3333%;
    position: relative;
    text-align: center;
    font-weight: 500 !important;
    font-family: 'Rubik', sans-serif;
}



.timeline li:before {
    counter-increment: day;
    content: counter(day);
    width: 50px;
    height: 50px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 44px;
    margin: 0 auto 10px auto;
    background: #F1F1F1;
    font-weight: 600;
    font-size: 22px;
    transition: all ease-in-out .3s;
    cursor: pointer;
}

.timeline li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    top: 25px;
    color: var(--main-color);
    left: -50%;
    z-index: -999;
    transition: all ease-in-out .3s;
}

.timeline li:first-child:after {
    content: none;
}

.timeline li.active {
    color: #4f4f4f;
}

.timeline li.active:before {
    background: var(--main-color);
    color: #F1F1F1;
}

.timeline li.active+li:after {
    background: var(--main-color);
}



/*TRY*/
.sec-2 {
    padding-top: 60px;
    padding-bottom: 20px;
}


/**************************************************************************************************************************************************************************/


.btn .blue {
    display: inline-block;
    background: var(--main-color);
    color: #f5f5f5;
    padding: .45em 1.5em .45em 1.5em;
    margin: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase !important;
    border-radius: 2px;
    border: 1px solid var(--main-color);
    white-space: nowrap;
}

#chartWorld {
    height: 420px
}

.bigTD {
    height: auto !important;
}

.text-parallax {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}

.parallax-pad {
    padding-top: 50px;
    padding-bottom: 0px;
}

.title-parallax {
    font-size: 32px;
    color: #fff;
    text-align: left;
}

.text-parallax {
    font-size: 24px !important;
    line-height: 30px !important;
    text-align: left;
}

.sec-smart {
    padding-top: 60px;
    padding-bottom: 60px;
}


@media (max-width: 992px) {
    .parallax-pad {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .title-parallax {
        font-size: 26px;
        text-align: center;
    }

    .text-parallax {
        font-size: 18px !important;
        line-height: 20px !important;
        text-align: center;
    }

    .sec-smart {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


.flip-box {
    background-color: transparent;
    width: 100%;
    height: 210px;
    perspective: 1000px;
    max-width: 415px !important;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-box-shadow: 5px 5px 10px -1px rgba(79, 79, 79, 0.62);
    -moz-box-shadow: 5px 5px 10px -1px rgba(79, 79, 79, 0.62);
    box-shadow: 5px 5px 10px -1px rgba(79, 79, 79, 0.62);
}

.flip-box-front {
    background-color: rgba(255, 255, 255, .85);
    color: #565656;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.flip-box-back {
    background-color: rgba(255, 255, 255, .85);
    color: #565656;
    transform: rotateY(180deg);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.flip-1 {
    float: left;
}

.flip-2 {
    float: left;
}

.flip-3 {
    float: left;
}

.flip-4 {
    float: right;
}

.flip-5 {
    float: initial;
}

.no-margin {
    margin-left: 0 !important;
}

@media (max-width: 1020px) {
    .boxes {
        width: 50% !important;
    }

    .last-box {
        width: 100% !important;
    }

    .flip-5 {
        max-width: 100% !important;
    }
}

@media (max-width: 960px) {
    .flip-box {
        float: initial;
    }

    .no-margin {
        width: 50% !important;
    }
}

@media (max-width: 680px) {
    .boxes {
        width: 100% !important;
    }

    .flip-1 {
        max-width: 100% !important;
    }

    .flip-2 {
        max-width: 100% !important;
    }

    .flip-3 {
        max-width: 100% !important;
    }

    .flip-4 {
        max-width: 100% !important;
    }

    .flip-5 {
        max-width: 100% !important;
    }

    .no-margin {
        width: 100% !important;
    }
}

@media (max-width: 960px) {
    th.inline-header {
        padding-right: 12px
    }

    .tabela span.material-icons-outlined {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 480px) {
    .tabela span.material-icons-outlined {
        font-size: 18px !important;
    }
}

@media (max-width: 380px) {
    .boxes-content {
        font-size: .8em !important;
    }
}

/**************************************************************************************************************************************************************************/


table {
    border-spacing: 0 8px !important;
}

@media (max-width:960px) {
    #chartWorld {
        height: 200px !important;
    }
}

@media (max-width: 760px) {
    .tabelaDesk {
        width: 100%;
        /* padding-left: 1em;
    padding-right: 1em; */
    }
}


/**************************************************************************************************************************************************************************/


@media (max-width:960px) {
    #chartWorld {
        height: 200px !important;
    }
}



.iti {
    width: 90%
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important
}

#telem_ind {
    padding-left: 90px !important;
    margin-left: 0 !important;
    width: 100% !important
}

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}


.box-form {
    margin-bottom: 0px !important;
}

.privacy-policy {
    width: 90%;
    margin-left: 4%;
}

.confirm-data {
    color: #939393;
    font-size: 14px !important;
    line-height: 18px !important;
    width: 90%;
    float: right;
}

.form-container {
    width: 75%;
    background-color: transparent !important;
    border: 0;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(48, 48, 48, 0.5);
    -moz-box-shadow: 5px 5px 10px 0px rgba(48, 48, 48, 0.5);
    box-shadow: 5px 5px 10px 0px rgba(48, 48, 48, 0.5);
    float: right;
    margin-right: 1.5rem;
}

.right-column {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    float: right !important;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.mail_message {
    display: block;
    min-height: 20px;
}

.k-input, input.k-textbox, textarea.k-textbox, input.k-textbox:hover, textarea.k-textbox:hover, .k-textbox>input, .k-multiselect-wrap {
    border: none;
    border-bottom: 1px solid #035077;
    width: 90%;
    background-color: transparent !important;
}

.title-form {
    color: #055689;
    font-size: 28px !important;
    line-height: 30px !important;
    font-weight: 700 !important;
}

.sub-title {
    color: #666565;
    font-size: 20px !important;
    padding-bottom: 15px;
    padding-top: 15px;
}

.terms {
    margin-left: 10%;
}

#formSubmit {
    background-color: #055689;
    color: #fff;
    border: 0 !important;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 1rem;
    cursor: pointer;
}

#formSubmit[disabled] {
    background-color: grey;
    cursor: default;
}


@media (max-width: 960px) {
    .box-agendamento {
        margin-bottom: 2rem;
    }

    .hideOnmobile {
        display: none;
    }

    .form-container {
        width: 95%;
    }

    .title-form {
        font-size: 25px !important;
    }

    .terms {
        margin-left: 5%;
    }
}

@media (max-width: 760px) {
    .bolas {
        min-height: 140px !important;
    }
}

@media (max-width: 480px) {
    .head-form {
        margin-bottom: 0px !important;
    }

    .terms {
        margin-left: 10%;
    }
}

::placeholder {
    color: rgba(4, 63, 71, .42);
}

:-ms-input-placeholder {
    color: rgba(4, 63, 71, .42);
}

::-ms-input-placeholder {
    color: rgba(4, 63, 71, .42);
}


/*PRELOADER*/
.css3-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    text-align: center;
    background-color: rgba(255, 255, 255, .5);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner .css3-spinner-bounce1 {
    margin-left: -31px;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner .css3-spinner-bounce2 {
    margin-left: -9px;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/**************************************************************************************************************************************************************************/


/* BEGIN NEW FLEXBOX LAYOUT RULES */
.content-wrapper.flex-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.content-wrapper.flex-content>.half-content {
    flex-basis: 42.33%;
    float: none;
    height: auto;
}

.content-wrapper.flex-content>.half-content-form {
    flex-basis: 50%;
    float: none;
    height: auto;
}

.content-wrapper.flex-content>.three-content {
    flex-basis: 33.33%;
    float: none;
    height: auto;
    margin: 0;
    padding: 1em;
}

.content-wrapper.flex-content>.four-content {
    flex-basis: 23.33%;
    float: none;
    height: auto;
}

.content-wrapper.flex-content>.five-content {
    flex-basis: 13.33%;
    float: none;
    height: auto;
    margin: 2% 0 1% 2% !important;
}

.content-wrapper.flex-content>.half-content.same-height, .content-wrapper.flex-content>.three-content.same-height, .content-wrapper.flex-content>.four-content.same-height {
    align-self: stretch;
}

@media (max-width: 1000px) {
    .content-wrapper.flex-content>.four-content, .content-wrapper.flex-content>.three-content {
        width: auto;
        flex-basis: 23% !important;
    }
}

@media (max-width: 960px) {
    .content-wrapper.flex-content>.half-content, .content-wrapper.flex-content>.three-content {
        width: auto;
        flex-basis: 100% !important;
    }

    .content-wrapper.flex-content>.four-content {
        width: auto;
        flex-basis: 100% !important;
    }

    .hideOnmobile {
        display: none !important;
    }

    .content-wrapper.flex-content>.five-content {
        flex-basis: 85%;
        width: auto;
    }
}

@media (max-width: 760px) {
    .content-wrapper.flex-content>.four-content {
        width: auto;
        flex-basis: 100% !important;
    }
}

@media (max-width: 480px) {
    .content-wrapper.flex-content>.half-content-form {
        flex-basis: 100%;
        float: none;
        height: auto;
    }
}

/* END NEW FLEXBOX LAYOUT RULES */

#email_ind {
    margin: 0 0 0 5%;
}

#telem_ind {
    margin: 0 0 5% -3%;
}

@media (max-width: 480px) {
    #email_ind {
        margin: 0;
    }

    #telem_ind {
        margin: 0;
    }
}

.ico {
    max-width: 111px;
    min-width: 95px;
    float: right;
}

@media (max-width: 960px) {
    .ico {
        float: initial;
        margin-left: 50%;
        transform: translateX(-50%);
    }
}

/**************************************************************************************************************************************************************************/
#campaignid {
    height: 0;
}

.text-content {
    padding: .5em !important;
}

.head-form {
    margin-left: 1em;
}

.form-container {
    margin-bottom: 0 !important;
}

@media (max-width: 960px) {
    .head-form {
        margin-left: 0;
    }

    .form-container {
        width: 100%;
    }

    .toleft {
        text-align: center !important;
    }
}


a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}


.box-form {
    margin-bottom: 0px !important;
}

.privacy-policy {
    width: 90%;
    margin-left: 4%;
}

.confirm-data {
    color: #939393;
    font-size: 14px !important;
    line-height: 18px !important;
    width: 90%;
    float: right;
}

.form-container {
    width: 100%;
}

.right-column {
    display: block;
    overflow: hidden;
    width: 90%;
    max-width: 1440px;
    float: right !important;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.mail_message {
    display: none;
}

.k-input, input.k-textbox, textarea.k-textbox, input.k-textbox:hover, textarea.k-textbox:hover, .k-textbox>input, .k-multiselect-wrap {
    border: none;
    border-bottom: 1px solid var(--main-color);
    width: 92%;
}

.title-form {
    color: #7c7c7c;
    font-size: 28px !important;
    line-height: 30px !important;
    font-weight: 700 !important;
}

.sub-title {
    color: #7c7c7c;
    font-size: 20px !important;
    padding-bottom: 15px;
    padding-top: 15px;
}

.terms {
    margin-left: 10%;
}

#formSubmit {
    background-color: #57afbf;
    color: #fff;
    border: 2px solid #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    /*margin-top: 1rem;
          margin-bottom: 2.3rem;*/
    cursor: pointer;
}

#formSubmit[disabled] {
    background-color: grey;
    cursor: default;
}


@media (max-width: 960px) {
    .box-agendamento {
        margin-bottom: 2rem;
    }

    .hideOnmobile {
        display: none;
    }

    .form-container {
        width: 95%;
    }

    .title-form {
        font-size: 25px !important;
    }

    .terms {
        margin-left: 5%;
    }
}

@media (max-width: 760px) {
    .bolas {
        min-height: 140px !important;
    }
}

@media (max-width: 480px) {
    .head-form {
        margin-bottom: 0px !important;
    }

    .terms {
        margin-left: 10%;
    }
}

::placeholder {
    color: rgba(4, 63, 71, .42);
}

:-ms-input-placeholder {
    color: rgba(4, 63, 71, .42);
}

::-ms-input-placeholder {
    color: rgba(4, 63, 71, .42);
}


/*PRELOADER*/
.css3-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    text-align: center;
    background-color: rgba(255, 255, 255, .5);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner .css3-spinner-bounce1 {
    margin-left: -31px;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner .css3-spinner-bounce2 {
    margin-left: -9px;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/**************************************************************************************************************************************************************************/

.contentbox .content-wrapper .disclaimer-info {
    padding: 3em 0;
}

.text-content {
    display: block;
    overflow: hidden;
    padding: 0 3em 0 3em;
    height: 100%;
    text-align: left;
    color: #3c3f46;
}

.contentbox .content-wrapper .disclaimer-info span {
    display: block;
    margin-bottom: 8px;
    border-bottom: 1px solid #3c3f46;
    line-height: 18px;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    text-align: left;
}

.contentbox .content-wrapper .disclaimer-info p {
    line-height: 16px;
    font-weight: 400;
    font-size: 14px !important;
    text-align: left;
    margin: 0;
}

.contentbox .content-wrapper p {
    font: 400 18px 'Roboto Condensed', sans-serif;
    line-height: 24px;
}

.contentbox .content-wrapper .disclaimer-info ul.identation li {
    padding-left: 12px;
}

.contentbox .content-wrapper .disclaimer-info ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}


/**************************************************************************************************************************************************************************/


/* --- SITE PUBLICO --- */
.folders h5>div {
    padding: 1em 0 !important;
}

.folders ul.uk-tab li a {
    font-size: 17px;
}

.folders>div:not(.h5) a:hover {
    border-color: var(--main-color);
}

.uk-tab>.uk-active>a {
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.folders>div:not(.h5) {
    border-bottom: 0 !important;
}

.folders>div:not(.h5) a {
    display: block;
    color: var(--main-color);
}

.duvidasFreqContent, .riscoInvestContent {
    padding: 2rem 0;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion {
    padding: 1rem;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion>li {
    border: 1px solid #d5d5d5;
    border-radius: 1rem;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-title {
    font-size: 16px;
    padding: 1rem;
    color: #333 !important;
    font-weight: 600;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-title:hover {
    color: var(--main-color) !important;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-open .uk-accordion-title {
    color: var(--main-color) !important;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content {
    border-top: 1px solid #d5d5d5;
    padding: 2rem;
    margin: 0;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content h6 {
    font-size: 17px;
    font-weight: 500 !important;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content p {
    padding: 0 !important;
    font-size: 15px;
}

.riscoInvestContent .uk-accordion-content em {
    font: revert;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content a {
    display: inline !important;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content small {
    font-size: 13px;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content ul li {
    padding: 0 0 0 1rem;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content sup {
    line-height: .5em;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content table tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

:where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content table th {
    display: flex;
    align-items: end;
    color: #888;
}

.uk-accordion>:nth-child(n+2) {
    margin-top: 5px;
}

.uk-table {
    border-collapse: collapse !important;
}

.uk-table-divider>:first-child>tr:not(:first-child), .uk-table-divider>:not(:first-child)>tr, .uk-table-divider>tr:not(:first-child) {
    border-top: 1px solid #d5d5d5;
}

/* --- */

#tableSIDestino tr {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

/* --- */

#tableComAssoc tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#tableLimAnualPPR tr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

#tableLimAnualPPR>thead>tr>th:first-child {
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    align-items: end;
    justify-content: left;
}

#tableLimAnualPPR>thead>tr>th:nth-child(2) {
    grid-area: 1 / 2 / 2 / 5;
    text-align: center;
    justify-content: center;
}

#tableLimAnualPPR>thead>tr>th:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
    border-top: 1px solid #d5d5d5;
    text-align: center;
    justify-content: center;
}

#tableLimAnualPPR>thead>tr>th:nth-child(4) {
    grid-area: 2 / 3 / 3 / 4;
    border-top: 1px solid #d5d5d5;
    text-align: center;
    justify-content: center;
}

#tableLimAnualPPR>thead>tr>th:nth-child(5) {
    grid-area: 2 / 4 / 3 / 5;
    border-top: 1px solid #d5d5d5;
    text-align: center;
    justify-content: center;
}

#tableLimAnualPPR>tbody>tr>td:first-child {
    grid-area: 3 / 1 / 4 / 2;
}

#tableLimAnualPPR>tbody>tr>td:nth-child(2) {
    grid-area: 3 / 2 / 4 / 3;
    text-align: center;
}

#tableLimAnualPPR>tbody>tr>td:nth-child(3) {
    grid-area: 3 / 3 / 4 / 4;
    text-align: center;
}

#tableLimAnualPPR>tbody>tr>td:nth-child(4) {
    grid-area: 3 / 4 / 4 / 5;
    text-align: center;
}

@media (max-width: 600px) {
    :where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content {
        padding: 1rem;
    }

    :where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content table td {
        font-size: 12px;
    }

    :where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-title {
        font-size: 14px;
    }

    :where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content p {
        font-size: 13px !important;
    }

    :where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content a {
        font-size: 14px;
    }

    .uk-table-small td, .uk-table-small th {
        padding: 10px 5px;
    }
}

@media only screen and (max-width: 480px) {
    :where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content li {
        font-size: 13px;
    }

    :where(.duvidasFreqContent, .riscoInvestContent) .uk-accordion-content small {
        font-size: 10px;
    }
}


/*****************************************************************************************************************************************************************************/



.faq input#btnSubscreverFundo {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    padding: 0 1.5em !important;
    line-height: 24px;
    border: 2px solid #f60;
    border-radius: 0;
    font-size: 13px;
    text-transform: uppercase;
    background-color: #f60;
    vertical-align: text-top;
    margin: 5px 10px 0 0;
}

.faq input#btnSubscreverFundo:hover {
    color: #f60;
    padding: 0 1.5em;
    background-color: transparent;
    border: 2px solid #f60;
    border-radius: 0;
    cursor: pointer
}

svg.ttip {
    position: absolute;
    top: -12px;
    right: 0;
    cursor: pointer
}

svg.ttip:hover .bubble, svg.alt-tip:hover .bubble {
    fill: #2bc8a4;
    transition: all linear 500ms
}

.texttooltip {
    margin-right: 0 !important;
    border-collapse: collapse !important;
}

.texttooltip tr {
    border-bottom: 1px dotted #ccc;
}

.texttooltip td {
    padding: 2px;
}

.texttooltip tr td:nth-child(2) {
    text-align: right;
}

#ContentCenter_C044_panelPesquisa #grid th.hide-on-mobile {
    position: relative;
}




/*****************************************************************************************************************************************************************************/

.uk-drop {
    display: none;
    position: absolute;
    z-index: 1020;
    --uk-position-offset: 20px;
    --uk-position-viewport-offset: 10;
    box-sizing: border-box;
    width: 300px
}

.uk-drop.uk-open {
    display: block
}

.uk-drop-stack .uk-drop-grid>* {
    width: 100% !important
}

.uk-dropdown {
    display: none;
    position: absolute;
    z-index: 1020;
    --uk-position-offset: 10px;
    --uk-position-viewport-offset: 10;
    box-sizing: border-box;
    min-width: 200px;
    max-width: 100vw;
    padding: 25px;
    background: #fff;
    color: #666;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .15)
}

.uk-dropdown.uk-open {
    display: block
}

.uk-dropdown-nav {
    font-size: .875rem
}

.uk-dropdown-nav>li>a {
    color: #999
}

.uk-dropdown-nav>li.uk-active>a,
.uk-dropdown-nav>li>a:hover {
    color: #666
}

.uk-dropdown-nav .uk-nav-subtitle {
    font-size: 12px
}

.uk-dropdown-nav .uk-nav-header {
    color: #333
}

.uk-dropdown-nav .uk-nav-divider {
    border-top: 1px solid #e5e5e5
}

.uk-dropdown-nav .uk-nav-sub a {
    color: #999
}

.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub li.uk-active>a {
    color: #666
}

.uk-dropdown-stack .uk-dropdown-grid>* {
    width: 100% !important
}




.tbToolTipClasseRisco {
    text-transform: none !important;
    font-size: 11px !important;
    line-height: 1em !important;
    text-align: center;
    border:0;
}

.tbToolTipClasseRisco tr:hover td {
    background: none !important;
}

.rScale td {
    width: 40px;
    background-color: #f0506e;
    text-align: center;
    font-weight: bold;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 0 !important;
}

.tbToolTipClasseRisco tr.rScale:hover td {
    background-color: #f0506e !important;
}

.rInterval td {
    width: 43px !important;
    line-height: 18px !important;
    padding: 5px 0 !important;
    text-align: center;
    border:0;
}

.rInterval td:last-child td {
    font-size: 10px;
}

.bi-risco {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1px;
    place-items: center;
    width: auto;
    max-width: fit-content;
    cursor: pointer;
}

.uk-text-center>.bi-risco, .bi-risco-center {
    margin-left: 50% !important;
    transform: translateX(-50%);
}

.bi-risco>b {
    background: linear-gradient(180deg, #bbb, #777);
    width: 20px;
    text-align: center;
    color: #f1f1f1;
    font-size: 10px;
    font-weight: 400 !important;
    line-height: 18px;
}

.bi-risco>b:first-child {
    border-radius: 500px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.bi-risco>b:last-child {
    border-radius: 500px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.bi-risco>b.on {
    background: linear-gradient(180deg, #ff8ba1, #d90029);
}






/* CSS OVERRIDES UIKIT */

#upnlUserLogin {
    top: 80px;
}

@media only screen and (max-width: 959px) {
    #upnlUserLogin {
        top: 80px;
    }
}

.cd-main-header {
    height: 80px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav-is-fixed .cd-main-header .cd-primary-nav {
    padding-right: 0;
}

.nav-is-fixed .cd-main-header .cd-header-buttons {
    top: 20px;
}

.nav-is-fixed .cd-main-header:after {
    display: none;
}

.cd-secondary-nav {
    left: 0;
}

.cd-header-new {
    display: flex;
    align-items: center;
    align-content: flex-end;
}

.cd-header-new a {
    position: relative;
    color: #2e3233;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 0 5px;
    margin-left: 6px;
}

.cd-header-new a small {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(calc(-50% - 3px));
    border-radius: 500px;
    text-transform: uppercase;
    background-color: #199cd8;
    font-size: .525em;
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding: 3px 9px;
    white-space: nowrap;
    opacity: 0;
}

.cd-header-new a:hover small {
    transition: all ease-in-out 500ms;
    opacity: 1;
}

.cd-header-new svg {
    color: #2e3233;
}

a.cd-abrirconta-new {
    text-transform: uppercase;
    font-size: .675em;
    font-weight: 500;
    padding: 6px 16px;
    background: #199cd8;
    color: #fff;
    border-radius: 500px;
    margin-left: 12px;
}

a.cd-login-new {
    text-transform: uppercase;
    font-size: .675em;
    font-weight: 500;
    padding: 4px 16px;
    background: #fff;
    color: #199cd8;
    border: 2px solid;
    border-radius: 500px;
    margin-left: 12px;
    flex-direction: row;
}

a.cd-login-new svg {
    color: #199cd8;
    height: 16px;
}

a.btnLang {
    background: #fff;
    font-weight: 500;
    font-size: 13px !important;
    width: auto !important;
    vertical-align: top;
    border: 2px solid #fff !important;
    padding: 1px 10px;
    border-radius: 500px;
    color: #009de0 !important;
}

a.cd-logo-new {
    width: 116px;
    height: 32px;
    overflow: hidden;
    margin: 0 16px;
    align-items: flex-start;
}

.md-so {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

@media only screen and (max-width: 959px) {
    .nav-is-fixed .cd-main-header {
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 960px) {
    .nav-is-fixed .cd-main-header .cd-header-buttons {
        top: 19px;
        left: 0.5em;
    }

    #lbi-name {
        display: none;
    }

    a.cd-logo-new, a.cd-logo-new, a.cd-abrirconta-new, a.cd-login-new {
        margin-right: 0;
        margin-left: 6px;
    }

    a.cd-abrirconta-new {
        font-size: .675em;
        padding: 6px 12px;
    }

}

@media only screen and (max-width: 1080px) {
    .nav-is-fixed .cd-main-header .cd-primary-nav>li:first-child>a {
        padding-left: 0px !important;
    }
}

@media only screen and (max-width: 1200px) {
    a.cd-logo-new {
        width: 42px;
    }

    #lbi-name {
        display: none;
    }

    a.cd-logo-new, a.cd-logo-new, a.cd-abrirconta-new {
        margin-right: 0;
        margin-left: 6px;
    }
}

header.cd-main-header {
    display: flex;
}

.cd-search-trigger:before {
    border: 2px solid #2e3233;
}

.cd-search-trigger span:before, .cd-search-trigger span:after, .cd-search-trigger:after, .cd-nav-trigger span, .cd-nav-trigger span:before, .cd-nav-trigger span:after {
    height: 2px;
}

.new-blue-anchor {
    font-size: 15px !important;
    padding: .5rem 1rem;
    background-color: var(--main-color);
    color: #fff;
    position: relative;
    margin: 0 auto 0 0;
    border-radius: 500px;
    border: 1px solid var(--main-color);
    text-transform: none !important;
    display: block;
    width: fit-content;
}

.contentbox .content-wrapper .btn .blue {
    padding: .5rem 1rem;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 500px;
    border: 1px solid var(--main-color);
    text-transform: none !important;
}

.new-blue-anchor:hover, .contentbox .content-wrapper .btn .blue:hover {
    background-color: #fff;
    color: var(--main-color);
}

.faq input#btnSubscreverFundo {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    padding: .2rem 1rem !important;
    line-height: 24px;
    border: 1px solid var(--main-color);
    border-radius: 500px;
    font-size: 15px;
    text-transform: none;
    background-color: var(--main-color);
    vertical-align: text-top;
    margin: 0;
    cursor: pointer;
}

.faq input#btnSubscreverFundo:hover {
    color: var(--main-color);
    background-color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 500px;
}

@media only screen and (min-width: 960px) {
    .nav-is-fixed .cd-main-header .cd-primary-nav .cd-secondary-nav>li>a>span {
        font-size: 18px !important;
    }

    .nav-is-fixed .cd-main-header .cd-primary-nav .cd-secondary-nav a {
        font-size: 14px !important;
    }

    .nav-is-fixed .cd-main-header .cd-primary-nav .cd-secondary-nav>li:not(.has-children)>a {
        font-size: 18px !important;
    }
}

/* cookie config */
.cookie-config:hover {
    background-color: #fff;
    color: var(--main-color);
    border-color: var(--main-color);
}

.cookie-config {
    padding: .5rem 1rem;
    background-color: transparent;
    color: #fff;
    border-radius: 500px;
    border: 1px solid #fff;
    text-transform: none !important;
    overflow: hidden;
    font-size: .75rem;
}

.cookie-config svg {
    fill: currentColor;
}



/* tooltip risco */
.tooltipster-fall,.tooltipster-grow.tooltipster-show{-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-base{display:flex;pointer-events:none;position:absolute}.tooltipster-box{flex:1 1 auto}.tooltipster-content{box-sizing:border-box;max-height:100%;max-width:100%;overflow:auto}.tooltipster-ruler{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;visibility:hidden}.tooltipster-fade{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;-ms-transition-property:opacity;transition-property:opacity}.tooltipster-fade.tooltipster-show{opacity:1}.tooltipster-grow{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-backface-visibility:hidden}.tooltipster-grow.tooltipster-show{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-swing{opacity:0;-webkit-transform:rotateZ(4deg);-moz-transform:rotateZ(4deg);-o-transform:rotateZ(4deg);-ms-transform:rotateZ(4deg);transform:rotateZ(4deg);-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform}.tooltipster-swing.tooltipster-show{opacity:1;-webkit-transform:rotateZ(0);-moz-transform:rotateZ(0);-o-transform:rotateZ(0);-ms-transform:rotateZ(0);transform:rotateZ(0);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,1);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-moz-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-ms-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-o-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);transition-timing-function:cubic-bezier(.23,.635,.495,2.4)}.tooltipster-fall{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;-ms-transition-property:top;transition-property:top;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-fall.tooltipster-initial{top:0!important}.tooltipster-fall.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;top:0!important;opacity:0}.tooltipster-slide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;-ms-transition-property:left;transition-property:left;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-slide.tooltipster-initial{left:-40px!important}.tooltipster-slide.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;left:0!important;opacity:0}@keyframes tooltipster-fading{0%{opacity:0}100%{opacity:1}}.tooltipster-update-fade{animation:tooltipster-fading .4s}@keyframes tooltipster-rotating{25%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}100%{transform:rotate(0)}}.tooltipster-update-rotate{animation:tooltipster-rotating .6s}@keyframes tooltipster-scaling{50%{transform:scale(1.1)}100%{transform:scale(1)}}.tooltipster-update-scale{animation:tooltipster-scaling .6s}.tooltipster-sidetip .tooltipster-box{background:#565656;border:2px solid #000;border-radius:4px}.tooltipster-sidetip.tooltipster-bottom .tooltipster-box{margin-top:8px}.tooltipster-sidetip.tooltipster-left .tooltipster-box{margin-right:8px}.tooltipster-sidetip.tooltipster-right .tooltipster-box{margin-left:8px}.tooltipster-sidetip.tooltipster-top .tooltipster-box{margin-bottom:8px}.tooltipster-sidetip .tooltipster-content{color:#fff;line-height:18px;padding:6px 14px}.tooltipster-sidetip .tooltipster-arrow{overflow:hidden;position:absolute}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{height:10px;margin-left:-10px;top:0;width:20px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow{height:20px;margin-top:-10px;right:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow{height:20px;margin-top:-10px;left:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{bottom:0;height:10px;margin-left:-10px;width:20px}.tooltipster-sidetip .tooltipster-arrow-background,.tooltipster-sidetip .tooltipster-arrow-border{height:0;position:absolute;width:0}.tooltipster-sidetip .tooltipster-arrow-background{border:10px solid transparent}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#565656;left:0;top:3px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#565656;left:-3px;top:0}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{border-right-color:#565656;left:3px;top:0}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#565656;left:0;top:-3px}.tooltipster-sidetip .tooltipster-arrow-border{border:10px solid transparent;left:0;top:0}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#000}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border{border-left-color:#000}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border{border-right-color:#000}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{border-top-color:#000}.tooltipster-sidetip .tooltipster-arrow-uncropped{position:relative}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped{top:-10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped{left:-10px}
.tooltipster-sidetip.tooltipster-light .tooltipster-box{border-radius:3px;border:1px solid #ccc;background:#ededed}.tooltipster-sidetip.tooltipster-light .tooltipster-content{color:#666}.tooltipster-sidetip.tooltipster-light .tooltipster-arrow{height:9px;margin-left:-9px;width:18px}.tooltipster-sidetip.tooltipster-light.tooltipster-left .tooltipster-arrow,.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow{height:18px;margin-left:0;margin-top:-9px;width:9px}.tooltipster-sidetip.tooltipster-light .tooltipster-arrow-background{border:9px solid transparent}.tooltipster-sidetip.tooltipster-light.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#ededed;top:1px}.tooltipster-sidetip.tooltipster-light.tooltipster-left .tooltipster-arrow-background{border-left-color:#ededed;left:-1px}.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow-background{border-right-color:#ededed;left:1px}.tooltipster-sidetip.tooltipster-light.tooltipster-top .tooltipster-arrow-background{border-top-color:#ededed;top:-1px}.tooltipster-sidetip.tooltipster-light .tooltipster-arrow-border{border:9px solid transparent}.tooltipster-sidetip.tooltipster-light.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#ccc}.tooltipster-sidetip.tooltipster-light.tooltipster-left .tooltipster-arrow-border{border-left-color:#ccc}.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow-border{border-right-color:#ccc}.tooltipster-sidetip.tooltipster-light.tooltipster-top .tooltipster-arrow-border{border-top-color:#ccc}.tooltipster-sidetip.tooltipster-light.tooltipster-bottom .tooltipster-arrow-uncropped{top:-9px}.tooltipster-sidetip.tooltipster-light.tooltipster-right .tooltipster-arrow-uncropped{left:-9px}