/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.bdt-link-muted,
.bdt-link-muted a,
.bdt-link-toggle .bdt-link-muted {
  color: #999;
}

a.bdt-link-muted:hover,
.bdt-link-muted a:hover,
.bdt-link-toggle:hover .bdt-link-muted {
  color: #666;
}

/* Text
 ========================================================================== */
a.bdt-link-text,
.bdt-link-text a,
.bdt-link-toggle .bdt-link-text {
  color: inherit;
}

a.bdt-link-text:hover,
.bdt-link-text a:hover,
.bdt-link-toggle:hover .bdt-link-text {
  color: #999;
}

/* Heading
 ========================================================================== */
a.bdt-link-heading,
.bdt-link-heading a,
.bdt-link-toggle .bdt-link-heading {
  color: inherit;
}

a.bdt-link-heading:hover,
.bdt-link-heading a:hover,
.bdt-link-toggle:hover .bdt-link-heading {
  color: #1e87f0;
  text-decoration: none;
}

/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.bdt-link-reset,
.bdt-link-reset a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Toggle
 ========================================================================== */
.bdt-link-toggle {
  color: inherit !important;
  text-decoration: none !important;
}

/* ========================================================================
   Component: Divider
 ========================================================================== */
/*
 * 1. Reset default `hr`
 * 2. Set margin if a `div` is used for semantical reason
 */
[class*='bdt-divider'] {
  /* 1 */
  border: none;
  /* 2 */
  margin-bottom: 20px;
}

/* Add margin if adjacent element */
*+[class*='bdt-divider'] {
  margin-top: 20px;
}

/* Icon
 ========================================================================== */
.bdt-divider-icon {
  position: relative;
  height: 20px;
  background-image: url("https://level.uicore.co/crypto-trading/wp-content/plugins/bdthemes-element-pack/assets/css/../../images/backgrounds/divider-icon.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.bdt-divider-icon::before,
.bdt-divider-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  max-width: calc(50% - (50px / 2));
  border-bottom: 1px solid rgba(214, 214, 214, 0.49);
}

.bdt-divider-icon::before {
  right: calc(50% + (50px / 2));
  width: 100%;
}

.bdt-divider-icon::after {
  left: calc(50% + (50px / 2));
  width: 100%;
}

/* Small
 ========================================================================== */
/*
 * 1. Fix height because of `inline-block`
 * 2. Using ::after and inline-block to make `text-align` work
 */
/* 1 */
.bdt-divider-small {
  line-height: 0;
}

/* 2 */
.bdt-divider-small::after {
  content: "";
  display: inline-block;
  width: 100px;
  max-width: 100%;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
  vertical-align: top;
}

/* Vertical
 ========================================================================== */
.bdt-divider-vertical {
  width: max-content;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid rgba(214, 214, 214, 0.49);
}

/* ========================================================================
   Component: List
 ========================================================================== */
.bdt-list {
  padding: 0;
  list-style: none;
}

/*
 * Remove margin from the last-child
 */
.bdt-list>*> :last-child {
  margin-bottom: 0;
}

/*
 * Style
 */
.bdt-list> :nth-child(n+2),
.bdt-list>*>ul {
  margin-top: 10px;
}

/* Marker modifiers
 * Moving `::marker` inside `::before` to style it differently
 * To style the `::marker` is currently only supported in Firefox and Safari
 ========================================================================== */
.bdt-list-disc>*,
.bdt-list-circle>*,
.bdt-list-square>*,
.bdt-list-decimal>*,
.bdt-list-hyphen>* {
  padding-left: 30px;
}

/*
 * Type modifiers
 */
.bdt-list-decimal {
  counter-reset: decimal;
}

.bdt-list-decimal>* {
  counter-increment: decimal;
}

.bdt-list-disc> ::before,
.bdt-list-circle> ::before,
.bdt-list-square> ::before,
.bdt-list-decimal> ::before,
.bdt-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;
}

.bdt-list-disc> ::before {
  list-style-type: disc;
}

.bdt-list-circle> ::before {
  list-style-type: circle;
}

.bdt-list-square> ::before {
  list-style-type: square;
}

.bdt-list-decimal> ::before {
  content: counter(decimal, decimal) '\200A.\00A0';
}

.bdt-list-hyphen> ::before {
  content: '¨C\00A0\00A0';
}

/*
 * Color modifiers
 */
.bdt-list-muted> ::before {
  color: #999 !important;
}

.bdt-list-emphasis> ::before {
  color: #333 !important;
}

.bdt-list-primary> ::before {
  color: #1e87f0 !important;
}

.bdt-list-secondary> ::before {
  color: #222 !important;
}

/* Image bullet modifier
 ========================================================================== */
.bdt-list-bullet>* {
  padding-left: 30px;
}

.bdt-list-bullet> ::before {
  content: "";
  display: list-item;
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.5em;
  margin-bottom: -1.5em;
  background-image: url("https://level.uicore.co/crypto-trading/wp-content/plugins/bdthemes-element-pack/assets/css/../../images/backgrounds/list-bullet.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.bdt-list-divider> :nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/*
 * Striped
 */
.bdt-list-striped>* {
  padding: 10px 10px;
}

.bdt-list-striped> :nth-of-type(odd) {
  background: #f8f8f8;
}

.bdt-list-striped> :nth-child(n+2) {
  margin-top: 0;
}

/* Size modifier
 ========================================================================== */
.bdt-list-large> :nth-child(n+2),
.bdt-list-large>*>ul {
  margin-top: 20px;
}

.bdt-list-collapse> :nth-child(n+2),
.bdt-list-collapse>*>ul {
  margin-top: 0;
}

/*
 * Divider
 */
.bdt-list-large.bdt-list-divider> :nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}

.bdt-list-collapse.bdt-list-divider> :nth-child(n+2) {
  margin-top: 0;
  padding-top: 0;
}

/*
 * Striped
 */
.bdt-list-large.bdt-list-striped>* {
  padding: 20px 10px;
}

.bdt-list-collapse.bdt-list-striped>* {
  padding-top: 0;
  padding-bottom: 0;
}

.bdt-list-large.bdt-list-striped> :nth-child(n+2),
.bdt-list-collapse.bdt-list-striped> :nth-child(n+2) {
  margin-top: 0;
}

/* ========================================================================
   Component: Description list
 ========================================================================== */
/*
 * Term
 */
.bdt-description-list>dt {
  color: #333;
}

.bdt-description-list>dt:nth-child(n+2) {
  margin-top: 20px;
}

/*
 * Description
 */
/* Style modifier
 ========================================================================== */
/*
 * Line
 */
.bdt-description-list-divider>dt:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Behave like a block element
 * 3. Style
 */
.bdt-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 20px;
}

/* Add margin if adjacent element */
*+.bdt-table {
  margin-top: 20px;
}

/* Header cell
 ========================================================================== */
/*
 * 1. Style
 */
.bdt-table th {
  padding: 16px 12px;
  text-align: left;
  vertical-align: bottom;
  /* 1 */
  font-size: 16px;
  font-weight: bold;
  color: #666;
}

/* Cell
 ========================================================================== */
.bdt-table td {
  padding: 16px 12px;
  vertical-align: top;
}

/*
 * Remove margin from the last-child
 */
.bdt-table td> :last-child {
  margin-bottom: 0;
}

/* Footer
 ========================================================================== */
.bdt-table tfoot {
  font-size: 0.875rem;
}

/* Caption
 ========================================================================== */
.bdt-table caption {
  font-size: 0.875rem;
  text-align: left;
  color: #999;
}

/* Alignment modifier
 ========================================================================== */
.bdt-table-middle,
.bdt-table-middle td {
  vertical-align: middle !important;
}

/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.bdt-table-divider>tr:not(:first-child),
.bdt-table-divider> :not(:first-child)>tr,
.bdt-table-divider> :first-child>tr:not(:first-child) {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/*
 * Striped
 */
.bdt-table-striped>tr:nth-of-type(odd),
.bdt-table-striped tbody tr:nth-of-type(odd) {
  background: #f8f8f8;
}

/*
 * Hover
 */
.bdt-table-hover>tr:hover,
.bdt-table-hover tbody tr:hover {
  background: #ffd;
}

/* Active state
 ========================================================================== */
.bdt-table>tr.bdt-active,
.bdt-table tbody tr.bdt-active {
  background: #ffd;
}

/* Size modifier
 ========================================================================== */
.bdt-table-small th,
.bdt-table-small td {
  padding: 10px 12px;
}

.bdt-table-large th,
.bdt-table-large td {
  padding: 22px 12px;
}

/* Justify modifier
 ========================================================================== */
.bdt-table-justify th:first-child,
.bdt-table-justify td:first-child {
  padding-left: 0;
}

.bdt-table-justify th:last-child,
.bdt-table-justify td:last-child {
  padding-right: 0;
}

/* Cell size modifier
 ========================================================================== */
.bdt-table-shrink {
  width: 1px;
}

.bdt-table-expand {
  min-width: 150px;
}

/* Cell link modifier
 ========================================================================== */
/*
 * Does not work with `bdt-table-justify` at the moment
 */
.bdt-table-link {
  padding: 0 !important;
}

.bdt-table-link>a {
  display: block;
  padding: 16px 12px;
}

.bdt-table-small .bdt-table-link>a {
  padding: 10px 12px;
}

/* Responsive table
 ========================================================================== */
/* Phone landscape and smaller */
@media (max-width: 959px) {

  .bdt-table-responsive,
  .bdt-table-responsive tbody,
  .bdt-table-responsive th,
  .bdt-table-responsive td,
  .bdt-table-responsive tr {
    display: block;
  }

  .bdt-table-responsive thead {
    display: none;
  }

  .bdt-table-responsive th,
  .bdt-table-responsive td {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }

  .bdt-table-responsive th:not(:first-child):not(.bdt-table-link),
  .bdt-table-responsive td:not(:first-child):not(.bdt-table-link),
  .bdt-table-responsive .bdt-table-link:not(:first-child)>a {
    padding-top: 5px !important;
  }

  .bdt-table-responsive th:not(:last-child):not(.bdt-table-link),
  .bdt-table-responsive td:not(:last-child):not(.bdt-table-link),
  .bdt-table-responsive .bdt-table-link:not(:last-child)>a {
    padding-bottom: 5px !important;
  }

  .bdt-table-justify.bdt-table-responsive th,
  .bdt-table-justify.bdt-table-responsive td {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ========================================================================
   Component: Icon
 ========================================================================== */
/*
 * Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component.
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Remove border-radius in Chrome.
 * 4. Address `overflow` set to `hidden` in IE.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 7. Remove default `button` padding and background color
 * 8. Style
 * 9. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 10. Let the container fit the height of the icon
 */
.bdt-icon {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background-color: transparent;
  /* 8 */
  display: inline-block;
  /* 9 */
  fill: currentcolor;
  /* 10 */
  line-height: 0;
}

/* Required for `button`. */
button.bdt-icon:not(:disabled) {
  cursor: pointer;
}

/*
 * Remove the inner border and padding in Firefox.
 */
.bdt-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * Set the fill and stroke color of all SVG elements to the current text color
 */
.bdt-icon:not(.bdt-preserve) [fill*='#']:not(.bdt-preserve) {
  fill: currentcolor;
}

.bdt-icon:not(.bdt-preserve) [stroke*='#']:not(.bdt-preserve) {
  stroke: currentcolor;
}

/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.bdt-icon>* {
  transform: translate(0, 0);
}

/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 * 1. Required for `span` with background image
 * 2. Required for `image`
 */
.bdt-icon-image {
  width: 20px;
  height: 20px;
  /* 1 */
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  /* 2 */
  object-fit: scale-down;
  max-width: none;
}

/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.bdt-icon-link {
  color: #999;
}

.bdt-icon-link:hover {
  color: #666;
}

/* OnClick + Active */
.bdt-icon-link:active,
.bdt-active>.bdt-icon-link {
  color: #595959;
}

/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.bdt-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #f8f8f8;
  color: #999;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Hover */
.bdt-icon-button:hover {
  background-color: #ebebeb;
  color: #666;
}

/* OnClick + Active */
.bdt-icon-button:active,
.bdt-active>.bdt-icon-button {
  background-color: #dfdfdf;
  color: #666;
}

/* ========================================================================
   Component: Form Range
 ========================================================================== */
/*
 * 1. Remove default style.
 * 2. Define consistent box sizing.
 * 3. Remove `margin` in all browsers.
 * 4. Align to the center of the line box.
 * 5. Prevent content overflow if a fixed width is used.
 * 6. Take the full width.
 * 7. Remove white background in Chrome.
 */
.bdt-range {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  max-width: 100%;
  /* 6 */
  width: 100%;
  /* 7 */
  background: transparent;
}

/* Focus */
.bdt-range:focus {
  outline: none;
}

.bdt-range::-moz-focus-outer {
  border: none;
}

/*
 * Improves consistency of cursor style for clickable elements
 */
.bdt-range:not(:disabled)::-webkit-slider-thumb {
  cursor: pointer;
}

.bdt-range:not(:disabled)::-moz-range-thumb {
  cursor: pointer;
}

/*
 * Track
 * 1. Safari doesn't have a focus state. Using active instead.
 */
/* Webkit */
.bdt-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #ebebeb;
}

.bdt-range:focus::-webkit-slider-runnable-track,
.bdt-range:active::-webkit-slider-runnable-track {
  background: #dedede;
}

/* Firefox */
.bdt-range::-moz-range-track {
  height: 3px;
  background: #ebebeb;
}

.bdt-range:focus::-moz-range-track {
  background: #dedede;
}

/*
 * Thumb
 * 1. Reset
 * 2. Style
 */
/* Webkit */
.bdt-range::-webkit-slider-thumb {
  /* 1 */
  -webkit-appearance: none;
  margin-top: -7px;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #666;
}

/* Firefox */
.bdt-range::-moz-range-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  margin-top: -7px;
  border-radius: 500px;
  background: #666;
}

/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.bdt-input,
.bdt-select,
.bdt-textarea,
.bdt-radio,
.bdt-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}

/*
 * Show the overflow in Edge.
 */
.bdt-input {
  overflow: visible;
}

/*
 * Remove the inheritance of text transform in Firefox.
 */
.bdt-select {
  text-transform: none;
}

/*
 * 1. Change font properties to `inherit` in all browsers
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.bdt-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}

/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.bdt-textarea {
  overflow: auto;
}

/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.bdt-input[type="search"]::-webkit-search-cancel-button,
.bdt-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.bdt-input[type="number"]::-webkit-inner-spin-button,
.bdt-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/*
 * Removes placeholder transparency in Firefox.
 */
.bdt-input::-moz-placeholder,
.bdt-textarea::-moz-placeholder {
  opacity: 1;
}

/*
 * Improves consistency of cursor style for clickable elements
 */
.bdt-radio:not(:disabled),
.bdt-checkbox:not(:disabled) {
  cursor: pointer;
}

/*
 * Define consistent border, margin, and padding.
 */
.bdt-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.bdt-input,
.bdt-textarea {
  -webkit-appearance: none;
}

/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.bdt-input,
.bdt-select,
.bdt-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: #f8f8f8;
  color: #666;
  border-radius: 3px;
}

/*
 * Single-line
 * 1. Allow any element to look like an `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically
 */
.bdt-input,
.bdt-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
}

/* 2 */
.bdt-input:not(input),
.bdt-select:not(select) {
  line-height: 40px;
}

/*
 * Multi-line
 */
.bdt-select[multiple],
.bdt-select[size],
.bdt-textarea {
  padding-top: 6px;
  padding-bottom: 6px;
  vertical-align: top;
}

.bdt-select[multiple],
.bdt-select[size] {
  resize: vertical;
}

/* Focus */
.bdt-input:focus,
.bdt-select:focus,
.bdt-textarea:focus {
  outline: none;
  background-color: #ebebeb;
  color: #666;
}

/* Disabled */
.bdt-input:disabled,
.bdt-select:disabled,
.bdt-textarea:disabled {
  background-color: #f8f8f8;
  color: #999;
}

/*
 * Placeholder
 */
.bdt-input::placeholder {
  color: #999;
}

.bdt-textarea::placeholder {
  color: #999;
}

/* Style modifier (`bdt-input`, `bdt-select` and `bdt-textarea`)
 ========================================================================== */
/*
 * Small
 */
.bdt-form-small {
  font-size: 0.875rem;
}

/* Single-line */
.bdt-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}

/* Multi-line */
textarea.bdt-form-small,
[multiple].bdt-form-small,
[size].bdt-form-small {
  padding: 5px 8px;
}

.bdt-form-small:not(select):not(input):not(textarea) {
  line-height: 30px;
}

/*
 * Large
 */
.bdt-form-large {
  font-size: 1.25rem;
}

/* Single-line */
.bdt-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}

/* Multi-line */
textarea.bdt-form-large,
[multiple].bdt-form-large,
[size].bdt-form-large {
  padding: 7px 12px;
}

.bdt-form-large:not(select):not(input):not(textarea) {
  line-height: 55px;
}

/* Style modifier (`bdt-input`, `bdt-select` and `bdt-textarea`)
 ========================================================================== */
/*
 * Error
 */
.bdt-form-danger,
.bdt-form-danger:focus {
  color: #f0506e;
}

/*
 * Success
 */
.bdt-form-success,
.bdt-form-success:focus {
  color: #32d296;
}

/*
 * Blank
 */
.bdt-form-blank {
  background: none;
}

/* Width modifiers (`bdt-input`, `bdt-select` and `bdt-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.bdt-form-width-xsmall {
  width: 50px;
}

select.bdt-form-width-xsmall {
  width: 75px;
}

.bdt-form-width-small {
  width: 130px;
}

.bdt-form-width-medium {
  width: 200px;
}

.bdt-form-width-large {
  width: 500px;
}

/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.bdt-select:not([multiple]):not([size]) {
  /* 1 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2 */
  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%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

/* 3 */
.bdt-select:not([multiple]):not([size]) option {
  color: #666;
}

/*
 * Disabled
 */
.bdt-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%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
}

/* Datalist
 ========================================================================== */
/*
 * 1. Remove default style in Chrome
 */
.bdt-input[list] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

.bdt-input[list]:hover,
.bdt-input[list]:focus {
  background-image: url("https://level.uicore.co/crypto-trading/wp-content/plugins/bdthemes-element-pack/assets/css/../../images/backgrounds/form-datalist.svg");
}

/* 1 */
.bdt-input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}

/* Radio and checkbox
 ========================================================================== */
/*
 * 1. Style
 * 2. Make box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 * 6. Center icons
 */
.bdt-radio,
.bdt-checkbox {
  /* 1 */
  display: inline-block;
  height: 16px;
  width: 16px;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 5 */
  background-color: #ebebeb;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.bdt-radio {
  border-radius: 50%;
}

/* Focus */
.bdt-radio:focus,
.bdt-checkbox:focus {
  background-color: #dedede;
  outline: none;
}

/*
 * Checked
 */
.bdt-radio:checked,
.bdt-checkbox:checked,
.bdt-checkbox:indeterminate {
  background-color: #1e87f0;
}

/* Focus */
.bdt-radio:checked:focus,
.bdt-checkbox:checked:focus,
.bdt-checkbox:indeterminate:focus {
  background-color: #0e6dcd;
}

/*
 * Icons
 */
.bdt-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%0D%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%0D%0A%3C%2Fsvg%3E");
}

.bdt-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%0D%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%0D%0A%3C%2Fsvg%3E%0D%0A");
}

.bdt-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%0D%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%0D%0A%3C%2Fsvg%3E");
}

/*
 * Disabled
 */
.bdt-radio:disabled,
.bdt-checkbox:disabled {
  background-color: #f8f8f8;
}

.bdt-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%0D%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%0D%0A%3C%2Fsvg%3E");
}

.bdt-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%0D%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%0D%0A%3C%2Fsvg%3E%0D%0A");
}

.bdt-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%0D%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%0D%0A%3C%2Fsvg%3E");
}

/* Legend
 ========================================================================== */
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove padding so people aren't caught out if they zero out fieldsets.
 * 4. Style
 */
.bdt-legend {
  /* 1 */
  width: 100%;
  /* 2 */
  color: inherit;
  /* 3 */
  padding: 0;
  /* 4 */
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.bdt-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}

/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.bdt-form-custom select,
.bdt-form-custom input[type="file"] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}

.bdt-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}

/* Label
 ========================================================================== */
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.bdt-form-stacked .bdt-form-label {
  display: block;
  margin-bottom: 10px;
}

/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 959px) {

  /* Behave like `bdt-form-stacked` */
  .bdt-form-horizontal .bdt-form-label {
    display: block;
    margin-bottom: 10px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-form-horizontal .bdt-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }

  .bdt-form-horizontal .bdt-form-controls {
    margin-left: 215px;
  }

  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .bdt-form-horizontal .bdt-form-controls-text {
    padding-top: 7px;
  }
}

/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.bdt-form-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 40px;
  /* 3 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 4 */
  color: #999;
}

/*
 * Required for `a`.
 */
.bdt-form-icon:hover {
  color: #666;
}

/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.bdt-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}

/*
 * Input padding
 */
.bdt-form-icon:not(.bdt-form-icon-flip)~.bdt-input {
  padding-left: 40px !important;
}

/*
 * Position modifier
 */
.bdt-form-icon-flip {
  right: 0;
  left: auto;
}

.bdt-form-icon-flip~.bdt-input {
  padding-right: 40px !important;
}

/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Address `overflow` set to `hidden` in IE.
 * 4. Correct `font` properties and `color` not being inherited for `button`.
 * 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 6. Remove default style for `input type="submit"`in iOS.
 * 7. Style
 * 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
 *    Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
 * 9. Align text if button has a width
 * 10. Required for `a`.
 */
.bdt-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6 */
  -webkit-appearance: none;
  border-radius: 0;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 16px;
  /* 8 */
  line-height: 40px;
  /* 9 */
  text-align: center;
  /* 10 */
  text-decoration: none;
  border-radius: 3px;
}

.bdt-button:not(:disabled) {
  cursor: pointer;
}

/*
 * Remove the inner border and padding in Firefox.
 */
.bdt-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Hover */
.bdt-button:hover {
  /* 9 */
  text-decoration: none;
}

/* OnClick + Active */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-button-default {
  background-color: #f8f8f8;
  color: #333;
}

/* Hover */
.bdt-button-default:hover {
  background-color: #ebebeb;
  color: #333;
}

/* OnClick + Active */
.bdt-button-default:active,
.bdt-button-default.bdt-active {
  background-color: #dfdfdf;
  color: #333;
}

/*
 * Primary
 */
.bdt-button-primary {
  background-color: #1e87f0;
  color: #fff;
}

/* Hover */
.bdt-button-primary:hover {
  background-color: #0f7ae5;
  color: #fff;
}

/* OnClick + Active */
.bdt-button-primary:active,
.bdt-button-primary.bdt-active {
  background-color: #0e6dcd;
  color: #fff;
}

/*
 * Secondary
 */
.bdt-button-secondary {
  background-color: #222;
  color: #fff;
}

/* Hover */
.bdt-button-secondary:hover {
  background-color: #151515;
  color: #fff;
}

/* OnClick + Active */
.bdt-button-secondary:active,
.bdt-button-secondary.bdt-active {
  background-color: #080808;
  color: #fff;
}

/*
 * Danger
 */
.bdt-button-danger {
  background-color: #f0506e;
  color: #fff;
}

/* Hover */
.bdt-button-danger:hover {
  background-color: #ee395b;
  color: #fff;
}

/* OnClick + Active */
.bdt-button-danger:active,
.bdt-button-danger.bdt-active {
  background-color: #ec2147;
  color: #fff;
}

/*
 * Disabled
 * The same for all style modifiers
 */
.bdt-button-default:disabled,
.bdt-button-primary:disabled,
.bdt-button-secondary:disabled,
.bdt-button-danger:disabled {
  background-color: #f8f8f8;
  color: #999;
}

/* Size modifiers
 ========================================================================== */
.bdt-button-small {
  padding: 0 15px;
  line-height: 30px;
  font-size: 0.875rem;
}

.bdt-button-large {
  padding: 0 40px;
  line-height: 55px;
  font-size: 1.25rem;
}

/* Text modifiers
 ========================================================================== */
/*
 * Text
 * 1. Reset
 * 2. Style
 */
.bdt-button-text {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #333;
}

/* Hover */
.bdt-button-text:hover {
  color: #999;
}

/* Disabled */
.bdt-button-text:disabled {
  color: #999;
}

/*
 * Link
 * 1. Reset
 * 2. Style
 */
.bdt-button-link {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #333;
}

/* Hover */
.bdt-button-link:hover {
  color: #999;
  text-decoration: none;
}

/* Disabled */
.bdt-button-link:disabled {
  color: #999;
  text-decoration: none;
}

/* Group
 ========================================================================== */
/*
 * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
 * 2. Behave like button
 * 3. Create position context
 */
.bdt-button-group {
  /* 1 */
  display: inline-flex;
  /* 2 */
  vertical-align: middle;
  /* 3 */
  position: relative;
}

/* ========================================================================
   Component: Section
 ========================================================================== */
/*
 * 1. Make it work with `100vh` and height in general
 */
.bdt-section {
  display: flow-root;
  box-sizing: border-box;
  /* 1 */
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .bdt-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/*
 * Remove margin from the last-child
 */
.bdt-section> :last-child {
  margin-bottom: 0;
}

/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.bdt-section-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}

/*
 * Small
 */
.bdt-section-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*
 * Large
 */
.bdt-section-large {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-section-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

/*
 * XLarge
 */
.bdt-section-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-section-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}

/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-section-default {
  background: #fff;
}

/*
 * Muted
 */
.bdt-section-muted {
  background: #f8f8f8;
}

/*
 * Primary
 */
.bdt-section-primary {
  background: #1e87f0;
}

/*
 * Secondary
 */
.bdt-section-secondary {
  background: #222;
}

/* Overlap modifier
 ========================================================================== */
/*
 * Reserved modifier to make a section overlap another section with an border image
 * Implemented by the theme
 */
/* ========================================================================
   Component: Container
 ========================================================================== */
/*
 * 1. Box sizing has to be `content-box` so the max-width is always the same and
 *    unaffected by the padding on different breakpoints. It's important for the size modifiers.
 */
.bdt-container {
  display: flow-root;
  /* 1 */
  box-sizing: content-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*
 * Remove margin from the last-child
 */
.bdt-container> :last-child {
  margin-bottom: 0;
}

/*
 * Remove padding from nested containers
 */
.bdt-container .bdt-container {
  padding-left: 0;
  padding-right: 0;
}

/* Size modifier
 ========================================================================== */
.bdt-container-xsmall {
  max-width: 750px;
}

.bdt-container-small {
  max-width: 900px;
}

.bdt-container-large {
  max-width: 1400px;
}

.bdt-container-xlarge {
  max-width: 1600px;
}

.bdt-container-expand {
  max-width: none;
}

/* Expand modifier
 ========================================================================== */
/*
 * Expand one side only
 */
.bdt-container-expand-left {
  margin-left: 0;
}

.bdt-container-expand-right {
  margin-right: 0;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {

  .bdt-container-expand-left.bdt-container-xsmall,
  .bdt-container-expand-right.bdt-container-xsmall {
    max-width: calc(50% + (750px / 2) - 30px);
  }

  .bdt-container-expand-left.bdt-container-small,
  .bdt-container-expand-right.bdt-container-small {
    max-width: calc(50% + (900px / 2) - 30px);
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {

  .bdt-container-expand-left,
  .bdt-container-expand-right {
    max-width: calc(50% + (1200px / 2) - 40px);
  }

  .bdt-container-expand-left.bdt-container-xsmall,
  .bdt-container-expand-right.bdt-container-xsmall {
    max-width: calc(50% + (750px / 2) - 40px);
  }

  .bdt-container-expand-left.bdt-container-small,
  .bdt-container-expand-right.bdt-container-small {
    max-width: calc(50% + (900px / 2) - 40px);
  }

  .bdt-container-expand-left.bdt-container-large,
  .bdt-container-expand-right.bdt-container-large {
    max-width: calc(50% + (1400px / 2) - 40px);
  }

  .bdt-container-expand-left.bdt-container-xlarge,
  .bdt-container-expand-right.bdt-container-xlarge {
    max-width: calc(50% + (1600px / 2) - 40px);
  }
}

/* Item
 ========================================================================== */
/*
 * Utility classes to reset container padding on the left or right side
 * Note: It has to be negative margin on the item, because it's specific to the item.
 */
.bdt-container-item-padding-remove-left,
.bdt-container-item-padding-remove-right {
  width: calc(100% + 15px);
}

.bdt-container-item-padding-remove-left {
  margin-left: -15px;
}

.bdt-container-item-padding-remove-right {
  margin-right: -15px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {

  .bdt-container-item-padding-remove-left,
  .bdt-container-item-padding-remove-right {
    width: calc(100% + 30px);
  }

  .bdt-container-item-padding-remove-left {
    margin-left: -30px;
  }

  .bdt-container-item-padding-remove-right {
    margin-right: -30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {

  .bdt-container-item-padding-remove-left,
  .bdt-container-item-padding-remove-right {
    width: calc(100% + 40px);
  }

  .bdt-container-item-padding-remove-left {
    margin-left: -40px;
  }

  .bdt-container-item-padding-remove-right {
    margin-right: -40px;
  }
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.bdt-grid {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.bdt-grid>* {
  margin: 0;
}

/*
 * Remove margin from the last-child
 */
.bdt-grid>*> :last-child {
  margin-bottom: 0;
}

/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.bdt-grid {
  margin-left: -30px;
}

.bdt-grid>* {
  padding-left: 30px;
}

/* Vertical */
.bdt-grid+.bdt-grid,
.bdt-grid>.bdt-grid-margin,
*+.bdt-grid-margin {
  margin-top: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {

  /* Horizontal */
  .bdt-grid {
    margin-left: -40px;
  }

  .bdt-grid>* {
    padding-left: 40px;
  }

  /* Vertical */
  .bdt-grid+.bdt-grid,
  .bdt-grid>.bdt-grid-margin,
  *+.bdt-grid-margin {
    margin-top: 40px;
  }
}

/*
 * Small
 */
/* Horizontal */
.bdt-grid-small,
.bdt-grid-column-small {
  margin-left: -15px;
}

.bdt-grid-small>*,
.bdt-grid-column-small>* {
  padding-left: 15px;
}

/* Vertical */
.bdt-grid+.bdt-grid-small,
.bdt-grid+.bdt-grid-row-small,
.bdt-grid-small>.bdt-grid-margin,
.bdt-grid-row-small>.bdt-grid-margin,
*+.bdt-grid-margin-small {
  margin-top: 15px;
}

/*
 * Medium
 */
/* Horizontal */
.bdt-grid-medium,
.bdt-grid-column-medium {
  margin-left: -30px;
}

.bdt-grid-medium>*,
.bdt-grid-column-medium>* {
  padding-left: 30px;
}

/* Vertical */
.bdt-grid+.bdt-grid-medium,
.bdt-grid+.bdt-grid-row-medium,
.bdt-grid-medium>.bdt-grid-margin,
.bdt-grid-row-medium>.bdt-grid-margin,
*+.bdt-grid-margin-medium {
  margin-top: 30px;
}

/*
 * Large
 */
/* Horizontal */
.bdt-grid-large,
.bdt-grid-column-large {
  margin-left: -40px;
}

.bdt-grid-large>*,
.bdt-grid-column-large>* {
  padding-left: 40px;
}

/* Vertical */
.bdt-grid+.bdt-grid-large,
.bdt-grid+.bdt-grid-row-large,
.bdt-grid-large>.bdt-grid-margin,
.bdt-grid-row-large>.bdt-grid-margin,
*+.bdt-grid-margin-large {
  margin-top: 40px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {

  /* Horizontal */
  .bdt-grid-large,
  .bdt-grid-column-large {
    margin-left: -70px;
  }

  .bdt-grid-large>*,
  .bdt-grid-column-large>* {
    padding-left: 70px;
  }

  /* Vertical */
  .bdt-grid+.bdt-grid-large,
  .bdt-grid+.bdt-grid-row-large,
  .bdt-grid-large>.bdt-grid-margin,
  .bdt-grid-row-large>.bdt-grid-margin,
  *+.bdt-grid-margin-large {
    margin-top: 70px;
  }
}

/*
 * Collapse
 */
/* Horizontal */
.bdt-grid-collapse,
.bdt-grid-column-collapse {
  margin-left: 0;
}

.bdt-grid-collapse>*,
.bdt-grid-column-collapse>* {
  padding-left: 0;
}

/* Vertical */
.bdt-grid+.bdt-grid-collapse,
.bdt-grid+.bdt-grid-row-collapse,
.bdt-grid-collapse>.bdt-grid-margin,
.bdt-grid-row-collapse>.bdt-grid-margin {
  margin-top: 0;
}

/* Divider
 ========================================================================== */
.bdt-grid-divider>* {
  position: relative;
}

.bdt-grid-divider> :not(.bdt-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(214, 214, 214, 0.49);
}

/* Vertical */
.bdt-grid-divider.bdt-grid-stack>.bdt-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/*
 * Default
 */
/* Horizontal */
.bdt-grid-divider {
  margin-left: -60px;
}

.bdt-grid-divider>* {
  padding-left: 60px;
}

.bdt-grid-divider> :not(.bdt-first-column)::before {
  left: 30px;
}

/* Vertical */
.bdt-grid-divider.bdt-grid-stack>.bdt-grid-margin {
  margin-top: 60px;
}

.bdt-grid-divider.bdt-grid-stack>.bdt-grid-margin::before {
  top: -30px;
  left: 60px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {

  /* Horizontal */
  .bdt-grid-divider {
    margin-left: -80px;
  }

  .bdt-grid-divider>* {
    padding-left: 80px;
  }

  .bdt-grid-divider> :not(.bdt-first-column)::before {
    left: 40px;
  }

  /* Vertical */
  .bdt-grid-divider.bdt-grid-stack>.bdt-grid-margin {
    margin-top: 80px;
  }

  .bdt-grid-divider.bdt-grid-stack>.bdt-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}

/*
 * Small
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-small,
.bdt-grid-divider.bdt-grid-column-small {
  margin-left: -30px;
}

.bdt-grid-divider.bdt-grid-small>*,
.bdt-grid-divider.bdt-grid-column-small>* {
  padding-left: 30px;
}

.bdt-grid-divider.bdt-grid-small> :not(.bdt-first-column)::before,
.bdt-grid-divider.bdt-grid-column-small> :not(.bdt-first-column)::before {
  left: 15px;
}

/* Vertical */
.bdt-grid-divider.bdt-grid-small.bdt-grid-stack>.bdt-grid-margin,
.bdt-grid-divider.bdt-grid-row-small.bdt-grid-stack>.bdt-grid-margin {
  margin-top: 30px;
}

.bdt-grid-divider.bdt-grid-small.bdt-grid-stack>.bdt-grid-margin::before {
  top: -15px;
  left: 30px;
}

.bdt-grid-divider.bdt-grid-row-small.bdt-grid-stack>.bdt-grid-margin::before {
  top: -15px;
}

.bdt-grid-divider.bdt-grid-column-small.bdt-grid-stack>.bdt-grid-margin::before {
  left: 30px;
}

/*
 * Medium
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-medium,
.bdt-grid-divider.bdt-grid-column-medium {
  margin-left: -60px;
}

.bdt-grid-divider.bdt-grid-medium>*,
.bdt-grid-divider.bdt-grid-column-medium>* {
  padding-left: 60px;
}

.bdt-grid-divider.bdt-grid-medium> :not(.bdt-first-column)::before,
.bdt-grid-divider.bdt-grid-column-medium> :not(.bdt-first-column)::before {
  left: 30px;
}

/* Vertical */
.bdt-grid-divider.bdt-grid-medium.bdt-grid-stack>.bdt-grid-margin,
.bdt-grid-divider.bdt-grid-row-medium.bdt-grid-stack>.bdt-grid-margin {
  margin-top: 60px;
}

.bdt-grid-divider.bdt-grid-medium.bdt-grid-stack>.bdt-grid-margin::before {
  top: -30px;
  left: 60px;
}

.bdt-grid-divider.bdt-grid-row-medium.bdt-grid-stack>.bdt-grid-margin::before {
  top: -30px;
}

.bdt-grid-divider.bdt-grid-column-medium.bdt-grid-stack>.bdt-grid-margin::before {
  left: 60px;
}

/*
 * Large
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-large,
.bdt-grid-divider.bdt-grid-column-large {
  margin-left: -80px;
}

.bdt-grid-divider.bdt-grid-large>*,
.bdt-grid-divider.bdt-grid-column-large>* {
  padding-left: 80px;
}

.bdt-grid-divider.bdt-grid-large> :not(.bdt-first-column)::before,
.bdt-grid-divider.bdt-grid-column-large> :not(.bdt-first-column)::before {
  left: 40px;
}

/* Vertical */
.bdt-grid-divider.bdt-grid-large.bdt-grid-stack>.bdt-grid-margin,
.bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack>.bdt-grid-margin {
  margin-top: 80px;
}

.bdt-grid-divider.bdt-grid-large.bdt-grid-stack>.bdt-grid-margin::before {
  top: -40px;
  left: 80px;
}

.bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack>.bdt-grid-margin::before {
  top: -40px;
}

.bdt-grid-divider.bdt-grid-column-large.bdt-grid-stack>.bdt-grid-margin::before {
  left: 80px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {

  /* Horizontal */
  .bdt-grid-divider.bdt-grid-large,
  .bdt-grid-divider.bdt-grid-column-large {
    margin-left: -140px;
  }

  .bdt-grid-divider.bdt-grid-large>*,
  .bdt-grid-divider.bdt-grid-column-large>* {
    padding-left: 140px;
  }

  .bdt-grid-divider.bdt-grid-large> :not(.bdt-first-column)::before,
  .bdt-grid-divider.bdt-grid-column-large> :not(.bdt-first-column)::before {
    left: 70px;
  }

  /* Vertical */
  .bdt-grid-divider.bdt-grid-large.bdt-grid-stack>.bdt-grid-margin,
  .bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack>.bdt-grid-margin {
    margin-top: 140px;
  }

  .bdt-grid-divider.bdt-grid-large.bdt-grid-stack>.bdt-grid-margin::before {
    top: -70px;
    left: 140px;
  }

  .bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack>.bdt-grid-margin::before {
    top: -70px;
  }

  .bdt-grid-divider.bdt-grid-column-large.bdt-grid-stack>.bdt-grid-margin::before {
    left: 140px;
  }
}

/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.bdt-grid-match>*,
.bdt-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}

.bdt-grid-match>*> :not([class*='bdt-width']),
.bdt-grid-item-match> :not([class*='bdt-width']) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}

/* ========================================================================
   Component: Tile
 ========================================================================== */
.bdt-tile {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-tile {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-tile {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/*
 * Remove margin from the last-child
 */
.bdt-tile> :last-child {
  margin-bottom: 0;
}

/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.bdt-tile-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}

/*
 * Small
 */
.bdt-tile-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*
 * Large
 */
.bdt-tile-large {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-tile-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

/*
 * XLarge
 */
.bdt-tile-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-tile-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}

/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-tile-default {
  background-color: #fff;
}

/*
 * Muted
 */
.bdt-tile-muted {
  background-color: #f8f8f8;
}

/*
 * Primary
 */
.bdt-tile-primary {
  background-color: #1e87f0;
}

/*
 * Secondary
 */
.bdt-tile-secondary {
  background-color: #222;
}

/* ========================================================================
   Component: Card
 ========================================================================== */
.bdt-card {
  position: relative;
  box-sizing: border-box;
}

/* Sections
 ========================================================================== */
.bdt-card-body {
  display: flow-root;
  padding: 30px 30px;
}

.bdt-card-header {
  display: flow-root;
  padding: 15px 30px;
}

.bdt-card-footer {
  display: flow-root;
  padding: 15px 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-card-body {
    padding: 40px 40px;
  }

  .bdt-card-header {
    padding: 20px 40px;
  }

  .bdt-card-footer {
    padding: 20px 40px;
  }
}

/*
 * Remove margin from the last-child
 */
.bdt-card-body> :last-child,
.bdt-card-header> :last-child,
.bdt-card-footer> :last-child {
  margin-bottom: 0;
}

/* Media
 ========================================================================== */
/*
 * Reserved alignment modifier to style the media element, e.g. with `border-radius`
 * Implemented by the theme
 */
/* Title
 ========================================================================== */
.bdt-card-title {
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Badge
 ========================================================================== */
/*
 * 1. Position
 * 2. Size
 * 3. Style
 * 4. Center child vertically
 */
.bdt-card-badge {
  /* 1 */
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  /* 2 */
  height: 22px;
  padding: 0 10px;
  /* 3 */
  background: #1e87f0;
  color: #fff;
  font-size: 0.875rem;
  /* 4 */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

/*
 * Remove margin from adjacent element
 */
.bdt-card-badge:first-child+* {
  margin-top: 0;
}

/* Hover modifier
 ========================================================================== */
.bdt-card-hover:not(.bdt-card-default):not(.bdt-card-primary):not(.bdt-card-secondary):hover {
  background-color: #f8f8f8;
}

/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.bdt-card-default {
  background-color: #f8f8f8;
  color: #666;
}

.bdt-card-default .bdt-card-title {
  color: #333;
}

.bdt-card-default.bdt-card-hover:hover {
  background-color: #ebebeb;
}

/*
 * Primary
 */
.bdt-card-primary {
  background-color: #1e87f0;
  color: #fff;
}

.bdt-card-primary .bdt-card-title {
  color: #fff;
}

.bdt-card-primary.bdt-card-hover:hover {
  background-color: #0f7ae5;
}

/*
 * Secondary
 */
.bdt-card-secondary {
  background-color: #222;
  color: #fff;
}

.bdt-card-secondary .bdt-card-title {
  color: #fff;
}

.bdt-card-secondary.bdt-card-hover:hover {
  background-color: #151515;
}

/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.bdt-card-small.bdt-card-body,
.bdt-card-small .bdt-card-body {
  padding: 20px 20px;
}

.bdt-card-small .bdt-card-header {
  padding: 13px 20px;
}

.bdt-card-small .bdt-card-footer {
  padding: 13px 20px;
}

/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {

  .bdt-card-large.bdt-card-body,
  .bdt-card-large .bdt-card-body {
    padding: 70px 70px;
  }

  .bdt-card-large .bdt-card-header {
    padding: 35px 70px;
  }

  .bdt-card-large .bdt-card-footer {
    padding: 35px 70px;
  }
}

/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `bdt-icon`
 */
.bdt-close {
  color: #999;
}

/* Hover */
.bdt-close:hover {
  color: #666;
}

/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `bdt-icon`
 */
/* SVG
 ========================================================================== */
.bdt-spinner>* {
  animation: bdt-spinner-rotate 1.4s linear infinite;
}

@keyframes bdt-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(270deg);
  }
}

/*
 * Circle
 */
.bdt-spinner>*>* {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: bdt-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}

@keyframes bdt-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }

  50% {
    stroke-dashoffset: 22px;
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 88px;
    transform: rotate(450deg);
  }
}

/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `bdt-icon`
 */
.bdt-totop {
  padding: 5px;
  color: #999;
}

/* Hover */
.bdt-totop:hover {
  color: #666;
}

/* OnClick */
.bdt-totop:active {
  color: #333;
}

/* ========================================================================
   Component: Marker
 ========================================================================== */
/*
 * Addopts `bdt-icon`
 */
.bdt-marker {
  padding: 5px;
  background: #222;
  color: #fff;
}

/* Hover */
.bdt-marker:hover {
  color: #fff;
}

/* ========================================================================
   Component: Alert
 ========================================================================== */
.bdt-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #f8f8f8;
  color: #666;
}

/* Add margin if adjacent element */
*+.bdt-alert {
  margin-top: 20px;
}

/*
 * Remove margin from the last-child
 */
.bdt-alert> :last-child {
  margin-bottom: 0;
}

/* Close
 * Adopts `bdt-close`
 ========================================================================== */
.bdt-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
}

/*
 * Remove margin from adjacent element
 */
.bdt-alert-close:first-child+* {
  margin-top: 0;
}

/*
 * Hover
 */
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.bdt-alert-primary {
  background: #d8eafc;
  color: #1e87f0;
}

/*
 * Success
 */
.bdt-alert-success {
  background: #edfbf6;
  color: #32d296;
}

/*
 * Warning
 */
.bdt-alert-warning {
  background: #fff6ee;
  color: #faa05a;
}

/*
 * Danger
 */
.bdt-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}

/* ========================================================================
   Component: Badge
 ========================================================================== */
/*
 * 1. Style
 * 2. Center child vertically and horizontally
 */
.bdt-badge {
  box-sizing: border-box;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #1e87f0;
  color: #fff;
  font-size: 11px;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

/*
 * Required for `a`
 */
.bdt-badge:hover {
  text-decoration: none;
}

/* ========================================================================
   Component: Label
 ========================================================================== */
.bdt-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;
}

/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.bdt-label-success {
  background-color: #32d296;
  color: #fff;
}

/*
 * Warning
 */
.bdt-label-warning {
  background-color: #faa05a;
  color: #fff;
}

/*
 * Danger
 */
.bdt-label-danger {
  background-color: #f0506e;
  color: #fff;
}

/* ========================================================================
   Component: Overlay
 ========================================================================== */
.bdt-overlay {
  padding: 30px 30px;
}

/*
 * Remove margin from the last-child
 */
.bdt-overlay> :last-child {
  margin-bottom: 0;
}

/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-overlay-default {
  background: rgba(0, 0, 0, 0.5);
}

/*
 * Primary
 */
.bdt-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}

/* ========================================================================
   Component: Article
 ========================================================================== */
.bdt-article {
  display: flow-root;
}

/*
 * Remove margin from the last-child
 */
.bdt-article> :last-child {
  margin-bottom: 0;
}

/* Adjacent sibling
 ========================================================================== */
.bdt-article+.bdt-article {
  margin-top: 70px;
}

/* Title
 ========================================================================== */
.bdt-article-title {
  font-size: 2.23125rem;
  line-height: 1.2;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-article-title {
    font-size: 2.625rem;
  }
}

/* Meta
 ========================================================================== */
.bdt-article-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}

/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sections
 ========================================================================== */
.bdt-comment-body {
  display: flow-root;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.bdt-comment-header {
  display: flow-root;
  margin-bottom: 20px;
}

/*
 * Remove margin from the last-child
 */
.bdt-comment-body> :last-child,
.bdt-comment-header> :last-child {
  margin-bottom: 0;
}

/* Title
 ========================================================================== */
.bdt-comment-title {
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Meta
 ========================================================================== */
.bdt-comment-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}

/* Avatar
 ========================================================================== */
/* List
 ========================================================================== */
.bdt-comment-list {
  padding: 0;
  list-style: none;
}

/* Adjacent siblings */
.bdt-comment-list> :nth-child(n+2) {
  margin-top: 70px;
}

/*
 * Sublists
 * Note: General sibling selector allows reply block between comment and sublist
 */
.bdt-comment-list .bdt-comment~ul {
  margin: 70px 0 0 0;
  padding-left: 30px;
  list-style: none;
}

/* Tablet and bigger */
@media (min-width: 960px) {
  .bdt-comment-list .bdt-comment~ul {
    padding-left: 100px;
  }
}

/* Adjacent siblings */
.bdt-comment-list .bdt-comment~ul> :nth-child(n+2) {
  margin-top: 70px;
}

/* Style modifier
 ========================================================================== */
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Reset `form`
 */
.bdt-search {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  margin: 0;
}

/* Input
 ========================================================================== */
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.bdt-search-input::-webkit-search-cancel-button,
.bdt-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes placeholder transparency in Firefox.
 */
.bdt-search-input::-moz-placeholder {
  opacity: 1;
}

/*
 * 1. Define consistent box sizing.
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers
 * 5. Show the overflow in Edge.
 * 6. Remove default style in iOS.
 * 7. Vertical alignment
 * 8. Take the full container width
 * 9. Style
 */
.bdt-search-input {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  /* 5 */
  overflow: visible;
  /* 6 */
  -webkit-appearance: none;
  /* 7 */
  vertical-align: middle;
  /* 8 */
  width: 100%;
  /* 9 */
  border: none;
  color: #666;
}

.bdt-search-input:focus {
  outline: none;
}

/* Placeholder */
.bdt-search-input::placeholder {
  color: #999;
}

/* Icon (Adopts `bdt-icon`)
 ========================================================================== */
/*
 * Position above input
 * 1. Set position
 * 2. Center icon vertically and horizontally
 * 3. Style
 */
.bdt-search .bdt-search-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: #999;
}

/*
 * Required for `a`.
 */
.bdt-search .bdt-search-icon:hover {
  color: #999;
}

/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.bdt-search .bdt-search-icon:not(a):not(button):not(input) {
  pointer-events: none;
}

/*
 * Position modifier
 */
.bdt-search .bdt-search-icon-flip {
  right: 0;
  left: auto;
}

/* Default modifier
 ========================================================================== */
.bdt-search-default {
  width: 240px;
}

/*
 * Input
 */
.bdt-search-default .bdt-search-input {
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background: #f8f8f8;
}

/* Focus */
.bdt-search-default .bdt-search-input:focus {
  background-color: #ebebeb;
}

/*
 * Icon
 */
.bdt-search-default .bdt-search-icon {
  width: 40px;
}

.bdt-search-default .bdt-search-icon:not(.bdt-search-icon-flip)~.bdt-search-input {
  padding-left: 40px;
}

.bdt-search-default .bdt-search-icon-flip~.bdt-search-input {
  padding-right: 40px;
}

/* Navbar modifier
 ========================================================================== */
.bdt-search-navbar {
  width: 400px;
}

/*
 * Input
 */
.bdt-search-navbar .bdt-search-input {
  height: 40px;
  background: transparent;
  font-size: 1.5rem;
}

/* Focus */
/*
 * Icon
 */
.bdt-search-navbar .bdt-search-icon {
  width: 40px;
}

.bdt-search-navbar .bdt-search-icon:not(.bdt-search-icon-flip)~.bdt-search-input {
  padding-left: 40px;
}

.bdt-search-navbar .bdt-search-icon-flip~.bdt-search-input {
  padding-right: 40px;
}

/* Large modifier
 ========================================================================== */
.bdt-search-large {
  width: 500px;
}

/*
 * Input
 */
.bdt-search-large .bdt-search-input {
  height: 80px;
  background: transparent;
  font-size: 2.625rem;
}

/* Focus */
/*
 * Icon
 */
.bdt-search-large .bdt-search-icon {
  width: 80px;
}

.bdt-search-large .bdt-search-icon:not(.bdt-search-icon-flip)~.bdt-search-input {
  padding-left: 80px;
}

.bdt-search-large .bdt-search-icon-flip~.bdt-search-input {
  padding-right: 80px;
}

/* Toggle
 ========================================================================== */
.bdt-search-toggle {
  color: #999;
}

/* Hover */
.bdt-search-toggle:hover {
  color: #666;
}

/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 */
.bdt-nav,
.bdt-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
* 1. Center content vertically, e.g. an icon
* 2. Imitate white space gap when using flexbox
* 3. Reset link
* 4. Space is allocated solely based on content dimensions: 0 0 auto
 */
.bdt-nav li>a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3*/
  text-decoration: none;
}

/* 4 */
.bdt-nav li>a>* {
  flex: none;
}

/*
 * Items
 * Must target `a` elements to exclude other elements (e.g. lists)
 */
.bdt-nav>li>a {
  padding: 5px 0;
}

/* Sublists
 ========================================================================== */
/*
 * Level 2
 * `ul` needed for higher specificity to override padding
 */
ul.bdt-nav-sub {
  padding: 5px 0 5px 15px;
}

/*
 * Level 3 and deeper
 */
.bdt-nav-sub ul {
  padding-left: 15px;
}

/*
 * Items
 */
.bdt-nav-sub a {
  padding: 2px 0;
}

/* Parent icon modifier
 ========================================================================== */
.bdt-nav-parent-icon>.bdt-parent>a::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  margin-left: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.bdt-nav-parent-icon>.bdt-parent.bdt-open>a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

/* Header
 ========================================================================== */
.bdt-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.bdt-nav-header:not(:first-child) {
  margin-top: 20px;
}

/* Divider
 ========================================================================== */
.bdt-nav>.bdt-nav-divider {
  margin: 5px 0;
}

/* Default modifier
 ========================================================================== */
/*
 * Items
 */
.bdt-nav-default>li>a {
  color: #999;
}

/* Hover */
.bdt-nav-default>li>a:hover {
  color: #666;
}

/* Active */
.bdt-nav-default>li.bdt-active>a {
  color: #333;
}

/*
 * Header
 */
.bdt-nav-default .bdt-nav-header {
  color: #333;
}

/*
 * Divider
 */
.bdt-nav-default .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/*
 * Sublists
 */
.bdt-nav-default .bdt-nav-sub a {
  color: #999;
}

.bdt-nav-default .bdt-nav-sub a:hover {
  color: #666;
}

.bdt-nav-default .bdt-nav-sub li.bdt-active>a {
  color: #333;
}

/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.bdt-nav-primary>li>a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #999;
}

/* Hover */
.bdt-nav-primary>li>a:hover {
  color: #666;
}

/* Active */
.bdt-nav-primary>li.bdt-active>a {
  color: #333;
}

/*
 * Header
 */
.bdt-nav-primary .bdt-nav-header {
  color: #333;
}

/*
 * Divider
 */
.bdt-nav-primary .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/*
 * Sublists
 */
.bdt-nav-primary .bdt-nav-sub a {
  color: #999;
}

.bdt-nav-primary .bdt-nav-sub a:hover {
  color: #666;
}

.bdt-nav-primary .bdt-nav-sub li.bdt-active>a {
  color: #333;
}

/* Alignment modifier
 ========================================================================== */
/*
 * 1. Center header
 * 2. Center items
 */
/* 1 */
.bdt-nav-center {
  text-align: center;
}

/* 2 */
.bdt-nav-center li>a {
  justify-content: center;
}

/* Sublists */
.bdt-nav-center .bdt-nav-sub,
.bdt-nav-center .bdt-nav-sub ul {
  padding-left: 0;
}

/* Parent icon modifier  */
.bdt-nav-center.bdt-nav-parent-icon>.bdt-parent>a::after {
  margin-left: 0;
}

/* Style modifier
 ========================================================================== */
.bdt-nav.bdt-nav-divider> :not(.bdt-nav-divider)+ :not(.bdt-nav-header, .bdt-nav-divider) {
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/* ========================================================================
   Component: Navbar
 ========================================================================== */
/*
 * 1. Create position context to center navbar group
 */
.bdt-navbar {
  display: flex;
  /* 1 */
  position: relative;
}

/* Container
 ========================================================================== */
.bdt-navbar-container:not(.bdt-navbar-transparent) {
  background: #f8f8f8;
}

/* Groups
 ========================================================================== */
/*
 * 1. Align navs and items vertically if they have a different height
 * 2. Note: IE 11 requires an extra `div` which affects the center selector
 */
.bdt-navbar-left,
.bdt-navbar-right,
.bdt-navbar-center,
.bdt-navbar-center-left>*,
.bdt-navbar-center-right>* {
  display: flex;
  /* 1 */
  align-items: center;
}

/*
 * Horizontal alignment
 * 1. Create position context for centered navbar with sub groups (left/right)
 * 2. Fix text wrapping if content is larger than 50% of the container.
 * 3. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 4. Align sub groups for centered navbar
 */
.bdt-navbar-right {
  margin-left: auto;
}

.bdt-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  /* 1 */
  position: relative;
}

.bdt-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 2 */
  width: max-content;
  box-sizing: border-box;
  /* 3 */
  z-index: 990;
}

/* 4 */
.bdt-navbar-center-left,
.bdt-navbar-center-right {
  position: absolute;
  top: 0;
}

.bdt-navbar-center-left {
  right: 100%;
}

.bdt-navbar-center-right {
  left: 100%;
}

[class*='bdt-navbar-center-'] {
  width: max-content;
  box-sizing: border-box;
}

/* Nav
 ========================================================================== */
/*
 * 1. Reset list
 */
.bdt-navbar-nav {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Allow items to wrap into the next line
 * Only not `absolute` positioned groups
 */
.bdt-navbar-left,
.bdt-navbar-right,
.bdt-navbar-center:only-child {
  flex-wrap: wrap;
}

/*
 * Items
 * 1. Center content vertically and horizontally
 * 2. Imitate white space gap when using flexbox
 * 3. Dimensions
 * 4. Style
 * 5. Required for `a`
 */
.bdt-navbar-nav>li>a,
.bdt-navbar-item,
.bdt-navbar-toggle {
  /* 1 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  box-sizing: border-box;
  min-height: 80px;
  padding: 0 15px;
  /* 4 */
  font-size: 16px;
  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";
  /* 5 */
  text-decoration: none;
}

/*
 * Nav items
 */
.bdt-navbar-nav>li>a {
  color: #999;
}

/*
 * Hover
 * Apply hover style also if dropdown is opened
 */
.bdt-navbar-nav>li:hover>a,
.bdt-navbar-nav>li>a[aria-expanded="true"] {
  color: #666;
}

/* OnClick */
.bdt-navbar-nav>li>a:active {
  color: #333;
}

/* Active */
.bdt-navbar-nav>li.bdt-active>a {
  color: #333;
}

/* Item
 ========================================================================== */
.bdt-navbar-item {
  color: #666;
}

/*
 * Remove margin from the last-child
 */
.bdt-navbar-item> :last-child {
  margin-bottom: 0;
}

/* Toggle
 ========================================================================== */
.bdt-navbar-toggle {
  color: #999;
}

.bdt-navbar-toggle:hover,
.bdt-navbar-toggle[aria-expanded="true"] {
  color: #666;
  text-decoration: none;
}

/*
 * Icon
 * Adopts `bdt-icon`
 */
/* Hover */
/* Subtitle
 ========================================================================== */
.bdt-navbar-subtitle {
  font-size: 0.875rem;
}

/* Style modifiers
 ========================================================================== */
/* Dropdown
 ========================================================================== */
/*
 * Adopts `bdt-dropdown`
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.bdt-navbar-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 200px;
  /* 4 */
  padding: 15px;
  background: #f8f8f8;
  color: #666;
}

/* Show */
.bdt-navbar-dropdown.bdt-open {
  display: block;
}

/*
 * Direction / Alignment modifiers
 */
/* Direction */
[class*='bdt-navbar-dropdown-top'] {
  margin-top: 0;
}

[class*='bdt-navbar-dropdown-bottom'] {
  margin-top: 0;
}

[class*='bdt-navbar-dropdown-left'] {
  margin-left: 0;
}

[class*='bdt-navbar-dropdown-right'] {
  margin-left: 0;
}

/*
 * Grid
 * Adopts `bdt-grid`
 */
/* Gutter Horizontal */
.bdt-navbar-dropdown-grid {
  margin-left: -30px;
}

.bdt-navbar-dropdown-grid>* {
  padding-left: 30px;
}

/* Gutter Vertical */
.bdt-navbar-dropdown-grid>.bdt-grid-margin {
  margin-top: 30px;
}

/* Stack */
.bdt-navbar-dropdown-stack .bdt-navbar-dropdown-grid>* {
  width: 100% !important;
}

/*
 * Width modifier
 */
.bdt-navbar-dropdown-width-2:not(.bdt-navbar-dropdown-stack) {
  width: 400px;
}

.bdt-navbar-dropdown-width-3:not(.bdt-navbar-dropdown-stack) {
  width: 600px;
}

.bdt-navbar-dropdown-width-4:not(.bdt-navbar-dropdown-stack) {
  width: 800px;
}

.bdt-navbar-dropdown-width-5:not(.bdt-navbar-dropdown-stack) {
  width: 1000px;
}

/*
 * Dropbar modifier
 */
.bdt-navbar-dropdown-dropbar {
  margin-top: 0;
  margin-bottom: 0;
}

/* Dropdown Nav
 * Adopts `bdt-nav`
 ========================================================================== */
/*
 * Items
 */
.bdt-navbar-dropdown-nav>li>a {
  color: #999;
}

/* Hover */
.bdt-navbar-dropdown-nav>li>a:hover {
  color: #666;
}

/* Active */
.bdt-navbar-dropdown-nav>li.bdt-active>a {
  color: #333;
}

/*
 * Header
 */
.bdt-navbar-dropdown-nav .bdt-nav-header {
  color: #333;
}

/*
 * Divider
 */
.bdt-navbar-dropdown-nav .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/*
 * Sublists
 */
.bdt-navbar-dropdown-nav .bdt-nav-sub a {
  color: #999;
}

.bdt-navbar-dropdown-nav .bdt-nav-sub a:hover {
  color: #666;
}

.bdt-navbar-dropdown-nav .bdt-nav-sub li.bdt-active>a {
  color: #333;
}

/* Dropbar
 ========================================================================== */
.bdt-navbar-dropbar {
  background: #f8f8f8;
}

/*
 * Slide modifier
 */
.bdt-navbar-dropbar-slide {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
}

/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Center items vertically if they have a different height
 * 3. Gutter
 * 4. Reset list
 */
.bdt-subnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  align-items: center;
  /* 3 */
  margin-left: -20px;
  /* 4 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.bdt-subnav>* {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * Using `:first-child` instead of `a` to support `span` elements for text
 * 1. Center content vertically, e.g. an icon
 * 2. Imitate white space gap when using flexbox
 * 3. Style
 */
.bdt-subnav>*> :first-child {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  color: #999;
}

/* Hover */
.bdt-subnav>*>a:hover {
  color: #666;
  text-decoration: none;
}

/* Active */
.bdt-subnav>.bdt-active>a {
  color: #333;
}

/* Divider modifier
 ========================================================================== */
/*
 * Set gutter
 */
.bdt-subnav-divider {
  margin-left: -41px;
}

/*
 * Align items and divider vertically
 */
.bdt-subnav-divider>* {
  display: flex;
  align-items: center;
}

/*
 * Divider
 * 1. `nth-child` makes it also work without JS if it's only one row
 */
.bdt-subnav-divider> ::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid transparent;
}

/* 1 */
.bdt-subnav-divider> :nth-child(n+2):not(.bdt-first-column)::before {
  border-left-color: rgba(214, 214, 214, 0.49);
}

/* Pill modifier
 ========================================================================== */
.bdt-subnav-pill>*> :first-child {
  padding: 5px 10px;
  background: transparent;
  color: #999;
}

/* Hover */
.bdt-subnav-pill>*>a:hover {
  background-color: #f8f8f8;
  color: #666;
}

/* OnClick */
.bdt-subnav-pill>*>a:active {
  background-color: #f8f8f8;
  color: #666;
}

/* Active */
.bdt-subnav-pill>.bdt-active>a {
  background-color: #1e87f0;
  color: #fff;
}

/* Disabled
 * The same for all style modifiers
 ========================================================================== */
.bdt-subnav>.bdt-disabled>a {
  color: #999;
}

/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * Reset list
 */
.bdt-breadcrumb {
  padding: 0;
  list-style: none;
}

/*
 * 1. Doesn't generate any box and replaced by child boxes
 */
.bdt-breadcrumb>* {
  display: contents;
}

/* Items
 ========================================================================== */
.bdt-breadcrumb>*>* {
  font-size: 0.875rem;
  color: #999;
}

/* Hover */
.bdt-breadcrumb>*> :hover {
  color: #666;
  text-decoration: none;
}

/* Disabled */
/* Active */
.bdt-breadcrumb> :last-child>span,
.bdt-breadcrumb> :last-child>a:not([href]) {
  color: #666;
}

/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 * 1. Remove space between inline block elements.
 * 2. Style
 */
.bdt-breadcrumb> :nth-child(n+2):not(.bdt-first-column)::before {
  content: "/";
  display: inline-block;
  /* 1 */
  margin: 0 20px 0 calc(20px - 4px);
  /* 2 */
  font-size: 0.875rem;
  color: #999;
}

/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.bdt-pagination {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: 0;
  /* 3 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.bdt-pagination>* {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 0;
  /* 3 */
  position: relative;
}

/* Items
 ========================================================================== */
/*
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.bdt-pagination>*>* {
  /* 1 */
  display: block;
  /* 2 */
  padding: 5px 10px;
  color: #999;
}

/* Hover */
.bdt-pagination>*> :hover {
  color: #666;
  text-decoration: none;
}

/* Active */
.bdt-pagination>.bdt-active>* {
  color: #666;
}

/* Disabled */
.bdt-pagination>.bdt-disabled>* {
  color: #999;
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.bdt-tab {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.bdt-tab>* {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center content vertically, e.g. an icon
 * 2. Imitate white space gap when using flexbox
 * 3. Center content if a width is set
 * 4. Style
 */
.bdt-tab>*>a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  justify-content: center;
  /* 4 */
  padding: 10px 15px;
  color: #999;
}

/* Hover */
.bdt-tab>*>a:hover {
  color: #666;
  text-decoration: none;
}

/* Active */
.bdt-tab>.bdt-active>a {
  color: #333;
}

/* Disabled */
.bdt-tab>.bdt-disabled>a {
  color: #999;
}

/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
/*
 * Left + Right
 * 1. Reset Gutter
 */
.bdt-tab-left,
.bdt-tab-right {
  flex-direction: column;
  /* 1 */
  margin-left: 0;
}

/* 1 */
.bdt-tab-left>*,
.bdt-tab-right>* {
  padding-left: 0;
}

.bdt-tab-left>*>a {
  justify-content: left;
}

.bdt-tab-right>*>a {
  justify-content: left;
}

/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `bdt-icon`
 */
.bdt-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
}

/* Hover */
.bdt-slidenav:hover {
  color: rgba(102, 102, 102, 0.9);
}

/* OnClick */
.bdt-slidenav:active {
  color: rgba(102, 102, 102, 0.5);
}

/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Size modifier
 ========================================================================== */
.bdt-slidenav-large {
  padding: 10px 10px;
}

/* Container
 ========================================================================== */
.bdt-slidenav-container {
  display: flex;
}

/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.bdt-dotnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.bdt-dotnav>* {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 12px;
}

/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.bdt-dotnav>*>* {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.2);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* Hover */
.bdt-dotnav>*> :hover {
  background-color: rgba(102, 102, 102, 0.6);
}

/* OnClick */
.bdt-dotnav>*> :active {
  background-color: rgba(102, 102, 102, 0.2);
}

/* Active */
.bdt-dotnav>.bdt-active>* {
  background-color: rgba(102, 102, 102, 0.6);
}

/* Modifier: 'bdt-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.bdt-dotnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}

/* 2 */
.bdt-dotnav-vertical>* {
  padding-left: 0;
  padding-top: 12px;
}

/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.bdt-thumbnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}

/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.bdt-thumbnav>* {
  /* 1 */
  padding-left: 15px;
}

/* Items
 ========================================================================== */
/*
 * Items
 */
.bdt-thumbnav>*>* {
  display: inline-block;
}

/* Hover */
/* Active */
/* Modifier: 'bdt-thumbnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.bdt-thumbnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}

/* 2 */
.bdt-thumbnav-vertical>* {
  padding-left: 0;
  padding-top: 15px;
}

/* ========================================================================
   Component: Accordion
 ========================================================================== */
.bdt-accordion {
  padding: 0;
  list-style: none;
}

/* Item
 ========================================================================== */
.bdt-accordion> :nth-child(n+2) {
  margin-top: 20px;
}

/* Title
 ========================================================================== */
.bdt-accordion-title {
  display: block;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #333;
}

/* Hover */
.bdt-accordion-title:hover {
  color: #666;
  text-decoration: none;
}

/* Content
 ========================================================================== */
.bdt-accordion-content {
  display: flow-root;
  margin-top: 20px;
}

/*
 * Remove margin from the last-child
 */
.bdt-accordion-content> :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.bdt-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}

/* Show */
.bdt-drop.bdt-open {
  display: block;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='bdt-drop-top'] {
  margin-top: -20px;
}

[class*='bdt-drop-bottom'] {
  margin-top: 20px;
}

[class*='bdt-drop-left'] {
  margin-left: -20px;
}

[class*='bdt-drop-right'] {
  margin-left: 20px;
}

/* Grid modifiers
 ========================================================================== */
.bdt-drop-stack .bdt-drop-grid>* {
  width: 100% !important;
}

/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.bdt-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 15px;
  background: #f8f8f8;
  color: #666;
}

/* Show */
.bdt-dropdown.bdt-open {
  display: block;
}

/* Nav
 * Adopts `bdt-nav`
 ========================================================================== */
.bdt-dropdown-nav {
  white-space: nowrap;
}

/*
 * Items
 */
.bdt-dropdown-nav>li>a {
  color: #999;
}

/* Hover + Active */
.bdt-dropdown-nav>li>a:hover,
.bdt-dropdown-nav>li.bdt-active>a {
  color: #666;
}

/*
 * Header
 */
.bdt-dropdown-nav .bdt-nav-header {
  color: #333;
}

/*
 * Divider
 */
.bdt-dropdown-nav .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}

/*
 * Sublists
 */
.bdt-dropdown-nav .bdt-nav-sub a {
  color: #999;
}

.bdt-dropdown-nav .bdt-nav-sub a:hover,
.bdt-dropdown-nav .bdt-nav-sub li.bdt-active>a {
  color: #666;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='bdt-dropdown-top'] {
  margin-top: -10px;
}

[class*='bdt-dropdown-bottom'] {
  margin-top: 10px;
}

[class*='bdt-dropdown-left'] {
  margin-left: -10px;
}

[class*='bdt-dropdown-right'] {
  margin-left: 10px;
}

/* Grid modifiers
 ========================================================================== */
.bdt-dropdown-stack .bdt-dropdown-grid>* {
  width: 100% !important;
}

/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.bdt-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-modal {
    padding: 50px 30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*
 * Open
 */
.bdt-modal.bdt-open {
  opacity: 1;
}

/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.bdt-modal-page {
  overflow: hidden;
}

/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for spinner and close button
 * 2. Dimensions
 * 3. `!important` is needed to overwrite `bdt-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.bdt-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: 100% !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.3s linear;
  transition-property: opacity, transform;
  border-radius: 3px;
}

/*
 * Open
 */
.bdt-open>.bdt-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.bdt-modal-container .bdt-modal-dialog {
  width: 1200px;
}

/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.bdt-modal-full {
  padding: 0;
  background: none;
}

/* 2 */
.bdt-modal-full .bdt-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}

/* Sections
 ========================================================================== */
.bdt-modal-body {
  display: flow-root;
  padding: 30px 30px;
}

.bdt-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: #f8f8f8;
}

.bdt-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: #f8f8f8;
}

/*
 * Remove margin from the last-child
 */
.bdt-modal-body> :last-child,
.bdt-modal-header> :last-child,
.bdt-modal-footer> :last-child {
  margin-bottom: 0;
}

/* Title
 ========================================================================== */
.bdt-modal-title {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
}

/* Close
 * Adopts `bdt-close`
 ========================================================================== */
[class*='bdt-modal-close-'] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}

/*
 * Remove margin from adjacent element
 */
[class*='bdt-modal-close-']:first-child+* {
  margin-top: 0;
}

/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.bdt-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  transform: translate(0, -100%);
  color: #ffffff;
}

.bdt-modal-close-outside:hover {
  color: #fff;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {

  /* 1 */
  .bdt-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}

/*
 * Full
 */
/* ========================================================================
   Component: Lightbox
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 * 7. Prevent cancellation of pointer events while dragging
 */
.bdt-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: #000;
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
  /* 7 */
  touch-action: pinch-zoom;
}

/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.bdt-lightbox.bdt-open {
  display: block;
  /* 2 */
  opacity: 1;
}

/*
 * Focus
 */
.bdt-lightbox :focus {
  outline-color: rgba(255, 255, 255, 0.7);
}

.bdt-lightbox :focus-visible {
  outline-color: rgba(255, 255, 255, 0.7);
}

/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.bdt-lightbox-page {
  overflow: hidden;
}

/* Item
 ========================================================================== */
/*
 * 1. Center child within the viewport
 * 2. Not visible by default
 * 3. Color needed for spinner icon
 * 4. Optimize animation
 * 5. Responsiveness
 *    Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
 */
.bdt-lightbox-items>* {
  /* 1 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: none;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: rgba(255, 255, 255, 0.7);
  /* 4 */
  will-change: transform, opacity;
}

/* 5 */
.bdt-lightbox-items>*>* {
  max-width: 100vw;
  max-height: 100vh;
}

.bdt-lightbox-items>*> :not(iframe) {
  width: auto;
  height: auto;
}

.bdt-lightbox-items>.bdt-active {
  display: flex;
}

/* Toolbar
 ========================================================================== */
.bdt-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.bdt-lightbox-toolbar>* {
  color: rgba(255, 255, 255, 0.7);
}

/* Toolbar Icon (Close)
 ========================================================================== */
.bdt-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}

/*
 * Hover
 */
.bdt-lightbox-toolbar-icon:hover {
  color: #fff;
}

/* Button (Slidenav)
 ========================================================================== */
/*
 * 1. Center icon vertically and horizontally
 */
.bdt-lightbox-button {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Hover */
.bdt-lightbox-button:hover {
  color: #fff;
}

/* OnClick */
/* Caption
 ========================================================================== */
.bdt-lightbox-caption:empty {
  display: none;
}

/* Iframe
 ========================================================================== */
.bdt-lightbox-iframe {
  width: 80%;
  height: 80%;
}

/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.bdt-slideshow {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Items
 ========================================================================== */
/*
 * 1. Create position and stacking context
 * 2. Reset list
 * 3. Clip child elements
 * 4. Prevent displaying the callout information on iOS.
 * 5. Disable horizontal panning gestures
 */
.bdt-slideshow-items {
  /* 1 */
  position: relative;
  z-index: 0;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  overflow: hidden;
  /* 4 */
  -webkit-touch-callout: none;
  /* 5 */
  touch-action: pan-y;
}

/* Item
 ========================================================================== */
/*
 * 1. Position items above each other
 * 2. Take the full width
 * 3. Clip child elements, e.g. for `bdt-cover`
 * 4. Optimize animation
 */
.bdt-slideshow-items>* {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
}

/*
 * Hide not active items
 */
.bdt-slideshow-items> :not(.bdt-active) {
  display: none;
}

/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.bdt-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Container
 ========================================================================== */
/*
 * Clip child elements
 */
.bdt-slider-container {
  overflow: hidden;
}

/*
 * Widen container to prevent box-shadows from clipping, `large-box-shadow`
 */
.bdt-slider-container-offset {
  margin: -11px -25px -39px -25px;
  padding: 11px 25px 39px 25px;
}

/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 * 3. Disable horizontal panning gestures
 */
.bdt-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}

/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.bdt-slider-items:not(.bdt-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}

.bdt-slider-items.bdt-grid {
  flex-wrap: nowrap;
}

/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 *    `max-width` needed to keep image responsiveness and prevent content overflow
 * 3. Create position context
 */
.bdt-slider-items>* {
  /* 1 */
  flex: none;
  max-width: 100%;
  /* 3 */
  position: relative;
}

/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * Create position context so it's t the same like when fixed.
 */
.bdt-sticky {
  position: relative;
}

/*
 * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
 */
.bdt-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*
 * Faster animations
 */
.bdt-sticky[class*='bdt-animation-'] {
  animation-duration: 0.2s;
}

.bdt-sticky.bdt-animation-reverse {
  animation-duration: 0.2s;
}

/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.bdt-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

/*
 * Flip modifier
 */
.bdt-offcanvas-flip .bdt-offcanvas {
  right: 0;
  left: auto;
}

/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 */
.bdt-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: -270px;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 40px 40px;
  }
}

/* Flip modifier */
.bdt-offcanvas-flip .bdt-offcanvas-bar {
  left: auto;
  right: -270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-offcanvas-flip .bdt-offcanvas-bar {
    right: -350px;
  }
}

/*
 * Open
 */
.bdt-open>.bdt-offcanvas-bar {
  left: 0;
}

.bdt-offcanvas-flip .bdt-open>.bdt-offcanvas-bar {
  left: auto;
  right: 0;
}

/*
 * Slide Animation (Used in slide and push mode)
 */
.bdt-offcanvas-bar-animation {
  transition: left 0.3s ease-out;
}

.bdt-offcanvas-flip .bdt-offcanvas-bar-animation {
  transition-property: right;
}

/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset position
 */
.bdt-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  transition: width 0.3s ease-out;
}

.bdt-offcanvas-reveal .bdt-offcanvas-bar {
  /* 4 */
  left: 0;
}

.bdt-offcanvas-flip .bdt-offcanvas-reveal .bdt-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}

.bdt-open>.bdt-offcanvas-reveal {
  width: 270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-open>.bdt-offcanvas-reveal {
    width: 350px;
  }
}

/*
 * Flip modifier
 */
.bdt-offcanvas-flip .bdt-offcanvas-reveal {
  right: 0;
  left: auto;
}

/* Close
 * Adopts `bdt-close`
 ========================================================================== */
.bdt-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}

/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.bdt-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}

/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.bdt-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  transition: opacity 0.15s linear;
}

.bdt-offcanvas-overlay.bdt-open::before {
  opacity: 1;
}

/* Prevent scrolling
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.bdt-offcanvas-page,
.bdt-offcanvas-container {
  overflow-x: hidden;
}

/* Container
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * 1. Provide a fixed width and prevent shrinking
 */
.bdt-offcanvas-container {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  box-sizing: border-box;
  width: 100%;
}

/*
 * Activate slide-out animation
 */
:not(.bdt-offcanvas-flip).bdt-offcanvas-container-animation {
  left: 270px;
}

.bdt-offcanvas-flip.bdt-offcanvas-container-animation {
  left: -270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.bdt-offcanvas-flip).bdt-offcanvas-container-animation {
    left: 350px;
  }

  .bdt-offcanvas-flip.bdt-offcanvas-container-animation {
    left: -350px;
  }
}

/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * Reset list
 */
.bdt-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Items
 ========================================================================== */
/*
 * Hide not active items
 */
.bdt-switcher> :not(.bdt-active) {
  display: none;
}

/*
 * Remove margin from the last-child
 */
.bdt-switcher>*> :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Leader
 ========================================================================== */
.bdt-leader {
  overflow: hidden;
}

/*
 * 1. Place element in text flow
 * 2. Never break into a new line
 * 3. Get a string back with as many repeating characters to fill the container
 * 4. Prevent wrapping. Overflowing characters will be clipped by the container
 */
.bdt-leader-fill::after {
  /* 1 */
  display: inline-block;
  margin-left: 15px;
  /* 2 */
  width: 0;
  /* 3 */
  content: attr(data-fill);
  /* 4 */
  white-space: nowrap;
}

/*
 * Hide if media does not match
 */
.bdt-leader-fill.bdt-leader-hide::after {
  display: none;
}

/*
 * Pass fill character to JS
 */
:root {
  --bdt-leader-fill-content: '.';
}

/* ========================================================================
   Component: Iconnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.bdt-iconnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -10px;
}

/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.bdt-iconnav>* {
  /* 1 */
  padding-left: 10px;
}

/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center content vertically if there is still some text
 * 2. Imitate white space gap when using flexbox
 * 3. Force text not to affect item height
 * 4. Style
 * 5. Required for `a` if there is still some text
 */
.bdt-iconnav>*>a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  line-height: 0;
  /* 4 */
  color: #999;
  /* 5 */
  text-decoration: none;
}

/* Hover */
.bdt-iconnav>*>a:hover {
  color: #666;
}

/* Active */
.bdt-iconnav>.bdt-active>a {
  color: #666;
}

/* Modifier: 'bdt-iconnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.bdt-iconnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}

/* 2 */
.bdt-iconnav-vertical>* {
  padding-left: 0;
  padding-top: 10px;
}

/* ========================================================================
   Component: Notification
 ========================================================================== */
/*
 * 1. Set position
 * 2. Dimensions
 */
.bdt-notification {
  /* 1 */
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  /* 2 */
  box-sizing: border-box;
  width: 450px;
}

/* Position modifiers
========================================================================== */
.bdt-notification-top-right,
.bdt-notification-bottom-right {
  left: auto;
  right: 10px;
}

.bdt-notification-top-center,
.bdt-notification-bottom-center {
  left: 50%;
  margin-left: -225px;
}

.bdt-notification-bottom-left,
.bdt-notification-bottom-right,
.bdt-notification-bottom-center {
  top: auto;
  bottom: 10px;
}

/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 639px) {
  .bdt-notification {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}

/* Message
========================================================================== */
.bdt-notification-message {
  position: relative;
  padding: 15px;
  background: #f8f8f8;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
}

*+.bdt-notification-message {
  margin-top: 10px;
}

/* Close
 * Adopts `bdt-close`
 ========================================================================== */
.bdt-notification-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}

.bdt-notification-message:hover .bdt-notification-close {
  display: block;
}

/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.bdt-notification-message-primary {
  color: #1e87f0;
}

/*
 * Success
 */
.bdt-notification-message-success {
  color: #32d296;
}

/*
 * Warning
 */
.bdt-notification-message-warning {
  color: #faa05a;
}

/*
 * Danger
 */
.bdt-notification-message-danger {
  color: #f0506e;
}

/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Position
 * 3. Remove tooltip from document flow to keep the UIkit container from changing its size when injected into the document initially
 * 4. Dimensions
 * 5. Style
 */
.bdt-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  top: 0;
  /* 4 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 5 */
  background: #666;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}

/* Show */
.bdt-tooltip.bdt-active {
  display: block;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='bdt-tooltip-top'] {
  margin-top: -10px;
}

[class*='bdt-tooltip-bottom'] {
  margin-top: 10px;
}

[class*='bdt-tooltip-left'] {
  margin-left: -10px;
}

[class*='bdt-tooltip-right'] {
  margin-left: 10px;
}

/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.bdt-placeholder {
  margin-bottom: 20px;
  padding: 30px 30px;
  background: #f8f8f8;
}

/* Add margin if adjacent element */
*+.bdt-placeholder {
  margin-top: 20px;
}

/*
 * Remove margin from the last-child
 */
.bdt-placeholder> :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Add the correct vertical alignment in all browsers.
 * 2. Behave like a block element.
 * 3. Remove borders in Firefox.
 * 4. Remove default style in Chrome, Safari and Edge.
 * 5. Style
 */
.bdt-progress {
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  display: block;
  width: 100%;
  /* 3 */
  border: 0;
  /* 4 */
  background-color: #f8f8f8;
  /* 5 */
  margin-bottom: 20px;
  height: 15px;
}

/* Add margin if adjacent element */
*+.bdt-progress {
  margin-top: 20px;
}

/*
 * Show background color set on `bdt-progress` in Chrome, Safari and Edge.
 */
.bdt-progress::-webkit-progress-bar {
  background-color: transparent;
}

/*
 * Progress Bar
 * 1. Transitions don't work on `::-moz-progress-bar` pseudo element in Firefox yet.
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=662351
 */
.bdt-progress::-webkit-progress-value {
  background-color: #1e87f0;
  transition: width 0.6s ease;
}

.bdt-progress::-moz-progress-bar {
  background-color: #1e87f0;
  /* 1 */
  transition: width 0.6s ease;
}

/* ========================================================================
   Component: Sortable
 ========================================================================== */
.bdt-sortable {
  position: relative;
}

/*
 * Remove margin from the last-child
 */
.bdt-sortable> :last-child {
  margin-bottom: 0;
}

/* Drag
 ========================================================================== */
.bdt-sortable-drag {
  position: fixed !important;
  z-index: 1050 !important;
  pointer-events: none;
}

/* Placeholder
 ========================================================================== */
.bdt-sortable-placeholder {
  opacity: 0;
  pointer-events: none;
}

/* Empty modifier
 ========================================================================== */
.bdt-sortable-empty {
  min-height: 50px;
}

/* Handle
 ========================================================================== */
/* Hover */
.bdt-sortable-handle:hover {
  cursor: move;
}

/* ========================================================================
   Component: Countdown
 ========================================================================== */
/* Item
 ========================================================================== */
/* Number
 ========================================================================== */
/*
 * 1. Make numbers all of the same size to prevent jumping. Must be supported by the font.
 * 2. Style
 */
.bdt-countdown-number {
  /* 1 */
  font-variant-numeric: tabular-nums;
  /* 2 */
  font-size: 2rem;
  line-height: 0.8;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-countdown-number {
    font-size: 4rem;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-countdown-number {
    font-size: 6rem;
  }
}

/* Separator
 ========================================================================== */
.bdt-countdown-separator {
  font-size: 1rem;
  line-height: 1.6;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-countdown-separator {
    font-size: 2rem;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-countdown-separator {
    font-size: 3rem;
  }
}

/* Label
 ========================================================================== */
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='bdt-animation-'] {
  animation: 0.5s ease-out both;
}

/* Animations
 ========================================================================== */
/*
 * Fade
 */
.bdt-animation-fade {
  animation-name: bdt-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

/*
 * Scale
 */
.bdt-animation-scale-up {
  animation-name: bdt-fade, bdt-scale-up;
}

.bdt-animation-scale-down {
  animation-name: bdt-fade, bdt-scale-down;
}

/*
 * Slide
 */
.bdt-animation-slide-top {
  animation-name: bdt-fade, bdt-slide-top;
}

.bdt-animation-slide-bottom {
  animation-name: bdt-fade, bdt-slide-bottom;
}

.bdt-animation-slide-left {
  animation-name: bdt-fade, bdt-slide-left;
}

.bdt-animation-slide-right {
  animation-name: bdt-fade, bdt-slide-right;
}

/*
 * Slide Small
 */
.bdt-animation-slide-top-small {
  animation-name: bdt-fade, bdt-slide-top-small;
}

.bdt-animation-slide-bottom-small {
  animation-name: bdt-fade, bdt-slide-bottom-small;
}

.bdt-animation-slide-left-small {
  animation-name: bdt-fade, bdt-slide-left-small;
}

.bdt-animation-slide-right-small {
  animation-name: bdt-fade, bdt-slide-right-small;
}

/*
 * Slide Medium
 */
.bdt-animation-slide-top-medium {
  animation-name: bdt-fade, bdt-slide-top-medium;
}

.bdt-animation-slide-bottom-medium {
  animation-name: bdt-fade, bdt-slide-bottom-medium;
}

.bdt-animation-slide-left-medium {
  animation-name: bdt-fade, bdt-slide-left-medium;
}

.bdt-animation-slide-right-medium {
  animation-name: bdt-fade, bdt-slide-right-medium;
}

/*
 * Kenburns
 */
.bdt-animation-kenburns {
  animation-name: bdt-kenburns;
  animation-duration: 15s;
}

/*
 * Shake
 */
.bdt-animation-shake {
  animation-name: bdt-shake;
}

/*
 * SVG Stroke
 * The `--bdt-animation-stroke` custom property contains the longest path length.
 * Set it manually or use `bdt-svg="stroke-animation: true"` to set it automatically.
 * All strokes are animated by the same pace and doesn't end simultaneously.
 * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
 */
.bdt-animation-stroke {
  animation-name: bdt-stroke;
  animation-duration: 2s;
  stroke-dasharray: var(--bdt-animation-stroke);
}

/* Direction modifier
 ========================================================================== */
.bdt-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}

/* Duration modifier
 ========================================================================== */
.bdt-animation-fast {
  animation-duration: 0.1s;
}

/* Toggle animation based on the State of the Parent Element
 ========================================================================== */
.bdt-animation-toggle:not(:hover):not(:focus) [class*='bdt-animation-'] {
  animation-name: none;
}

/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes bdt-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*
 * Scale
 */
@keyframes bdt-scale-up {
  0% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes bdt-scale-down {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/*
 * Slide
 */
@keyframes bdt-slide-top {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bdt-slide-bottom {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bdt-slide-left {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes bdt-slide-right {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

/*
 * Slide Small
 */
@keyframes bdt-slide-top-small {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bdt-slide-bottom-small {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bdt-slide-left-small {
  0% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes bdt-slide-right-small {
  0% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

/*
 * Slide Medium
 */
@keyframes bdt-slide-top-medium {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bdt-slide-bottom-medium {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bdt-slide-left-medium {
  0% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes bdt-slide-right-medium {
  0% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(0);
  }
}

/*
 * Kenburns
 */
@keyframes bdt-kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

/*
 * Shake
 */
@keyframes bdt-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);
  }
}

/*
 * Stroke
 */
@keyframes bdt-stroke {
  0% {
    stroke-dashoffset: var(--bdt-animation-stroke);
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*='bdt-child-width']>* {
  box-sizing: border-box;
  width: 100%;
}

.bdt-child-width-1-2>* {
  width: 50%;
}

.bdt-child-width-1-3>* {
  width: calc(100% * 1 / 3.001);
}

.bdt-child-width-1-4>* {
  width: 25%;
}

.bdt-child-width-1-5>* {
  width: 20%;
}

.bdt-child-width-1-6>* {
  width: calc(100% * 1 / 6.001);
}

.bdt-child-width-auto>* {
  width: auto;
}

/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.bdt-child-width-expand> :not([class*='bdt-width']) {
  flex: 1;
  /* 1 */
  min-width: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-child-width-1-1\@s>* {
    width: 100%;
  }

  .bdt-child-width-1-2\@s>* {
    width: 50%;
  }

  .bdt-child-width-1-3\@s>* {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-child-width-1-4\@s>* {
    width: 25%;
  }

  .bdt-child-width-1-5\@s>* {
    width: 20%;
  }

  .bdt-child-width-1-6\@s>* {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-child-width-auto\@s>* {
    width: auto;
  }

  .bdt-child-width-expand\@s> :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-child-width-1-1\@m>* {
    width: 100%;
  }

  .bdt-child-width-1-2\@m>* {
    width: 50%;
  }

  .bdt-child-width-1-3\@m>* {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-child-width-1-4\@m>* {
    width: 25%;
  }

  .bdt-child-width-1-5\@m>* {
    width: 20%;
  }

  .bdt-child-width-1-6\@m>* {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-child-width-auto\@m>* {
    width: auto;
  }

  .bdt-child-width-expand\@m> :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-child-width-1-1\@l>* {
    width: 100%;
  }

  .bdt-child-width-1-2\@l>* {
    width: 50%;
  }

  .bdt-child-width-1-3\@l>* {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-child-width-1-4\@l>* {
    width: 25%;
  }

  .bdt-child-width-1-5\@l>* {
    width: 20%;
  }

  .bdt-child-width-1-6\@l>* {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-child-width-auto\@l>* {
    width: auto;
  }

  .bdt-child-width-expand\@l> :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-child-width-1-1\@xl>* {
    width: 100%;
  }

  .bdt-child-width-1-2\@xl>* {
    width: 50%;
  }

  .bdt-child-width-1-3\@xl>* {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-child-width-1-4\@xl>* {
    width: 25%;
  }

  .bdt-child-width-1-5\@xl>* {
    width: 20%;
  }

  .bdt-child-width-1-6\@xl>* {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-child-width-auto\@xl>* {
    width: auto;
  }

  .bdt-child-width-expand\@xl> :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}

/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*='bdt-width'] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}

/* Halves */
.bdt-width-1-2 {
  width: 50%;
}

/* Thirds */
.bdt-width-1-3 {
  width: calc(100% * 1 / 3.001);
}

.bdt-width-2-3 {
  width: calc(100% * 2 / 3.001);
}

/* Quarters */
.bdt-width-1-4 {
  width: 25%;
}

.bdt-width-3-4 {
  width: 75%;
}

/* Fifths */
.bdt-width-1-5 {
  width: 20%;
}

.bdt-width-2-5 {
  width: 40%;
}

.bdt-width-3-5 {
  width: 60%;
}

.bdt-width-4-5 {
  width: 80%;
}

/* Sixths */
.bdt-width-1-6 {
  width: calc(100% * 1 / 6.001);
}

.bdt-width-5-6 {
  width: calc(100% * 5 / 6.001);
}

/* Pixel */
.bdt-width-small {
  width: 150px;
}

.bdt-width-medium {
  width: 300px;
}

.bdt-width-large {
  width: 450px;
}

.bdt-width-xlarge {
  width: 600px;
}

.bdt-width-2xlarge {
  width: 750px;
}

/* Auto */
.bdt-width-auto {
  width: auto;
}

/* Expand */
.bdt-width-expand {
  flex: 1;
  min-width: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {

  /* Whole */
  .bdt-width-1-1\@s {
    width: 100%;
  }

  /* Halves */
  .bdt-width-1-2\@s {
    width: 50%;
  }

  /* Thirds */
  .bdt-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .bdt-width-1-4\@s {
    width: 25%;
  }

  .bdt-width-3-4\@s {
    width: 75%;
  }

  /* Fifths */
  .bdt-width-1-5\@s {
    width: 20%;
  }

  .bdt-width-2-5\@s {
    width: 40%;
  }

  .bdt-width-3-5\@s {
    width: 60%;
  }

  .bdt-width-4-5\@s {
    width: 80%;
  }

  /* Sixths */
  .bdt-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .bdt-width-small\@s {
    width: 150px;
  }

  .bdt-width-medium\@s {
    width: 300px;
  }

  .bdt-width-large\@s {
    width: 450px;
  }

  .bdt-width-xlarge\@s {
    width: 600px;
  }

  .bdt-width-2xlarge\@s {
    width: 750px;
  }

  /* Auto */
  .bdt-width-auto\@s {
    width: auto;
  }

  /* Expand */
  .bdt-width-expand\@s {
    flex: 1;
    min-width: 1px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {

  /* Whole */
  .bdt-width-1-1\@m {
    width: 100%;
  }

  /* Halves */
  .bdt-width-1-2\@m {
    width: 50%;
  }

  /* Thirds */
  .bdt-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .bdt-width-1-4\@m {
    width: 25%;
  }

  .bdt-width-3-4\@m {
    width: 75%;
  }

  /* Fifths */
  .bdt-width-1-5\@m {
    width: 20%;
  }

  .bdt-width-2-5\@m {
    width: 40%;
  }

  .bdt-width-3-5\@m {
    width: 60%;
  }

  .bdt-width-4-5\@m {
    width: 80%;
  }

  /* Sixths */
  .bdt-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .bdt-width-small\@m {
    width: 150px;
  }

  .bdt-width-medium\@m {
    width: 300px;
  }

  .bdt-width-large\@m {
    width: 450px;
  }

  .bdt-width-xlarge\@m {
    width: 600px;
  }

  .bdt-width-2xlarge\@m {
    width: 750px;
  }

  /* Auto */
  .bdt-width-auto\@m {
    width: auto;
  }

  /* Expand */
  .bdt-width-expand\@m {
    flex: 1;
    min-width: 1px;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {

  /* Whole */
  .bdt-width-1-1\@l {
    width: 100%;
  }

  /* Halves */
  .bdt-width-1-2\@l {
    width: 50%;
  }

  /* Thirds */
  .bdt-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .bdt-width-1-4\@l {
    width: 25%;
  }

  .bdt-width-3-4\@l {
    width: 75%;
  }

  /* Fifths */
  .bdt-width-1-5\@l {
    width: 20%;
  }

  .bdt-width-2-5\@l {
    width: 40%;
  }

  .bdt-width-3-5\@l {
    width: 60%;
  }

  .bdt-width-4-5\@l {
    width: 80%;
  }

  /* Sixths */
  .bdt-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .bdt-width-small\@l {
    width: 150px;
  }

  .bdt-width-medium\@l {
    width: 300px;
  }

  .bdt-width-large\@l {
    width: 450px;
  }

  .bdt-width-xlarge\@l {
    width: 600px;
  }

  .bdt-width-2xlarge\@l {
    width: 750px;
  }

  /* Auto */
  .bdt-width-auto\@l {
    width: auto;
  }

  /* Expand */
  .bdt-width-expand\@l {
    flex: 1;
    min-width: 1px;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {

  /* Whole */
  .bdt-width-1-1\@xl {
    width: 100%;
  }

  /* Halves */
  .bdt-width-1-2\@xl {
    width: 50%;
  }

  /* Thirds */
  .bdt-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }

  .bdt-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .bdt-width-1-4\@xl {
    width: 25%;
  }

  .bdt-width-3-4\@xl {
    width: 75%;
  }

  /* Fifths */
  .bdt-width-1-5\@xl {
    width: 20%;
  }

  .bdt-width-2-5\@xl {
    width: 40%;
  }

  .bdt-width-3-5\@xl {
    width: 60%;
  }

  .bdt-width-4-5\@xl {
    width: 80%;
  }

  /* Sixths */
  .bdt-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }

  .bdt-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .bdt-width-small\@xl {
    width: 150px;
  }

  .bdt-width-medium\@xl {
    width: 300px;
  }

  .bdt-width-large\@xl {
    width: 450px;
  }

  .bdt-width-xlarge\@xl {
    width: 600px;
  }

  .bdt-width-2xlarge\@xl {
    width: 750px;
  }

  /* Auto */
  .bdt-width-auto\@xl {
    width: auto;
  }

  /* Expand */
  .bdt-width-expand\@xl {
    flex: 1;
    min-width: 1px;
  }
}

/* Intrinsic Widths
 ========================================================================== */
.bdt-width-max-content {
  width: max-content;
}

.bdt-width-min-content {
  width: min-content;
}

/* ========================================================================
   Component: Height
 ========================================================================== */
[class*='bdt-height'] {
  box-sizing: border-box;
}

/*
 * Only works if parent element has a height set
 */
.bdt-height-1-1 {
  height: 100%;
}

/*
 * Useful to create image teasers
 */
.bdt-height-viewport {
  min-height: 100vh;
}

.bdt-height-viewport-2 {
  min-height: 200vh;
}

.bdt-height-viewport-3 {
  min-height: 300vh;
}

.bdt-height-viewport-4 {
  min-height: 400vh;
}

/*
 * Pixel
 * Useful for `overflow: auto`
 */
.bdt-height-small {
  height: 150px;
}

.bdt-height-medium {
  height: 300px;
}

.bdt-height-large {
  height: 450px;
}

.bdt-height-max-small {
  max-height: 150px;
}

.bdt-height-max-medium {
  max-height: 300px;
}

.bdt-height-max-large {
  max-height: 450px;
}

/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.bdt-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}

.bdt-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}

/* Size modifiers
 ========================================================================== */
.bdt-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.bdt-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}

.bdt-text-default {
  font-size: 16px;
  line-height: 1.5;
}

/* Weight modifier
 ========================================================================== */
.bdt-text-light {
  font-weight: 300;
}

.bdt-text-normal {
  font-weight: 400;
}

.bdt-text-bold {
  font-weight: 700;
}

.bdt-text-lighter {
  font-weight: lighter;
}

.bdt-text-bolder {
  font-weight: bolder;
}

/* Style modifier
 ========================================================================== */
.bdt-text-italic {
  font-style: italic;
}

/* Transform modifier
 ========================================================================== */
.bdt-text-capitalize {
  text-transform: capitalize !important;
}

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

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

/* Decoration modifier
 ========================================================================== */
.bdt-text-decoration-none {
  text-decoration: none !important;
}

/* Color modifiers
 ========================================================================== */
.bdt-text-muted {
  color: #999 !important;
}

.bdt-text-emphasis {
  color: #333 !important;
}

.bdt-text-primary {
  color: #1e87f0 !important;
}

.bdt-text-secondary {
  color: #222 !important;
}

.bdt-text-success {
  color: #32d296 !important;
}

.bdt-text-warning {
  color: #faa05a !important;
}

.bdt-text-danger {
  color: #f0506e !important;
}

/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in all browsers.
 * 2. Default color is set to transparent.
 * 3. Container fits the text
 * 4. Style
 */
.bdt-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  color: transparent !important;
  /* 3 */
  display: inline-block;
  /* 4 */
  background-color: #1e87f0;
}

/* Alignment modifiers
 ========================================================================== */
.bdt-text-left {
  text-align: left !important;
}

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

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

.bdt-text-justify {
  text-align: justify !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-text-left\@s {
    text-align: left !important;
  }

  .bdt-text-right\@s {
    text-align: right !important;
  }

  .bdt-text-center\@s {
    text-align: center !important;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-text-left\@m {
    text-align: left !important;
  }

  .bdt-text-right\@m {
    text-align: right !important;
  }

  .bdt-text-center\@m {
    text-align: center !important;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-text-left\@l {
    text-align: left !important;
  }

  .bdt-text-right\@l {
    text-align: right !important;
  }

  .bdt-text-center\@l {
    text-align: center !important;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-text-left\@xl {
    text-align: left !important;
  }

  .bdt-text-right\@xl {
    text-align: right !important;
  }

  .bdt-text-center\@xl {
    text-align: center !important;
  }
}

/*
 * Vertical
 */
.bdt-text-top {
  vertical-align: top !important;
}

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

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

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

/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.bdt-text-nowrap {
  white-space: nowrap;
}

/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.bdt-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 2 */
th.bdt-text-truncate,
td.bdt-text-truncate {
  max-width: 0;
}

/*
 * Wrap long words onto the next line and break them if they are too long to fit.
 * 1. Make it work with table cells in all browsers.
 * Note: Not using `hyphens: auto` because it hyphenates text even if not needed.
 */
.bdt-text-break {
  overflow-wrap: break-word;
}

/* 1 */
th.bdt-text-break,
td.bdt-text-break {
  word-break: break-word;
}

/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='bdt-column-'] {
  column-gap: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  [class*='bdt-column-'] {
    column-gap: 40px;
  }
}

/*
 * Fix image 1px line wrapping into the next column in Chrome
 */
[class*='bdt-column-'] img {
  transform: translate3d(0, 0, 0);
}

/* Divider
 ========================================================================== */
/*
 * 1. Double the column gap
 */
.bdt-column-divider {
  column-rule: 1px solid rgba(214, 214, 214, 0.49);
  /* 1 */
  column-gap: 60px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-column-divider {
    column-gap: 80px;
  }
}

/* Width modifiers
 ========================================================================== */
.bdt-column-1-2 {
  column-count: 2;
}

.bdt-column-1-3 {
  column-count: 3;
}

.bdt-column-1-4 {
  column-count: 4;
}

.bdt-column-1-5 {
  column-count: 5;
}

.bdt-column-1-6 {
  column-count: 6;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-column-1-2\@s {
    column-count: 2;
  }

  .bdt-column-1-3\@s {
    column-count: 3;
  }

  .bdt-column-1-4\@s {
    column-count: 4;
  }

  .bdt-column-1-5\@s {
    column-count: 5;
  }

  .bdt-column-1-6\@s {
    column-count: 6;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-column-1-2\@m {
    column-count: 2;
  }

  .bdt-column-1-3\@m {
    column-count: 3;
  }

  .bdt-column-1-4\@m {
    column-count: 4;
  }

  .bdt-column-1-5\@m {
    column-count: 5;
  }

  .bdt-column-1-6\@m {
    column-count: 6;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-column-1-2\@l {
    column-count: 2;
  }

  .bdt-column-1-3\@l {
    column-count: 3;
  }

  .bdt-column-1-4\@l {
    column-count: 4;
  }

  .bdt-column-1-5\@l {
    column-count: 5;
  }

  .bdt-column-1-6\@l {
    column-count: 6;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-column-1-2\@xl {
    column-count: 2;
  }

  .bdt-column-1-3\@xl {
    column-count: 3;
  }

  .bdt-column-1-4\@xl {
    column-count: 4;
  }

  .bdt-column-1-5\@xl {
    column-count: 5;
  }

  .bdt-column-1-6\@xl {
    column-count: 6;
  }
}

/* Make element span across all columns
 * Does not work in Firefox yet
 ========================================================================== */
.bdt-column-span {
  column-span: all;
}

/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Use attribute to apply transform instantly. Needed if transform is transitioned.
 * 2. Reset responsiveness for embedded content
 * 3. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
/* 1 */
[bdt-cover],
[data-bdt-cover] {
  /* 2 */
  max-width: none;
  /* 3 */
  position: absolute;
  left: 50%;
  top: 50%;
  --bdt-position-translate-x: -50%;
  --bdt-position-translate-y: -50%;
  transform: translate(var(--bdt-position-translate-x), var(--bdt-position-translate-y));
}

iframe[bdt-cover],
iframe[data-bdt-cover] {
  pointer-events: none;
}

/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.bdt-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}

/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.bdt-background-default {
  background-color: #fff;
}

.bdt-background-muted {
  background-color: #f8f8f8;
}

.bdt-background-primary {
  background-color: #1e87f0;
}

.bdt-background-secondary {
  background-color: #222;
}

/* Size
 ========================================================================== */
.bdt-background-cover,
.bdt-background-contain,
.bdt-background-width-1-1,
.bdt-background-height-1-1 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.bdt-background-cover {
  background-size: cover;
}

.bdt-background-contain {
  background-size: contain;
}

.bdt-background-width-1-1 {
  background-size: 100%;
}

.bdt-background-height-1-1 {
  background-size: auto 100%;
}

/* Position
 ========================================================================== */
.bdt-background-top-left {
  background-position: 0 0;
}

.bdt-background-top-center {
  background-position: 50% 0;
}

.bdt-background-top-right {
  background-position: 100% 0;
}

.bdt-background-center-left {
  background-position: 0 50%;
}

.bdt-background-center-center {
  background-position: 50% 50%;
}

.bdt-background-center-right {
  background-position: 100% 50%;
}

.bdt-background-bottom-left {
  background-position: 0 100%;
}

.bdt-background-bottom-center {
  background-position: 50% 100%;
}

.bdt-background-bottom-right {
  background-position: 100% 100%;
}

/* Repeat
 ========================================================================== */
.bdt-background-norepeat {
  background-repeat: no-repeat;
}

/* Attachment
 ========================================================================== */
/*
 * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
 */
.bdt-background-fixed {
  background-attachment: fixed;
  /* 1 */
  backface-visibility: hidden;
}

/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .bdt-background-fixed {
    background-attachment: scroll;
  }
}

/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .bdt-background-image\@s {
    background-image: none !important;
  }
}

/* Phone landscape and smaller */
@media (max-width: 959px) {
  .bdt-background-image\@m {
    background-image: none !important;
  }
}

/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .bdt-background-image\@l {
    background-image: none !important;
  }
}

/* Desktop and smaller */
@media (max-width: 1599px) {
  .bdt-background-image\@xl {
    background-image: none !important;
  }
}

/* Blend modes
 ========================================================================== */
.bdt-background-blend-multiply {
  background-blend-mode: multiply;
}

.bdt-background-blend-screen {
  background-blend-mode: screen;
}

.bdt-background-blend-overlay {
  background-blend-mode: overlay;
}

.bdt-background-blend-darken {
  background-blend-mode: darken;
}

.bdt-background-blend-lighten {
  background-blend-mode: lighten;
}

.bdt-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}

.bdt-background-blend-color-burn {
  background-blend-mode: color-burn;
}

.bdt-background-blend-hard-light {
  background-blend-mode: hard-light;
}

.bdt-background-blend-soft-light {
  background-blend-mode: soft-light;
}

.bdt-background-blend-difference {
  background-blend-mode: difference;
}

.bdt-background-blend-exclusion {
  background-blend-mode: exclusion;
}

.bdt-background-blend-hue {
  background-blend-mode: hue;
}

.bdt-background-blend-saturation {
  background-blend-mode: saturation;
}

.bdt-background-blend-color {
  background-blend-mode: color;
}

.bdt-background-blend-luminosity {
  background-blend-mode: luminosity;
}

/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*='bdt-align'] {
  display: block;
  margin-bottom: 30px;
}

*+[class*='bdt-align'] {
  margin-top: 30px;
}

/*
 * Center
 */
.bdt-align-center {
  margin-left: auto;
  margin-right: auto;
}

/*
 * Left/Right
 */
.bdt-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}

.bdt-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }

  .bdt-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }

  .bdt-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-align-left\@l {
    margin-top: 0;
    float: left;
  }

  .bdt-align-right\@l {
    margin-top: 0;
    float: right;
  }

  .bdt-align-left,
  .bdt-align-left\@s,
  .bdt-align-left\@m,
  .bdt-align-left\@l {
    margin-right: 40px;
  }

  .bdt-align-right,
  .bdt-align-right\@s,
  .bdt-align-right\@m,
  .bdt-align-right\@l {
    margin-left: 40px;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }

  .bdt-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}

/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 */
/* 1 */
.bdt-svg,
.bdt-svg:not(.bdt-preserve) [fill*='#']:not(.bdt-preserve) {
  fill: currentcolor;
}

.bdt-svg:not(.bdt-preserve) [stroke*='#']:not(.bdt-preserve) {
  stroke: currentcolor;
}

/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.bdt-svg {
  transform: translate(0, 0);
}

/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.bdt-panel {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}

/*
 * Remove margin from the last-child
 */
.bdt-panel> :last-child {
  margin-bottom: 0;
}

/*
 * Scrollable
 */
.bdt-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid rgba(214, 214, 214, 0.49);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.bdt-clearfix::before {
  content: "";
  display: table-cell;
}

/* 2 */
.bdt-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.bdt-float-left {
  float: left;
}

.bdt-float-right {
  float: right;
}

/* 1 */
[class*='bdt-float-'] {
  max-width: 100%;
}

/* Overfow
 ========================================================================== */
.bdt-overflow-hidden {
  overflow: hidden;
}

/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.bdt-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.bdt-overflow-auto> :last-child {
  margin-bottom: 0;
}

/* Resize
 ========================================================================== */
.bdt-resize {
  resize: both;
}

.bdt-resize-vertical {
  resize: vertical;
}

/* Display
 ========================================================================== */
.bdt-display-block {
  display: block !important;
}

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

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

/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force new layer without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*='bdt-inline'] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}

.bdt-inline-clip {
  /* 6 */
  overflow: hidden;
}

/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.bdt-preserve-width,
.bdt-preserve-width canvas,
.bdt-preserve-width img,
.bdt-preserve-width svg,
.bdt-preserve-width video {
  max-width: none;
}

/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.bdt-responsive-width,
.bdt-responsive-height {
  box-sizing: border-box;
}

/*
 * 1. Set a maximum width. `important` needed to override `bdt-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.bdt-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}

/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.bdt-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}

/*
 * Fix initial iframe width. Without the viewport is expanded on iOS devices
 */
[bdt-responsive],
[data-bdt-responsive] {
  max-width: 100%;
}

/* Object
 ========================================================================== */
.bdt-object-cover {
  object-fit: cover;
}

.bdt-object-contain {
  object-fit: contain;
}

.bdt-object-fill {
  object-fit: fill;
}

.bdt-object-none {
  object-fit: none;
}

.bdt-object-scale-down {
  object-fit: scale-down;
}

/* 
 * Position
 */
.bdt-object-top-left {
  object-position: 0 0;
}

.bdt-object-top-center {
  object-position: 50% 0;
}

.bdt-object-top-right {
  object-position: 100% 0;
}

.bdt-object-center-left {
  object-position: 0 50%;
}

.bdt-object-center-center {
  object-position: 50% 50%;
}

.bdt-object-center-right {
  object-position: 100% 50%;
}

.bdt-object-bottom-left {
  object-position: 0 100%;
}

.bdt-object-bottom-center {
  object-position: 50% 100%;
}

.bdt-object-bottom-right {
  object-position: 100% 100%;
}

/* Border
 ========================================================================== */
.bdt-border-circle {
  border-radius: 50%;
}

.bdt-border-pill {
  border-radius: 500px;
}

.bdt-border-rounded {
  border-radius: 5px;
}

/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.bdt-inline-clip[class*='bdt-border-'] {
  -webkit-transform: translateZ(0);
}

/* Box-shadow
 ========================================================================== */
.bdt-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bdt-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bdt-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

.bdt-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}

/*
 * Hover
 */
[class*='bdt-box-shadow-hover'] {
  transition: box-shadow 0.1s ease-in-out;
}

.bdt-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bdt-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bdt-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

.bdt-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}

/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Fix shadow being clipped in Safari if container is animated
 */
@supports (filter: blur(0)) {
  .bdt-box-shadow-bottom {
    display: inline-block;
    position: relative;
    z-index: 0;
    max-width: 100%;
    vertical-align: middle;
  }

  .bdt-box-shadow-bottom::after {
    content: "";
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: -1;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
    /* 3 */
    will-change: filter;
  }
}

/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 */
.bdt-dropcap::first-letter,
.bdt-dropcap>p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
}

/* 2 */
@-moz-document url-prefix() {

  .bdt-dropcap::first-letter,
  .bdt-dropcap>p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}

/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.bdt-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;
  /* 1 */
  text-decoration: none;
}

/* Hover */
.bdt-logo:hover {
  color: #333;
  /* 1 */
  text-decoration: none;
}

.bdt-logo> :where(img, svg, video) {
  display: block;
}

.bdt-logo-inverse {
  display: none;
}

/* Disabled State
 ========================================================================== */
.bdt-disabled {
  pointer-events: none;
}

/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.bdt-drag,
.bdt-drag * {
  cursor: move;
}

/* 2 */
.bdt-drag iframe {
  pointer-events: none;
}

/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.bdt-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

/* Blend modes
 ========================================================================== */
.bdt-blend-multiply {
  mix-blend-mode: multiply;
}

.bdt-blend-screen {
  mix-blend-mode: screen;
}

.bdt-blend-overlay {
  mix-blend-mode: overlay;
}

.bdt-blend-darken {
  mix-blend-mode: darken;
}

.bdt-blend-lighten {
  mix-blend-mode: lighten;
}

.bdt-blend-color-dodge {
  mix-blend-mode: color-dodge;
}

.bdt-blend-color-burn {
  mix-blend-mode: color-burn;
}

.bdt-blend-hard-light {
  mix-blend-mode: hard-light;
}

.bdt-blend-soft-light {
  mix-blend-mode: soft-light;
}

.bdt-blend-difference {
  mix-blend-mode: difference;
}

.bdt-blend-exclusion {
  mix-blend-mode: exclusion;
}

.bdt-blend-hue {
  mix-blend-mode: hue;
}

.bdt-blend-saturation {
  mix-blend-mode: saturation;
}

.bdt-blend-color {
  mix-blend-mode: color;
}

.bdt-blend-luminosity {
  mix-blend-mode: luminosity;
}

/* Transform
========================================================================== */
.bdt-transform-center {
  transform: translate(-50%, -50%);
}

/* Transform Origin
========================================================================== */
.bdt-transform-origin-top-left {
  transform-origin: 0 0;
}

.bdt-transform-origin-top-center {
  transform-origin: 50% 0;
}

.bdt-transform-origin-top-right {
  transform-origin: 100% 0;
}

.bdt-transform-origin-center-left {
  transform-origin: 0 50%;
}

.bdt-transform-origin-center-right {
  transform-origin: 100% 50%;
}

.bdt-transform-origin-bottom-left {
  transform-origin: 0 100%;
}

.bdt-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}

.bdt-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.bdt-flex {
  display: flex;
}

.bdt-flex-inline {
  display: inline-flex;
}

/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.bdt-flex-left {
  justify-content: flex-start;
}

.bdt-flex-center {
  justify-content: center;
}

.bdt-flex-right {
  justify-content: flex-end;
}

.bdt-flex-between {
  justify-content: space-between;
}

.bdt-flex-around {
  justify-content: space-around;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-flex-left\@s {
    justify-content: flex-start;
  }

  .bdt-flex-center\@s {
    justify-content: center;
  }

  .bdt-flex-right\@s {
    justify-content: flex-end;
  }

  .bdt-flex-between\@s {
    justify-content: space-between;
  }

  .bdt-flex-around\@s {
    justify-content: space-around;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-flex-left\@m {
    justify-content: flex-start;
  }

  .bdt-flex-center\@m {
    justify-content: center;
  }

  .bdt-flex-right\@m {
    justify-content: flex-end;
  }

  .bdt-flex-between\@m {
    justify-content: space-between;
  }

  .bdt-flex-around\@m {
    justify-content: space-around;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-flex-left\@l {
    justify-content: flex-start;
  }

  .bdt-flex-center\@l {
    justify-content: center;
  }

  .bdt-flex-right\@l {
    justify-content: flex-end;
  }

  .bdt-flex-between\@l {
    justify-content: space-between;
  }

  .bdt-flex-around\@l {
    justify-content: space-around;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-flex-left\@xl {
    justify-content: flex-start;
  }

  .bdt-flex-center\@xl {
    justify-content: center;
  }

  .bdt-flex-right\@xl {
    justify-content: flex-end;
  }

  .bdt-flex-between\@xl {
    justify-content: space-between;
  }

  .bdt-flex-around\@xl {
    justify-content: space-around;
  }
}

/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.bdt-flex-stretch {
  align-items: stretch;
}

.bdt-flex-top {
  align-items: flex-start;
}

.bdt-flex-middle {
  align-items: center;
}

.bdt-flex-bottom {
  align-items: flex-end;
}

/* Direction
 ========================================================================== */
.bdt-flex-row {
  flex-direction: row;
}

.bdt-flex-row-reverse {
  flex-direction: row-reverse;
}

.bdt-flex-column {
  flex-direction: column;
}

.bdt-flex-column-reverse {
  flex-direction: column-reverse;
}

/* Wrap
 ========================================================================== */
.bdt-flex-nowrap {
  flex-wrap: nowrap;
}

.bdt-flex-wrap {
  flex-wrap: wrap;
}

.bdt-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.bdt-flex-wrap-stretch {
  align-content: stretch;
}

.bdt-flex-wrap-top {
  align-content: flex-start;
}

.bdt-flex-wrap-middle {
  align-content: center;
}

.bdt-flex-wrap-bottom {
  align-content: flex-end;
}

.bdt-flex-wrap-between {
  align-content: space-between;
}

.bdt-flex-wrap-around {
  align-content: space-around;
}

/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.bdt-flex-first {
  order: -1;
}

.bdt-flex-last {
  order: 99;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-flex-first\@s {
    order: -1;
  }

  .bdt-flex-last\@s {
    order: 99;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-flex-first\@m {
    order: -1;
  }

  .bdt-flex-last\@m {
    order: 99;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-flex-first\@l {
    order: -1;
  }

  .bdt-flex-last\@l {
    order: 99;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-flex-first\@xl {
    order: -1;
  }

  .bdt-flex-last\@xl {
    order: 99;
  }
}

/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.bdt-flex-none {
  flex: none;
}

/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.bdt-flex-auto {
  flex: auto;
}

/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.bdt-flex-1 {
  flex: 1;
}

/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.bdt-margin {
  margin-bottom: 20px;
}

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

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

.bdt-margin-bottom {
  margin-bottom: 20px !important;
}

.bdt-margin-left {
  margin-left: 20px !important;
}

.bdt-margin-right {
  margin-right: 20px !important;
}

/* Small
 ========================================================================== */
.bdt-margin-small {
  margin-bottom: 10px;
}

*+.bdt-margin-small {
  margin-top: 10px !important;
}

.bdt-margin-small-top {
  margin-top: 10px !important;
}

.bdt-margin-small-bottom {
  margin-bottom: 10px !important;
}

.bdt-margin-small-left {
  margin-left: 10px !important;
}

.bdt-margin-small-right {
  margin-right: 10px !important;
}

/* Medium
 ========================================================================== */
.bdt-margin-medium {
  margin-bottom: 40px;
}

*+.bdt-margin-medium {
  margin-top: 40px !important;
}

.bdt-margin-medium-top {
  margin-top: 40px !important;
}

.bdt-margin-medium-bottom {
  margin-bottom: 40px !important;
}

.bdt-margin-medium-left {
  margin-left: 40px !important;
}

.bdt-margin-medium-right {
  margin-right: 40px !important;
}

/* Large
 ========================================================================== */
.bdt-margin-large {
  margin-bottom: 40px;
}

*+.bdt-margin-large {
  margin-top: 40px !important;
}

.bdt-margin-large-top {
  margin-top: 40px !important;
}

.bdt-margin-large-bottom {
  margin-bottom: 40px !important;
}

.bdt-margin-large-left {
  margin-left: 40px !important;
}

.bdt-margin-large-right {
  margin-right: 40px !important;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-large {
    margin-bottom: 70px;
  }

  *+.bdt-margin-large {
    margin-top: 70px !important;
  }

  .bdt-margin-large-top {
    margin-top: 70px !important;
  }

  .bdt-margin-large-bottom {
    margin-bottom: 70px !important;
  }

  .bdt-margin-large-left {
    margin-left: 70px !important;
  }

  .bdt-margin-large-right {
    margin-right: 70px !important;
  }
}

/* XLarge
 ========================================================================== */
.bdt-margin-xlarge {
  margin-bottom: 70px;
}

*+.bdt-margin-xlarge {
  margin-top: 70px !important;
}

.bdt-margin-xlarge-top {
  margin-top: 70px !important;
}

.bdt-margin-xlarge-bottom {
  margin-bottom: 70px !important;
}

.bdt-margin-xlarge-left {
  margin-left: 70px !important;
}

.bdt-margin-xlarge-right {
  margin-right: 70px !important;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-xlarge {
    margin-bottom: 140px;
  }

  *+.bdt-margin-xlarge {
    margin-top: 140px !important;
  }

  .bdt-margin-xlarge-top {
    margin-top: 140px !important;
  }

  .bdt-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }

  .bdt-margin-xlarge-left {
    margin-left: 140px !important;
  }

  .bdt-margin-xlarge-right {
    margin-right: 140px !important;
  }
}

/* Auto
 ========================================================================== */
.bdt-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

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

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

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

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

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bdt-margin-auto-left\@s {
    margin-left: auto !important;
  }

  .bdt-margin-auto-right\@s {
    margin-right: auto !important;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bdt-margin-auto-left\@m {
    margin-left: auto !important;
  }

  .bdt-margin-auto-right\@m {
    margin-right: auto !important;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bdt-margin-auto-left\@l {
    margin-left: auto !important;
  }

  .bdt-margin-auto-right\@l {
    margin-right: auto !important;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bdt-margin-auto-left\@xl {
    margin-left: auto !important;
  }

  .bdt-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}

/* Remove
 ========================================================================== */
.bdt-margin-remove {
  margin: 0 !important;
}

.bdt-margin-remove-top {
  margin-top: 0 !important;
}

.bdt-margin-remove-bottom {
  margin-bottom: 0 !important;
}

.bdt-margin-remove-left {
  margin-left: 0 !important;
}

.bdt-margin-remove-right {
  margin-right: 0 !important;
}

.bdt-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.bdt-margin-remove-adjacent+*,
.bdt-margin-remove-first-child> :first-child {
  margin-top: 0 !important;
}

.bdt-margin-remove-last-child> :last-child {
  margin-bottom: 0 !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-margin-remove-left\@s {
    margin-left: 0 !important;
  }

  .bdt-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-margin-remove-left\@m {
    margin-left: 0 !important;
  }

  .bdt-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-remove-left\@l {
    margin-left: 0 !important;
  }

  .bdt-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-margin-remove-left\@xl {
    margin-left: 0 !important;
  }

  .bdt-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}

/* ========================================================================
   Component: Padding
 ========================================================================== */
.bdt-padding {
  padding: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-padding {
    padding: 40px;
  }
}

/* Small
 ========================================================================== */
.bdt-padding-small {
  padding: 15px;
}

/* Large
 ========================================================================== */
.bdt-padding-large {
  padding: 40px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-padding-large {
    padding: 70px;
  }
}

/* Remove
 ========================================================================== */
.bdt-padding-remove {
  padding: 0 !important;
}

.bdt-padding-remove-top {
  padding-top: 0 !important;
}

.bdt-padding-remove-bottom {
  padding-bottom: 0 !important;
}

.bdt-padding-remove-left {
  padding-left: 0 !important;
}

.bdt-padding-remove-right {
  padding-right: 0 !important;
}

.bdt-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.bdt-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ========================================================================
   Component: Position
 ========================================================================== */
:root {
  --bdt-position-margin-offset: 0px;
}

/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow.
 */
[class*='bdt-position-top'],
[class*='bdt-position-bottom'],
[class*='bdt-position-left'],
[class*='bdt-position-right'],
[class*='bdt-position-center'] {
  position: absolute !important;
  /* 1 */
  max-width: calc(100% - (var(--bdt-position-margin-offset) * 2));
  box-sizing: border-box;
}

/*
 * Edges
 * Don't use `width: 100%` because it's wrong if the parent has padding.
 */
.bdt-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.bdt-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.bdt-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}

.bdt-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}

/*
 * Corners
 */
.bdt-position-top-left {
  top: 0;
  left: 0;
}

.bdt-position-top-right {
  top: 0;
  right: 0;
}

.bdt-position-bottom-left {
  bottom: 0;
  left: 0;
}

.bdt-position-bottom-right {
  bottom: 0;
  right: 0;
}

/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 *    Using `max-content` requires `max-width` of 100% which is set generally.
 */
.bdt-position-center {
  top: calc(50% - var(--bdt-position-margin-offset));
  left: calc(50% - var(--bdt-position-margin-offset));
  --bdt-position-translate-x: -50%;
  --bdt-position-translate-y: -50%;
  transform: translate(var(--bdt-position-translate-x), var(--bdt-position-translate-y));
  /* 1 */
  width: max-content;
}

/* Vertical */
[class*='bdt-position-center-left'],
[class*='bdt-position-center-right'] {
  top: calc(50% - var(--bdt-position-margin-offset));
  --bdt-position-translate-y: -50%;
  transform: translate(0, var(--bdt-position-translate-y));
}

.bdt-position-center-left {
  left: 0;
}

.bdt-position-center-right {
  right: 0;
}

.bdt-position-center-left-out {
  right: 100%;
  width: max-content;
}

.bdt-position-center-right-out {
  left: 100%;
  width: max-content;
}

/* Horizontal */
.bdt-position-top-center,
.bdt-position-bottom-center {
  left: calc(50% - var(--bdt-position-margin-offset));
  --bdt-position-translate-x: -50%;
  transform: translate(var(--bdt-position-translate-x), 0);
  /* 1 */
  width: max-content;
}

.bdt-position-top-center {
  top: 0;
}

.bdt-position-bottom-center {
  bottom: 0;
}

/*
 * Cover
 */
.bdt-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Margin
 ========================================================================== */
.bdt-position-small {
  margin: 15px;
  --bdt-position-margin-offset: 15px;
}

.bdt-position-medium {
  margin: 30px;
  --bdt-position-margin-offset: 30px;
}

.bdt-position-large {
  margin: 30px;
  --bdt-position-margin-offset: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-position-large {
    margin: 50px;
    --bdt-position-margin-offset: 50px;
  }
}

/* Schemes
 ========================================================================== */
.bdt-position-relative {
  position: relative !important;
}

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

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

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

/* Layer
 ========================================================================== */
.bdt-position-z-index {
  z-index: 1;
}

.bdt-position-z-index-negative {
  z-index: -1;
}

/* ========================================================================
   Component: Transition
 ========================================================================== */
/* Transitions
 ========================================================================== */
/*
 * The toggle is triggered on touch devices by two methods:
 * 1. Using `:focus` and tabindex
 * 2. Using `:hover` and a `touchstart` event listener registered on the document
 *    (Doesn't work on Surface touch devices)
 */
:where(.bdt-transition-fade),
:where([class*='bdt-transition-scale']),
:where([class*='bdt-transition-slide']) {
  --bdt-position-translate-x: 0;
  --bdt-position-translate-y: 0;
}

.bdt-transition-fade,
[class*='bdt-transition-scale'],
[class*='bdt-transition-slide'] {
  --bdt-translate-x: 0;
  --bdt-translate-y: 0;
  --bdt-scale-x: 1;
  --bdt-scale-y: 1;
  transform: translate(var(--bdt-position-translate-x), var(--bdt-position-translate-y)) translate(var(--bdt-translate-x), var(--bdt-translate-y)) scale(var(--bdt-scale-x), var(--bdt-scale-y));
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}

/*
 * Fade
 */
.bdt-transition-toggle:hover .bdt-transition-fade,
.bdt-transition-toggle:focus .bdt-transition-fade,
.bdt-transition-toggle .bdt-transition-fade:focus-within,
.bdt-transition-active.bdt-active .bdt-transition-fade {
  opacity: 1;
}

/*
 * Scale
 * 1. Make image rendering the same during the transition as before and after. Prefixed because of Safari.
 */
/* 1 */
[class*='bdt-transition-scale'] {
  -webkit-backface-visibility: hidden;
}

.bdt-transition-scale-up {
  --bdt-scale-x: 1;
  --bdt-scale-y: 1;
}

.bdt-transition-scale-down {
  --bdt-scale-x: 1.03;
  --bdt-scale-y: 1.03;
}

/* Show */
.bdt-transition-toggle:hover .bdt-transition-scale-up,
.bdt-transition-toggle:focus .bdt-transition-scale-up,
.bdt-transition-toggle .bdt-transition-scale-up:focus-within,
.bdt-transition-active.bdt-active .bdt-transition-scale-up {
  --bdt-scale-x: 1.03;
  --bdt-scale-y: 1.03;
  opacity: 1;
}

.bdt-transition-toggle:hover .bdt-transition-scale-down,
.bdt-transition-toggle:focus .bdt-transition-scale-down,
.bdt-transition-toggle .bdt-transition-scale-down:focus-within,
.bdt-transition-active.bdt-active .bdt-transition-scale-down {
  --bdt-scale-x: 1;
  --bdt-scale-y: 1;
  opacity: 1;
}

/*
 * Slide
 */
.bdt-transition-slide-top {
  --bdt-translate-y: -100%;
}

.bdt-transition-slide-bottom {
  --bdt-translate-y: 100%;
}

.bdt-transition-slide-left {
  --bdt-translate-x: -100%;
}

.bdt-transition-slide-right {
  --bdt-translate-x: 100%;
}

.bdt-transition-slide-top-small {
  --bdt-translate-y: calc(-1 * 10px);
}

.bdt-transition-slide-bottom-small {
  --bdt-translate-y: 10px;
}

.bdt-transition-slide-left-small {
  --bdt-translate-x: calc(-1 * 10px);
}

.bdt-transition-slide-right-small {
  --bdt-translate-x: 10px;
}

.bdt-transition-slide-top-medium {
  --bdt-translate-y: calc(-1 * 50px);
}

.bdt-transition-slide-bottom-medium {
  --bdt-translate-y: 50px;
}

.bdt-transition-slide-left-medium {
  --bdt-translate-x: calc(-1 * 50px);
}

.bdt-transition-slide-right-medium {
  --bdt-translate-x: 50px;
}

/* Show */
.bdt-transition-toggle:hover [class*='bdt-transition-slide'],
.bdt-transition-toggle:focus [class*='bdt-transition-slide'],
.bdt-transition-toggle [class*='bdt-transition-slide']:focus-within,
.bdt-transition-active.bdt-active [class*='bdt-transition-slide'] {
  --bdt-translate-x: 0;
  --bdt-translate-y: 0;
  opacity: 1;
}

/* Opacity modifier
 ========================================================================== */
.bdt-transition-opaque {
  opacity: 1;
}

/* Duration modifiers
 ========================================================================== */
.bdt-transition-slow {
  transition-duration: 0.7s;
}

/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.bdt-hidden {
  display: none !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-hidden\@s {
    display: none !important;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-hidden\@m {
    display: none !important;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-hidden\@l {
    display: none !important;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-hidden\@xl {
    display: none !important;
  }
}

/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .bdt-visible\@s {
    display: none !important;
  }
}

/* Phone landscape and smaller */
@media (max-width: 959px) {
  .bdt-visible\@m {
    display: none !important;
  }
}

/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .bdt-visible\@l {
    display: none !important;
  }
}

/* Desktop and smaller */
@media (max-width: 1599px) {
  .bdt-visible\@xl {
    display: none !important;
  }
}

/* Visibility
 ========================================================================== */
.bdt-invisible {
  visibility: hidden !important;
}

/* Based on the State of the Parent Element
 ========================================================================== */
/*
 * Can't use `display: none` nor `visibility: hidden` because both are not focusable.
 * The target stays visible if any element within receives focus through keyboard.
 */
/*
 * Discard space when hidden.
 */
.bdt-visible-toggle:not(:hover):not(:focus) .bdt-hidden-hover:not(:focus-within) {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/*
 * Keep space when hidden.
 */
.bdt-visible-toggle:not(:hover):not(:focus) .bdt-invisible-hover:not(:focus-within) {
  opacity: 0 !important;
}

/* Based on Hover Capability of the Pointing Device
 ========================================================================== */
/*
 * Hover
 */
/* Hide if primary pointing device doesn't support hover, e.g. touch screens. */
@media (hover: none) {
  .bdt-hidden-touch {
    display: none !important;
  }
}

/* Hide if primary pointing device supports hover, e.g. mice. */
@media (hover) {
  .bdt-hidden-notouch {
    display: none !important;
  }
}

/* ========================================================================
   Component: Inverse
 ========================================================================== */
/*
 * Implemented class depends on the general theme color
 * `bdt-light` is for light colors on dark backgrounds
 * `bdt-dark` is or dark colors on light backgrounds
 */
/* ========================================================================
   Component: Print
 ========================================================================== */
@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;
  }
}

.bdt-modal-full {
  overflow-x: hidden;
}

.hook-modal-dialog {
  border-radius: 3px;
}

.hook-modal-title {
  font-weight: 400;
}

.bdt-cover {
  max-width: none !important;
}

.bdt-drop .bdt-card p:empty {
  display: none;
}

.bdt-drop .bdt-card p:not(:first-child) {
  margin-top: 15px;
  margin-bottom: 0;
}

.bdt-tooltip {
  padding: 7px 12px;
  background: #464646;
  border-radius: 3px;
  font-size: 13px;
}

.elementor-align-justify .bdt-button {
  width: 100%;
}

.bdt-notification .bdt-spinner {
  vertical-align: middle;
}

.bdt-notification .bdt-spinner svg {
  width: 20px;
  height: auto;
}

.bdt-notification .bdt-icon {
  margin-right: 10px;
  vertical-align: middle;
  line-height: normal;
}

.bdt-notification .bdt-close {
  top: 50%;
  transform: translateY(-50%);
}

.bdt-notification .bdt-notification-message {
  padding: 20px 40px 20px 20px;
  background: #ffffff;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.bdt-slideshow .bdt-slideshow-items {
  padding: 0;
  margin: 0;
}

.bdt-slideshow .bdt-slideshow-items[bdt-height-viewport] .bdt-slideshow-item img {
  width: auto !important;
  height: auto;
}

.bdt-modal-full {
  background-color: #fff;
}

.hook-button {
  border-radius: 3px;
}

.hook-form {
  border-radius: 3px;
}

.bdt-sticky-wrapper {
  width: 100%;
}

.bdt-heading-title:before,
.bdt-heading-tag:before,
.bdt-slide-title:before {
  content: none;
}

.bdt-tippy-tooltip {
  outline: none;
}

[class*="elementor-widget-bdt-"] a:hover {
  text-decoration: none;
}

@media (max-width: 1200px) {

  .bdt-user-login a.elementor-button .elementor-button-icon,
  .bdt-user-register a.elementor-button .elementor-button-icon {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.bdt-particle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bdt-particle-container canvas {
  display: block;
  vertical-align: bottom;
}

.bdt-particle-container .particles-js-canvas-el {
  position: absolute;
  top: 0;
  transform: scale(1);
  opacity: 1;
  animation: appear 1.4s 1;
  animation-fill-mode: forwards;
}

@-webkit-keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

[class*=" elementor-widget-bdt-"] svg.e-font-icon-svg {
  height: 1em;
  width: 1em;
}

[class*=" elementor-widget-bdt-"] svg.e-font-icon-svg use {
  fill: currentColor;
}

.elementor-control.elementor-control-type-heading {
  margin-top: -1px;
}

.elementor-lightbox .dialog-close-button .eicon-close {
  transition: transform 0.3s;
}

.elementor-lightbox .dialog-close-button:hover .eicon-close {
  transform: rotate(90deg);
}

.elementor-lightbox .elementor-swiper-button-next .eicon-chevron-right,
.elementor-lightbox .elementor-swiper-button-prev .eicon-chevron-left {
  transition: transform 0.3s;
}

.elementor-lightbox .elementor-swiper-button-prev:hover .eicon-chevron-left {
  transform: scale(1.2);
}

.elementor-lightbox .elementor-swiper-button-next:hover .eicon-chevron-right {
  transform: scale(1.2);
}

.bdt-slider .swiper-pagination,
.bdt-dots-container .swiper-pagination,
.bdt-arrows-dots-container .swiper-pagination {
  position: relative;
  display: flex;
  align-items: var(--ep-swiper-dots-align, center);
  justify-content: center;
}

.bdt-slider .swiper-pagination .swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination .swiper-pagination-bullet,
.bdt-arrows-dots-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  outline: none;
  transition: all .3s ease;
}

.bdt-slider .swiper-pagination .swiper-pagination-bullet+.swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination .swiper-pagination-bullet+.swiper-pagination-bullet,
.bdt-arrows-dots-container .swiper-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: var(--ep-swiper-dots-space-between, 5px);
  outline: none;
}

.bdt-slider .swiper-pagination.swiper-pagination-fraction,
.bdt-dots-container .swiper-pagination.swiper-pagination-fraction,
.bdt-arrows-dots-container .swiper-pagination.swiper-pagination-fraction {
  bottom: auto;
  z-index: 1;
}

.bdt-slider .swiper-pagination-bullets,
.bdt-dots-container .swiper-pagination-bullets,
.bdt-arrows-dots-container .swiper-pagination-bullets {
  min-height: var(--ep-swiper-dots-active-height, 10px);
}

.bdt-slider .swiper-pagination-bullets .swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination-bullets .swiper-pagination-bullet,
.bdt-arrows-dots-container .swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
}

.bdt-slider .swiper-pagination-bullets .swiper-pagination-bullet:after,
.bdt-dots-container .swiper-pagination-bullets .swiper-pagination-bullet:after,
.bdt-arrows-dots-container .swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: '';
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

[class*='bdt-arrows-align-top'] .bdt-arrows-container {
  transform: translateY(-40px);
}

[class*='bdt-arrows-align-bottom'] .bdt-arrows-container {
  transform: translateY(40px);
}

[class*='bdt-dots-align-top'] .bdt-dots-container {
  transform: translateY(-30px);
}

[class*='bdt-dots-align-bottom'] .bdt-dots-container {
  transform: translateY(30px);
}

[class*='bdt-arrows-dots-align-top'] .bdt-arrows-dots-container {
  transform: translateY(-40px);
}

[class*='bdt-arrows-dots-align-bottom'] .bdt-arrows-dots-container {
  transform: translateY(40px);
}

.bdt-arrows-align-center .bdt-position-center,
.bdt-arrows-dots-align-center .bdt-position-center {
  width: 100%;
}

.bdt-arrows-align-center .bdt-navigation-prev,
.bdt-arrows-dots-align-center .bdt-navigation-prev {
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}

.bdt-arrows-align-center .bdt-navigation-next,
.bdt-arrows-dots-align-center .bdt-navigation-next {
  right: 0;
  position: absolute;
  transform: translateY(-50%);
}

.rtl .bdt-arrows-align-center .bdt-navigation-prev,
.rtl .bdt-arrows-dots-align-center .bdt-navigation-prev {
  right: 0;
  left: inherit;
}

.rtl .bdt-arrows-align-center .bdt-navigation-next,
.rtl .bdt-arrows-dots-align-center .bdt-navigation-next {
  left: 0;
  right: inherit;
}

.bdt-arrows-dots-align-center .bdt-dots-container .swiper-pagination,
.bdt-arrows-dots-align-center .bdt-arrows-dots-container .swiper-pagination {
  position: absolute;
  width: 100% !important;
}

.bdt-navigation-type-progress .swiper-pagination-progress {
  transform: translateY(15px);
  height: 5px;
  width: 100%;
}

.elementor-section.bdt-sticky {
  transition: background-color 250ms ease-out, padding 300ms ease-out;
}

.elementor-section.bdt-motion-effect-wrapper {
  overflow: var(--ep-effect-section-overflow, visible) !important;
}

.elementor-column.bdt-motion-effect-wrapper {
  overflow: var(--ep-effect-column-overflow, visible) !important;
}

.bdt-motion-effect-yes {
  transition: transform var(--ep-effect-transition-duration, 300ms) var(--ep-effect-transition-easing, ease-out);
}

.elementor-widget.bdt-motion-effect-yes {
  transform: translate(var(--ep-effect-trans-x-normal, 0), var(--ep-effect-trans-y-normal, 0)) rotateX(var(--ep-effect-rotate-x-normal, 0)) rotateY(var(--ep-effect-rotate-y-normal, 0)) rotateZ(var(--ep-effect-rotate-z-normal, 0)) scaleX(var(--ep-effect-scale-x-normal, 1)) scaleY(var(--ep-effect-scale-y-normal, 1)) skewX(var(--ep-effect-skew-x-normal, 0)) skewY(var(--ep-effect-skew-y-normal, 0));
}

.elementor-widget.bdt-motion-effect-yes:hover,
.bdt-motion-effect-wrapper:hover .elementor-widget.bdt-motion-effect-yes {
  transform: translate(var(--ep-effect-trans-x-hover, var(--ep-effect-trans-x-normal, 0)), var(--ep-effect-trans-y-hover, var(--ep-effect-trans-y-normal, 0))) rotateX(var(--ep-effect-rotate-x-hover, var(--ep-effect-rotate-x-normal, 0))) rotateY(var(--ep-effect-rotate-y-hover, var(--ep-effect-rotate-y-normal, 0))) rotateZ(var(--ep-effect-rotate-z-hover, var(--ep-effect-rotate-z-normal, 0))) scaleX(var(--ep-effect-scale-x-hover, var(--ep-effect-scale-x-normal, 1))) scaleY(var(--ep-effect-scale-y-hover, var(--ep-effect-scale-y-normal, 1))) skewX(var(--ep-effect-skew-x-hover, var(--ep-effect-skew-x-normal, 0))) skewY(var(--ep-effect-skew-y-hover, var(--ep-effect-skew-y-normal, 0)));
  transition-delay: var(--ep-effect-transition-delay, 0ms);
}

.elementor-column.bdt-backdrop-filter-yes>.elementor-element-populated {
  -webkit-backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
  backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
}

.elementor-widget.bdt-backdrop-filter-yes>.elementor-widget-container {
  -webkit-backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
  backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
}

.bdt-element-align-wrapper {
  flex-wrap: wrap;
  display: flex;
  position: relative;
}

.bdt-element-align-center .bdt-element-align-wrapper {
  justify-content: center;
}

.bdt-element-align-stretch .bdt-element-align-wrapper .bdt-element {
  flex-basis: 100%;
}

.bdt-element-align-start .bdt-element-align-wrapper {
  justify-content: flex-start;
}

.bdt-element-align-end .bdt-element-align-wrapper {
  justify-content: flex-end;
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic,
.bdt-slider .swiper-pagination-bullets-dynamic,
.bdt-dots-container .swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  width: 100% !important;
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

@media screen and (max-width: 1024px) {
  .bdt-element-align-tablet-center .bdt-element-align-wrapper {
    justify-content: center;
  }

  .bdt-element-align-tablet-stretch .bdt-element-align-wrapper .bdt-element {
    flex-basis: 100%;
  }

  .bdt-element-align-tablet-start .bdt-element-align-wrapper {
    justify-content: flex-start;
  }

  .bdt-element-align-tablet-end .bdt-element-align-wrapper {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .bdt-element-align-mobile-center .bdt-element-align-wrapper {
    justify-content: center;
  }

  .bdt-element-align-mobile-stretch .bdt-element-align-wrapper .bdt-element {
    flex-basis: 100%;
  }

  .bdt-element-align-mobile-start .bdt-element-align-wrapper {
    justify-content: flex-start;
  }

  .bdt-element-align-mobile-end .bdt-element-align-wrapper {
    justify-content: flex-end;
  }
}

/* Common Less */
.bdt-advanced-divider>img {
  display: none;
}

.bdt-reveal-effects-yes .elementor-widget-container>*:not([class*="block-revealer"]) {
  opacity: 0;
}

.bdt-ep-button {
  font-size: 14px;
  color: #666;
  font-weight: 700;
}

.bdt-ep-button.bdt-ep-button-size-xs {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 400;
}

.bdt-ep-button.bdt-ep-button-size-sm {
  padding: 10px 20px;
  font-size: 12px;
}

.bdt-ep-button.bdt-ep-button-size-md {
  padding: 15px 30px;
}

.bdt-ep-button.bdt-ep-button-size-lg {
  padding: 20px 30px;
  font-size: 16px;
}

.bdt-ep-button.bdt-ep-button-size-xl {
  padding: 25px 30px;
  font-size: 18px;
}

.elementor-align-justify .bdt-ep-button {
  width: 100%;
}

@media (max-width: 767px) {
  .elementor-mobile-align-justify .bdt-ep-button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .elementor-tablet-align-justify .bdt-ep-button {
    width: 100%;
  }
}

.bdt-ep-shadow-mode-yes .bdt-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-custom-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-wc-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-testimonial-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-event-carousel-skin-fable .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-event-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-portfolio-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-panel-slider .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-tutor-lms-course-carousel .swiper-container {
  padding: 10px;
  margin: 0 -10px;
}

.bdt-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-custom-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-wc-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-testimonial-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-event-carousel-skin-fable .swiper-container:not(.swiper-container-horizontal),
.bdt-event-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-portfolio-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-panel-slider .swiper-container:not(.swiper-container-horizontal),
.bdt-tutor-lms-course-carousel .swiper-container:not(.swiper-container-horizontal) {
  opacity: 0;
}

.bdt-carousel .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-custom-carousel .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-wc-carousel .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-testimonial-carousel .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-event-carousel-skin-fable .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-event-carousel .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-portfolio-carousel .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-panel-slider .swiper-container:not(.swiper-container-horizontal) div>div,
.bdt-tutor-lms-course-carousel .swiper-container:not(.swiper-container-horizontal) div>div {
  max-width: 350px;
}

.bdt-carousel .swiper-container.swiper-container-horizontal,
.bdt-custom-carousel .swiper-container.swiper-container-horizontal,
.bdt-wc-carousel .swiper-container.swiper-container-horizontal,
.bdt-testimonial-carousel .swiper-container.swiper-container-horizontal,
.bdt-event-carousel-skin-fable .swiper-container.swiper-container-horizontal,
.bdt-event-carousel .swiper-container.swiper-container-horizontal,
.bdt-portfolio-carousel .swiper-container.swiper-container-horizontal,
.bdt-panel-slider .swiper-container.swiper-container-horizontal,
.bdt-tutor-lms-course-carousel .swiper-container.swiper-container-horizontal {
  opacity: 1;
  transition: opacity 400ms ease-out;
}

.bdt-show-hidden-item--yes .swiper-container {
  overflow: visible;
}

/* swiper for 3rd party style */
[class*="elementor-widget-bdt-"] .swiper-pagination-fraction,
[class*="elementor-widget-bdt-"] .swiper-pagination-custom,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal .swiper-pagination-bullets,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal+.swiper-pagination-bullets {
  bottom: -50px;
  width: 100%;
}

[class*="elementor-widget-bdt-"] .swiper-pagination-fraction .swiper-pagination-bullet,
[class*="elementor-widget-bdt-"] .swiper-pagination-custom .swiper-pagination-bullet,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal+.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.bdt-navigation-type-arrows-fraction .swiper-pagination {
  position: initial;
}

.bdt-arrows-fraction-container .bdt-navigation-prev,
.bdt-arrows-dots-container .bdt-navigation-prev,
.bdt-arrows-container .bdt-navigation-prev,
.bdt-arrows-fraction-container .bdt-navigation-next,
.bdt-arrows-dots-container .bdt-navigation-next,
.bdt-arrows-container .bdt-navigation-next {
  transition: all .3s ease;
}

.bdt-arrows-fraction-container .bdt-navigation-prev i,
.bdt-arrows-dots-container .bdt-navigation-prev i,
.bdt-arrows-container .bdt-navigation-prev i,
.bdt-arrows-fraction-container .bdt-navigation-next i,
.bdt-arrows-dots-container .bdt-navigation-next i,
.bdt-arrows-container .bdt-navigation-next i {
  display: inline-flex;
  transition: all .3s ease;
}

.rtl .bdt-arrows-container,
.rtl .bdt-arrows-fraction-container,
.rtl .bdt-arrows-dots-container {
  direction: rtl;
}

.rtl .bdt-arrows-container .swiper-pagination,
.rtl .bdt-arrows-fraction-container .swiper-pagination,
.rtl .bdt-arrows-dots-container .swiper-pagination {
  direction: ltr;
}

.bdt-pagination-dot-dot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bdt-pagination-dot-dot span {
  line-height: 1px;
  height: 13px;
  color: #bbb !important;
}

.elementor-widget-container .bdt-subnav {
  margin-bottom: 10px;
  margin-top: 0;
  color: #999;
}

.elementor-widget-container .bdt-subnav * {
  font-size: 13px;
  font-weight: 400;
}

.elementor-widget-container .bdt-subnav span {
  color: inherit;
}

.elementor-widget-container .bdt-subnav span span {
  display: inline-block;
}

.elementor-widget-container .bdt-subnav span a {
  display: inline-block;
  transition: color 0.5s cubic-bezier(0.4, 0.7, 0.04, 0.88);
}

.elementor-widget-container .bdt-subnav span a:hover {
  color: #666;
}

.elementor-widget-container .bdt-subnav span a+a {
  margin-right: 5px;
  color: #999;
}

.elementor-widget-container .bdt-subnav span:after {
  content: '';
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #adb5bd;
  margin-right: -10px;
  margin-left: 10px;
  display: inline-block;
  line-height: 4px;
  vertical-align: middle;
}

.elementor-widget-container .bdt-subnav span:last-child::after {
  content: none;
}

/* Button icon align */
.bdt-button-icon-align-left {
  float: left;
}

.bdt-button-icon-align-right {
  float: right;
}

.bdt-flex-align-left {
  order: -1;
}

.bdt-flex-align-right {
  order: 99;
}

/* Custom grid */
.bdt-ep-grid {
  display: flex;
  flex-wrap: wrap;
}

.bdt-ep-grid .bdt-ep-grid-item {
  word-break: break-word;
}

.bdt-ep-grid-1 .bdt-ep-grid-item {
  width: 100%;
}

.bdt-ep-grid-2 .bdt-ep-grid-item {
  width: 50%;
}

.bdt-ep-grid-3 .bdt-ep-grid-item {
  width: 33.33333%;
}

.bdt-ep-grid-4 .bdt-ep-grid-item {
  width: 25%;
}

.bdt-ep-grid-5 .bdt-ep-grid-item {
  width: 20%;
}

.bdt-ep-grid-6 .bdt-ep-grid-item {
  width: 16.66667%;
}

.bdt-ep-grid-7 .bdt-ep-grid-item {
  width: 14.28571%;
}

.bdt-ep-grid-8 .bdt-ep-grid-item {
  width: 12.5%;
}

.bdt-ep-grid-9 .bdt-ep-grid-item {
  width: 11.11111%;
}

.bdt-ep-grid-10 .bdt-ep-grid-item {
  width: 10%;
}

.bdt-ep-grid-11 .bdt-ep-grid-item {
  width: 9.09091%;
}

.bdt-ep-grid-12 .bdt-ep-grid-item {
  width: 8.33333%;
}

@media (max-width: 1024px) {
  .bdt-ep-grid-tablet-1 .bdt-ep-grid-item {
    width: 100%;
  }

  .bdt-ep-grid-tablet-2 .bdt-ep-grid-item {
    width: 50%;
  }

  .bdt-ep-grid-tablet-3 .bdt-ep-grid-item {
    width: 33.33333%;
  }

  .bdt-ep-grid-tablet-4 .bdt-ep-grid-item {
    width: 25%;
  }

  .bdt-ep-grid-tablet-5 .bdt-ep-grid-item {
    width: 20%;
  }

  .bdt-ep-grid-tablet-6 .bdt-ep-grid-item {
    width: 16.66667%;
  }

  .bdt-ep-grid-tablet-7 .bdt-ep-grid-item {
    width: 14.28571%;
  }

  .bdt-ep-grid-tablet-8 .bdt-ep-grid-item {
    width: 12.5%;
  }

  .bdt-ep-grid-tablet-9 .bdt-ep-grid-item {
    width: 11.11111%;
  }

  .bdt-ep-grid-tablet-10 .bdt-ep-grid-item {
    width: 10%;
  }

  .bdt-ep-grid-tablet-11 .bdt-ep-grid-item {
    width: 9.09091%;
  }

  .bdt-ep-grid-tablet-12 .bdt-ep-grid-item {
    width: 8.33333%;
  }
}

@media (max-width: 767px) {
  .bdt-ep-grid-mobile-1 .bdt-ep-grid-item {
    width: 100%;
  }

  .bdt-ep-grid-mobile-2 .bdt-ep-grid-item {
    width: 50%;
  }

  .bdt-ep-grid-mobile-3 .bdt-ep-grid-item {
    width: 33.33333%;
  }

  .bdt-ep-grid-mobile-4 .bdt-ep-grid-item {
    width: 25%;
  }

  .bdt-ep-grid-mobile-5 .bdt-ep-grid-item {
    width: 20%;
  }

  .bdt-ep-grid-mobile-6 .bdt-ep-grid-item {
    width: 16.66667%;
  }

  .bdt-ep-grid-mobile-7 .bdt-ep-grid-item {
    width: 14.28571%;
  }

  .bdt-ep-grid-mobile-8 .bdt-ep-grid-item {
    width: 12.5%;
  }

  .bdt-ep-grid-mobile-9 .bdt-ep-grid-item {
    width: 11.11111%;
  }

  .bdt-ep-grid-mobile-10 .bdt-ep-grid-item {
    width: 10%;
  }

  .bdt-ep-grid-mobile-11 .bdt-ep-grid-item {
    width: 9.09091%;
  }

  .bdt-ep-grid-mobile-12 .bdt-ep-grid-item {
    width: 8.33333%;
  }
}

.bdt-masonry-grid .bdt-gallery-item {
  float: left;
  height: auto;
}

.bdt-masonry-grid .bdt-gallery-item .bdt-gallery-thumbnail img {
  height: auto;
}

/* Swiper */
[class*="elementor-widget-bdt-"] .swiper-container .elementor-lightbox-content-source {
  display: none;
}

[class*="elementor-widget-bdt-"] .swiper-slide {
  border-style: solid;
  border-width: 0;
  overflow: hidden;
}

[class*="elementor-widget-bdt-"] .swiper-container-horizontal+.swiper-pagination-progressbar,
[class*="elementor-widget-bdt-"] .swiper-container-vertical+.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
}

[class*="elementor-widget-bdt-"] .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

[class*="elementor-widget-bdt-"] .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

/* Animation Delay */
.bdt-animated-slow>span {
  animation-duration: 2s;
}

.bdt-animated-fast>span {
  animation-duration: .75s;
}

/* Scrollnav */
.bdt-scrollnav-fixed-yes .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.bdt-scrollnav-fixed-yes .bdt-scrollnav {
  position: fixed !important;
}

.bdt-scrollnav-fixed-yes .bdt-scrollnav [class*="bdt-navbar"] {
  margin: 30px;
}

.bdt-comment-container .fb_iframe_widget,
.bdt-comment-container .fb_iframe_widget span,
.bdt-comment-container .fb_iframe_widget iframe {
  width: 100% !important;
}

.bdt-ep-grid-filters-wrapper {
  margin-bottom: 30px;
}

.bdt-ep-grid-filters-wrapper ul li {
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters {
  padding: 0;
  margin: 0;
}

.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter {
  display: inline-block;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter.bdt-active {
  border-bottom-color: #444;
}

.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter:not(:first-child) {
  margin-left: calc(15px);
}

.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter:not(:last-child) {
  margin-right: calc(15px);
}

.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter .bdt-dropdown ul li.bdt-ep-grid-filter {
  margin: 0;
}

@media (min-width: 1024px) {
  .bdt-ep-grid-filter-container {
    transition: height 0.5s ease-out;
  }
}

.bdt-document-viewer iframe {
  border: none;
}

iframe[data-src]:not(.lazy-loaded),
.bdt-lazy-loading {
  background: rgba(152, 152, 152, 0.07);
  background-image: url('https://level.uicore.co/crypto-trading/wp-content/plugins/bdthemes-element-pack/assets/css/../images/loading.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.bdt-dummy-loader {
  height: 250px;
  background: rgba(152, 152, 152, 0.05);
  background-repeat: no-repeat;
  background-position: center;
  animation-name: dummy-loader-animation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}

/* Attention Button */
@keyframes dummy-loader-animation {
  0% {
    background: rgba(152, 152, 152, 0.05);
  }

  50% {
    background: rgba(152, 152, 152, 0.2);
  }

  100% {
    background: rgba(152, 152, 152, 0.05);
  }
}

.bdt-modal-link {
  cursor: pointer;
}

.bdt-modal-link * {
  cursor: pointer;
}

/* Shado Mode */
.bdt-ep-shadow-mode-yes .elementor-widget-container:before,
.bdt-ep-shadow-mode-yes .elementor-widget-container:after {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.bdt-ep-shadow-mode-yes .elementor-widget-container:before {
  background: linear-gradient(to right, #ffffff 5%, rgba(255, 255, 255, 0) 100%);
  left: -10px;
}

.bdt-ep-shadow-mode-yes .elementor-widget-container:after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 95%);
  right: -10px;
}

@media (max-width: 767px) {

  .bdt-ep-shadow-mode-yes .elementor-widget-container:before,
  .bdt-ep-shadow-mode-yes .elementor-widget-container:after {
    content: none;
  }
}

/* navbar Style */
.bdt-navbar-nav>li>a {
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
  position: relative;
}

.bdt-navbar-style-1 .bdt-navbar-nav>li>a:before {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-color: transparent;
  transition: 0.1s cubic-bezier(0, 0.75, 0.43, 1);
  transition-property: background-color, opacity, transform;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 15px;
  opacity: 1;
  transform: scale3d(0, 1, 1);
}

.bdt-navbar-style-1 .bdt-navbar-nav>li.bdt-active>a:before {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}

.bdt-navbar-style-1 .bdt-navbar-nav>li:hover>a:before {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}

.bdt-navbar-style-2 .bdt-navbar-nav>li>a:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-color: transparent;
  transition: 0.1s cubic-bezier(0, 0.75, 0.43, 1);
  transition-property: background-color, opacity, transform;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 15px;
  opacity: 1;
  transform: scale3d(0, 1, 1);
}

.bdt-navbar-style-2 .bdt-navbar-nav>li.bdt-active>a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}

.bdt-navbar-style-2 .bdt-navbar-nav>li:hover>a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}

.bdt-navbar-style-3 .bdt-navbar-nav>li>a:after {
  content: '';
  display: block;
  position: absolute;
  height: 8px;
  background-color: transparent;
  transition: 0.25s cubic-bezier(0, 0.75, 0.43, 1);
  transition-property: background-color, opacity, transform;
  left: 0;
  right: 0;
  margin: 0 10px;
  opacity: 1;
  transform: scale3d(0, 1, 1);
  z-index: -1;
  transform-origin: left;
}

.bdt-navbar-style-3 .bdt-navbar-nav>li.bdt-active>a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.bdt-navbar-style-3 .bdt-navbar-nav>li:hover>a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}

/* Easy Digital Download */
.elementor-widget-bdt-easy-digital-download .edd_downloads_list .edd_download {
  margin: 0;
  padding: 0;
}

/* Scroll to top */
@keyframes totopscroller {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.bdt-ep-scroll-to-section {
  margin-bottom: 50px;
  z-index: 2;
}

.bdt-ep-scroll-to-section a {
  animation: totopscroller 1.5s linear infinite alternate;
  padding: 12px 8px;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 2px solid #fff;
  border-radius: 5000px;
  color: #eee;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}

.bdt-ep-scroll-to-section a:hover {
  background: #fff;
  color: #282828;
  border: 2px solid #fff;
}

/* Attention Button */
@keyframes attentionAnimation {
  0% {
    left: 0;
  }

  1% {
    left: -3px;
  }

  2% {
    left: 5px;
  }

  3% {
    left: -8px;
  }

  4% {
    left: 8px;
  }

  5% {
    left: -5px;
  }

  6% {
    left: 3px;
  }

  7% {
    left: 0;
  }
}

.bdt-ep-attention-button {
  animation-name: attentionAnimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  position: relative;
}

/* tilt shadow */
.elementor-widget-wrap [data-tilt] {
  transition: box-shadow 400ms cubic-bezier(0.25, 0.9, 0.58, 1);
}

.elementor-widget-wrap [data-tilt]:hover {
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.45), 0 50px 90px 0 rgba(51, 51, 51, 0.15);
}

.bdt-post-grid-tab dl {
  margin: 0;
  opacity: 0;
  transition: opacity 450ms cubic-bezier(0.3, 0.91, 0.58, 1);
}

.bdt-post-grid-tab .gridtab[class*="gridtab--"] {
  opacity: 1;
}

.bdt-hide-recaptcha-badge-yes .grecaptcha-badge {
  display: none;
}

.elementor-widget-container .bdt-rating .bdt-rating-item {
  font-size: 14px;
  margin-right: 2px;
}

/* Lightbox */
.elementor-button svg {
  width: 1.2em;
}

.ep-pagination .bdt-pagination {
  margin: 20px 0;
}

.ep-pagination .bdt-pagination li {
  list-style-type: none;
  padding-left: 5px;
}

.ep-pagination .bdt-pagination li:hover a,
.ep-pagination .bdt-pagination li.bdt-active a {
  color: #fff;
  background: #3FB8FD;
}

.ep-pagination .bdt-pagination li a {
  font-size: 12px;
  padding: 5px 25px;
  background: #ffffff;
  color: #3FB8FD;
  border-radius: 25px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.ep-pagination .bdt-pagination li:nth-child(1) {
  padding-left: 0 !important;
}

.bdt-honeycombs:not(.honeycombs-loaded) {
  opacity: 0;
}

.bdt-background-overlay-yes>.elementor-widget-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: calc(100% - var(--ep-overlay-margin-right, 0px) - var(--ep-overlay-margin-left, 0px));
  height: calc(100% - var(--ep-overlay-margin-top, 0px) - var(--ep-overlay-margin-bottom, 0px));
  margin: var(--ep-overlay-margin-top, 0px) var(--ep-overlay-margin-right, 0px) var(--ep-overlay-margin-bottom, 0px) var(--ep-overlay-margin-left, 0px);
  pointer-events: none;
}

.bdt-background-overlay-yes.bdt-bg-o-t-zoom>.elementor-widget-container:before {
  transform: scale(0);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}

.bdt-background-overlay-yes.bdt-bg-o-t-zoom>.elementor-widget-container:hover:before {
  transform: scale(1);
  opacity: 1;
}

.bdt-background-overlay-yes.bdt-bg-o-t-rotate>.elementor-widget-container:before {
  transform: scale(0) rotate(-30deg);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}

.bdt-background-overlay-yes.bdt-bg-o-t-rotate>.elementor-widget-container:hover:before {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.bdt-mini-cart-button-icon svg {
  width: 18px;
}

.bdt-svg-image img {
  width: auto;
}

.bdt-portfolio-gallery.bdt-portfolio-gallery-skin-janes .bdt-gallery-item .bdt-portfolio-inner .bdt-portfolio-desc {
  transform: rotateY(-90deg);
}

.epsc-clipboard .epsc-copy-btn {
  opacity: 0;
  cursor: pointer;
}

.epsc-clipboard:hover .epsc-copy-btn {
  opacity: 1;
}

.epsc-rating .epsc-rating-item {
  color: #e7e7e7;
}

.epsc-rating .epsc-rating-item i {
  display: inline-flex;
  font-family: 'element-pack' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.epsc-rating .epsc-rating-item i:before {
  content: '\ece0';
}

.epsc-rating[class*=" epsc-rating-0"] .epsc-rating-item:nth-child(1) i:after,
.epsc-rating[class*=" epsc-rating-1"] .epsc-rating-item:nth-child(-n+1) i:after,
.epsc-rating[class*=" epsc-rating-2"] .epsc-rating-item:nth-child(-n+2) i:after,
.epsc-rating[class*=" epsc-rating-3"] .epsc-rating-item:nth-child(-n+3) i:after,
.epsc-rating[class*=" epsc-rating-4"] .epsc-rating-item:nth-child(-n+4) i:after,
.epsc-rating[class*=" epsc-rating-5"] .epsc-rating-item:nth-child(-n+5) i:after {
  position: absolute;
  content: '\ece2';
  color: #FFCC00;
}

.epsc-rating.epsc-rating-0-5 .epsc-rating-item:nth-child(1) i:after,
.epsc-rating.epsc-rating-1-5 .epsc-rating-item:nth-child(2) i:after,
.epsc-rating.epsc-rating-2-5 .epsc-rating-item:nth-child(3) i:after,
.epsc-rating.epsc-rating-3-5 .epsc-rating-item:nth-child(4) i:after,
.epsc-rating.epsc-rating-4-5 .epsc-rating-item:nth-child(5) i:after {
  content: '\ece1';
  color: #FFCC00;
  position: absolute;
}

.bdt-floating-effect-infinite--yes .elementor-widget-container>* {
  animation: fe-infinite-rotate var(--bdt-floating-effect-rotate-duration, 2000ms) linear infinite;
  animation-delay: var(--bdt-floating-effect-rotate-delay, 0);
}

@keyframes fe-infinite-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.tippy-box .tippy-content .bdt-title {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1em;
}

@keyframes ep-grid-layer-animation-top-to-bottom {
  from {
    min-height: 0vh;
  }

  to {
    min-height: 100vh;
  }
}

.bdt-mouse-disabled {
  cursor: not-allowed;
}

.bdt-modal .bdt-modal-dialog button.bdt-close {
  width: auto;
}

.bdt-lightbox .bdt-lightbox-button {
  transition: all .3s ease;
}

.bdt-lightbox .bdt-lightbox-button svg {
  width: 1em;
}

@charset "UTF-8";

.wp-block-archives {
  box-sizing: border-box
}

.wp-block-archives-dropdown label {
  display: block
}

.wp-block-avatar {
  box-sizing: border-box
}

.wp-block-avatar.aligncenter {
  text-align: center
}

.wp-block-audio {
  box-sizing: border-box
}

.wp-block-audio figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-block-audio audio {
  min-width: 300px;
  width: 100%
}

.wp-block-button__link {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  word-break: break-word
}

.wp-block-button__link.aligncenter {
  text-align: center
}

.wp-block-button__link.alignright {
  text-align: right
}

:where(.wp-block-button__link) {
  border-radius: 9999px;
  box-shadow: none;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  text-decoration: none
}

.wp-block-button[style*=text-decoration] .wp-block-button__link {
  text-decoration: inherit
}

.wp-block-buttons>.wp-block-button.has-custom-width {
  max-width: none
}

.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link {
  width: 100%
}

.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link {
  font-size: inherit
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-25 {
  width: calc(25% - var(--wp--style--block-gap, .5em)*.75)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, .5em)*.5)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-75 {
  width: calc(75% - var(--wp--style--block-gap, .5em)*.25)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-100 {
  flex-basis: 100%;
  width: 100%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25 {
  width: 25%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50 {
  width: 50%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75 {
  width: 75%
}

.wp-block-button.is-style-squared,
.wp-block-button__link.wp-block-button.is-style-squared {
  border-radius: 0
}

.wp-block-button.no-border-radius,
.wp-block-button__link.no-border-radius {
  border-radius: 0 !important
}

.wp-block-button .wp-block-button__link.is-style-outline,
.wp-block-button.is-style-outline>.wp-block-button__link {
  border: 2px solid;
  padding: .667em 1.333em
}

.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color),
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color) {
  color: currentColor
}

.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background),
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background) {
  background-color: transparent;
  background-image: none
}

.wp-block-buttons.is-vertical {
  flex-direction: column
}

.wp-block-buttons.is-vertical>.wp-block-button:last-child {
  margin-bottom: 0
}

.wp-block-buttons>.wp-block-button {
  display: inline-block;
  margin: 0
}

.wp-block-buttons.is-content-justification-left {
  justify-content: flex-start
}

.wp-block-buttons.is-content-justification-left.is-vertical {
  align-items: flex-start
}

.wp-block-buttons.is-content-justification-center {
  justify-content: center
}

.wp-block-buttons.is-content-justification-center.is-vertical {
  align-items: center
}

.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end
}

.wp-block-buttons.is-content-justification-right.is-vertical {
  align-items: flex-end
}

.wp-block-buttons.is-content-justification-space-between {
  justify-content: space-between
}

.wp-block-buttons.aligncenter {
  text-align: center
}

.wp-block-buttons:not(.is-content-justification-space-between, .is-content-justification-right, .is-content-justification-left, .is-content-justification-center) .wp-block-button.aligncenter {
  margin-left: auto;
  margin-right: auto;
  width: 100%
}

.wp-block-buttons[style*=text-decoration] .wp-block-button,
.wp-block-buttons[style*=text-decoration] .wp-block-button__link {
  text-decoration: inherit
}

.wp-block-buttons.has-custom-font-size .wp-block-button__link {
  font-size: inherit
}

.wp-block-button.aligncenter,
.wp-block-calendar {
  text-align: center
}

.wp-block-calendar td,
.wp-block-calendar th {
  border: 1px solid;
  padding: .25em
}

.wp-block-calendar th {
  font-weight: 400
}

.wp-block-calendar caption {
  background-color: inherit
}

.wp-block-calendar table {
  border-collapse: collapse;
  width: 100%
}

.wp-block-calendar table:where(:not(.has-text-color)) {
  color: #40464d
}

.wp-block-calendar table:where(:not(.has-text-color)) td,
.wp-block-calendar table:where(:not(.has-text-color)) th {
  border-color: #ddd
}

.wp-block-calendar table.has-background th {
  background-color: inherit
}

.wp-block-calendar table.has-text-color th {
  color: inherit
}

:where(.wp-block-calendar table:not(.has-background) th) {
  background: #ddd
}

.wp-block-categories {
  box-sizing: border-box
}

.wp-block-categories.alignleft {
  margin-right: 2em
}

.wp-block-categories.alignright {
  margin-left: 2em
}

.wp-block-code {
  box-sizing: border-box
}

.wp-block-code code {
  display: block;
  font-family: inherit;
  overflow-wrap: break-word;
  white-space: pre-wrap
}

.wp-block-columns {
  align-items: normal !important;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap !important;
  margin-bottom: 1.75em
}

@media (min-width:782px) {
  .wp-block-columns {
    flex-wrap: nowrap !important
  }
}

.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end
}

@media (max-width:781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: 100% !important
  }
}

@media (min-width:782px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: 0;
    flex-grow: 1
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis] {
    flex-grow: 0
  }
}

.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap !important
}

.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column {
  flex-basis: 0;
  flex-grow: 1
}

.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis] {
  flex-grow: 0
}

:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word
}

.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end
}

.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
  width: 100%
}

.wp-block-post-comments {
  box-sizing: border-box
}

.wp-block-post-comments .alignleft {
  float: left
}

.wp-block-post-comments .alignright {
  float: right
}

.wp-block-post-comments .navigation:after {
  clear: both;
  content: "";
  display: table
}

.wp-block-post-comments .commentlist {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0
}

.wp-block-post-comments .commentlist .comment {
  min-height: 2.25em;
  padding-left: 3.25em
}

.wp-block-post-comments .commentlist .comment p {
  font-size: 1em;
  line-height: 1.8;
  margin: 1em 0
}

.wp-block-post-comments .commentlist .children {
  list-style: none;
  margin: 0;
  padding: 0
}

.wp-block-post-comments .comment-author {
  line-height: 1.5
}

.wp-block-post-comments .comment-author .avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: .75em;
  margin-top: .5em;
  width: 2.5em
}

.wp-block-post-comments .comment-author cite {
  font-style: normal
}

.wp-block-post-comments .comment-meta {
  font-size: .875em;
  line-height: 1.5
}

.wp-block-post-comments .comment-meta b {
  font-weight: 400
}

.wp-block-post-comments .comment-meta .comment-awaiting-moderation {
  display: block;
  margin-bottom: 1em;
  margin-top: 1em
}

.wp-block-post-comments .comment-body .commentmetadata {
  font-size: .875em
}

.wp-block-post-comments .comment-form-author label,
.wp-block-post-comments .comment-form-comment label,
.wp-block-post-comments .comment-form-email label,
.wp-block-post-comments .comment-form-url label {
  display: block;
  margin-bottom: .25em
}

.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments .comment-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%
}

.wp-block-post-comments .comment-form-cookies-consent {
  display: flex;
  gap: .25em
}

.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent {
  margin-top: .35em
}

.wp-block-post-comments .comment-reply-title {
  margin-bottom: 0
}

.wp-block-post-comments .comment-reply-title :where(small) {
  font-size: var(--wp--preset--font-size--medium, smaller);
  margin-left: .5em
}

.wp-block-post-comments .reply {
  font-size: .875em;
  margin-bottom: 1.4em
}

.wp-block-post-comments input:not([type=submit]),
.wp-block-post-comments textarea {
  border: 1px solid #949494;
  font-family: inherit;
  font-size: 1em
}

.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments textarea {
  padding: calc(.667em + 2px)
}

:where(.wp-block-post-comments input[type=submit]) {
  border: none
}

.wp-block-comments-pagination>.wp-block-comments-pagination-next,
.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,
.wp-block-comments-pagination>.wp-block-comments-pagination-previous {
  margin-bottom: .5em;
  margin-right: .5em
}

.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,
.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,
.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child {
  margin-right: 0
}

.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow {
  display: inline-block;
  margin-right: 1ch
}

.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1)
}

.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow {
  display: inline-block;
  margin-left: 1ch
}

.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1)
}

.wp-block-comments-pagination.aligncenter {
  justify-content: center
}

.wp-block-comment-template {
  box-sizing: border-box;
  list-style: none;
  margin-bottom: 0;
  max-width: 100%;
  padding: 0
}

.wp-block-comment-template li {
  clear: both
}

.wp-block-comment-template ol {
  list-style: none;
  margin-bottom: 0;
  max-width: 100%;
  padding-left: 2rem
}

.wp-block-comment-template.alignleft {
  float: left
}

.wp-block-comment-template.aligncenter {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content
}

.wp-block-comment-template.alignright {
  float: right
}

.wp-block-cover,
.wp-block-cover-image {
  align-items: center;
  background-position: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 430px;
  padding: 1em;
  position: relative
}

.wp-block-cover .has-background-dim:not([class*=-background-color]),
.wp-block-cover-image .has-background-dim:not([class*=-background-color]),
.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.wp-block-cover.has-background-dim:not([class*=-background-color]) {
  background-color: #000
}

.wp-block-cover .has-background-dim.has-background-gradient,
.wp-block-cover-image .has-background-dim.has-background-gradient {
  background-color: transparent
}

.wp-block-cover-image.has-background-dim:before,
.wp-block-cover.has-background-dim:before {
  background-color: inherit;
  content: ""
}

.wp-block-cover .wp-block-cover__background,
.wp-block-cover .wp-block-cover__gradient-background,
.wp-block-cover-image .wp-block-cover__background,
.wp-block-cover-image .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim:not(.has-background-gradient):before {
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before {
  opacity: .1
}

.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before {
  opacity: .2
}

.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before {
  opacity: .3
}

.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before {
  opacity: .4
}

.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before {
  opacity: .5
}

.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before {
  opacity: .6
}

.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before {
  opacity: .7
}

.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before {
  opacity: .8
}

.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before {
  opacity: .9
}

.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before {
  opacity: 1
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0 {
  opacity: 0
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10 {
  opacity: .1
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20 {
  opacity: .2
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30 {
  opacity: .3
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40 {
  opacity: .4
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50 {
  opacity: .5
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60 {
  opacity: .6
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70 {
  opacity: .7
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80 {
  opacity: .8
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90 {
  opacity: .9
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100 {
  opacity: 1
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  max-width: 420px;
  width: 100%
}

.wp-block-cover-image:after,
.wp-block-cover:after {
  content: "";
  display: block;
  font-size: 0;
  min-height: inherit
}

@supports (position:sticky) {

  .wp-block-cover-image:after,
  .wp-block-cover:after {
    content: none
  }
}

.wp-block-cover-image.aligncenter,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.aligncenter,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  display: flex
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
  color: #fff;
  width: 100%;
  z-index: 1
}

.wp-block-cover-image.is-light .wp-block-cover__inner-container,
.wp-block-cover.is-light .wp-block-cover__inner-container {
  color: #000
}

.wp-block-cover h1:not(.has-text-color),
.wp-block-cover h2:not(.has-text-color),
.wp-block-cover h3:not(.has-text-color),
.wp-block-cover h4:not(.has-text-color),
.wp-block-cover h5:not(.has-text-color),
.wp-block-cover h6:not(.has-text-color),
.wp-block-cover p:not(.has-text-color),
.wp-block-cover-image h1:not(.has-text-color),
.wp-block-cover-image h2:not(.has-text-color),
.wp-block-cover-image h3:not(.has-text-color),
.wp-block-cover-image h4:not(.has-text-color),
.wp-block-cover-image h5:not(.has-text-color),
.wp-block-cover-image h6:not(.has-text-color),
.wp-block-cover-image p:not(.has-text-color) {
  color: inherit
}

.wp-block-cover-image.is-position-top-left,
.wp-block-cover.is-position-top-left {
  align-items: flex-start;
  justify-content: flex-start
}

.wp-block-cover-image.is-position-top-center,
.wp-block-cover.is-position-top-center {
  align-items: flex-start;
  justify-content: center
}

.wp-block-cover-image.is-position-top-right,
.wp-block-cover.is-position-top-right {
  align-items: flex-start;
  justify-content: flex-end
}

.wp-block-cover-image.is-position-center-left,
.wp-block-cover.is-position-center-left {
  align-items: center;
  justify-content: flex-start
}

.wp-block-cover-image.is-position-center-center,
.wp-block-cover.is-position-center-center {
  align-items: center;
  justify-content: center
}

.wp-block-cover-image.is-position-center-right,
.wp-block-cover.is-position-center-right {
  align-items: center;
  justify-content: flex-end
}

.wp-block-cover-image.is-position-bottom-left,
.wp-block-cover.is-position-bottom-left {
  align-items: flex-end;
  justify-content: flex-start
}

.wp-block-cover-image.is-position-bottom-center,
.wp-block-cover.is-position-bottom-center {
  align-items: flex-end;
  justify-content: center
}

.wp-block-cover-image.is-position-bottom-right,
.wp-block-cover.is-position-bottom-right {
  align-items: flex-end;
  justify-content: flex-end
}

.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
  margin: 0;
  width: auto
}

.wp-block-cover .wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background,
.wp-block-cover-image .wp-block-cover__image-background,
.wp-block-cover-image video.wp-block-cover__video-background {
  border: none;
  bottom: 0;
  box-shadow: none;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%
}

.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax,
.wp-block-cover__image-background.has-parallax,
video.wp-block-cover__video-background.has-parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover
}

@supports (-webkit-overflow-scrolling:touch) {

  .wp-block-cover-image.has-parallax,
  .wp-block-cover.has-parallax,
  .wp-block-cover__image-background.has-parallax,
  video.wp-block-cover__video-background.has-parallax {
    background-attachment: scroll
  }
}

@media (prefers-reduced-motion:reduce) {

  .wp-block-cover-image.has-parallax,
  .wp-block-cover.has-parallax,
  .wp-block-cover__image-background.has-parallax,
  video.wp-block-cover__video-background.has-parallax {
    background-attachment: scroll
  }
}

.wp-block-cover-image.is-repeated,
.wp-block-cover.is-repeated,
.wp-block-cover__image-background.is-repeated,
video.wp-block-cover__video-background.is-repeated {
  background-repeat: repeat;
  background-size: auto
}

.wp-block-cover__image-background,
.wp-block-cover__video-background {
  z-index: 0
}

.wp-block-cover-image-text,
.wp-block-cover-image-text a,
.wp-block-cover-image-text a:active,
.wp-block-cover-image-text a:focus,
.wp-block-cover-image-text a:hover,
.wp-block-cover-text,
.wp-block-cover-text a,
.wp-block-cover-text a:active,
.wp-block-cover-text a:focus,
.wp-block-cover-text a:hover,
section.wp-block-cover-image h2,
section.wp-block-cover-image h2 a,
section.wp-block-cover-image h2 a:active,
section.wp-block-cover-image h2 a:focus,
section.wp-block-cover-image h2 a:hover {
  color: #fff
}

.wp-block-cover-image .wp-block-cover.has-left-content {
  justify-content: flex-start
}

.wp-block-cover-image .wp-block-cover.has-right-content {
  justify-content: flex-end
}

.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover.has-left-content .wp-block-cover-text,
section.wp-block-cover-image.has-left-content>h2 {
  margin-left: 0;
  text-align: left
}

.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover.has-right-content .wp-block-cover-text,
section.wp-block-cover-image.has-right-content>h2 {
  margin-right: 0;
  text-align: right
}

.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover-image-text,
section.wp-block-cover-image>h2 {
  font-size: 2em;
  line-height: 1.25;
  margin-bottom: 0;
  max-width: 840px;
  padding: .44em;
  text-align: center;
  z-index: 1
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align=left]>[data-type="core/embed"],
.wp-block[data-align=right]>[data-type="core/embed"] {
  max-width: 360px;
  width: 100%
}

.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper,
.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,
.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper {
  min-width: 280px
}

.wp-block-cover .wp-block-embed {
  min-height: 240px;
  min-width: 320px
}

.wp-block-embed {
  overflow-wrap: break-word
}

.wp-block-embed figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-block-embed iframe {
  max-width: 100%
}

.wp-block-embed__wrapper {
  position: relative
}

.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%
}

.wp-embed-responsive .wp-has-aspect-ratio iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%
}

.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
  padding-top: 42.85%
}

.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
  padding-top: 50%
}

.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 56.25%
}

.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
  padding-top: 75%
}

.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
  padding-top: 100%
}

.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
  padding-top: 177.77%
}

.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
  padding-top: 200%
}

.wp-block-file {
  margin-bottom: 1.5em
}

.wp-block-file:not(.wp-element-button) {
  font-size: .8em
}

.wp-block-file.aligncenter {
  text-align: center
}

.wp-block-file.alignright {
  text-align: right
}

.wp-block-file *+.wp-block-file__button {
  margin-left: .75em
}

.wp-block-file__embed {
  margin-bottom: 1em
}

:where(.wp-block-file__button) {
  border-radius: 2em;
  padding: .5em 1em
}

:where(.wp-block-file__button):is(a):active,
:where(.wp-block-file__button):is(a):focus,
:where(.wp-block-file__button):is(a):hover,
:where(.wp-block-file__button):is(a):visited {
  box-shadow: none;
  color: #fff;
  opacity: .85;
  text-decoration: none
}

.blocks-gallery-grid:not(.has-nested-images),
.wp-block-gallery:not(.has-nested-images) {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 1em 1em 0;
  position: relative;
  width: calc(50% - 1em)
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n) {
  margin-right: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure {
  align-items: flex-end;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  margin: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 70%, transparent);
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: .8em;
  margin: 0;
  max-height: 100%;
  overflow: auto;
  padding: 3em .77em .7em;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img {
  display: inline
}

.blocks-gallery-grid:not(.has-nested-images) figcaption,
.wp-block-gallery:not(.has-nested-images) figcaption {
  flex-grow: 1
}

.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img {
  flex: 1;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item {
  margin-right: 0;
  width: 100%
}

@media (min-width:600px) {

  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(33.33333% - .66667em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(25% - .75em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(20% - .8em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(16.66667% - .83333em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(14.28571% - .85714em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(12.5% - .875em)
  }

  .blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0
  }
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child {
  margin-right: 0
}

.blocks-gallery-grid:not(.has-nested-images).alignleft,
.blocks-gallery-grid:not(.has-nested-images).alignright,
.wp-block-gallery:not(.has-nested-images).alignleft,
.wp-block-gallery:not(.has-nested-images).alignright {
  max-width: 420px;
  width: 100%
}

.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure {
  justify-content: center
}

.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
  align-self: flex-start
}

figure.wp-block-gallery.has-nested-images {
  align-items: normal
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  margin: 0;
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  max-width: 100%;
  position: relative
}

.wp-block-gallery.has-nested-images figure.wp-block-image>a,
.wp-block-gallery.has-nested-images figure.wp-block-image>div {
  flex-direction: column;
  flex-grow: 1;
  margin: 0
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
  display: block;
  height: auto;
  max-width: 100% !important;
  width: auto
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 70%, transparent);
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  left: 0;
  margin-bottom: 0;
  max-height: 60%;
  overflow: auto;
  padding: 0 8px 8px;
  position: absolute;
  text-align: center;
  width: 100%
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
  display: inline
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a {
  color: inherit
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img {
  box-sizing: border-box
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,
.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div {
  flex: 1 1 auto
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption {
  background: none;
  color: inherit;
  flex: initial;
  margin: 0;
  padding: 10px 10px 9px;
  position: relative
}

.wp-block-gallery.has-nested-images figcaption {
  flex-basis: 100%;
  flex-grow: 1;
  text-align: center
}

.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
  margin-bottom: auto;
  margin-top: 0
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
  align-self: inherit
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone) {
  display: flex
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  flex: 1 0 0%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
  width: 100%
}

@media (min-width:600px) {
  .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
    width: calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)
  }

  .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
    width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)
  }

  .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
    width: calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)
  }

  .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
    width: calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)
  }

  .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
    width: calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)
  }

  .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
    width: calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)
  }

  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)
  }

  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)
  }

  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child {
    width: 100%
  }
}

.wp-block-gallery.has-nested-images.alignleft,
.wp-block-gallery.has-nested-images.alignright {
  max-width: 420px;
  width: 100%
}

.wp-block-gallery.has-nested-images.aligncenter {
  justify-content: center
}

.wp-block-group {
  box-sizing: border-box
}

h1.has-background,
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background,
h6.has-background {
  padding: 1.25em 2.375em
}

.wp-block-image img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom
}

.wp-block-image img,
.wp-block-image.has-custom-border img {
  box-sizing: border-box
}

.wp-block-image.aligncenter {
  text-align: center
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  height: auto;
  width: 100%
}

.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.aligncenter,
.wp-block-image.alignleft,
.wp-block-image.alignright {
  display: table
}

.wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.aligncenter>figcaption,
.wp-block-image.alignleft>figcaption,
.wp-block-image.alignright>figcaption {
  caption-side: bottom;
  display: table-caption
}

.wp-block-image .alignleft {
  float: left;
  margin: .5em 1em .5em 0
}

.wp-block-image .alignright {
  float: right;
  margin: .5em 0 .5em 1em
}

.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto
}

.wp-block-image figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-block-image .is-style-rounded img,
.wp-block-image.is-style-circle-mask img,
.wp-block-image.is-style-rounded img {
  border-radius: 9999px
}

@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none) {
  .wp-block-image.is-style-circle-mask img {
    border-radius: 0;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-mode: alpha;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain
  }
}

.wp-block-image :where(.has-border-color) {
  border-style: solid
}

.wp-block-image :where([style*=border-top-color]) {
  border-top-style: solid
}

.wp-block-image :where([style*=border-right-color]) {
  border-right-style: solid
}

.wp-block-image :where([style*=border-bottom-color]) {
  border-bottom-style: solid
}

.wp-block-image :where([style*=border-left-color]) {
  border-left-style: solid
}

.wp-block-image :where([style*=border-width]) {
  border-style: solid
}

.wp-block-image :where([style*=border-top-width]) {
  border-top-style: solid
}

.wp-block-image :where([style*=border-right-width]) {
  border-right-style: solid
}

.wp-block-image :where([style*=border-bottom-width]) {
  border-bottom-style: solid
}

.wp-block-image :where([style*=border-left-width]) {
  border-left-style: solid
}

.wp-block-image figure {
  margin: 0
}

ol.wp-block-latest-comments {
  box-sizing: border-box;
  margin-left: 0
}

.wp-block-latest-comments .wp-block-latest-comments {
  padding-left: 0
}

.wp-block-latest-comments__comment {
  line-height: 1.1;
  list-style: none;
  margin-bottom: 1em
}

.has-avatars .wp-block-latest-comments__comment {
  list-style: none;
  min-height: 2.25em
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 3.25em
}

.has-dates .wp-block-latest-comments__comment,
.has-excerpts .wp-block-latest-comments__comment {
  line-height: 1.5
}

.wp-block-latest-comments__comment-excerpt p {
  font-size: .875em;
  line-height: 1.8;
  margin: .36em 0 1.4em
}

.wp-block-latest-comments__comment-date {
  display: block;
  font-size: .75em
}

.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: .75em;
  width: 2.5em
}

.wp-block-latest-posts {
  box-sizing: border-box
}

.wp-block-latest-posts.alignleft {
  margin-right: 2em
}

.wp-block-latest-posts.alignright {
  margin-left: 2em
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: none;
  padding-left: 0
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
  clear: both
}

.wp-block-latest-posts.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0
}

.wp-block-latest-posts.is-grid li {
  margin: 0 1.25em 1.25em 0;
  width: 100%
}

@media (min-width:600px) {
  .wp-block-latest-posts.columns-2 li {
    width: calc(50% - .625em)
  }

  .wp-block-latest-posts.columns-2 li:nth-child(2n) {
    margin-right: 0
  }

  .wp-block-latest-posts.columns-3 li {
    width: calc(33.33333% - .83333em)
  }

  .wp-block-latest-posts.columns-3 li:nth-child(3n) {
    margin-right: 0
  }

  .wp-block-latest-posts.columns-4 li {
    width: calc(25% - .9375em)
  }

  .wp-block-latest-posts.columns-4 li:nth-child(4n) {
    margin-right: 0
  }

  .wp-block-latest-posts.columns-5 li {
    width: calc(20% - 1em)
  }

  .wp-block-latest-posts.columns-5 li:nth-child(5n) {
    margin-right: 0
  }

  .wp-block-latest-posts.columns-6 li {
    width: calc(16.66667% - 1.04167em)
  }

  .wp-block-latest-posts.columns-6 li:nth-child(6n) {
    margin-right: 0
  }
}

.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
  display: block;
  font-size: .8125em
}

.wp-block-latest-posts__post-excerpt {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-block-latest-posts__featured-image a {
  display: inline-block
}

.wp-block-latest-posts__featured-image img {
  height: auto;
  max-width: 100%;
  width: auto
}

.wp-block-latest-posts__featured-image.alignleft {
  float: left;
  margin-right: 1em
}

.wp-block-latest-posts__featured-image.alignright {
  float: right;
  margin-left: 1em
}

.wp-block-latest-posts__featured-image.aligncenter {
  margin-bottom: 1em;
  text-align: center
}

ol,
ul {
  box-sizing: border-box
}

ol.has-background,
ul.has-background {
  padding: 1.25em 2.375em
}

.wp-block-media-text {
  box-sizing: border-box;
  /*!rtl:begin:ignore*/
  direction: ltr;
  /*!rtl:end:ignore*/
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto
}

.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 50%
}

.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
  align-self: start
}

.wp-block-media-text .wp-block-media-text__content,
.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
  align-self: center
}

.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
  align-self: end
}

.wp-block-media-text .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
  margin: 0
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
  padding: 0 8%;
  word-break: break-word
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1
    /*!rtl:end:ignore*/
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1
    /*!rtl:end:ignore*/
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
  height: auto;
  max-width: unset;
  vertical-align: middle;
  width: 100%
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media {
  background-size: cover;
  height: 100%;
  min-height: 250px
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media>a {
  display: block;
  height: 100%
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media img {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

@media (max-width:600px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2
  }
}

.wp-block-navigation {
  --navigation-layout-justification-setting: flex-start;
  --navigation-layout-direction: row;
  --navigation-layout-wrap: wrap;
  --navigation-layout-justify: flex-start;
  --navigation-layout-align: center;
  position: relative
}

.wp-block-navigation ul {
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 0;
  padding-left: 0
}

.wp-block-navigation ul,
.wp-block-navigation ul li {
  list-style: none;
  padding: 0
}

.wp-block-navigation .wp-block-navigation-item {
  align-items: center;
  display: flex;
  position: relative
}

.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty {
  display: none
}

.wp-block-navigation .wp-block-navigation-item__content {
  display: block
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: inherit
}

.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus {
  text-decoration: underline
}

.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus {
  text-decoration: line-through
}

.wp-block-navigation:where(:not([class*=has-text-decoration])) a {
  text-decoration: none
}

.wp-block-navigation:where(:not([class*=has-text-decoration])) a:active,
.wp-block-navigation:where(:not([class*=has-text-decoration])) a:focus {
  text-decoration: none
}

.wp-block-navigation .wp-block-navigation__submenu-icon {
  align-self: center;
  background-color: inherit;
  border: none;
  color: currentColor;
  display: inline-block;
  font-size: inherit;
  height: .6em;
  line-height: 0;
  margin-left: .25em;
  padding: 0;
  width: .6em
}

.wp-block-navigation .wp-block-navigation__submenu-icon svg {
  stroke: currentColor;
  display: inline-block;
  height: inherit;
  margin-top: .075em;
  width: inherit
}

.wp-block-navigation.is-vertical {
  --navigation-layout-direction: column;
  --navigation-layout-justify: initial;
  --navigation-layout-align: flex-start
}

.wp-block-navigation.no-wrap {
  --navigation-layout-wrap: nowrap
}

.wp-block-navigation.items-justified-center {
  --navigation-layout-justification-setting: center;
  --navigation-layout-justify: center
}

.wp-block-navigation.items-justified-center.is-vertical {
  --navigation-layout-align: center
}

.wp-block-navigation.items-justified-right {
  --navigation-layout-justification-setting: flex-end;
  --navigation-layout-justify: flex-end
}

.wp-block-navigation.items-justified-right.is-vertical {
  --navigation-layout-align: flex-end
}

.wp-block-navigation.items-justified-space-between {
  --navigation-layout-justification-setting: space-between;
  --navigation-layout-justify: space-between
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  align-items: normal;
  background-color: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 0;
  left: -1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  transition: opacity .1s linear;
  visibility: hidden;
  width: 0;
  z-index: 2
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content {
  display: flex;
  flex-grow: 1
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon {
  margin-left: auto;
  margin-right: 0
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  margin: 0
}

@media (min-width:782px) {
  .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
    left: 100%;
    top: -1px
  }

  .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before {
    background: transparent;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 100%;
    width: .5em
  }

  .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon {
    margin-right: .25em
  }

  .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg {
    transform: rotate(-90deg)
  }
}

.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container {
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  width: auto
}

.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container {
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  width: auto
}

.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container {
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  width: auto
}

.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container {
  left: 0;
  top: 100%
}

@media (min-width:782px) {
  .wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
    left: 100%;
    top: 0
  }
}

.wp-block-navigation-submenu {
  display: flex;
  position: relative
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
  stroke: currentColor
}

button.wp-block-navigation-item__content {
  background-color: transparent;
  border: none;
  color: currentColor;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: inherit
}

.wp-block-navigation-submenu__toggle {
  cursor: pointer
}

.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle {
  padding-right: .85em
}

.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon {
  margin-left: -.6em;
  pointer-events: none
}

.wp-block-navigation .wp-block-page-list,
.wp-block-navigation__container,
.wp-block-navigation__responsive-close,
.wp-block-navigation__responsive-container,
.wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-dialog {
  gap: inherit
}

:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),
:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)) {
  padding: .5em 1em
}

:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),
:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),
:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),
:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content) {
  padding: .5em 1em
}

.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container {
  left: auto;
  right: 0
}

.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
  left: -1px;
  right: -1px
}

@media (min-width:782px) {

  .wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
    left: auto;
    right: 100%
  }
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
  color: #000
}

.wp-block-navigation__container {
  align-items: var(--navigation-layout-align, initial);
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial);
  list-style: none;
  margin: 0;
  padding-left: 0
}

.wp-block-navigation__container .is-responsive {
  display: none
}

.wp-block-navigation__container:only-child,
.wp-block-page-list:only-child {
  flex-grow: 1
}

@keyframes overlay-menu__fade-in-animation {
  0% {
    opacity: 0;
    transform: translateY(.5em)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.wp-block-navigation__responsive-container {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0
}

.wp-block-navigation__responsive-container .wp-block-navigation-link a {
  color: inherit
}

.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
  align-items: var(--navigation-layout-align, initial);
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial)
}

.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
  background-color: inherit !important;
  color: inherit !important
}

.wp-block-navigation__responsive-container.is-menu-open {
  animation: overlay-menu__fade-in-animation .1s ease-out;
  animation-fill-mode: forwards;
  background-color: inherit;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding: var(--wp--style--root--padding-top, 2rem) var(--wp--style--root--padding-right, 2rem) var(--wp--style--root--padding-bottom, 2rem) var(--wp--style--root--padding-left, 2rem);
  z-index: 100000
}

@media (prefers-reduced-motion:reduce) {
  .wp-block-navigation__responsive-container.is-menu-open {
    animation-delay: 0s;
    animation-duration: 1ms
  }
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  align-items: var(--navigation-layout-justification-setting, inherit);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow: visible;
  padding-top: calc(2rem + 24px)
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
  justify-content: flex-start
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon {
  display: none
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
  border: none;
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: initial;
  padding-left: 2rem;
  padding-right: 2rem;
  position: static;
  visibility: visible;
  width: auto
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
  gap: inherit
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
  padding-top: var(--wp--style--block-gap, 2em)
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
  padding: 0
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
  align-items: var(--navigation-layout-justification-setting, initial);
  display: flex;
  flex-direction: column
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
  background: transparent !important;
  color: inherit !important
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
  left: auto;
  right: auto
}

@media (min-width:600px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    background-color: inherit;
    display: block;
    position: relative;
    width: 100%;
    z-index: auto
  }

  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close {
    display: none
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
    left: 0
  }
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
  background-color: #fff;
  color: #000
}

.wp-block-navigation__toggle_button_label {
  font-size: 1rem;
  font-weight: 700
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  background: transparent;
  border: none;
  color: currentColor;
  cursor: pointer;
  margin: 0;
  padding: 0;
  text-transform: inherit;
  vertical-align: middle
}

.wp-block-navigation__responsive-container-close svg,
.wp-block-navigation__responsive-container-open svg {
  fill: currentColor;
  display: block;
  height: 24px;
  pointer-events: none;
  width: 24px
}

.wp-block-navigation__responsive-container-open {
  display: flex
}

.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit
}

@media (min-width:600px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none
  }
}

.wp-block-navigation__responsive-container-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2
}

.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit
}

.wp-block-navigation__responsive-close {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 100%);
  width: 100%
}

.wp-block-navigation__responsive-close:focus {
  outline: none
}

.is-menu-open .wp-block-navigation__responsive-close,
.is-menu-open .wp-block-navigation__responsive-container-content,
.is-menu-open .wp-block-navigation__responsive-dialog {
  box-sizing: border-box
}

.wp-block-navigation__responsive-dialog {
  position: relative
}

.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
  margin-top: 46px
}

@media (min-width:782px) {
  .has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
    margin-top: 32px
  }
}

html.has-modal-open {
  overflow: hidden
}

.wp-block-navigation .wp-block-navigation-item__label {
  overflow-wrap: break-word;
  word-break: normal
}

.wp-block-navigation .wp-block-navigation-item__description {
  display: none
}

.wp-block-navigation .wp-block-page-list {
  align-items: var(--navigation-layout-align, initial);
  background-color: inherit;
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial)
}

.wp-block-navigation .wp-block-navigation-item {
  background-color: inherit
}

.is-small-text {
  font-size: .875em
}

.is-regular-text {
  font-size: 1em
}

.is-large-text {
  font-size: 2.25em
}

.is-larger-text {
  font-size: 3em
}

.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 8.4em;
  font-style: normal;
  font-weight: 100;
  line-height: .68;
  margin: .05em .1em 0 0;
  text-transform: uppercase
}

body.rtl .has-drop-cap:not(:focus):first-letter {
  float: none;
  margin-left: .1em
}

p.has-drop-cap.has-background {
  overflow: hidden
}

p.has-background {
  padding: 1.25em 2.375em
}

:where(p.has-text-color:not(.has-link-color)) a {
  color: inherit
}

.wp-block-post-author {
  display: flex;
  flex-wrap: wrap
}

.wp-block-post-author__byline {
  font-size: .5em;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%
}

.wp-block-post-author__avatar {
  margin-right: 1em
}

.wp-block-post-author__bio {
  font-size: .7em;
  margin-bottom: .7em
}

.wp-block-post-author__content {
  flex-basis: 0;
  flex-grow: 1
}

.wp-block-post-author__name {
  margin: 0
}

.wp-block-post-comments-form {
  box-sizing: border-box
}

.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title) {
  font-weight: inherit
}

.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title) {
  font-family: inherit
}

.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),
.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title) {
  font-size: inherit
}

.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title) {
  line-height: inherit
}

.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title) {
  font-style: inherit
}

.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title) {
  letter-spacing: inherit
}

.wp-block-post-comments-form input[type=submit] {
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  overflow-wrap: break-word;
  text-align: center
}

.wp-block-post-comments-form input:not([type=submit]),
.wp-block-post-comments-form textarea {
  border: 1px solid #949494;
  font-family: inherit;
  font-size: 1em
}

.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments-form textarea {
  padding: calc(.667em + 2px)
}

.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments-form .comment-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%
}

.wp-block-post-comments-form .comment-form-author label,
.wp-block-post-comments-form .comment-form-email label,
.wp-block-post-comments-form .comment-form-url label {
  display: block;
  margin-bottom: .25em
}

.wp-block-post-comments-form .comment-form-cookies-consent {
  display: flex;
  gap: .25em
}

.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  margin-top: .35em
}

.wp-block-post-comments-form .comment-reply-title {
  margin-bottom: 0
}

.wp-block-post-comments-form .comment-reply-title :where(small) {
  font-size: var(--wp--preset--font-size--medium, smaller);
  margin-left: .5em
}

.wp-block-post-date {
  box-sizing: border-box
}

.wp-block-post-excerpt {
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap)
}

.wp-block-post-excerpt__excerpt {
  margin-bottom: 0;
  margin-top: 0
}

.wp-block-post-excerpt__more-text {
  margin-bottom: 0;
  margin-top: var(--wp--style--block-gap)
}

.wp-block-post-excerpt__more-link {
  display: inline-block
}

.wp-block-post-featured-image {
  margin-left: 0;
  margin-right: 0
}

.wp-block-post-featured-image a {
  display: block
}

.wp-block-post-featured-image img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%
}

.wp-block-post-featured-image.alignfull img,
.wp-block-post-featured-image.alignwide img {
  width: 100%
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim {
  background-color: #000;
  inset: 0;
  position: absolute
}

.wp-block-post-featured-image {
  position: relative
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient {
  background-color: transparent
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0 {
  opacity: 0
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10 {
  opacity: .1
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20 {
  opacity: .2
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30 {
  opacity: .3
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40 {
  opacity: .4
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50 {
  opacity: .5
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60 {
  opacity: .6
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70 {
  opacity: .7
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80 {
  opacity: .8
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90 {
  opacity: .9
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100 {
  opacity: 1
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous {
  display: inline-block;
  margin-right: 1ch
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron) {
  transform: scaleX(1)
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next {
  display: inline-block;
  margin-left: 1ch
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron) {
  transform: scaleX(1)
}

.wp-block-post-terms {
  box-sizing: border-box
}

.wp-block-post-terms .wp-block-post-terms__separator {
  white-space: pre-wrap
}

.wp-block-post-title {
  box-sizing: border-box;
  word-break: break-word
}

.wp-block-post-title a {
  display: inline-block
}

.wp-block-preformatted {
  white-space: pre-wrap
}

.wp-block-preformatted.has-background {
  padding: 1.25em 2.375em
}

.wp-block-pullquote {
  box-sizing: border-box;
  margin: 0 0 1em;
  overflow-wrap: break-word;
  padding: 3em 0;
  text-align: center
}

.wp-block-pullquote blockquote,
.wp-block-pullquote cite,
.wp-block-pullquote p {
  color: inherit
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
  max-width: 420px
}

.wp-block-pullquote cite,
.wp-block-pullquote footer {
  position: relative
}

.wp-block-pullquote .has-text-color a {
  color: inherit
}

.wp-block-pullquote.has-text-align-left blockquote {
  text-align: left
}

.wp-block-pullquote.has-text-align-right blockquote {
  text-align: right
}

.wp-block-pullquote.is-style-solid-color {
  border: none
}

.wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  max-width: 60%
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 2em;
  margin-bottom: 0;
  margin-top: 0
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
  font-style: normal;
  text-transform: none
}

.wp-block-pullquote cite {
  color: inherit
}

.wp-block-post-template {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100%;
  padding: 0
}

.wp-block-post-template.wp-block-post-template {
  background: none
}

.wp-block-post-template.is-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25em
}

.wp-block-post-template.is-flex-container li {
  margin: 0;
  width: 100%
}

@media (min-width:600px) {
  .wp-block-post-template.is-flex-container.is-flex-container.columns-2>li {
    width: calc(50% - .625em)
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li {
    width: calc(33.33333% - .83333em)
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-4>li {
    width: calc(25% - .9375em)
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-5>li {
    width: calc(20% - 1em)
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-6>li {
    width: calc(16.66667% - 1.04167em)
  }
}

.wp-block-query-pagination>.wp-block-query-pagination-next,
.wp-block-query-pagination>.wp-block-query-pagination-numbers,
.wp-block-query-pagination>.wp-block-query-pagination-previous {
  margin-bottom: .5em;
  margin-right: .5em
}

.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,
.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,
.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child {
  margin-right: 0
}

.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type {
  margin-inline-start: auto
}

.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child {
  margin-inline-end: auto
}

.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
  display: inline-block;
  margin-right: 1ch
}

.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1)
}

.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
  display: inline-block;
  margin-left: 1ch
}

.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1)
}

.wp-block-query-pagination.aligncenter {
  justify-content: center
}

.wp-block-query-title,
.wp-block-quote {
  box-sizing: border-box
}

.wp-block-quote {
  overflow-wrap: break-word
}

.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
  margin-bottom: 1em;
  padding: 0 1em
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) p,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer {
  font-size: 1.125em;
  text-align: right
}

.wp-block-read-more {
  display: block;
  width: -moz-fit-content;
  width: fit-content
}

.wp-block-read-more:not([style*=text-decoration]),
.wp-block-read-more:not([style*=text-decoration]):active,
.wp-block-read-more:not([style*=text-decoration]):focus {
  text-decoration: none
}

ul.wp-block-rss {
  list-style: none;
  padding: 0
}

ul.wp-block-rss.wp-block-rss {
  box-sizing: border-box
}

ul.wp-block-rss.alignleft {
  margin-right: 2em
}

ul.wp-block-rss.alignright {
  margin-left: 2em
}

ul.wp-block-rss.is-grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0
}

ul.wp-block-rss.is-grid li {
  margin: 0 1em 1em 0;
  width: 100%
}

@media (min-width:600px) {
  ul.wp-block-rss.columns-2 li {
    width: calc(50% - 1em)
  }

  ul.wp-block-rss.columns-3 li {
    width: calc(33.33333% - 1em)
  }

  ul.wp-block-rss.columns-4 li {
    width: calc(25% - 1em)
  }

  ul.wp-block-rss.columns-5 li {
    width: calc(20% - 1em)
  }

  ul.wp-block-rss.columns-6 li {
    width: calc(16.66667% - 1em)
  }
}

.wp-block-rss__item-author,
.wp-block-rss__item-publish-date {
  display: block;
  font-size: .8125em
}

.wp-block-search__button {
  margin-left: .625em;
  word-break: normal
}

.wp-block-search__button.has-icon {
  line-height: 0
}

.wp-block-search__button svg {
  fill: currentColor;
  min-height: 1.5em;
  min-width: 1.5em;
  vertical-align: text-bottom
}

:where(.wp-block-search__button) {
  border: 1px solid #ccc;
  padding: .375em .625em
}

.wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%
}

.wp-block-search__label {
  width: 100%
}

.wp-block-search__input {
  border: 1px solid #949494;
  flex-grow: 1;
  margin-left: 0;
  margin-right: 0;
  min-width: 3em;
  padding: 8px;
  text-decoration: unset !important
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button {
  margin-left: 0
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border: 1px solid #949494;
  padding: 4px
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
  border: none;
  border-radius: 0;
  padding: 0 0 0 .25em
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus {
  outline: none
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button) {
  padding: .125em .5em
}

.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
  margin: auto
}

.wp-block-separator {
  border: 1px solid;
  border-left: none;
  border-right: none
}

.wp-block-separator.is-style-dots {
  background: none !important;
  border: none;
  height: auto;
  line-height: 1;
  text-align: center
}

.wp-block-separator.is-style-dots:before {
  color: currentColor;
  content: "¡¤¡¤¡¤";
  font-family: serif;
  font-size: 1.5em;
  letter-spacing: 2em;
  padding-left: 2em
}

.wp-block-site-logo {
  box-sizing: border-box;
  line-height: 0
}

.wp-block-site-logo a {
  display: inline-block
}

.wp-block-site-logo.is-default-size img {
  height: auto;
  width: 120px
}

.wp-block-site-logo img {
  height: auto;
  max-width: 100%
}

.wp-block-site-logo a,
.wp-block-site-logo img {
  border-radius: inherit
}

.wp-block-site-logo.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.wp-block-site-logo.is-style-rounded {
  border-radius: 9999px
}

.wp-block-site-title a {
  color: inherit
}

.wp-block-social-links {
  background: none;
  box-sizing: border-box;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  text-indent: 0
}

.wp-block-social-links .wp-social-link a,
.wp-block-social-links .wp-social-link a:hover {
  border-bottom: 0;
  box-shadow: none;
  text-decoration: none
}

.wp-block-social-links .wp-social-link a {
  padding: .25em
}

.wp-block-social-links .wp-social-link svg {
  height: 1em;
  width: 1em
}

.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
  font-size: .65em;
  margin-left: .5em;
  margin-right: .5em
}

.wp-block-social-links.has-small-icon-size {
  font-size: 16px
}

.wp-block-social-links,
.wp-block-social-links.has-normal-icon-size {
  font-size: 24px
}

.wp-block-social-links.has-large-icon-size {
  font-size: 36px
}

.wp-block-social-links.has-huge-icon-size {
  font-size: 48px
}

.wp-block-social-links.aligncenter {
  display: flex;
  justify-content: center
}

.wp-block-social-links.alignright {
  justify-content: flex-end
}

.wp-block-social-link {
  border-radius: 9999px;
  display: block;
  height: auto;
  transition: transform .1s ease
}

@media (prefers-reduced-motion:reduce) {
  .wp-block-social-link {
    transition-delay: 0s;
    transition-duration: 0s
  }
}

.wp-block-social-link a {
  align-items: center;
  display: flex;
  line-height: 0;
  transition: transform .1s ease
}

.wp-block-social-link:hover {
  transform: scale(1.1)
}

.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor,
.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg,
.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active,
.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover,
.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited {
  fill: currentColor;
  color: currentColor
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
  background-color: #f0f0f0;
  color: #444
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
  background-color: #f90;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
  background-color: #1ea0c3;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
  background-color: #0757fe;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
  background-color: #1e1f26;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
  background-color: #02e49b;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
  background-color: #e94c89;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
  background-color: #4280ff;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
  background-color: #f45800;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
  background-color: #1778f2;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
  background-color: #000;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
  background-color: #0461dd;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
  background-color: #e65678;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
  background-color: #24292d;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
  background-color: #eceadd;
  color: #382110
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
  background-color: #ea4434;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
  background-color: #f00075;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
  background-color: #e21b24;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
  background-color: #0d66c2;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
  background-color: #3288d4;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
  background-color: #02ab6c;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
  background-color: #f6405f;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
  background-color: #ff424d;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
  background-color: #e60122;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
  background-color: #ef4155;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
  background-color: #ff4500;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
  background-color: #0478d7;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
  stroke: #000;
  background-color: #fefc00;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
  background-color: #ff5600;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
  background-color: #1bd760;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
  background-color: #2aabee;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
  background-color: #000;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
  background-color: #011835;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
  background-color: #6440a4;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
  background-color: #1da1f2;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
  background-color: #1eb7ea;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
  background-color: #4680c2;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
  background-color: #3499cd;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-whatsapp {
  background-color: #25d366;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
  background-color: #d32422;
  color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
  background-color: red;
  color: #fff
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
  background: none
}

.wp-block-social-links.is-style-logos-only .wp-social-link a {
  padding: 0
}

.wp-block-social-links.is-style-logos-only .wp-social-link svg {
  height: 1.25em;
  width: 1.25em
}

.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
  color: #f90
}

.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
  color: #1ea0c3
}

.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
  color: #0757fe
}

.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
  color: #1e1f26
}

.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
  color: #02e49b
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
  color: #e94c89
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
  color: #4280ff
}

.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
  color: #f45800
}

.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
  color: #1778f2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
  color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
  color: #0461dd
}

.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
  color: #e65678
}

.wp-block-social-links.is-style-logos-only .wp-social-link-github {
  color: #24292d
}

.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
  color: #382110
}

.wp-block-social-links.is-style-logos-only .wp-social-link-google {
  color: #ea4434
}

.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
  color: #f00075
}

.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
  color: #e21b24
}

.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
  color: #0d66c2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
  color: #3288d4
}

.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
  color: #02ab6c
}

.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
  color: #f6405f
}

.wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
  color: #ff424d
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
  color: #e60122
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
  color: #ef4155
}

.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
  color: #ff4500
}

.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
  color: #0478d7
}

.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
  stroke: #000;
  color: #fff
}

.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
  color: #ff5600
}

.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
  color: #1bd760
}

.wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
  color: #2aabee
}

.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
  color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
  color: #011835
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
  color: #6440a4
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
  color: #1da1f2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
  color: #1eb7ea
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
  color: #4680c2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-whatsapp {
  color: #25d366
}

.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
  color: #3499cd
}

.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
  color: #d32422
}

.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
  color: red
}

.wp-block-social-links.is-style-pill-shape .wp-social-link {
  width: auto
}

.wp-block-social-links.is-style-pill-shape .wp-social-link a {
  padding-left: .66667em;
  padding-right: .66667em
}

.wp-block-spacer {
  clear: both
}

.wp-block-tag-cloud {
  box-sizing: border-box
}

.wp-block-tag-cloud.aligncenter {
  justify-content: center;
  text-align: center
}

.wp-block-tag-cloud.alignfull {
  padding-left: 1em;
  padding-right: 1em
}

.wp-block-tag-cloud a {
  display: inline-block;
  margin-right: 5px
}

.wp-block-tag-cloud span {
  display: inline-block;
  margin-left: 5px;
  text-decoration: none
}

.wp-block-tag-cloud.is-style-outline {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch
}

.wp-block-tag-cloud.is-style-outline a {
  border: 1px solid;
  font-size: unset !important;
  margin-right: 0;
  padding: 1ch 2ch;
  text-decoration: none !important
}

.wp-block-table {
  overflow-x: auto
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%
}

.wp-block-table thead {
  border-bottom: 3px solid
}

.wp-block-table tfoot {
  border-top: 3px solid
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: .5em
}

.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%
}

.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word
}

.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
  display: table;
  width: auto
}

.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
  word-break: break-word
}

.wp-block-table .has-subtle-light-gray-background-color {
  background-color: #f3f4f5
}

.wp-block-table .has-subtle-pale-green-background-color {
  background-color: #e9fbe5
}

.wp-block-table .has-subtle-pale-blue-background-color {
  background-color: #e7f5fe
}

.wp-block-table .has-subtle-pale-pink-background-color {
  background-color: #fcf0ef
}

.wp-block-table.is-style-stripes {
  background-color: transparent;
  border-bottom: 1px solid #f0f0f0;
  border-collapse: inherit;
  border-spacing: 0
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0
}

.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
  background-color: #f3f4f5
}

.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
  background-color: #e9fbe5
}

.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
  background-color: #e7f5fe
}

.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
  background-color: #fcf0ef
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  border-color: transparent
}

.wp-block-table .has-border-color td,
.wp-block-table .has-border-color th,
.wp-block-table .has-border-color tr,
.wp-block-table .has-border-color>* {
  border-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:first-child,
.wp-block-table table[style*=border-top-color] tr:first-child td,
.wp-block-table table[style*=border-top-color] tr:first-child th,
.wp-block-table table[style*=border-top-color]>*,
.wp-block-table table[style*=border-top-color]>* td,
.wp-block-table table[style*=border-top-color]>* th {
  border-top-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:not(:first-child) {
  border-top-color: currentColor
}

.wp-block-table table[style*=border-right-color] td:last-child,
.wp-block-table table[style*=border-right-color] th,
.wp-block-table table[style*=border-right-color] tr,
.wp-block-table table[style*=border-right-color]>* {
  border-right-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:last-child,
.wp-block-table table[style*=border-bottom-color] tr:last-child td,
.wp-block-table table[style*=border-bottom-color] tr:last-child th,
.wp-block-table table[style*=border-bottom-color]>*,
.wp-block-table table[style*=border-bottom-color]>* td,
.wp-block-table table[style*=border-bottom-color]>* th {
  border-bottom-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:not(:last-child) {
  border-bottom-color: currentColor
}

.wp-block-table table[style*=border-left-color] td:first-child,
.wp-block-table table[style*=border-left-color] th,
.wp-block-table table[style*=border-left-color] tr,
.wp-block-table table[style*=border-left-color]>* {
  border-left-color: inherit
}

.wp-block-table table[style*=border-style] td,
.wp-block-table table[style*=border-style] th,
.wp-block-table table[style*=border-style] tr,
.wp-block-table table[style*=border-style]>* {
  border-style: inherit
}

.wp-block-table table[style*=border-width] td,
.wp-block-table table[style*=border-width] th,
.wp-block-table table[style*=border-width] tr,
.wp-block-table table[style*=border-width]>* {
  border-style: inherit;
  border-width: inherit
}

.wp-block-text-columns,
.wp-block-text-columns.aligncenter {
  display: flex
}

.wp-block-text-columns .wp-block-column {
  margin: 0 1em;
  padding: 0
}

.wp-block-text-columns .wp-block-column:first-child {
  margin-left: 0
}

.wp-block-text-columns .wp-block-column:last-child {
  margin-right: 0
}

.wp-block-text-columns.columns-2 .wp-block-column {
  width: 50%
}

.wp-block-text-columns.columns-3 .wp-block-column {
  width: 33.33333%
}

.wp-block-text-columns.columns-4 .wp-block-column {
  width: 25%
}

pre.wp-block-verse {
  overflow: auto;
  white-space: pre-wrap
}

:where(pre.wp-block-verse) {
  font-family: inherit
}

.wp-block-video {
  box-sizing: border-box
}

.wp-block-video video {
  width: 100%
}

@supports (position:sticky) {
  .wp-block-video [poster] {
    -o-object-fit: cover;
    object-fit: cover
  }
}

.wp-block-video.aligncenter {
  text-align: center
}

.wp-block-video figcaption {
  margin-bottom: 1em;
  margin-top: .5em
}

.wp-element-button {
  cursor: pointer
}

:root {
  --wp--preset--font-size--normal: 16px;
  --wp--preset--font-size--huge: 42px
}

:root .has-very-light-gray-background-color {
  background-color: #eee
}

:root .has-very-dark-gray-background-color {
  background-color: #313131
}

:root .has-very-light-gray-color {
  color: #eee
}

:root .has-very-dark-gray-color {
  color: #313131
}

:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
  background: linear-gradient(135deg, #00d084, #0693e3)
}

:root .has-purple-crush-gradient-background {
  background: linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe)
}

:root .has-hazy-dawn-gradient-background {
  background: linear-gradient(135deg, #faaca8, #dad0ec)
}

:root .has-subdued-olive-gradient-background {
  background: linear-gradient(135deg, #fafae1, #67a671)
}

:root .has-atomic-cream-gradient-background {
  background: linear-gradient(135deg, #fdd79a, #004a59)
}

:root .has-nightshade-gradient-background {
  background: linear-gradient(135deg, #330968, #31cdcf)
}

:root .has-midnight-gradient-background {
  background: linear-gradient(135deg, #020381, #2874fc)
}

.has-regular-font-size {
  font-size: 1em
}

.has-larger-font-size {
  font-size: 2.625em
}

.has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal)
}

.has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge)
}

.has-text-align-center {
  text-align: center
}

.has-text-align-left {
  text-align: left
}

.has-text-align-right {
  text-align: right
}

#end-resizable-editor-section {
  display: none
}

.aligncenter {
  clear: both
}

.items-justified-left {
  justify-content: flex-start
}

.items-justified-center {
  justify-content: center
}

.items-justified-right {
  justify-content: flex-end
}

.items-justified-space-between {
  justify-content: space-between
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.screen-reader-text:focus {
  clip: auto !important;
  background-color: #ddd;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000
}

html :where(.has-border-color) {
  border-style: solid
}

html :where([style*=border-top-color]) {
  border-top-style: solid
}

html :where([style*=border-right-color]) {
  border-right-style: solid
}

html :where([style*=border-bottom-color]) {
  border-bottom-style: solid
}

html :where([style*=border-left-color]) {
  border-left-style: solid
}

html :where([style*=border-width]) {
  border-style: solid
}

html :where([style*=border-top-width]) {
  border-top-style: solid
}

html :where([style*=border-right-width]) {
  border-right-style: solid
}

html :where([style*=border-bottom-width]) {
  border-bottom-style: solid
}

html :where([style*=border-left-width]) {
  border-left-style: solid
}

html :where(img[class*=wp-image-]) {
  height: auto;
  max-width: 100%
}

figure {
  margin: 0 0 1em
}

html :where(.is-position-sticky) {
  --wp-admin--admin-bar--position-offset: var(--wp-admin--admin-bar--height, 0px)
}

@media screen and (max-width:600px) {
  html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: 0px
  }
}

/*! This file is auto-generated */
.wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em
}

.wp-block-file__button {
  background: #32373c;
  color: #fff;
  text-decoration: none
}

/*
Theme Name:		 Level Child
Theme URI:		 https://landio.uicore.co/
Description:	 Child theme for level - Multi-Purpose Landing Page WordPress Theme
Author:			 UiCore
Author URI:		 https://uicore.co
Template:		 level-wp
Version:		 1.0.0
Text Domain:	 level-wp
*/


/*
    Add your custom styles here
*/
.uicore-navbar nav.uicore .uicore-simple-megamenu ul.sub-menu:not(.uicore-megamenu) {
  padding: 42px 0;
  left: 0;
  right: 0;
  justify-content: center;
}

/*! elementor-icons - v5.20.0 - 29-03-2023 */
@font-face {
  font-family: eicons;
  src: url(https://level.uicore.co/crypto-trading/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.eot?5.20.0);
  src: url(https://level.uicore.co/crypto-trading/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.eot?5.20.0#iefix) format("embedded-opentype"), url(https://level.uicore.co/crypto-trading/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.woff2?5.20.0) format("woff2"), url(https://level.uicore.co/crypto-trading/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.woff?5.20.0) format("woff"), url(https://level.uicore.co/crypto-trading/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.ttf?5.20.0) format("truetype"), url(https://level.uicore.co/crypto-trading/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.svg?5.20.0#eicon) format("svg");
  font-weight: 400;
  font-style: normal
}

[class*=" eicon-"],
[class^=eicon] {
  display: inline-block;
  font-family: eicons;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@keyframes a {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(359deg)
  }
}

.eicon-animation-spin {
  animation: a 2s infinite linear
}

.eicon-editor-link:before {
  content: "\e800"
}

.eicon-editor-unlink:before {
  content: "\e801"
}

.eicon-editor-external-link:before {
  content: "\e802"
}

.eicon-editor-close:before {
  content: "\e803"
}

.eicon-editor-list-ol:before {
  content: "\e804"
}

.eicon-editor-list-ul:before {
  content: "\e805"
}

.eicon-editor-bold:before {
  content: "\e806"
}

.eicon-editor-italic:before {
  content: "\e807"
}

.eicon-editor-underline:before {
  content: "\e808"
}

.eicon-editor-paragraph:before {
  content: "\e809"
}

.eicon-editor-h1:before {
  content: "\e80a"
}

.eicon-editor-h2:before {
  content: "\e80b"
}

.eicon-editor-h3:before {
  content: "\e80c"
}

.eicon-editor-h4:before {
  content: "\e80d"
}

.eicon-editor-h5:before {
  content: "\e80e"
}

.eicon-editor-h6:before {
  content: "\e80f"
}

.eicon-editor-quote:before {
  content: "\e810"
}

.eicon-editor-code:before {
  content: "\e811"
}

.eicon-elementor:before {
  content: "\e812"
}

.eicon-elementor-circle:before {
  content: "\e813"
}

.eicon-pojome:before {
  content: "\e814"
}

.eicon-plus:before {
  content: "\e815"
}

.eicon-menu-bar:before {
  content: "\e816"
}

.eicon-apps:before {
  content: "\e817"
}

.eicon-accordion:before {
  content: "\e818"
}

.eicon-alert:before {
  content: "\e819"
}

.eicon-animation-text:before {
  content: "\e81a"
}

.eicon-animation:before {
  content: "\e81b"
}

.eicon-banner:before {
  content: "\e81c"
}

.eicon-blockquote:before {
  content: "\e81d"
}

.eicon-button:before {
  content: "\e81e"
}

.eicon-call-to-action:before {
  content: "\e81f"
}

.eicon-captcha:before {
  content: "\e820"
}

.eicon-carousel:before {
  content: "\e821"
}

.eicon-checkbox:before {
  content: "\e822"
}

.eicon-columns:before {
  content: "\e823"
}

.eicon-countdown:before {
  content: "\e824"
}

.eicon-counter:before {
  content: "\e825"
}

.eicon-date:before {
  content: "\e826"
}

.eicon-divider-shape:before {
  content: "\e827"
}

.eicon-divider:before {
  content: "\e828"
}

.eicon-download-button:before {
  content: "\e829"
}

.eicon-dual-button:before {
  content: "\e82a"
}

.eicon-email-field:before {
  content: "\e82b"
}

.eicon-facebook-comments:before {
  content: "\e82c"
}

.eicon-facebook-like-box:before {
  content: "\e82d"
}

.eicon-form-horizontal:before {
  content: "\e82e"
}

.eicon-form-vertical:before {
  content: "\e82f"
}

.eicon-gallery-grid:before {
  content: "\e830"
}

.eicon-gallery-group:before {
  content: "\e831"
}

.eicon-gallery-justified:before {
  content: "\e832"
}

.eicon-gallery-masonry:before {
  content: "\e833"
}

.eicon-icon-box:before {
  content: "\e834"
}

.eicon-image-before-after:before {
  content: "\e835"
}

.eicon-image-box:before {
  content: "\e836"
}

.eicon-image-hotspot:before {
  content: "\e837"
}

.eicon-image-rollover:before {
  content: "\e838"
}

.eicon-info-box:before {
  content: "\e839"
}

.eicon-inner-section:before {
  content: "\e83a"
}

.eicon-mailchimp:before {
  content: "\e83b"
}

.eicon-menu-card:before {
  content: "\e83c"
}

.eicon-navigation-horizontal:before {
  content: "\e83d"
}

.eicon-nav-menu:before {
  content: "\e83e"
}

.eicon-navigation-vertical:before {
  content: "\e83f"
}

.eicon-number-field:before {
  content: "\e840"
}

.eicon-parallax:before {
  content: "\e841"
}

.eicon-php7:before {
  content: "\e842"
}

.eicon-post-list:before {
  content: "\e843"
}

.eicon-post-slider:before {
  content: "\e844"
}

.eicon-post:before {
  content: "\e845"
}

.eicon-posts-carousel:before {
  content: "\e846"
}

.eicon-posts-grid:before {
  content: "\e847"
}

.eicon-posts-group:before {
  content: "\e848"
}

.eicon-posts-justified:before {
  content: "\e849"
}

.eicon-posts-masonry:before {
  content: "\e84a"
}

.eicon-posts-ticker:before {
  content: "\e84b"
}

.eicon-price-list:before {
  content: "\e84c"
}

.eicon-price-table:before {
  content: "\e84d"
}

.eicon-radio:before {
  content: "\e84e"
}

.eicon-rtl:before {
  content: "\e84f"
}

.eicon-scroll:before {
  content: "\e850"
}

.eicon-search:before {
  content: "\e851"
}

.eicon-select:before {
  content: "\e852"
}

.eicon-share:before {
  content: "\e853"
}

.eicon-sidebar:before {
  content: "\e854"
}

.eicon-skill-bar:before {
  content: "\e855"
}

.eicon-slider-3d:before {
  content: "\e856"
}

.eicon-slider-album:before {
  content: "\e857"
}

.eicon-slider-device:before {
  content: "\e858"
}

.eicon-slider-full-screen:before {
  content: "\e859"
}

.eicon-slider-push:before {
  content: "\e85a"
}

.eicon-slider-vertical:before {
  content: "\e85b"
}

.eicon-slider-video:before {
  content: "\e85c"
}

.eicon-slides:before {
  content: "\e85d"
}

.eicon-social-icons:before {
  content: "\e85e"
}

.eicon-spacer:before {
  content: "\e85f"
}

.eicon-table:before {
  content: "\e860"
}

.eicon-tabs:before {
  content: "\e861"
}

.eicon-tel-field:before {
  content: "\e862"
}

.eicon-text-area:before {
  content: "\e863"
}

.eicon-text-field:before {
  content: "\e864"
}

.eicon-thumbnails-down:before {
  content: "\e865"
}

.eicon-thumbnails-half:before {
  content: "\e866"
}

.eicon-thumbnails-right:before {
  content: "\e867"
}

.eicon-time-line:before {
  content: "\e868"
}

.eicon-toggle:before {
  content: "\e869"
}

.eicon-url:before {
  content: "\e86a"
}

.eicon-t-letter:before {
  content: "\e86b"
}

.eicon-wordpress:before {
  content: "\e86c"
}

.eicon-text:before {
  content: "\e86d"
}

.eicon-anchor:before {
  content: "\e86e"
}

.eicon-bullet-list:before {
  content: "\e86f"
}

.eicon-code:before {
  content: "\e870"
}

.eicon-favorite:before {
  content: "\e871"
}

.eicon-google-maps:before {
  content: "\e872"
}

.eicon-image:before {
  content: "\e873"
}

.eicon-photo-library:before {
  content: "\e874"
}

.eicon-woocommerce:before {
  content: "\e875"
}

.eicon-youtube:before {
  content: "\e876"
}

.eicon-flip-box:before {
  content: "\e877"
}

.eicon-settings:before {
  content: "\e878"
}

.eicon-headphones:before {
  content: "\e879"
}

.eicon-testimonial:before {
  content: "\e87a"
}

.eicon-counter-circle:before {
  content: "\e87b"
}

.eicon-person:before {
  content: "\e87c"
}

.eicon-chevron-right:before {
  content: "\e87d"
}

.eicon-chevron-left:before {
  content: "\e87e"
}

.eicon-close:before {
  content: "\e87f"
}

.eicon-file-download:before {
  content: "\e880"
}

.eicon-save:before {
  content: "\e881"
}

.eicon-zoom-in:before {
  content: "\e882"
}

.eicon-shortcode:before {
  content: "\e883"
}

.eicon-nerd:before {
  content: "\e884"
}

.eicon-device-desktop:before {
  content: "\e885"
}

.eicon-device-tablet:before {
  content: "\e886"
}

.eicon-device-mobile:before {
  content: "\e887"
}

.eicon-document-file:before {
  content: "\e888"
}

.eicon-folder-o:before {
  content: "\e889"
}

.eicon-hypster:before {
  content: "\e88a"
}

.eicon-h-align-left:before {
  content: "\e88b"
}

.eicon-h-align-right:before {
  content: "\e88c"
}

.eicon-h-align-center:before {
  content: "\e88d"
}

.eicon-h-align-stretch:before {
  content: "\e88e"
}

.eicon-v-align-top:before {
  content: "\e88f"
}

.eicon-v-align-bottom:before {
  content: "\e890"
}

.eicon-v-align-middle:before {
  content: "\e891"
}

.eicon-v-align-stretch:before {
  content: "\e892"
}

.eicon-pro-icon:before {
  content: "\e893"
}

.eicon-mail:before {
  content: "\e894"
}

.eicon-lock-user:before {
  content: "\e895"
}

.eicon-testimonial-carousel:before {
  content: "\e896"
}

.eicon-media-carousel:before {
  content: "\e897"
}

.eicon-section:before {
  content: "\e898"
}

.eicon-column:before {
  content: "\e899"
}

.eicon-edit:before {
  content: "\e89a"
}

.eicon-clone:before {
  content: "\e89b"
}

.eicon-trash:before {
  content: "\e89c"
}

.eicon-play:before {
  content: "\e89d"
}

.eicon-angle-right:before {
  content: "\e89e"
}

.eicon-angle-left:before {
  content: "\e89f"
}

.eicon-animated-headline:before {
  content: "\e8a0"
}

.eicon-menu-toggle:before {
  content: "\e8a1"
}

.eicon-fb-embed:before {
  content: "\e8a2"
}

.eicon-fb-feed:before {
  content: "\e8a3"
}

.eicon-twitter-embed:before {
  content: "\e8a4"
}

.eicon-twitter-feed:before {
  content: "\e8a5"
}

.eicon-sync:before {
  content: "\e8a6"
}

.eicon-import-export:before {
  content: "\e8a7"
}

.eicon-check-circle:before {
  content: "\e8a8"
}

.eicon-library-save:before {
  content: "\e8a9"
}

.eicon-library-download:before {
  content: "\e8aa"
}

.eicon-insert:before {
  content: "\e8ab"
}

.eicon-preview-medium:before {
  content: "\e8ac"
}

.eicon-sort-down:before {
  content: "\e8ad"
}

.eicon-sort-up:before {
  content: "\e8ae"
}

.eicon-heading:before {
  content: "\e8af"
}

.eicon-logo:before {
  content: "\e8b0"
}

.eicon-meta-data:before {
  content: "\e8b1"
}

.eicon-post-content:before {
  content: "\e8b2"
}

.eicon-post-excerpt:before {
  content: "\e8b3"
}

.eicon-post-navigation:before {
  content: "\e8b4"
}

.eicon-yoast:before {
  content: "\e8b5"
}

.eicon-nerd-chuckle:before {
  content: "\e8b6"
}

.eicon-nerd-wink:before {
  content: "\e8b7"
}

.eicon-comments:before {
  content: "\e8b8"
}

.eicon-download-circle-o:before {
  content: "\e8b9"
}

.eicon-library-upload:before {
  content: "\e8ba"
}

.eicon-save-o:before {
  content: "\e8bb"
}

.eicon-upload-circle-o:before {
  content: "\e8bc"
}

.eicon-ellipsis-h:before {
  content: "\e8bd"
}

.eicon-ellipsis-v:before {
  content: "\e8be"
}

.eicon-arrow-left:before {
  content: "\e8bf"
}

.eicon-arrow-right:before {
  content: "\e8c0"
}

.eicon-arrow-up:before {
  content: "\e8c1"
}

.eicon-arrow-down:before {
  content: "\e8c2"
}

.eicon-play-o:before {
  content: "\e8c3"
}

.eicon-archive-posts:before {
  content: "\e8c4"
}

.eicon-archive-title:before {
  content: "\e8c5"
}

.eicon-featured-image:before {
  content: "\e8c6"
}

.eicon-post-info:before {
  content: "\e8c7"
}

.eicon-post-title:before {
  content: "\e8c8"
}

.eicon-site-logo:before {
  content: "\e8c9"
}

.eicon-site-search:before {
  content: "\e8ca"
}

.eicon-site-title:before {
  content: "\e8cb"
}

.eicon-plus-square:before {
  content: "\e8cc"
}

.eicon-minus-square:before {
  content: "\e8cd"
}

.eicon-cloud-check:before {
  content: "\e8ce"
}

.eicon-drag-n-drop:before {
  content: "\e8cf"
}

.eicon-welcome:before {
  content: "\e8d0"
}

.eicon-handle:before {
  content: "\e8d1"
}

.eicon-cart:before {
  content: "\e8d2"
}

.eicon-product-add-to-cart:before {
  content: "\e8d3"
}

.eicon-product-breadcrumbs:before {
  content: "\e8d4"
}

.eicon-product-categories:before {
  content: "\e8d5"
}

.eicon-product-description:before {
  content: "\e8d6"
}

.eicon-product-images:before {
  content: "\e8d7"
}

.eicon-product-info:before {
  content: "\e8d8"
}

.eicon-product-meta:before {
  content: "\e8d9"
}

.eicon-product-pages:before {
  content: "\e8da"
}

.eicon-product-price:before {
  content: "\e8db"
}

.eicon-product-rating:before {
  content: "\e8dc"
}

.eicon-product-related:before {
  content: "\e8dd"
}

.eicon-product-stock:before {
  content: "\e8de"
}

.eicon-product-tabs:before {
  content: "\e8df"
}

.eicon-product-title:before {
  content: "\e8e0"
}

.eicon-product-upsell:before {
  content: "\e8e1"
}

.eicon-products:before {
  content: "\e8e2"
}

.eicon-bag-light:before {
  content: "\e8e3"
}

.eicon-bag-medium:before {
  content: "\e8e4"
}

.eicon-bag-solid:before {
  content: "\e8e5"
}

.eicon-basket-light:before {
  content: "\e8e6"
}

.eicon-basket-medium:before {
  content: "\e8e7"
}

.eicon-basket-solid:before {
  content: "\e8e8"
}

.eicon-cart-light:before {
  content: "\e8e9"
}

.eicon-cart-medium:before {
  content: "\e8ea"
}

.eicon-cart-solid:before {
  content: "\e8eb"
}

.eicon-exchange:before {
  content: "\e8ec"
}

.eicon-preview-thin:before {
  content: "\e8ed"
}

.eicon-device-laptop:before {
  content: "\e8ee"
}

.eicon-collapse:before {
  content: "\e8ef"
}

.eicon-expand:before {
  content: "\e8f0"
}

.eicon-navigator:before {
  content: "\e8f1"
}

.eicon-plug:before {
  content: "\e8f2"
}

.eicon-dashboard:before {
  content: "\e8f3"
}

.eicon-typography:before {
  content: "\e8f4"
}

.eicon-info-circle-o:before {
  content: "\e8f5"
}

.eicon-integration:before {
  content: "\e8f6"
}

.eicon-plus-circle-o:before {
  content: "\e8f7"
}

.eicon-rating:before {
  content: "\e8f8"
}

.eicon-review:before {
  content: "\e8f9"
}

.eicon-tools:before {
  content: "\e8fa"
}

.eicon-loading:before {
  content: "\e8fb"
}

.eicon-sitemap:before {
  content: "\e8fc"
}

.eicon-click:before {
  content: "\e8fd"
}

.eicon-clock:before {
  content: "\e8fe"
}

.eicon-library-open:before {
  content: "\e8ff"
}

.eicon-warning:before {
  content: "\e900"
}

.eicon-flow:before {
  content: "\e901"
}

.eicon-cursor-move:before {
  content: "\e902"
}

.eicon-arrow-circle-left:before {
  content: "\e903"
}

.eicon-flash:before {
  content: "\e904"
}

.eicon-redo:before {
  content: "\e905"
}

.eicon-ban:before {
  content: "\e906"
}

.eicon-barcode:before {
  content: "\e907"
}

.eicon-calendar:before {
  content: "\e908"
}

.eicon-caret-left:before {
  content: "\e909"
}

.eicon-caret-right:before {
  content: "\e90a"
}

.eicon-caret-up:before {
  content: "\e90b"
}

.eicon-chain-broken:before {
  content: "\e90c"
}

.eicon-check-circle-o:before {
  content: "\e90d"
}

.eicon-check:before {
  content: "\e90e"
}

.eicon-chevron-double-left:before {
  content: "\e90f"
}

.eicon-chevron-double-right:before {
  content: "\e910"
}

.eicon-undo:before {
  content: "\e911"
}

.eicon-filter:before {
  content: "\e912"
}

.eicon-circle-o:before {
  content: "\e913"
}

.eicon-circle:before {
  content: "\e914"
}

.eicon-clock-o:before {
  content: "\e915"
}

.eicon-cog:before {
  content: "\e916"
}

.eicon-cogs:before {
  content: "\e917"
}

.eicon-commenting-o:before {
  content: "\e918"
}

.eicon-copy:before {
  content: "\e919"
}

.eicon-database:before {
  content: "\e91a"
}

.eicon-dot-circle-o:before {
  content: "\e91b"
}

.eicon-envelope:before {
  content: "\e91c"
}

.eicon-external-link-square:before {
  content: "\e91d"
}

.eicon-eyedropper:before {
  content: "\e91e"
}

.eicon-folder:before {
  content: "\e91f"
}

.eicon-font:before {
  content: "\e920"
}

.eicon-adjust:before {
  content: "\e921"
}

.eicon-lightbox:before {
  content: "\e922"
}

.eicon-heart-o:before {
  content: "\e923"
}

.eicon-history:before {
  content: "\e924"
}

.eicon-image-bold:before {
  content: "\e925"
}

.eicon-info-circle:before {
  content: "\e926"
}

.eicon-link:before {
  content: "\e927"
}

.eicon-long-arrow-left:before {
  content: "\e928"
}

.eicon-long-arrow-right:before {
  content: "\e929"
}

.eicon-caret-down:before {
  content: "\e92a"
}

.eicon-paint-brush:before {
  content: "\e92b"
}

.eicon-pencil:before {
  content: "\e92c"
}

.eicon-plus-circle:before {
  content: "\e92d"
}

.eicon-zoom-in-bold:before {
  content: "\e92e"
}

.eicon-sort-amount-desc:before {
  content: "\e92f"
}

.eicon-sign-out:before {
  content: "\e930"
}

.eicon-spinner:before {
  content: "\e931"
}

.eicon-square:before {
  content: "\e932"
}

.eicon-star-o:before {
  content: "\e933"
}

.eicon-star:before {
  content: "\e934"
}

.eicon-text-align-justify:before {
  content: "\e935"
}

.eicon-text-align-center:before {
  content: "\e936"
}

.eicon-tags:before {
  content: "\e937"
}

.eicon-text-align-left:before {
  content: "\e938"
}

.eicon-text-align-right:before {
  content: "\e939"
}

.eicon-close-circle:before {
  content: "\e93a"
}

.eicon-trash-o:before {
  content: "\e93b"
}

.eicon-font-awesome:before {
  content: "\e93c"
}

.eicon-user-circle-o:before {
  content: "\e93d"
}

.eicon-video-camera:before {
  content: "\e93e"
}

.eicon-heart:before {
  content: "\e93f"
}

.eicon-wrench:before {
  content: "\e940"
}

.eicon-help:before {
  content: "\e941"
}

.eicon-help-o:before {
  content: "\e942"
}

.eicon-zoom-out-bold:before {
  content: "\e943"
}

.eicon-plus-square-o:before {
  content: "\e944"
}

.eicon-minus-square-o:before {
  content: "\e945"
}

.eicon-minus-circle:before {
  content: "\e946"
}

.eicon-minus-circle-o:before {
  content: "\e947"
}

.eicon-code-bold:before {
  content: "\e948"
}

.eicon-cloud-upload:before {
  content: "\e949"
}

.eicon-search-bold:before {
  content: "\e94a"
}

.eicon-map-pin:before {
  content: "\e94b"
}

.eicon-meetup:before {
  content: "\e94c"
}

.eicon-slideshow:before {
  content: "\e94d"
}

.eicon-t-letter-bold:before {
  content: "\e94e"
}

.eicon-preferences:before {
  content: "\e94f"
}

.eicon-table-of-contents:before {
  content: "\e950"
}

.eicon-tv:before {
  content: "\e951"
}

.eicon-upload:before {
  content: "\e952"
}

.eicon-instagram-comments:before {
  content: "\e953"
}

.eicon-instagram-nested-gallery:before {
  content: "\e954"
}

.eicon-instagram-post:before {
  content: "\e955"
}

.eicon-instagram-video:before {
  content: "\e956"
}

.eicon-instagram-gallery:before {
  content: "\e957"
}

.eicon-instagram-likes:before {
  content: "\e958"
}

.eicon-facebook:before {
  content: "\e959"
}

.eicon-twitter:before {
  content: "\e95a"
}

.eicon-pinterest:before {
  content: "\e95b"
}

.eicon-frame-expand:before {
  content: "\e95c"
}

.eicon-frame-minimize:before {
  content: "\e95d"
}

.eicon-archive:before {
  content: "\e95e"
}

.eicon-colors-typography:before {
  content: "\e95f"
}

.eicon-custom:before {
  content: "\e960"
}

.eicon-footer:before {
  content: "\e961"
}

.eicon-header:before {
  content: "\e962"
}

.eicon-layout-settings:before {
  content: "\e963"
}

.eicon-lightbox-expand:before {
  content: "\e964"
}

.eicon-error-404:before {
  content: "\e965"
}

.eicon-theme-style:before {
  content: "\e966"
}

.eicon-search-results:before {
  content: "\e967"
}

.eicon-single-post:before {
  content: "\e968"
}

.eicon-site-identity:before {
  content: "\e969"
}

.eicon-theme-builder:before {
  content: "\e96a"
}

.eicon-download-bold:before {
  content: "\e96b"
}

.eicon-share-arrow:before {
  content: "\e96c"
}

.eicon-global-settings:before {
  content: "\e96d"
}

.eicon-user-preferences:before {
  content: "\e96e"
}

.eicon-lock:before {
  content: "\e96f"
}

.eicon-export-kit:before {
  content: "\e970"
}

.eicon-import-kit:before {
  content: "\e971"
}

.eicon-lottie:before {
  content: "\e972"
}

.eicon-products-archive:before {
  content: "\e973"
}

.eicon-single-product:before {
  content: "\e974"
}

.eicon-disable-trash-o:before {
  content: "\e975"
}

.eicon-single-page:before {
  content: "\e976"
}

.eicon-wordpress-light:before {
  content: "\e977"
}

.eicon-cogs-check:before {
  content: "\e978"
}

.eicon-custom-css:before {
  content: "\e979"
}

.eicon-global-colors:before {
  content: "\e97a"
}

.eicon-globe:before {
  content: "\e97b"
}

.eicon-typography-1:before {
  content: "\e97c"
}

.eicon-background:before {
  content: "\e97d"
}

.eicon-device-responsive:before {
  content: "\e97e"
}

.eicon-device-wide:before {
  content: "\e97f"
}

.eicon-code-highlight:before {
  content: "\e980"
}

.eicon-video-playlist:before {
  content: "\e981"
}

.eicon-download-kit:before {
  content: "\e982"
}

.eicon-kit-details:before {
  content: "\e983"
}

.eicon-kit-parts:before {
  content: "\e984"
}

.eicon-kit-upload:before {
  content: "\e985"
}

.eicon-kit-plugins:before {
  content: "\e986"
}

.eicon-kit-upload-alt:before {
  content: "\e987"
}

.eicon-hotspot:before {
  content: "\e988"
}

.eicon-paypal-button:before {
  content: "\e989"
}

.eicon-shape:before {
  content: "\e98a"
}

.eicon-wordart:before {
  content: "\e98b"
}

.eicon-checkout:before {
  content: "\e98c"
}

.eicon-container:before {
  content: "\e98d"
}

.eicon-flip:before {
  content: "\e98e"
}

.eicon-info:before {
  content: "\e98f"
}

.eicon-my-account:before {
  content: "\e990"
}

.eicon-purchase-summary:before {
  content: "\e991"
}

.eicon-page-transition:before {
  content: "\e992"
}

.eicon-spotify:before {
  content: "\e993"
}

.eicon-stripe-button:before {
  content: "\e994"
}

.eicon-woo-settings:before {
  content: "\e995"
}

.eicon-woo-cart:before {
  content: "\e996"
}

.eicon-grow:before {
  content: "\e997"
}

.eicon-order-end:before {
  content: "\e998"
}

.eicon-nowrap:before {
  content: "\e999"
}

.eicon-order-start:before {
  content: "\e99a"
}

.eicon-progress-tracker:before {
  content: "\e99b"
}

.eicon-shrink:before {
  content: "\e99c"
}

.eicon-wrap:before {
  content: "\e99d"
}

.eicon-align-center-h:before {
  content: "\e99e"
}

.eicon-align-center-v:before {
  content: "\e99f"
}

.eicon-align-end-h:before {
  content: "\e9a0"
}

.eicon-align-end-v:before {
  content: "\e9a1"
}

.eicon-align-start-h:before {
  content: "\e9a2"
}

.eicon-align-start-v:before {
  content: "\e9a3"
}

.eicon-align-stretch-h:before {
  content: "\e9a4"
}

.eicon-align-stretch-v:before {
  content: "\e9a5"
}

.eicon-justify-center-h:before {
  content: "\e9a6"
}

.eicon-justify-center-v:before {
  content: "\e9a7"
}

.eicon-justify-end-h:before {
  content: "\e9a8"
}

.eicon-justify-end-v:before {
  content: "\e9a9"
}

.eicon-justify-space-around-h:before {
  content: "\e9aa"
}

.eicon-justify-space-around-v:before {
  content: "\e9ab"
}

.eicon-justify-space-between-h:before {
  content: "\e9ac"
}

.eicon-justify-space-between-v:before {
  content: "\e9ad"
}

.eicon-justify-space-evenly-h:before {
  content: "\e9ae"
}

.eicon-justify-space-evenly-v:before {
  content: "\e9af"
}

.eicon-justify-start-h:before {
  content: "\e9b0"
}

.eicon-justify-start-v:before {
  content: "\e9b1"
}

.eicon-woocommerce-cross-sells:before {
  content: "\e9b2"
}

.eicon-woocommerce-notices:before {
  content: "\e9b3"
}

.eicon-inner-container:before {
  content: "\e9b4"
}

.eicon-warning-full:before {
  content: "\e9b5"
}

.eicon-exit:before {
  content: "\e9b6"
}

.eicon-loop-builder:before {
  content: "\e9b7"
}

.eicon-notes:before {
  content: "\e9b8"
}

.eicon-read:before {
  content: "\e9b9"
}

.eicon-unread:before {
  content: "\e9ba"
}

.eicon-carousel-loop:before {
  content: "\e9bb"
}

.eicon-mega-menu:before {
  content: "\eb78"
}

.eicon-nested-carousel:before {
  content: "\e9bd"
}

.eicon-ai:before {
  content: "\e9be"
}

.eicon-eye:before {
  content: "\e8ac"
}

.eicon-elementor-square:before {
  content: "\e813"
}

/*! elementor - v3.13.2 - 11-05-2023 */
.dialog-widget-content {
  background-color: var(--e-a-bg-default);
  position: absolute;
  border-radius: 3px;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2);
  overflow: hidden
}

.dialog-message {
  line-height: 1.5;
  box-sizing: border-box
}

.dialog-close-button {
  cursor: pointer;
  position: absolute;
  margin-top: 15px;
  right: 15px;
  color: var(--e-a-color-txt);
  font-size: 15px;
  line-height: 1;
  transition: var(--e-a-transition-hover)
}

.dialog-close-button:hover {
  color: var(--e-a-color-txt-hover)
}

.dialog-prevent-scroll {
  overflow: hidden;
  max-height: 100vh
}

.dialog-type-lightbox {
  position: fixed;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .8);
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.flatpickr-calendar {
  width: 280px
}

.flatpickr-calendar .flatpickr-current-month span.cur-month {
  font-weight: 300
}

.flatpickr-calendar .dayContainer {
  width: 280px;
  min-width: 280px;
  max-width: 280px
}

.flatpickr-calendar .flatpickr-days {
  width: 280px
}

.flatpickr-calendar .flatpickr-day {
  max-width: 37px;
  height: 37px;
  line-height: 37px
}

.elementor-hidden {
  display: none
}

.elementor-screen-only,
.screen-reader-text,
.screen-reader-text span,
.ui-helper-hidden-accessible {
  position: absolute;
  top: -10000em;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.elementor-clearfix:after {
  content: "";
  display: block;
  clear: both;
  width: 0;
  height: 0
}

.e-logo-wrapper {
  background: var(--e-a-bg-logo);
  display: inline-block;
  padding: .75em;
  border-radius: 50%;
  line-height: 1
}

.e-logo-wrapper i {
  color: var(--e-a-color-logo);
  font-size: 1em
}

.elementor-aspect-ratio-219 .elementor-fit-aspect-ratio {
  padding-bottom: 42.8571%
}

.elementor-aspect-ratio-169 .elementor-fit-aspect-ratio {
  padding-bottom: 56.25%
}

.elementor-aspect-ratio-43 .elementor-fit-aspect-ratio {
  padding-bottom: 75%
}

.elementor-aspect-ratio-32 .elementor-fit-aspect-ratio {
  padding-bottom: 66.6666%
}

.elementor-aspect-ratio-11 .elementor-fit-aspect-ratio {
  padding-bottom: 100%
}

.elementor-aspect-ratio-916 .elementor-fit-aspect-ratio {
  padding-bottom: 177.8%
}

.elementor-fit-aspect-ratio {
  position: relative;
  height: 0
}

.elementor-fit-aspect-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
  background-color: #000
}

.elementor-fit-aspect-ratio video {
  width: 100%
}

.elementor *,
.elementor :after,
.elementor :before {
  box-sizing: border-box
}

.elementor a {
  box-shadow: none;
  text-decoration: none
}

.elementor hr {
  margin: 0;
  background-color: transparent
}

.elementor img {
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none
}

.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure {
  margin: 0
}

.elementor embed,
.elementor iframe,
.elementor object,
.elementor video {
  max-width: 100%;
  width: 100%;
  margin: 0;
  line-height: 1;
  border: none
}

.elementor .elementor-background,
.elementor .elementor-background-holder,
.elementor .elementor-background-video-container {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  direction: ltr
}

.elementor .elementor-background-video-container {
  transition: opacity 1s;
  pointer-events: none
}

.elementor .elementor-background-video-container.elementor-loading {
  opacity: 0
}

.elementor .elementor-background-video-embed {
  max-width: none
}

.elementor .elementor-background-video,
.elementor .elementor-background-video-embed,
.elementor .elementor-background-video-hosted {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.elementor .elementor-background-video {
  max-width: none
}

.elementor .elementor-html5-video {
  -o-object-fit: cover;
  object-fit: cover
}

.elementor .elementor-background-overlay,
.elementor .elementor-background-slideshow {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute
}

.elementor .elementor-background-slideshow {
  z-index: 0
}

.elementor .elementor-background-slideshow__slide__image {
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover
}

.e-con-inner>.elementor-element.elementor-absolute,
.e-con>.elementor-element.elementor-absolute,
.elementor-widget-wrap>.elementor-element.elementor-absolute {
  position: absolute
}

.e-con-inner>.elementor-element.elementor-fixed,
.e-con>.elementor-element.elementor-fixed,
.elementor-widget-wrap>.elementor-element.elementor-fixed {
  position: fixed
}

.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,
.elementor-widget-wrap .elementor-element.elementor-widget__width-initial {
  max-width: 100%
}

@media (max-width:1024px) {

  .elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,
  .elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial {
    max-width: 100%
  }
}

@media (max-width:767px) {

  .elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,
  .elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial {
    max-width: 100%
  }
}

.elementor-element {
  --flex-direction: initial;
  --flex-wrap: initial;
  --justify-content: initial;
  --align-items: initial;
  --align-content: initial;
  --gap: initial;
  --flex-basis: initial;
  --flex-grow: initial;
  --flex-shrink: initial;
  --order: initial;
  --align-self: initial;
  flex-basis: var(--flex-basis);
  flex-grow: var(--flex-grow);
  flex-shrink: var(--flex-shrink);
  order: var(--order);
  align-self: var(--align-self)
}

.elementor-element.elementor-absolute,
.elementor-element.elementor-fixed {
  z-index: 1
}

.elementor-element:where(.e-con-full, .elementor-widget) {
  flex-direction: var(--flex-direction);
  flex-wrap: var(--flex-wrap);
  justify-content: var(--justify-content);
  align-items: var(--align-items);
  align-content: var(--align-content);
  gap: var(--gap)
}

.elementor-invisible {
  visibility: hidden
}

.elementor-align-center {
  text-align: center
}

.elementor-align-center .elementor-button {
  width: auto
}

.elementor-align-right {
  text-align: right
}

.elementor-align-right .elementor-button {
  width: auto
}

.elementor-align-left {
  text-align: left
}

.elementor-align-left .elementor-button {
  width: auto
}

.elementor-align-justify .elementor-button {
  width: 100%
}

.elementor-custom-embed-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.elementor-custom-embed-play i {
  font-size: 100px;
  color: #fff;
  text-shadow: 1px 0 6px rgba(0, 0, 0, .3)
}

.elementor-custom-embed-play svg {
  height: 100px;
  width: 100px;
  fill: #fff;
  filter: drop-shadow(1px 0 6px rgba(0, 0, 0, .3))
}

.elementor-custom-embed-play i,
.elementor-custom-embed-play svg {
  opacity: .8;
  transition: all .5s
}

.elementor-custom-embed-play.elementor-playing i {
  font-family: eicons
}

.elementor-custom-embed-play.elementor-playing i:before {
  content: "\e8fb"
}

.elementor-custom-embed-play.elementor-playing i,
.elementor-custom-embed-play.elementor-playing svg {
  animation: eicon-spin 2s linear infinite
}

.elementor-tag {
  display: inline-flex
}

.elementor-ken-burns {
  transition-property: transform;
  transition-duration: 10s;
  transition-timing-function: linear
}

.elementor-ken-burns--out {
  transform: scale(1.3)
}

.elementor-ken-burns--active {
  transition-duration: 20s
}

.elementor-ken-burns--active.elementor-ken-burns--out {
  transform: scale(1)
}

.elementor-ken-burns--active.elementor-ken-burns--in {
  transform: scale(1.3)
}

@media (min-width:-1) {
  .elementor-widescreen-align-center {
    text-align: center
  }

  .elementor-widescreen-align-center .elementor-button {
    width: auto
  }

  .elementor-widescreen-align-right {
    text-align: right
  }

  .elementor-widescreen-align-right .elementor-button {
    width: auto
  }

  .elementor-widescreen-align-left {
    text-align: left
  }

  .elementor-widescreen-align-left .elementor-button {
    width: auto
  }

  .elementor-widescreen-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:-1) {
  .elementor-laptop-align-center {
    text-align: center
  }

  .elementor-laptop-align-center .elementor-button {
    width: auto
  }

  .elementor-laptop-align-right {
    text-align: right
  }

  .elementor-laptop-align-right .elementor-button {
    width: auto
  }

  .elementor-laptop-align-left {
    text-align: left
  }

  .elementor-laptop-align-left .elementor-button {
    width: auto
  }

  .elementor-laptop-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:-1) {
  .elementor-tablet_extra-align-center {
    text-align: center
  }

  .elementor-tablet_extra-align-center .elementor-button {
    width: auto
  }

  .elementor-tablet_extra-align-right {
    text-align: right
  }

  .elementor-tablet_extra-align-right .elementor-button {
    width: auto
  }

  .elementor-tablet_extra-align-left {
    text-align: left
  }

  .elementor-tablet_extra-align-left .elementor-button {
    width: auto
  }

  .elementor-tablet_extra-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:1024px) {
  .elementor-tablet-align-center {
    text-align: center
  }

  .elementor-tablet-align-center .elementor-button {
    width: auto
  }

  .elementor-tablet-align-right {
    text-align: right
  }

  .elementor-tablet-align-right .elementor-button {
    width: auto
  }

  .elementor-tablet-align-left {
    text-align: left
  }

  .elementor-tablet-align-left .elementor-button {
    width: auto
  }

  .elementor-tablet-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:-1) {
  .elementor-mobile_extra-align-center {
    text-align: center
  }

  .elementor-mobile_extra-align-center .elementor-button {
    width: auto
  }

  .elementor-mobile_extra-align-right {
    text-align: right
  }

  .elementor-mobile_extra-align-right .elementor-button {
    width: auto
  }

  .elementor-mobile_extra-align-left {
    text-align: left
  }

  .elementor-mobile_extra-align-left .elementor-button {
    width: auto
  }

  .elementor-mobile_extra-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:767px) {
  .elementor-mobile-align-center {
    text-align: center
  }

  .elementor-mobile-align-center .elementor-button {
    width: auto
  }

  .elementor-mobile-align-right {
    text-align: right
  }

  .elementor-mobile-align-right .elementor-button {
    width: auto
  }

  .elementor-mobile-align-left {
    text-align: left
  }

  .elementor-mobile-align-left .elementor-button {
    width: auto
  }

  .elementor-mobile-align-justify .elementor-button {
    width: 100%
  }
}

:root {
  --page-title-display: block
}

.elementor-page-title,
h1.entry-title {
  display: var(--page-title-display)
}

@keyframes eicon-spin {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(359deg)
  }
}

.eicon-animation-spin {
  animation: eicon-spin 2s linear infinite
}

.elementor-section {
  position: relative
}

.elementor-section .elementor-container {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative
}

@media (max-width:1024px) {
  .elementor-section .elementor-container {
    flex-wrap: wrap
  }
}

.elementor-section.elementor-section-boxed>.elementor-container {
  max-width: 1140px
}

.elementor-section.elementor-section-stretched {
  position: relative;
  width: 100%
}

.elementor-section.elementor-section-items-top>.elementor-container {
  align-items: flex-start
}

.elementor-section.elementor-section-items-middle>.elementor-container {
  align-items: center
}

.elementor-section.elementor-section-items-bottom>.elementor-container {
  align-items: flex-end
}

@media (min-width:768px) {
  .elementor-section.elementor-section-height-full {
    height: 100vh
  }

  .elementor-section.elementor-section-height-full>.elementor-container {
    height: 100%
  }
}

.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap {
  align-items: flex-start
}

.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap {
  align-items: center
}

.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap {
  align-items: flex-end
}

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

@media (max-width:1024px) {
  .elementor-row {
    flex-wrap: wrap
  }
}

.elementor-widget-wrap {
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start
}

.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
  display: flex
}

.elementor-widget-wrap>.elementor-element {
  width: 100%
}

.elementor-widget-wrap.e-swiper-container {
  width: calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))
}

.elementor-widget {
  position: relative
}

.elementor-widget:not(:last-child) {
  margin-bottom: 20px
}

.elementor-widget:not(:last-child).elementor-absolute,
.elementor-widget:not(:last-child).elementor-widget__width-auto,
.elementor-widget:not(:last-child).elementor-widget__width-initial {
  margin-bottom: 0
}

.elementor-column {
  position: relative;
  min-height: 1px;
  display: flex
}

.elementor-column-wrap {
  width: 100%;
  position: relative;
  display: flex
}

.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated {
  padding: 5px
}

.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
  padding: 10px
}

.elementor-column-gap-extended>.elementor-column>.elementor-element-populated {
  padding: 15px
}

.elementor-column-gap-wide>.elementor-column>.elementor-element-populated {
  padding: 20px
}

.elementor-column-gap-wider>.elementor-column>.elementor-element-populated {
  padding: 30px
}

.elementor-inner-section .elementor-column-gap-no .elementor-element-populated {
  padding: 0
}

@media (min-width:768px) {

  .elementor-column.elementor-col-10,
  .elementor-column[data-col="10"] {
    width: 10%
  }

  .elementor-column.elementor-col-11,
  .elementor-column[data-col="11"] {
    width: 11.111%
  }

  .elementor-column.elementor-col-12,
  .elementor-column[data-col="12"] {
    width: 12.5%
  }

  .elementor-column.elementor-col-14,
  .elementor-column[data-col="14"] {
    width: 14.285%
  }

  .elementor-column.elementor-col-16,
  .elementor-column[data-col="16"] {
    width: 16.666%
  }

  .elementor-column.elementor-col-20,
  .elementor-column[data-col="20"] {
    width: 20%
  }

  .elementor-column.elementor-col-25,
  .elementor-column[data-col="25"] {
    width: 25%
  }

  .elementor-column.elementor-col-30,
  .elementor-column[data-col="30"] {
    width: 30%
  }

  .elementor-column.elementor-col-33,
  .elementor-column[data-col="33"] {
    width: 33.333%
  }

  .elementor-column.elementor-col-40,
  .elementor-column[data-col="40"] {
    width: 40%
  }

  .elementor-column.elementor-col-50,
  .elementor-column[data-col="50"] {
    width: 50%
  }

  .elementor-column.elementor-col-60,
  .elementor-column[data-col="60"] {
    width: 60%
  }

  .elementor-column.elementor-col-66,
  .elementor-column[data-col="66"] {
    width: 66.666%
  }

  .elementor-column.elementor-col-70,
  .elementor-column[data-col="70"] {
    width: 70%
  }

  .elementor-column.elementor-col-75,
  .elementor-column[data-col="75"] {
    width: 75%
  }

  .elementor-column.elementor-col-80,
  .elementor-column[data-col="80"] {
    width: 80%
  }

  .elementor-column.elementor-col-83,
  .elementor-column[data-col="83"] {
    width: 83.333%
  }

  .elementor-column.elementor-col-90,
  .elementor-column[data-col="90"] {
    width: 90%
  }

  .elementor-column.elementor-col-100,
  .elementor-column[data-col="100"] {
    width: 100%
  }
}

@media (max-width:479px) {
  .elementor-column.elementor-xs-10 {
    width: 10%
  }

  .elementor-column.elementor-xs-11 {
    width: 11.111%
  }

  .elementor-column.elementor-xs-12 {
    width: 12.5%
  }

  .elementor-column.elementor-xs-14 {
    width: 14.285%
  }

  .elementor-column.elementor-xs-16 {
    width: 16.666%
  }

  .elementor-column.elementor-xs-20 {
    width: 20%
  }

  .elementor-column.elementor-xs-25 {
    width: 25%
  }

  .elementor-column.elementor-xs-30 {
    width: 30%
  }

  .elementor-column.elementor-xs-33 {
    width: 33.333%
  }

  .elementor-column.elementor-xs-40 {
    width: 40%
  }

  .elementor-column.elementor-xs-50 {
    width: 50%
  }

  .elementor-column.elementor-xs-60 {
    width: 60%
  }

  .elementor-column.elementor-xs-66 {
    width: 66.666%
  }

  .elementor-column.elementor-xs-70 {
    width: 70%
  }

  .elementor-column.elementor-xs-75 {
    width: 75%
  }

  .elementor-column.elementor-xs-80 {
    width: 80%
  }

  .elementor-column.elementor-xs-83 {
    width: 83.333%
  }

  .elementor-column.elementor-xs-90 {
    width: 90%
  }

  .elementor-column.elementor-xs-100 {
    width: 100%
  }
}

@media (max-width:767px) {
  .elementor-column.elementor-sm-10 {
    width: 10%
  }

  .elementor-column.elementor-sm-11 {
    width: 11.111%
  }

  .elementor-column.elementor-sm-12 {
    width: 12.5%
  }

  .elementor-column.elementor-sm-14 {
    width: 14.285%
  }

  .elementor-column.elementor-sm-16 {
    width: 16.666%
  }

  .elementor-column.elementor-sm-20 {
    width: 20%
  }

  .elementor-column.elementor-sm-25 {
    width: 25%
  }

  .elementor-column.elementor-sm-30 {
    width: 30%
  }

  .elementor-column.elementor-sm-33 {
    width: 33.333%
  }

  .elementor-column.elementor-sm-40 {
    width: 40%
  }

  .elementor-column.elementor-sm-50 {
    width: 50%
  }

  .elementor-column.elementor-sm-60 {
    width: 60%
  }

  .elementor-column.elementor-sm-66 {
    width: 66.666%
  }

  .elementor-column.elementor-sm-70 {
    width: 70%
  }

  .elementor-column.elementor-sm-75 {
    width: 75%
  }

  .elementor-column.elementor-sm-80 {
    width: 80%
  }

  .elementor-column.elementor-sm-83 {
    width: 83.333%
  }

  .elementor-column.elementor-sm-90 {
    width: 90%
  }

  .elementor-column.elementor-sm-100 {
    width: 100%
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .elementor-column.elementor-md-10 {
    width: 10%
  }

  .elementor-column.elementor-md-11 {
    width: 11.111%
  }

  .elementor-column.elementor-md-12 {
    width: 12.5%
  }

  .elementor-column.elementor-md-14 {
    width: 14.285%
  }

  .elementor-column.elementor-md-16 {
    width: 16.666%
  }

  .elementor-column.elementor-md-20 {
    width: 20%
  }

  .elementor-column.elementor-md-25 {
    width: 25%
  }

  .elementor-column.elementor-md-30 {
    width: 30%
  }

  .elementor-column.elementor-md-33 {
    width: 33.333%
  }

  .elementor-column.elementor-md-40 {
    width: 40%
  }

  .elementor-column.elementor-md-50 {
    width: 50%
  }

  .elementor-column.elementor-md-60 {
    width: 60%
  }

  .elementor-column.elementor-md-66 {
    width: 66.666%
  }

  .elementor-column.elementor-md-70 {
    width: 70%
  }

  .elementor-column.elementor-md-75 {
    width: 75%
  }

  .elementor-column.elementor-md-80 {
    width: 80%
  }

  .elementor-column.elementor-md-83 {
    width: 83.333%
  }

  .elementor-column.elementor-md-90 {
    width: 90%
  }

  .elementor-column.elementor-md-100 {
    width: 100%
  }
}

@media (min-width:-1) {
  .elementor-reverse-widescreen>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:1025px) and (max-width:-1) {
  .elementor-reverse-laptop>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:-1) and (max-width:-1) {
  .elementor-reverse-laptop>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:1025px) and (max-width:-1) {

  .elementor-reverse-laptop>.elementor-container>:first-child,
  .elementor-reverse-laptop>.elementor-container>:nth-child(2),
  .elementor-reverse-laptop>.elementor-container>:nth-child(3),
  .elementor-reverse-laptop>.elementor-container>:nth-child(4),
  .elementor-reverse-laptop>.elementor-container>:nth-child(5),
  .elementor-reverse-laptop>.elementor-container>:nth-child(6),
  .elementor-reverse-laptop>.elementor-container>:nth-child(7),
  .elementor-reverse-laptop>.elementor-container>:nth-child(8),
  .elementor-reverse-laptop>.elementor-container>:nth-child(9),
  .elementor-reverse-laptop>.elementor-container>:nth-child(10) {
    order: 0
  }

  .elementor-reverse-tablet_extra>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .elementor-reverse-tablet>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:-1) and (max-width:1024px) {
  .elementor-reverse-tablet>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:768px) and (max-width:-1) {

  .elementor-reverse-tablet>.elementor-container>:first-child,
  .elementor-reverse-tablet>.elementor-container>:nth-child(2),
  .elementor-reverse-tablet>.elementor-container>:nth-child(3),
  .elementor-reverse-tablet>.elementor-container>:nth-child(4),
  .elementor-reverse-tablet>.elementor-container>:nth-child(5),
  .elementor-reverse-tablet>.elementor-container>:nth-child(6),
  .elementor-reverse-tablet>.elementor-container>:nth-child(7),
  .elementor-reverse-tablet>.elementor-container>:nth-child(8),
  .elementor-reverse-tablet>.elementor-container>:nth-child(9),
  .elementor-reverse-tablet>.elementor-container>:nth-child(10) {
    order: 0
  }

  .elementor-reverse-mobile_extra>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (max-width:767px) {
  .elementor-reverse-mobile>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(10) {
    order: 1
  }

  .elementor-column {
    width: 100%
  }
}

ul.elementor-icon-list-items.elementor-inline-items {
  display: flex;
  flex-wrap: wrap
}

ul.elementor-icon-list-items.elementor-inline-items .elementor-inline-item {
  word-break: break-word
}

.elementor-grid {
  display: grid;
  grid-column-gap: var(--grid-column-gap);
  grid-row-gap: var(--grid-row-gap)
}

.elementor-grid .elementor-grid-item {
  min-width: 0
}

.elementor-grid-0 .elementor-grid {
  display: inline-block;
  width: 100%;
  word-spacing: var(--grid-column-gap);
  margin-bottom: calc(-1 * var(--grid-row-gap))
}

.elementor-grid-0 .elementor-grid .elementor-grid-item {
  display: inline-block;
  margin-bottom: var(--grid-row-gap);
  word-break: break-word
}

.elementor-grid-1 .elementor-grid {
  grid-template-columns: repeat(1, 1fr)
}

.elementor-grid-2 .elementor-grid {
  grid-template-columns: repeat(2, 1fr)
}

.elementor-grid-3 .elementor-grid {
  grid-template-columns: repeat(3, 1fr)
}

.elementor-grid-4 .elementor-grid {
  grid-template-columns: repeat(4, 1fr)
}

.elementor-grid-5 .elementor-grid {
  grid-template-columns: repeat(5, 1fr)
}

.elementor-grid-6 .elementor-grid {
  grid-template-columns: repeat(6, 1fr)
}

.elementor-grid-7 .elementor-grid {
  grid-template-columns: repeat(7, 1fr)
}

.elementor-grid-8 .elementor-grid {
  grid-template-columns: repeat(8, 1fr)
}

.elementor-grid-9 .elementor-grid {
  grid-template-columns: repeat(9, 1fr)
}

.elementor-grid-10 .elementor-grid {
  grid-template-columns: repeat(10, 1fr)
}

.elementor-grid-11 .elementor-grid {
  grid-template-columns: repeat(11, 1fr)
}

.elementor-grid-12 .elementor-grid {
  grid-template-columns: repeat(12, 1fr)
}

@media (min-width:-1) {
  .elementor-grid-widescreen-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }

  .elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-widescreen-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-widescreen-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-widescreen-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-widescreen-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-widescreen-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-widescreen-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-widescreen-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-widescreen-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-widescreen-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-widescreen-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-widescreen-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-widescreen-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:-1) {
  .elementor-grid-laptop-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }

  .elementor-grid-laptop-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-laptop-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-laptop-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-laptop-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-laptop-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-laptop-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-laptop-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-laptop-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-laptop-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-laptop-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-laptop-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-laptop-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-laptop-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:-1) {
  .elementor-grid-tablet_extra-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }

  .elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-tablet_extra-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-tablet_extra-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-tablet_extra-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-tablet_extra-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-tablet_extra-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-tablet_extra-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-tablet_extra-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-tablet_extra-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-tablet_extra-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-tablet_extra-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-tablet_extra-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-tablet_extra-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:1024px) {
  .elementor-grid-tablet-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }

  .elementor-grid-tablet-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-tablet-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-tablet-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-tablet-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-tablet-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-tablet-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-tablet-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-tablet-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-tablet-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-tablet-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-tablet-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-tablet-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-tablet-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:-1) {
  .elementor-grid-mobile_extra-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }

  .elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-mobile_extra-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-mobile_extra-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-mobile_extra-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-mobile_extra-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-mobile_extra-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-mobile_extra-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-mobile_extra-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-mobile_extra-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-mobile_extra-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-mobile_extra-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-mobile_extra-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-mobile_extra-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:767px) {
  .elementor-grid-mobile-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }

  .elementor-grid-mobile-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-mobile-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-mobile-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-mobile-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-mobile-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-mobile-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-mobile-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-mobile-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-mobile-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-mobile-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-mobile-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-mobile-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-mobile-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (min-width:1025px) {
  #elementor-device-mode:after {
    content: "desktop"
  }
}

@media (min-width:-1) {
  #elementor-device-mode:after {
    content: "widescreen"
  }
}

@media (max-width:-1) {
  #elementor-device-mode:after {
    content: "laptop";
    content: "tablet_extra"
  }
}

@media (max-width:1024px) {
  #elementor-device-mode:after {
    content: "tablet"
  }
}

@media (max-width:-1) {
  #elementor-device-mode:after {
    content: "mobile_extra"
  }
}

@media (max-width:767px) {
  #elementor-device-mode:after {
    content: "mobile"
  }
}

.e-con {
  --border-radius: 0;
  --border-width-top: 0px;
  --border-width-right: 0px;
  --border-width-bottom: 0px;
  --border-width-left: 0px;
  --border-style: initial;
  --border-color: initial;
  --container-widget-width: 100%;
  --container-widget-height: initial;
  --container-widget-flex-grow: 0;
  --container-widget-align-self: initial;
  --content-width: Min(100%, var(--container-max-width, 1140px));
  --width: 100%;
  --min-height: initial;
  --height: auto;
  --text-align: initial;
  --margin-top: 0;
  --margin-right: 0;
  --margin-bottom: 0;
  --margin-left: 0;
  --padding-top: var(--container-default-padding-top, 10px);
  --padding-right: var(--container-default-padding-right, 10px);
  --padding-bottom: var(--container-default-padding-bottom, 10px);
  --padding-left: var(--container-default-padding-left, 10px);
  --position: relative;
  --z-index: revert;
  --overflow: visible;
  --gap: var(--widgets-spacing, 20px);
  --overlay-mix-blend-mode: initial;
  --overlay-opacity: 1;
  --overlay-transition: 0.3s;
  --e-con-grid-template-columns: repeat(3, 1fr);
  --e-con-grid-template-rows: repeat(2, 1fr);
  position: var(--position);
  width: var(--width);
  min-width: 0;
  min-height: var(--min-height);
  height: var(--height);
  border-radius: var(--border-radius);
  margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
  padding-left: var(--padding-left);
  padding-right: var(--padding-right);
  z-index: var(--z-index);
  overflow: var(--overflow);
  transition: background var(--background-transition, .3s), border var(--border-transition, .3s), box-shadow var(--border-transition, .3s), transform var(--e-con-transform-transition-duration, .4s)
}

.e-con.e-flex {
  --flex-direction: column;
  --flex-basis: auto;
  --flex-grow: 0;
  --flex-shrink: 1;
  flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis)
}

.e-con-full,
.e-con>.e-con-inner {
  text-align: var(--text-align);
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom)
}

.e-con-full.e-flex,
.e-con.e-flex>.e-con-inner {
  flex-direction: var(--flex-direction)
}

.e-con,
.e-con>.e-con-inner {
  display: var(--display)
}

.e-con.e-grid {
  --grid-justify-content: start;
  --grid-align-content: start;
  --grid-auto-flow: row
}

.e-con.e-grid,
.e-con.e-grid>.e-con-inner {
  grid-template-columns: var(--e-con-grid-template-columns);
  grid-template-rows: var(--e-con-grid-template-rows);
  justify-content: var(--grid-justify-content);
  align-content: var(--grid-align-content);
  grid-auto-flow: var(--grid-auto-flow)
}

.e-con-boxed.e-flex {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: normal;
  align-items: normal;
  align-content: normal
}

.e-con-boxed.e-grid {
  justify-items: legacy;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr
}

.e-con-boxed {
  text-align: initial;
  gap: initial
}

.e-con.e-flex>.e-con-inner {
  flex-wrap: var(--flex-wrap);
  justify-content: var(--justify-content);
  align-items: var(--align-items);
  align-content: var(--align-content);
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  align-self: auto
}

.e-con.e-grid>.e-con-inner {
  justify-items: var(--justify-items);
  align-items: var(--align-items)
}

.e-con>.e-con-inner {
  gap: var(--gap);
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-inline: 0;
  height: 100%
}

:is(.elementor-section-wrap, [data-elementor-id])>.e-con {
  --margin-right: auto;
  --margin-left: auto;
  max-width: min(100%, var(--width))
}

.e-con .elementor-widget.elementor-widget {
  margin-bottom: 0
}

.e-con:before,
.e-con>.elementor-background-slideshow:before,
.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,
:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container:before {
  content: var(--background-overlay);
  display: block;
  position: absolute;
  mix-blend-mode: var(--overlay-mix-blend-mode);
  opacity: var(--overlay-opacity);
  transition: var(--overlay-transition, .3s);
  border-radius: var(--border-radius);
  border-top: var(--border-width-top) var(--border-style) var(--border-color);
  border-right: var(--border-width-right) var(--border-style) var(--border-color);
  border-bottom: var(--border-width-bottom) var(--border-style) var(--border-color);
  border-left: var(--border-width-left) var(--border-style) var(--border-color);
  top: calc(0px - var(--border-width-top));
  left: calc(0px - var(--border-width-left));
  width: max(100% + var(--border-width-right) + var(--border-width-left), 100%);
  height: max(100% + var(--border-width-top) + var(--border-width-bottom), 100%)
}

.e-con:before {
  transition: background var(--overlay-transition, .3s), border-radius var(--border-transition, .3s), opacity var(--overlay-transition, .3s)
}

.e-con>.elementor-background-slideshow,
:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container {
  border-radius: var(--border-radius);
  border-top: var(--border-width-top) var(--border-style) var(--border-color);
  border-right: var(--border-width-right) var(--border-style) var(--border-color);
  border-bottom: var(--border-width-bottom) var(--border-style) var(--border-color);
  border-left: var(--border-width-left) var(--border-style) var(--border-color);
  top: calc(0px - var(--border-width-top));
  left: calc(0px - var(--border-width-left));
  width: max(100% + var(--border-width-right) + var(--border-width-left), 100%);
  height: max(100% + var(--border-width-top) + var(--border-width-bottom), 100%)
}

@media (max-width:767px) {
  :is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-phone {
    display: none
  }
}

:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container:before {
  z-index: 1
}

:is(.e-con, .e-con>.e-con-inner)>.elementor-background-slideshow:before {
  z-index: 2
}

.e-con .elementor-widget {
  min-width: 0
}

.e-con .elementor-widget-empty,
.e-con .elementor-widget-google_maps,
.e-con .elementor-widget-video,
.e-con .elementor-widget.e-widget-swiper {
  width: 100%
}

.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,
.e-con>.elementor-widget>.elementor-widget-container {
  height: 100%
}

.e-con.e-con>.e-con-inner>.elementor-widget,
.elementor.elementor .e-con>.elementor-widget {
  max-width: 100%
}

@media (max-width:767px) {
  .e-con.e-flex {
    --width: 100%;
    --flex-wrap: wrap
  }
}

.elementor-form-fields-wrapper {
  display: flex;
  flex-wrap: wrap
}

.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,
.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,
.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,
.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea {
  flex-basis: 100%;
  max-width: 100%
}

.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,
.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input {
  flex-grow: 1
}

.elementor-field-group {
  flex-wrap: wrap;
  align-items: center
}

.elementor-field-group.elementor-field-type-submit {
  align-items: flex-end
}

.elementor-field-group .elementor-field-textual {
  width: 100%;
  max-width: 100%;
  border: 1px solid #69727d;
  background-color: transparent;
  color: #1f2124;
  vertical-align: middle;
  flex-grow: 1
}

.elementor-field-group .elementor-field-textual:focus {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  outline: 0
}

.elementor-field-group .elementor-field-textual::-moz-placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}

.elementor-field-group .elementor-field-textual::placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}

.elementor-field-group .elementor-select-wrapper {
  display: flex;
  position: relative;
  width: 100%
}

.elementor-field-group .elementor-select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  flex-basis: 100%;
  padding-right: 20px
}

.elementor-field-group .elementor-select-wrapper:before {
  content: "\e92a";
  font-family: eicons;
  font-size: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  pointer-events: none;
  text-shadow: 0 0 3px rgba(0, 0, 0, .3)
}

.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before {
  content: ""
}

.elementor-field-subgroup {
  display: flex;
  flex-wrap: wrap
}

.elementor-field-subgroup .elementor-field-option label {
  display: inline-block
}

.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option {
  padding-right: 10px
}

.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option {
  flex-basis: 100%
}

.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,
.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,
.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,
.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,
.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,
.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label {
  display: inline
}

.elementor-field-label {
  cursor: pointer
}

.elementor-mark-required .elementor-field-label:after {
  content: "*";
  color: red;
  padding-left: .2em
}

.elementor-field-textual {
  line-height: 1.4;
  font-size: 15px;
  min-height: 40px;
  padding: 5px 14px;
  border-radius: 3px
}

.elementor-field-textual.elementor-size-xs {
  font-size: 13px;
  min-height: 33px;
  padding: 4px 12px;
  border-radius: 2px
}

.elementor-field-textual.elementor-size-md {
  font-size: 16px;
  min-height: 47px;
  padding: 6px 16px;
  border-radius: 4px
}

.elementor-field-textual.elementor-size-lg {
  font-size: 18px;
  min-height: 59px;
  padding: 7px 20px;
  border-radius: 5px
}

.elementor-field-textual.elementor-size-xl {
  font-size: 20px;
  min-height: 72px;
  padding: 8px 24px;
  border-radius: 6px
}

.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
  flex-basis: 100%
}

.elementor-button-align-stretch .e-form__buttons__wrapper {
  flex-basis: 50%;
  flex-grow: 1
}

.elementor-button-align-stretch .e-form__buttons__wrapper__button {
  flex-basis: 100%
}

.elementor-button-align-center .e-form__buttons,
.elementor-button-align-center .elementor-field-type-submit {
  justify-content: center
}

.elementor-button-align-start .e-form__buttons,
.elementor-button-align-start .elementor-field-type-submit {
  justify-content: flex-start
}

.elementor-button-align-end .e-form__buttons,
.elementor-button-align-end .elementor-field-type-submit {
  justify-content: flex-end
}

.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
  flex-basis: auto
}

.elementor-button-align-center .e-form__buttons__wrapper,
.elementor-button-align-end .e-form__buttons__wrapper,
.elementor-button-align-start .e-form__buttons__wrapper {
  flex-grow: 0
}

.elementor-button-align-center .e-form__buttons__wrapper,
.elementor-button-align-center .e-form__buttons__wrapper__button,
.elementor-button-align-end .e-form__buttons__wrapper,
.elementor-button-align-end .e-form__buttons__wrapper__button,
.elementor-button-align-start .e-form__buttons__wrapper,
.elementor-button-align-start .e-form__buttons__wrapper__button {
  flex-basis: auto
}

@media screen and (max-width:1024px) {
  .elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: 100%
  }

  .elementor-tablet-button-align-stretch .e-form__buttons__wrapper {
    flex-basis: 50%;
    flex-grow: 1
  }

  .elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button {
    flex-basis: 100%
  }

  .elementor-tablet-button-align-center .e-form__buttons,
  .elementor-tablet-button-align-center .elementor-field-type-submit {
    justify-content: center
  }

  .elementor-tablet-button-align-start .e-form__buttons,
  .elementor-tablet-button-align-start .elementor-field-type-submit {
    justify-content: flex-start
  }

  .elementor-tablet-button-align-end .e-form__buttons,
  .elementor-tablet-button-align-end .elementor-field-type-submit {
    justify-content: flex-end
  }

  .elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: auto
  }

  .elementor-tablet-button-align-center .e-form__buttons__wrapper,
  .elementor-tablet-button-align-end .e-form__buttons__wrapper,
  .elementor-tablet-button-align-start .e-form__buttons__wrapper {
    flex-grow: 0
  }

  .elementor-tablet-button-align-center .e-form__buttons__wrapper,
  .elementor-tablet-button-align-center .e-form__buttons__wrapper__button,
  .elementor-tablet-button-align-end .e-form__buttons__wrapper,
  .elementor-tablet-button-align-end .e-form__buttons__wrapper__button,
  .elementor-tablet-button-align-start .e-form__buttons__wrapper,
  .elementor-tablet-button-align-start .e-form__buttons__wrapper__button {
    flex-basis: auto
  }
}

@media screen and (max-width:767px) {
  .elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: 100%
  }

  .elementor-mobile-button-align-stretch .e-form__buttons__wrapper {
    flex-basis: 50%;
    flex-grow: 1
  }

  .elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button {
    flex-basis: 100%
  }

  .elementor-mobile-button-align-center .e-form__buttons,
  .elementor-mobile-button-align-center .elementor-field-type-submit {
    justify-content: center
  }

  .elementor-mobile-button-align-start .e-form__buttons,
  .elementor-mobile-button-align-start .elementor-field-type-submit {
    justify-content: flex-start
  }

  .elementor-mobile-button-align-end .e-form__buttons,
  .elementor-mobile-button-align-end .elementor-field-type-submit {
    justify-content: flex-end
  }

  .elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: auto
  }

  .elementor-mobile-button-align-center .e-form__buttons__wrapper,
  .elementor-mobile-button-align-end .e-form__buttons__wrapper,
  .elementor-mobile-button-align-start .e-form__buttons__wrapper {
    flex-grow: 0
  }

  .elementor-mobile-button-align-center .e-form__buttons__wrapper,
  .elementor-mobile-button-align-center .e-form__buttons__wrapper__button,
  .elementor-mobile-button-align-end .e-form__buttons__wrapper,
  .elementor-mobile-button-align-end .e-form__buttons__wrapper__button,
  .elementor-mobile-button-align-start .e-form__buttons__wrapper,
  .elementor-mobile-button-align-start .e-form__buttons__wrapper__button {
    flex-basis: auto
  }
}

.elementor-error .elementor-field {
  border-color: #d9534f
}

.elementor-error .help-inline {
  color: #d9534f;
  font-size: .9em
}

.elementor-message {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1
}

.elementor-message:before {
  content: "\e90e";
  display: inline-block;
  font-family: eicons;
  font-weight: 400;
  font-style: normal;
  vertical-align: middle;
  margin-right: 5px
}

.elementor-message.elementor-message-danger {
  color: #d9534f
}

.elementor-message.elementor-message-danger:before {
  content: "\e87f"
}

.elementor-message.form-message-success {
  color: #5cb85c
}

.elementor-form .elementor-button {
  padding-top: 0;
  padding-bottom: 0;
  border: none
}

.elementor-form .elementor-button>span {
  display: flex;
  justify-content: center
}

.elementor-form .elementor-button.elementor-size-xs {
  min-height: 33px
}

.elementor-form .elementor-button.elementor-size-sm {
  min-height: 40px
}

.elementor-form .elementor-button.elementor-size-md {
  min-height: 47px
}

.elementor-form .elementor-button.elementor-size-lg {
  min-height: 59px
}

.elementor-form .elementor-button.elementor-size-xl {
  min-height: 72px
}

.elementor-element .elementor-widget-container {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s)
}

.elementor-button {
  display: inline-block;
  line-height: 1;
  background-color: #69727d;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  text-align: center;
  transition: all .3s
}

.elementor-button:focus,
.elementor-button:hover,
.elementor-button:visited {
  color: #fff
}

.elementor-button-content-wrapper {
  display: flex;
  justify-content: center
}

.elementor-button-icon {
  flex-grow: 0;
  order: 5
}

.elementor-button-icon svg {
  width: 1em;
  height: auto
}

.elementor-button-icon .e-font-icon-svg {
  height: 1em
}

.elementor-button-text {
  flex-grow: 1;
  order: 10;
  display: inline-block
}

.elementor-button.elementor-size-xs {
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 2px
}

.elementor-button.elementor-size-md {
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 4px
}

.elementor-button.elementor-size-lg {
  font-size: 18px;
  padding: 20px 40px;
  border-radius: 5px
}

.elementor-button.elementor-size-xl {
  font-size: 20px;
  padding: 25px 50px;
  border-radius: 6px
}

.elementor-button .elementor-align-icon-right {
  margin-left: 5px;
  order: 15
}

.elementor-button .elementor-align-icon-left {
  margin-right: 5px;
  order: 5
}

.elementor-button span {
  text-decoration: inherit
}

.elementor-element.elementor-button-info .elementor-button {
  background-color: #5bc0de
}

.elementor-element.elementor-button-success .elementor-button {
  background-color: #5cb85c
}

.elementor-element.elementor-button-warning .elementor-button {
  background-color: #f0ad4e
}

.elementor-element.elementor-button-danger .elementor-button {
  background-color: #d9534f
}

.elementor-widget-button .elementor-button .elementor-button-info {
  background-color: #5bc0de
}

.elementor-widget-button .elementor-button .elementor-button-success {
  background-color: #5cb85c
}

.elementor-widget-button .elementor-button .elementor-button-warning {
  background-color: #f0ad4e
}

.elementor-widget-button .elementor-button .elementor-button-danger {
  background-color: #d9534f
}

.elementor-tab-title a {
  color: inherit
}

.elementor-view-stacked .elementor-icon {
  padding: .5em;
  background-color: #69727d;
  color: #fff;
  fill: #fff
}

.elementor-view-framed .elementor-icon {
  padding: .5em;
  color: #69727d;
  border: 3px solid #69727d;
  background-color: transparent
}

.elementor-icon {
  display: inline-block;
  line-height: 1;
  transition: all .3s;
  color: #69727d;
  font-size: 50px;
  text-align: center
}

.elementor-icon:hover {
  color: #69727d
}

.elementor-icon i,
.elementor-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  display: block
}

.elementor-icon i:before,
.elementor-icon svg:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.elementor-icon i.fad {
  width: auto
}

.elementor-shape-circle .elementor-icon {
  border-radius: 50%
}

.e-transform .elementor-widget-container {
  transform: perspective(var(--e-transform-perspective, 0)) rotate(var(--e-transform-rotateZ, 0)) rotateX(var(--e-transform-rotateX, 0)) rotateY(var(--e-transform-rotateY, 0)) translate(var(--e-transform-translate, 0)) translateX(var(--e-transform-translateX, 0)) translateY(var(--e-transform-translateY, 0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX, 0)) skewY(var(--e-transform-skewY, 0));
  transform-origin: var(--e-transform-origin-y) var(--e-transform-origin-x)
}

.e-con.e-transform {
  transform: perspective(var(--e-con-transform-perspective, 0)) rotate(var(--e-con-transform-rotateZ, 0)) rotateX(var(--e-con-transform-rotateX, 0)) rotateY(var(--e-con-transform-rotateY, 0)) translate(var(--e-con-transform-translate, 0)) translateX(var(--e-con-transform-translateX, 0)) translateY(var(--e-con-transform-translateY, 0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX, 0)) skewY(var(--e-con-transform-skewY, 0));
  transform-origin: var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)
}

.elementor-element,
.elementor-lightbox {
  --swiper-theme-color: #000;
  --swiper-navigation-size: 44px;
  --swiper-pagination-bullet-size: 6px;
  --swiper-pagination-bullet-horizontal-gap: 6px
}

.elementor-element .swiper .swiper-slide figure,
.elementor-lightbox .swiper .swiper-slide figure {
  line-height: 0
}

.elementor-element .swiper .elementor-lightbox-content-source,
.elementor-lightbox .swiper .elementor-lightbox-content-source {
  display: none
}

.elementor-element .swiper .elementor-swiper-button,
.elementor-lightbox .swiper .elementor-swiper-button {
  position: absolute;
  display: inline-flex;
  z-index: 1;
  cursor: pointer;
  font-size: 25px;
  color: hsla(0, 0%, 93.3%, .9);
  top: 50%;
  transform: translateY(-50%)
}

.elementor-element .swiper .elementor-swiper-button svg,
.elementor-lightbox .swiper .elementor-swiper-button svg {
  fill: hsla(0, 0%, 93.3%, .9);
  height: 1em;
  width: 1em
}

.elementor-element .swiper .elementor-swiper-button-prev,
.elementor-lightbox .swiper .elementor-swiper-button-prev {
  left: 10px
}

.elementor-element .swiper .elementor-swiper-button-next,
.elementor-lightbox .swiper .elementor-swiper-button-next {
  right: 10px
}

.elementor-element .swiper .elementor-swiper-button.swiper-button-disabled,
.elementor-lightbox .swiper .elementor-swiper-button.swiper-button-disabled {
  opacity: .3
}

.elementor-element .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image,
.elementor-lightbox .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image {
  width: 100%
}

.elementor-element .swiper .swiper-horizontal>.swiper-pagination-bullets,
.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.elementor-element .swiper .swiper-pagination-custom,
.elementor-element .swiper .swiper-pagination-fraction,
.elementor-lightbox .swiper .swiper-horizontal>.swiper-pagination-bullets,
.elementor-lightbox .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.elementor-lightbox .swiper .swiper-pagination-custom,
.elementor-lightbox .swiper .swiper-pagination-fraction {
  bottom: 5px
}

.elementor-element .swiper.swiper-cube .elementor-swiper-button,
.elementor-lightbox .swiper.swiper-cube .elementor-swiper-button {
  transform: translate3d(0, -50%, 1px)
}

.elementor-element.elementor-pagination-position-outside .swiper,
.elementor-lightbox.elementor-pagination-position-outside .swiper {
  padding-bottom: 30px
}

.elementor-element.elementor-pagination-position-outside .swiper .elementor-swiper-button,
.elementor-lightbox.elementor-pagination-position-outside .swiper .elementor-swiper-button {
  top: calc(50% - 30px / 2)
}

.elementor-element .elementor-swiper,
.elementor-lightbox .elementor-swiper {
  position: relative
}

.elementor-element .elementor-main-swiper,
.elementor-lightbox .elementor-main-swiper {
  position: static
}

.elementor-element.elementor-arrows-position-outside .swiper,
.elementor-lightbox.elementor-arrows-position-outside .swiper {
  width: calc(100% - 60px)
}

.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev,
.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev {
  left: 0
}

.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-next,
.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-next {
  right: 0
}

.elementor-lightbox {
  --lightbox-ui-color: hsla(0, 0%, 93.3%, 0.9);
  --lightbox-ui-color-hover: #fff;
  --lightbox-text-color: var(--lightbox-ui-color);
  --lightbox-header-icons-size: 20px;
  --lightbox-navigation-icons-size: 25px
}

.elementor-lightbox:not(.elementor-popup-modal) .dialog-header,
.elementor-lightbox:not(.elementor-popup-modal) .dialog-message {
  text-align: center
}

.elementor-lightbox .dialog-header {
  display: none
}

.elementor-lightbox .dialog-widget-content {
  background: none;
  box-shadow: none;
  width: 100%;
  height: 100%
}

.elementor-lightbox .dialog-message {
  animation-duration: .3s
}

.elementor-lightbox .dialog-message:not(.elementor-fit-aspect-ratio) {
  height: 100%
}

.elementor-lightbox .dialog-message.dialog-lightbox-message {
  padding: 0
}

.elementor-lightbox .dialog-lightbox-close-button {
  cursor: pointer;
  position: absolute;
  font-size: var(--lightbox-header-icons-size);
  right: .75em;
  margin-top: 13px;
  padding: .25em;
  z-index: 2;
  line-height: 1;
  display: flex
}

.elementor-lightbox .dialog-lightbox-close-button svg {
  height: 1em;
  width: 1em
}

.elementor-lightbox .dialog-lightbox-close-button,
.elementor-lightbox .elementor-swiper-button {
  color: var(--lightbox-ui-color);
  transition: all .3s;
  opacity: 1
}

.elementor-lightbox .dialog-lightbox-close-button svg,
.elementor-lightbox .elementor-swiper-button svg {
  fill: var(--lightbox-ui-color)
}

.elementor-lightbox .dialog-lightbox-close-button:hover,
.elementor-lightbox .elementor-swiper-button:hover {
  color: var(--lightbox-ui-color-hover)
}

.elementor-lightbox .dialog-lightbox-close-button:hover svg,
.elementor-lightbox .elementor-swiper-button:hover svg {
  fill: var(--lightbox-ui-color-hover)
}

.elementor-lightbox .swiper,
.elementor-lightbox .swiper-container {
  height: 100%
}

.elementor-lightbox .elementor-lightbox-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 70px;
  box-sizing: border-box;
  height: 100%;
  margin: auto
}

@media (max-width:767px) {
  .elementor-lightbox .elementor-lightbox-item {
    padding: 70px 0
  }
}

.elementor-lightbox .elementor-lightbox-image {
  max-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.elementor-lightbox .elementor-lightbox-image,
.elementor-lightbox .elementor-lightbox-image:hover {
  opacity: 1;
  filter: none;
  border: none
}

.elementor-lightbox .elementor-lightbox-image,
.elementor-lightbox .elementor-video-container {
  box-shadow: 0 0 30px rgba(0, 0, 0, .3), 0 0 8px -5px rgba(0, 0, 0, .3);
  border-radius: 2px
}

.elementor-lightbox .elementor-video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

@media (min-width:1025px) {
  .elementor-lightbox .elementor-video-container {
    width: 75%
  }
}

@media (max-width:1024px) {
  .elementor-lightbox .elementor-video-container {
    width: 100%
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .elementor-lightbox .elementor-aspect-ratio-916 .elementor-video-container {
    width: 70%
  }
}

.elementor-lightbox .swiper-container .elementor-swiper-button-prev,
.elementor-lightbox .swiper .elementor-swiper-button-prev {
  left: 0
}

.elementor-lightbox .swiper-container .elementor-swiper-button-next,
.elementor-lightbox .swiper .elementor-swiper-button-next {
  right: 0
}

.elementor-lightbox .swiper-container .swiper-pagination-fraction,
.elementor-lightbox .swiper .swiper-pagination-fraction {
  width: -moz-max-content;
  width: max-content;
  color: #fff
}

.elementor-lightbox .elementor-swiper-button:focus {
  outline-width: 1px
}

.elementor-lightbox .elementor-swiper-button-next,
.elementor-lightbox .elementor-swiper-button-prev {
  height: 100%;
  display: flex;
  align-items: center;
  width: 15%;
  justify-content: center;
  font-size: var(--lightbox-navigation-icons-size)
}

@media (max-width:767px) {
  .elementor-lightbox .elementor-swiper-button:focus {
    outline: none
  }

  .elementor-lightbox .elementor-swiper-button-next,
  .elementor-lightbox .elementor-swiper-button-prev {
    width: 20%
  }

  .elementor-lightbox .elementor-swiper-button-next i,
  .elementor-lightbox .elementor-swiper-button-prev i {
    padding: 10px;
    background-color: rgba(0, 0, 0, .5)
  }

  .elementor-lightbox .elementor-swiper-button-prev {
    left: 0;
    justify-content: flex-start
  }

  .elementor-lightbox .elementor-swiper-button-next {
    right: 0;
    justify-content: flex-end
  }
}

.elementor-slideshow__counter {
  color: currentColor;
  font-size: .75em;
  width: -moz-max-content;
  width: max-content
}

.elementor-slideshow__footer,
.elementor-slideshow__header {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  transition: .3s
}

.elementor-slideshow__footer {
  color: var(--lightbox-text-color)
}

.elementor-slideshow__header {
  color: var(--lightbox-ui-color);
  display: flex;
  flex-direction: row-reverse;
  font-size: var(--lightbox-header-icons-size);
  padding-left: 1em;
  padding-right: 2.6em;
  top: 0;
  align-items: center;
  z-index: 10
}

.elementor-slideshow__header>i,
.elementor-slideshow__header>svg {
  cursor: pointer;
  padding: .25em;
  margin: 0 .35em
}

.elementor-slideshow__header>i {
  font-size: inherit
}

.elementor-slideshow__header>i:hover {
  color: var(--lightbox-ui-color-hover)
}

.elementor-slideshow__header>svg {
  box-sizing: content-box;
  fill: var(--lightbox-ui-color);
  height: 1em;
  width: 1em
}

.elementor-slideshow__header>svg:hover {
  fill: var(--lightbox-ui-color-hover)
}

.elementor-slideshow__header .elementor-slideshow__counter {
  margin-right: auto
}

.elementor-slideshow__header .elementor-icon-share {
  z-index: 5
}

.elementor-slideshow__share-menu {
  background-color: transparent;
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
  transition: background-color .4s
}

.elementor-slideshow__share-menu .elementor-slideshow__share-links a {
  color: #0c0d0e
}

.elementor-slideshow__share-links {
  display: block;
  position: absolute;
  min-width: 200px;
  right: 2.8em;
  top: 3em;
  background-color: #fff;
  border-radius: 3px;
  padding: 14px 20px;
  transform: scale(0);
  opacity: 0;
  transform-origin: 90% 10%;
  transition: all .25s .1s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .3)
}

.elementor-slideshow__share-links a {
  text-align: left;
  color: #3f444b;
  font-size: 12px;
  line-height: 2.5;
  display: block;
  opacity: 0;
  transition: opacity .5s .1s
}

.elementor-slideshow__share-links a:hover {
  color: #000
}

.elementor-slideshow__share-links a i,
.elementor-slideshow__share-links a svg {
  margin-right: .75em
}

.elementor-slideshow__share-links a i {
  font-size: 1.25em
}

.elementor-slideshow__share-links a svg {
  height: 1.25em;
  width: 1.25em
}

.elementor-slideshow__share-links:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: .5em;
  border: .45em solid transparent;
  border-bottom-color: #fff;
  transform: translateY(-100%) scaleX(.7)
}

.elementor-slideshow__footer {
  bottom: 0;
  z-index: 5;
  position: fixed
}

.elementor-slideshow__description,
.elementor-slideshow__title {
  margin: 0
}

.elementor-slideshow__title {
  font-size: 16px;
  font-weight: 700
}

.elementor-slideshow__description {
  font-size: 14px
}

.elementor-slideshow--ui-hidden .elementor-slideshow__footer,
.elementor-slideshow--ui-hidden .elementor-slideshow__header {
  opacity: 0;
  pointer-events: none
}

.elementor-slideshow--ui-hidden .elementor-swiper-button-next,
.elementor-slideshow--ui-hidden .elementor-swiper-button-prev {
  opacity: 0
}

.elementor-slideshow--fullscreen-mode .elementor-video-container {
  width: 100%
}

.elementor-slideshow--zoom-mode .elementor-slideshow__footer,
.elementor-slideshow--zoom-mode .elementor-slideshow__header {
  background-color: rgba(0, 0, 0, .5)
}

.elementor-slideshow--zoom-mode .elementor-swiper-button-next,
.elementor-slideshow--zoom-mode .elementor-swiper-button-prev {
  opacity: 0;
  pointer-events: none
}

.elementor-slideshow--share-mode .elementor-slideshow__share-menu {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  cursor: default;
  background-color: rgba(0, 0, 0, .5)
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links {
  transform: scale(1)
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links,
.elementor-slideshow--share-mode .elementor-slideshow__share-links a {
  opacity: 1
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-twitter {
  color: #1da1f2
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-facebook {
  color: #3b5998
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-pinterest {
  color: #bd081c
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-download-bold {
  color: #9da5ae
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-twitter {
  fill: #1da1f2
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-facebook {
  fill: #3b5998
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-pinterest {
  fill: #bd081c
}

.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-download-bold {
  fill: #9da5ae
}

.elementor-slideshow--share-mode .eicon-share-arrow {
  z-index: 2
}

.animated {
  animation-duration: 1.25s
}

.animated.animated-slow {
  animation-duration: 2s
}

.animated.animated-fast {
  animation-duration: .75s
}

.animated.infinite {
  animation-iteration-count: infinite
}

.animated.reverse {
  animation-direction: reverse;
  animation-fill-mode: forwards
}

@media (prefers-reduced-motion:reduce) {
  .animated {
    animation: none
  }
}

.elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr
}

.elementor-shape-top {
  top: -1px
}

.elementor-shape-top:not([data-negative=false]) svg {
  z-index: -1
}

.elementor-shape-bottom {
  bottom: -1px
}

.elementor-shape-bottom:not([data-negative=true]) svg {
  z-index: -1
}

.elementor-shape[data-negative=false].elementor-shape-bottom,
.elementor-shape[data-negative=true].elementor-shape-top {
  transform: rotate(180deg)
}

.elementor-shape svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%)
}

.elementor-shape .elementor-shape-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg)
}

#wp-admin-bar-elementor_edit_page>.ab-item:before {
  content: "\e813";
  font-family: eicons;
  top: 3px;
  font-size: 18px
}

#wp-admin-bar-elementor_edit_page .ab-submenu .ab-item {
  display: flex;
  width: 200px
}

#wp-admin-bar-elementor_edit_page .elementor-edit-link-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%
}

#wp-admin-bar-elementor_edit_page .elementor-edit-link-type {
  background: #3f444b;
  font-size: 11px;
  line-height: 9px;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 3px
}

#wp-admin-bar-elementor_inspector>.ab-item:before {
  content: "\f348";
  top: 2px
}

#wpadminbar * {
  font-style: normal
}

.page-template-elementor_canvas.elementor-page:before {
  display: none
}

.elementor-post__thumbnail__link {
  transition: none
}

#left-area ul.elementor-icon-list-items,
.elementor-edit-area .elementor-element ul.elementor-icon-list-items,
.elementor .elementor-element ul.elementor-icon-list-items {
  padding: 0
}

.e--ua-appleWebkit.rtl {
  --flex-right: flex-start
}

.e--ua-appleWebkit .elementor-share-buttons--align-right,
.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-right {
  --justify-content: var(--flex-right, flex-end)
}

.e--ua-appleWebkit .elementor-share-buttons--align-center,
.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-center {
  --justify-content: center
}

.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid,
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid,
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid,
.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid,
.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--justify-content, space-between);
  margin-left: calc(-.5 * var(--grid-column-gap));
  margin-right: calc(-.5 * var(--grid-column-gap))
}

.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid-item,
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid-item,
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid-item,
.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid-item,
.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid-item {
  margin-left: calc(.5 * var(--grid-column-gap));
  margin-right: calc(.5 * var(--grid-column-gap))
}

.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid,
.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid {
  display: inline-block
}

.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid,
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid-item,
.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid,
.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid-item {
  margin-left: 0;
  margin-right: 0
}

@media (max-width:1024px) {

  .e--ua-appleWebkit .elementor-share-buttons-tablet--align-right,
  .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-right {
    --justify-content: var(--flex-right, flex-end)
  }

  .e--ua-appleWebkit .elementor-share-buttons-tablet--align-center,
  .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-center {
    --justify-content: center
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: var(--justify-content, space-between);
    margin-left: calc(-.5 * var(--grid-column-gap));
    margin-right: calc(-.5 * var(--grid-column-gap))
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid-item {
    margin-left: calc(.5 * var(--grid-column-gap));
    margin-right: calc(.5 * var(--grid-column-gap))
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid {
    display: inline-block
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid-item {
    margin-left: 0;
    margin-right: 0
  }
}

@media (max-width:767px) {

  .e--ua-appleWebkit .elementor-share-buttons-mobile--align-right,
  .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-right {
    --justify-content: var(--flex-right, flex-end)
  }

  .e--ua-appleWebkit .elementor-share-buttons-mobile--align-center,
  .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-center {
    --justify-content: center
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: var(--justify-content, space-between);
    margin-left: calc(-.5 * var(--grid-column-gap));
    margin-right: calc(-.5 * var(--grid-column-gap))
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid-item {
    margin-left: calc(.5 * var(--grid-column-gap));
    margin-right: calc(.5 * var(--grid-column-gap))
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid {
    display: inline-block
  }

  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid-item,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid,
  .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid-item {
    margin-left: 0;
    margin-right: 0
  }
}

@media (max-width:767px) {

  .elementor .elementor-hidden-mobile,
  .elementor .elementor-hidden-phone {
    display: none
  }
}

@media (min-width:-1) and (max-width:-1) {
  .elementor .elementor-hidden-mobile_extra {
    display: none
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .elementor .elementor-hidden-tablet {
    display: none
  }
}

@media (min-width:-1) and (max-width:-1) {

  .elementor .elementor-hidden-laptop,
  .elementor .elementor-hidden-tablet_extra {
    display: none
  }
}

@media (min-width:1025px) and (max-width:99999px) {
  .elementor .elementor-hidden-desktop {
    display: none
  }
}

@media (min-width:-1) {
  .elementor .elementor-hidden-widescreen {
    display: none
  }
}

.elementor-widget-text-path {
  font-size: 20px;
  text-align: var(--alignment, left)
}

.elementor-widget-text-path svg {
  width: var(--width);
  max-width: 100%;
  height: auto;
  overflow: visible;
  word-spacing: var(--word-spacing);
  transform: rotate(var(--rotate, 0)) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1))
}

.elementor-widget-text-path svg path {
  vector-effect: non-scaling-stroke;
  fill: var(--path-fill, transparent);
  stroke: var(--stroke-color, transparent);
  stroke-width: var(--stroke-width, 1px);
  transition: var(--stroke-transition) stroke, var(--stroke-transition) fill
}

.elementor-widget-text-path svg:hover path {
  --path-fill: var(--path-fill-hover);
  --stroke-color: var(--stroke-color-hover);
  --stroke-width: var(--stroke-width-hover)
}

.elementor-widget-text-path svg text {
  --fill: var(--text-color);
  fill: var(--fill);
  direction: var(--direction, ltr);
  transition: var(--transition) stroke, var(--transition) stroke-width, var(--transition) fill
}

.elementor-widget-text-path svg text:hover {
  --color: var(--text-color-hover, var(--text-color));
  --fill: var(--color);
  color: var(--color)
}

.elementor-widget-n-tabs {
  --n-tabs-color-accent-fallback: #61ce70;
  --n-tabs-color-secondary-fallback: #54595f;
  --n-tabs-default-padding-block: 15px;
  --n-tabs-default-padding-inline: 35px;
  --n-tabs-background-color: transparent;
  --n-tabs-display: flex;
  --n-tabs-direction: column;
  --n-tabs-gap: 10px;
  --n-tabs-heading-display: flex;
  --n-tabs-heading-direction: row;
  --n-tabs-heading-grow: initial;
  --n-tabs-heading-justify-content: center;
  --n-tabs-heading-width: initial;
  --n-tabs-border-width: 1px;
  --n-tabs-border-color: #d5d8dc;
  --n-tabs-content-padding: initial;
  --n-tabs-content-border-radius: initial;
  --n-tabs-title-color: var(--e-global-color-secondary, var(--n-tabs-color-secondary-fallback));
  --n-tabs-title-color-hover: #fff;
  --n-tabs-title-color-active: #fff;
  --n-tabs-title-background-color: #f1f2f3;
  --n-tabs-title-background-color-hover: var(--e-global-color-accent, var(--n-tabs-color-accent-fallback));
  --n-tabs-title-background-color-active: var(--e-global-color-accent, var(--n-tabs-color-accent-fallback));
  --n-tabs-title-width: initial;
  --n-tabs-title-height: initial;
  --n-tabs-title-font-size: 1rem;
  --n-tabs-title-justify-content-toggle: initial;
  --n-tabs-title-align-items-toggle: center;
  --n-tabs-title-justify-content: center;
  --n-tabs-title-align-items: center;
  --n-tabs-title-direction: row;
  --n-tabs-title-gap: 10px;
  --n-tabs-title-flex-grow: 0;
  --n-tabs-title-padding-top: var(--n-tabs-default-padding-block);
  --n-tabs-title-padding-right: var(--n-tabs-default-padding-inline);
  --n-tabs-title-padding-bottom: var(--n-tabs-default-padding-block);
  --n-tabs-title-padding-left: var(--n-tabs-default-padding-inline);
  --n-tabs-title-border-radius: initial;
  --n-tabs-title-transition: 0.3s;
  --n-tabs-icon-color: var(--e-global-color-secondary, var(--n-tabs-color-secondary-fallback));
  --n-tabs-icon-color-hover: var(--n-tabs-title-color-hover);
  --n-tabs-icon-color-active: #fff;
  --n-tabs-icon-gap: 5px;
  width: 100%;
  max-width: 100%
}

.elementor-widget-n-tabs .e-n-tabs {
  display: var(--n-tabs-display);
  flex-direction: var(--n-tabs-direction);
  gap: var(--n-tabs-gap);
  text-align: left
}

.elementor-widget-n-tabs .e-n-tabs-heading {
  display: var(--n-tabs-heading-display);
  flex-basis: var(--n-tabs-heading-width);
  flex-direction: var(--n-tabs-heading-direction);
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: var(--n-tabs-heading-justify-content);
  gap: var(--n-tabs-title-gap)
}

.elementor-widget-n-tabs .e-n-tabs-content {
  flex-grow: 1;
  padding: var(--n-tabs-content-padding);
  border-radius: var(--n-tabs-content-border-radius);
  min-width: 0
}

.elementor-widget-n-tabs .e-n-tab-title {
  display: flex;
  align-items: var(--n-tabs-title-align-items-toggle, var(--n-tabs-title-align-items));
  flex-direction: var(--n-tabs-title-direction);
  justify-content: var(--n-tabs-title-justify-content-toggle, var(--n-tabs-title-justify-content));
  gap: var(--n-tabs-icon-gap);
  border-width: var(--n-tabs-border-width);
  position: relative;
  cursor: pointer;
  outline: none;
  flex-grow: var(--n-tabs-title-flex-grow);
  flex-basis: fit-content;
  padding: var(--n-tabs-title-padding-top) var(--n-tabs-title-padding-right) var(--n-tabs-title-padding-bottom) var(--n-tabs-title-padding-left);
  border-radius: var(--n-tabs-title-border-radius);
  height: var(--n-tabs-title-height);
  width: var(--n-tabs-title-width);
  transition: background var(--n-tabs-title-transition), color var(--n-tabs-title-transition), border var(--n-tabs-title-transition), box-shadow var(--n-tabs-title-transition), text-shadow var(--n-tabs-title-transition), stroke var(--n-tabs-title-transition), stroke-width var(--n-tabs-title-transition), -webkit-text-stroke-width var(--n-tabs-title-transition), -webkit-text-stroke-color var(--n-tabs-title-transition), transform var(--n-tabs-title-transition)
}

.elementor-widget-n-tabs .e-n-tab-title span i,
.elementor-widget-n-tabs .e-n-tab-title span svg {
  transition: color var(--n-tabs-title-transition), fill var(--n-tabs-title-transition)
}

.elementor-widget-n-tabs .e-n-tab-title-text {
  display: flex;
  align-items: center;
  font-size: var(--n-tabs-title-font-size)
}

.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  order: var(--n-tabs-icon-order);
  overflow: hidden
}

.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon i {
  font-size: var(--n-tabs-icon-size, var(--n-tabs-title-font-size))
}

.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon svg {
  width: var(--n-tabs-icon-size, var(--n-tabs-title-font-size));
  height: var(--n-tabs-icon-size, var(--n-tabs-title-font-size))
}

.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon:empty {
  display: none
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active) {
  background-color: var(--n-tabs-title-background-color)
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active),
.elementor-widget-n-tabs .e-n-tab-title:not(.e-active) a {
  color: var(--n-tabs-title-color)
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active) .e-n-tab-icon i {
  color: var(--n-tabs-icon-color)
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active) .e-n-tab-icon svg {
  fill: var(--n-tabs-icon-color)
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active) .e-n-tab-icon i:last-child,
.elementor-widget-n-tabs .e-n-tab-title:not(.e-active) .e-n-tab-icon svg:last-child {
  transform: translateY(-100vh);
  height: 0;
  opacity: 0
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active).e-normal:hover,
.elementor-widget-n-tabs .e-n-tab-title:not(.e-active).e-normal:hover a {
  color: var(--n-tabs-title-color-hover)
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active).e-normal:hover .e-n-tab-icon i {
  color: var(--n-tabs-icon-color-hover)
}

.elementor-widget-n-tabs .e-n-tab-title:not(.e-active).e-normal:hover .e-n-tab-icon svg {
  fill: var(--n-tabs-icon-color-hover)
}

.elementor-widget-n-tabs .e-n-tab-title.e-active,
.elementor-widget-n-tabs .e-n-tab-title.e-active a {
  color: var(--n-tabs-title-color-active)
}

.elementor-widget-n-tabs .e-n-tab-title.e-active .e-n-tab-icon i {
  color: var(--n-tabs-icon-color-active)
}

.elementor-widget-n-tabs .e-n-tab-title.e-active .e-n-tab-icon svg {
  fill: var(--n-tabs-icon-color-active)
}

.elementor-widget-n-tabs .e-n-tab-title.e-active .e-n-tab-icon i:first-child,
.elementor-widget-n-tabs .e-n-tab-title.e-active .e-n-tab-icon svg:first-child {
  transform: translateY(-100vh);
  height: 0;
  opacity: 0
}

.elementor-widget-n-tabs .e-n-tab-title.e-active[class*=elementor-animation-]:active,
.elementor-widget-n-tabs .e-n-tab-title.e-active[class*=elementor-animation-]:focus,
.elementor-widget-n-tabs .e-n-tab-title.e-active[class*=elementor-animation-]:hover {
  transform: none;
  animation: initial
}

.elementor-widget-n-tabs .e-n-tabs-content .e-collapse {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.elementor-widget-n-tabs .e-n-tabs-content .e-collapse:not(:first-child) {
  margin-top: var(--n-tabs-title-gap)
}

.elementor-widget-n-tabs .e-n-tabs-content .e-collapse.e-active {
  margin-bottom: var(--n-tabs-gap)
}

.elementor-widget-n-tabs .e-n-tabs-content>.e-con:not(.e-active) {
  display: none
}

.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading .e-normal:hover {
  background-color: var(--n-tabs-title-background-color-hover);
  background-image: none
}

:is(.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading .e-n-tab-title, .elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs>.e-n-tabs-content .e-n-tab-title).e-active {
  background-color: var(--n-tabs-title-background-color-active);
  background-image: none
}

@media (min-width:768px) {
  .e-n-tabs-mobile>.elementor-widget-container>.e-n-tabs>.e-n-tabs-content>.e-collapse {
    display: none
  }
}

@media (max-width:767px) {
  .e-n-tabs-mobile>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading {
    display: none
  }
}

@media (min-width:-1) {
  .e-n-tabs-mobile_extra>.elementor-widget-container>.e-n-tabs>.e-n-tabs-content>.e-collapse {
    display: none
  }
}

@media (max-width:-1) {
  .e-n-tabs-mobile_extra>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading {
    display: none
  }
}

@media (min-width:1025px) {
  .e-n-tabs-tablet>.elementor-widget-container>.e-n-tabs>.e-n-tabs-content>.e-collapse {
    display: none
  }
}

@media (max-width:1024px) {
  .e-n-tabs-tablet>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading {
    display: none
  }
}

@media (min-width:-1) {
  .e-n-tabs-tablet_extra>.elementor-widget-container>.e-n-tabs>.e-n-tabs-content>.e-collapse {
    display: none
  }
}

@media (max-width:-1) {
  .e-n-tabs-tablet_extra>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading {
    display: none
  }
}

@media (min-width:1025px) {
  .e-n-tabs-laptop>.elementor-widget-container>.e-n-tabs>.e-n-tabs-content>.e-collapse {
    display: none
  }
}

@media (max-width:-1) {
  .e-n-tabs-laptop>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading {
    display: none
  }
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.swiper-container .swiper-slide figure {
  line-height: 0
}

.swiper-container .elementor-lightbox-content-source {
  display: none
}

.swiper-container-no-flexbox .swiper-slide {
  float: left
}

.swiper-container-vertical>.swiper-wrapper {
  flex-direction: column
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0)
}

.swiper-container-multirow>.swiper-wrapper {
  flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}

.swiper-wp8-horizontal {
  touch-action: pan-y
}

.swiper-wp8-vertical {
  touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background: no-repeat 50%
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
  left: 10px;
  right: auto
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
  right: 10px;
  left: auto
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s;
  transform: translateZ(0);
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 5px;
  left: 0;
  width: 100%
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: .2
}

.swiper-pagination-fraction {
  color: #000
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff
}

.swiper-pagination-bullet-active {
  opacity: 1
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}

.swiper-container-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: hsla(0, 0%, 100%, .5)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000
}

.swiper-container-3d {
  perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px
}

.swiper-container-cube,
.swiper-container-flip {
  overflow: visible
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden
}

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  filter: blur(50px);
  z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0
}

.swiper-scrollbar-cursor-drag {
  cursor: move
}

.elementor-pagination-position-outside .swiper-container {
  padding-bottom: 30px
}

.elementor-pagination-position-outside .elementor-swiper-button {
  top: calc(50% - 30px / 2)
}

.elementor-swiper {
  position: relative
}

.elementor-main-swiper {
  position: static
}

.elementor-arrows-position-outside .swiper-container {
  width: calc(100% - 60px)
}

.elementor-arrows-position-outside .elementor-swiper-button-prev {
  left: 0
}

.elementor-arrows-position-outside .elementor-swiper-button-next {
  right: 0
}

.swiper-image-stretch .swiper-slide .swiper-slide-image {
  width: 100%
}

.elementor-swiper-button {
  position: absolute;
  display: inline-flex;
  z-index: 1;
  cursor: pointer;
  font-size: 25px;
  color: hsla(0, 0%, 93.3%, .9);
  top: 50%;
  transform: translateY(-50%)
}

.elementor-swiper-button svg {
  fill: hsla(0, 0%, 93.3%, .9);
  height: 1em;
  width: 1em
}

.elementor-swiper-button-prev {
  left: 10px
}

.elementor-swiper-button-next {
  right: 10px
}

.elementor-swiper-button.swiper-button-disabled {
  opacity: .3
}

.swiper-container-cube .elementor-swiper-button {
  transform: translate3d(0, -50%, 1px)
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12) infinite
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: 100%;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E") no-repeat 50%
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@keyframes swiper-preloader-spin {
  to {
    transform: rotate(1turn)
  }
}

.elementor-10 .elementor-element.elementor-element-2cc4247:not(.elementor-motion-effects-element-type-background),
.elementor-10 .elementor-element.elementor-element-2cc4247>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: transparent;
  background-image: radial-gradient(at top left, #B3BEDB4F 0%, #B3BEDB00 50%);
}

.elementor-10 .elementor-element.elementor-element-2cc4247 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 150px 0px 100px 0px;
}

.elementor-10 .elementor-element.elementor-element-2cc4247>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-019c853>.elementor-widget-container {
  margin: 50px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-f23de2b .elementor-button .elementor-align-icon-right {
  margin-left: 10px;
}

.elementor-10 .elementor-element.elementor-element-f23de2b .elementor-button .elementor-align-icon-left {
  margin-right: 10px;
}

.elementor-10 .elementor-element.elementor-element-f23de2b>.elementor-widget-container {
  padding: 10px 0px 50px 0px;
}

.elementor-10 .elementor-element.elementor-element-1a9d933>.elementor-element-populated {
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-b093b62 {
  text-align: left;
}

.elementor-10 .elementor-element.elementor-element-b093b62 img {
  width: 102px;
  opacity: 0.8;
}

.elementor-10 .elementor-element.elementor-element-b093b62:hover img {
  opacity: 1;
}

.elementor-10 .elementor-element.elementor-element-b093b62>.elementor-widget-container {
  margin: 0px 60px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-8ee5b44>.elementor-element-populated {
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-215e720 img {
  opacity: 0.8;
}

.elementor-10 .elementor-element.elementor-element-215e720:hover img {
  opacity: 1;
}

.elementor-10 .elementor-element.elementor-element-215e720>.elementor-widget-container {
  margin: 0px 60px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-deb4f11>.elementor-element-populated {
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-06c79d3 img {
  width: 100px;
  opacity: 0.8;
}

.elementor-10 .elementor-element.elementor-element-06c79d3:hover img {
  opacity: 1;
}

.elementor-10 .elementor-element.elementor-element-06c79d3>.elementor-widget-container {
  margin: 0px 60px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-d11132e {
  padding: 50px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-3cfd52d>.elementor-element-populated {
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-9d0754e {
  text-align: left;
}

.elementor-10 .elementor-element.elementor-element-9d0754e img {
  width: 97px;
  opacity: 0.8;
}

.elementor-10 .elementor-element.elementor-element-9d0754e:hover img {
  opacity: 1;
}

.elementor-10 .elementor-element.elementor-element-9d0754e>.elementor-widget-container {
  margin: 0px 60px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-eeed5c9>.elementor-element-populated {
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-1eb6edc img {
  width: 110px;
  opacity: 0.8;
}

.elementor-10 .elementor-element.elementor-element-1eb6edc:hover img {
  opacity: 1;
}

.elementor-10 .elementor-element.elementor-element-1eb6edc>.elementor-widget-container {
  margin: 0px 60px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-d62c480>.elementor-element-populated {
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-34687df img {
  opacity: 0.8;
}

.elementor-10 .elementor-element.elementor-element-34687df:hover img {
  opacity: 1;
}

.elementor-10 .elementor-element.elementor-element-34687df>.elementor-widget-container {
  margin: 0px 60px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-a3295f4>.elementor-element-populated {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.elementor-10 .elementor-element.elementor-element-a3295f4>.elementor-element-populated>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-bf90a4b {
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 100px 0px 100px 0px;
}

.elementor-10 .elementor-element.elementor-element-bf90a4b>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-f296d4a>.elementor-widget-container {
  margin: 0px 75px 30px 0px;
}

.elementor-10 .elementor-element.elementor-element-2b70973 .bdt-total-count {
  text-align: left;
}

.elementor-10 .elementor-element.elementor-element-2b70973 .bdt-total-count-content .bdt-total-count-number {
  color: var(--e-global-color-uicore_headline);
  font-family: "Montserrat", Sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.elementor-10 .elementor-element.elementor-element-2b70973 .bdt-total-count-content .bdt-total-count-content-text {
  font-size: 16px;
}

.elementor-10 .elementor-element.elementor-element-2b70973>.elementor-widget-container {
  padding: 0px 50px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-2b70973 {
  width: var(--container-widget-width, 33%);
  max-width: 33%;
  --container-widget-width: 33%;
  --container-widget-flex-grow: 0;
}

.elementor-10 .elementor-element.elementor-element-a33cd5b .bdt-total-count {
  text-align: left;
}

.elementor-10 .elementor-element.elementor-element-a33cd5b .bdt-total-count-content .bdt-total-count-number {
  color: var(--e-global-color-uicore_headline);
  font-family: "Montserrat", Sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.elementor-10 .elementor-element.elementor-element-a33cd5b .bdt-total-count-content .bdt-total-count-content-text {
  font-size: 16px;
}

.elementor-10 .elementor-element.elementor-element-a33cd5b>.elementor-widget-container {
  padding: 0px 50px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-a33cd5b {
  width: var(--container-widget-width, 33%);
  max-width: 33%;
  --container-widget-width: 33%;
  --container-widget-flex-grow: 0;
}

.elementor-10 .elementor-element.elementor-element-3dd59ed .bdt-total-count {
  text-align: left;
}

.elementor-10 .elementor-element.elementor-element-3dd59ed .bdt-total-count-content .bdt-total-count-number {
  color: var(--e-global-color-uicore_headline);
  font-family: "Montserrat", Sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.elementor-10 .elementor-element.elementor-element-3dd59ed .bdt-total-count-content .bdt-total-count-content-text {
  font-size: 16px;
}

.elementor-10 .elementor-element.elementor-element-3dd59ed>.elementor-widget-container {
  padding: 0px 50px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-3dd59ed {
  width: var(--container-widget-width, 33%);
  max-width: 33%;
  --container-widget-width: 33%;
  --container-widget-flex-grow: 0;
}

.elementor-bc-flex-widget .elementor-10 .elementor-element.elementor-element-e76f3bf.elementor-column .elementor-widget-wrap {
  align-items: center;
}

.elementor-10 .elementor-element.elementor-element-e76f3bf.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated {
  align-content: center;
  align-items: center;
}

.elementor-10 .elementor-element.elementor-element-c4a3921>.elementor-widget-container {
  margin: 0px -200px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-fb58ab3 .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-fb58ab3.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-fb58ab3.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-fb58ab3.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-fb58ab3.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-fb58ab3.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-fb58ab3 .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-fb58ab3 {
  width: auto;
  max-width: auto;
  top: 85px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-fb58ab3 {
  left: 121px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-fb58ab3 {
  right: 121px;
}

.elementor-10 .elementor-element.elementor-element-1b20895 .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-1b20895.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-1b20895.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-1b20895.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-1b20895.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-1b20895.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-1b20895 .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-1b20895 {
  width: auto;
  max-width: auto;
  top: 134px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-1b20895 {
  left: 158px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-1b20895 {
  right: 158px;
}

.elementor-10 .elementor-element.elementor-element-f2f689d .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-f2f689d.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-f2f689d.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-f2f689d.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-f2f689d.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-f2f689d.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-f2f689d .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-f2f689d {
  width: auto;
  max-width: auto;
  top: 280px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-f2f689d {
  left: 234px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-f2f689d {
  right: 234px;
}

.elementor-10 .elementor-element.elementor-element-770c204 .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-770c204.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-770c204.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-770c204.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-770c204.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-770c204.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-770c204 .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-770c204 {
  width: auto;
  max-width: auto;
  top: 45px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-770c204 {
  left: 255px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-770c204 {
  right: 255px;
}

.elementor-10 .elementor-element.elementor-element-92b5534 .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-92b5534.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-92b5534.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-92b5534.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-92b5534.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-92b5534.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-92b5534 .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-92b5534 {
  width: auto;
  max-width: auto;
  top: 130px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-92b5534 {
  left: 393px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-92b5534 {
  right: 393px;
}

.elementor-10 .elementor-element.elementor-element-c39a3ca .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-c39a3ca.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-c39a3ca.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-c39a3ca.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-c39a3ca.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-c39a3ca.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-c39a3ca .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-c39a3ca {
  width: auto;
  max-width: auto;
  top: 211px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-c39a3ca {
  left: 356px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-c39a3ca {
  right: 356px;
}

.elementor-10 .elementor-element.elementor-element-fd8b557 .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-fd8b557.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-fd8b557.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-fd8b557.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-fd8b557.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-fd8b557.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-fd8b557 .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-fd8b557 {
  width: auto;
  max-width: auto;
  top: 262px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-fd8b557 {
  left: 423px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-fd8b557 {
  right: 423px;
}

.elementor-10 .elementor-element.elementor-element-8164ccf .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-8164ccf.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-8164ccf.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-8164ccf.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-8164ccf.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-8164ccf.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-8164ccf .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-8164ccf {
  width: auto;
  max-width: auto;
  top: 164px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-8164ccf {
  left: 482px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-8164ccf {
  right: 482px;
}

.elementor-10 .elementor-element.elementor-element-c05bc39 .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-c05bc39.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-c05bc39.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-c05bc39.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-c05bc39.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-c05bc39.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-c05bc39 .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-c05bc39 {
  width: auto;
  max-width: auto;
  top: 86px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-c05bc39 {
  left: 536px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-c05bc39 {
  right: 536px;
}

.elementor-10 .elementor-element.elementor-element-617f2da .elementor-icon-wrapper {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-617f2da.elementor-view-stacked .elementor-icon {
  background-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-617f2da.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-617f2da.elementor-view-default .elementor-icon {
  color: var(--e-global-color-uicore_primary);
  border-color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-617f2da.elementor-view-framed .elementor-icon,
.elementor-10 .elementor-element.elementor-element-617f2da.elementor-view-default .elementor-icon svg {
  fill: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-617f2da .elementor-icon {
  font-size: 10px;
}

.elementor-10 .elementor-element.elementor-element-617f2da {
  width: auto;
  max-width: auto;
  top: 298px;
}

body:not(.rtl) .elementor-10 .elementor-element.elementor-element-617f2da {
  left: 612px;
}

body.rtl .elementor-10 .elementor-element.elementor-element-617f2da {
  right: 612px;
}

.elementor-10 .elementor-element.elementor-element-2cc15ba {
  padding: 100px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-dd3b039 {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-5a4c117 {
  text-align: center;
}

.elementor-10 .elementor-element.elementor-element-5a4c117>.elementor-widget-container {
  margin: 0px 0px 20px 0px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 {
  --ep-advanced-icon-box-icon-top-v-offset: -0px;
  --ep-advanced-icon-box-icon-top-h-offset: 0px;
  width: var(--container-widget-width, 33%);
  max-width: 33%;
  --container-widget-width: 33%;
  --container-widget-flex-grow: 0;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-icon-wrapper {
  background-color: var(--e-global-color-uicore_light);
  border-radius: 100px 100px 100px 100px;
  overflow: hidden;
  padding: 20px 20px 20px 20px;
  font-size: 35px;
  width: 35px;
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-3b5fb17.elementor-position-right .bdt-advanced-icon-box-icon {
  margin-left: 15px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17.elementor-position-left .bdt-advanced-icon-box-icon {
  margin-right: 15px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17.elementor-position-top .bdt-advanced-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-icon-wrapper i,
.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-icon-wrapper img,
.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-icon-wrapper svg {
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  background-color: var(--e-global-color-uicore_dark);
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box-title {
  margin-bottom: 10px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
  font-size: 14px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-advanced-icon-box-content {
  padding: 0px 30px 30px 30px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17>.elementor-widget-container {
  margin: 0px 20px 0px 0px;
  padding: 40px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-3b5fb17:hover .elementor-widget-container {
  background-color: var(--e-global-color-uicore_light);
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 {
  --ep-advanced-icon-box-icon-top-v-offset: -0px;
  --ep-advanced-icon-box-icon-top-h-offset: 0px;
  width: var(--container-widget-width, 33%);
  max-width: 33%;
  --container-widget-width: 33%;
  --container-widget-flex-grow: 0;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-icon-wrapper {
  background-color: var(--e-global-color-uicore_light);
  border-radius: 100px 100px 100px 100px;
  overflow: hidden;
  padding: 20px 20px 20px 20px;
  font-size: 35px;
  width: 35px;
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-f35b8d3.elementor-position-right .bdt-advanced-icon-box-icon {
  margin-left: 15px;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3.elementor-position-left .bdt-advanced-icon-box-icon {
  margin-right: 15px;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3.elementor-position-top .bdt-advanced-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-icon-wrapper i,
.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-icon-wrapper img,
.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-icon-wrapper svg {
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  background-color: var(--e-global-color-uicore_dark);
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box-title {
  margin-bottom: 10px;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
  font-size: 14px;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-advanced-icon-box-content {
  padding: 0px 30px 30px 30px;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3>.elementor-widget-container {
  margin: 0px 20px 0px 0px;
  padding: 40px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-f35b8d3:hover .elementor-widget-container {
  background-color: var(--e-global-color-uicore_light);
}

.elementor-10 .elementor-element.elementor-element-41222dc {
  --ep-advanced-icon-box-icon-top-v-offset: -0px;
  --ep-advanced-icon-box-icon-top-h-offset: 0px;
  width: var(--container-widget-width, 33%);
  max-width: 33%;
  --container-widget-width: 33%;
  --container-widget-flex-grow: 0;
}

.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-icon-wrapper {
  background-color: var(--e-global-color-uicore_light);
  border-radius: 100px 100px 100px 100px;
  overflow: hidden;
  padding: 20px 20px 20px 20px;
  font-size: 35px;
  width: 35px;
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-41222dc.elementor-position-right .bdt-advanced-icon-box-icon {
  margin-left: 15px;
}

.elementor-10 .elementor-element.elementor-element-41222dc.elementor-position-left .bdt-advanced-icon-box-icon {
  margin-right: 15px;
}

.elementor-10 .elementor-element.elementor-element-41222dc.elementor-position-top .bdt-advanced-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-icon-wrapper i,
.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-icon-wrapper img,
.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-icon-wrapper svg {
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  color: var(--e-global-color-uicore_primary);
}

.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  background-color: var(--e-global-color-uicore_dark);
}

.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box-title {
  margin-bottom: 10px;
}

.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
  font-size: 14px;
}

.elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-advanced-icon-box-content {
  padding: 0px 30px 30px 30px;
}

.elementor-10 .elementor-element.elementor-element-41222dc>.elementor-widget-container {
  margin: 0px 20px 0px 0px;
  padding: 40px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-41222dc:hover .elementor-widget-container {
  background-color: var(--e-global-color-uicore_light);
}

.elementor-10 .elementor-element.elementor-element-3f6054c:not(.elementor-motion-effects-element-type-background),
.elementor-10 .elementor-element.elementor-element-3f6054c>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: transparent;
  background-image: radial-gradient(at center right, #B3BEDB2B 0%, #B3BEDB00 42%);
}

.elementor-10 .elementor-element.elementor-element-3f6054c {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  /* padding: 200px 0px 150px 0px; */
}

.elementor-10 .elementor-element.elementor-element-3f6054c>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-34e0137>.elementor-element-populated {
  padding: 0px 100px 0px 0px;
}

.elementor-bc-flex-widget .elementor-10 .elementor-element.elementor-element-a853d4a.elementor-column .elementor-widget-wrap {
  align-items: center;
}

.elementor-10 .elementor-element.elementor-element-a853d4a.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated {
  align-content: center;
  align-items: center;
}

.elementor-10 .elementor-element.elementor-element-a853d4a>.elementor-element-populated {
  padding: 0px 0px 0px 100px;
}

.elementor-10 .elementor-element.elementor-element-2338a02 .bdt-crypto-currency-table table tr.bdt-cryptocurrency-title th {
  color: var(--e-global-color-uicore_primary);
  font-size: 14px;
}

.elementor-10 .elementor-element.elementor-element-2338a02 .bdt-crypto-currency-table table tr.bdt-cryptocurrency-title {
  background-color: #09090900;
}

.elementor-10 .elementor-element.elementor-element-2338a02 .bdt-crypto-currency-table tbody tr td {
  border-style: none;
  border-width: 1px;
  padding: 0.5em 1em 0.5em 1em;
}

.elementor-10 .elementor-element.elementor-element-2338a02 .bdt-crypto-currency-table .bdt-table.bdt-table-hover tbody tr:hover {
  background-color: var(--e-global-color-uicore_light);
}

.elementor-10 .elementor-element.elementor-element-2338a02 .bdt-crypto-currency-table table tr td .bdt-cryptocurrency-name {
  color: var(--e-global-color-uicore_headline);
}

.elementor-10 .elementor-element.elementor-element-2338a02 .bdt-crypto-currency-table table tr td .bdt-cryptocurrency-fullname {
  margin-left: 0px;
}

.elementor-10 .elementor-element.elementor-element-2338a02>.elementor-widget-container {
  margin: 100px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-639ca84:not(.elementor-motion-effects-element-type-background),
.elementor-10 .elementor-element.elementor-element-639ca84>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: transparent;
  background-image: radial-gradient(at bottom left, #B3BEDB3B 0%, #B3BEDB00 45%);
}

.elementor-10 .elementor-element.elementor-element-639ca84 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 100px 0px 170px 0px;
}

.elementor-10 .elementor-element.elementor-element-639ca84>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-9c5b194>.elementor-widget-container {
  margin: 0px 0px 20px 0px;
}

.elementor-10 .elementor-element.elementor-element-15debc0:not(.elementor-motion-effects-element-type-background)>.elementor-widget-wrap,
.elementor-10 .elementor-element.elementor-element-15debc0>.elementor-widget-wrap>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-uicore_light);
}

.elementor-10 .elementor-element.elementor-element-15debc0>.elementor-element-populated {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 35px 35px 35px 35px;
}

.elementor-10 .elementor-element.elementor-element-15debc0>.elementor-element-populated>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-819b841>.elementor-widget-container {
  margin: 0px 0px 20px 0px;
}

.elementor-10 .elementor-element.elementor-element-266da47 {
  --ep-advanced-icon-box-icon-left-h-offset: 0px;
  --ep-advanced-icon-box-icon-left-v-offset: -5px;
}

.elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box .bdt-icon-wrapper {
  border-radius: 100px 100px 100px 100px;
  overflow: hidden;
  font-size: 60px;
  width: 60px;
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-266da47.elementor-position-right .bdt-advanced-icon-box-icon {
  margin-left: 20px;
}

.elementor-10 .elementor-element.elementor-element-266da47.elementor-position-left .bdt-advanced-icon-box-icon {
  margin-right: 20px;
}

.elementor-10 .elementor-element.elementor-element-266da47.elementor-position-top .bdt-advanced-icon-box-icon {
  margin-bottom: 20px;
}

.elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box .bdt-icon-wrapper i,
.elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box .bdt-icon-wrapper img,
.elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box .bdt-icon-wrapper svg {
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box img {
  transition-duration: 0.3s;
}

.elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box-title {
  margin-bottom: 5px;
}

.elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
  font-size: 14px;
}

.elementor-10 .elementor-element.elementor-element-1b99a82:not(.elementor-motion-effects-element-type-background)>.elementor-widget-wrap,
.elementor-10 .elementor-element.elementor-element-1b99a82>.elementor-widget-wrap>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-uicore_light);
}

.elementor-10 .elementor-element.elementor-element-1b99a82>.elementor-element-populated {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 0px 15px 0px 15px;
  --e-column-margin-right: 15px;
  --e-column-margin-left: 15px;
  padding: 35px 35px 35px 35px;
}

.elementor-10 .elementor-element.elementor-element-1b99a82>.elementor-element-populated>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-2aa55e3>.elementor-widget-container {
  margin: 0px 0px 20px 0px;
}

.elementor-10 .elementor-element.elementor-element-09e5ee7 {
  --ep-advanced-icon-box-icon-left-h-offset: 0px;
  --ep-advanced-icon-box-icon-left-v-offset: -5px;
}

.elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box .bdt-icon-wrapper {
  border-radius: 100px 100px 100px 100px;
  overflow: hidden;
  font-size: 60px;
  width: 60px;
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-09e5ee7.elementor-position-right .bdt-advanced-icon-box-icon {
  margin-left: 20px;
}

.elementor-10 .elementor-element.elementor-element-09e5ee7.elementor-position-left .bdt-advanced-icon-box-icon {
  margin-right: 20px;
}

.elementor-10 .elementor-element.elementor-element-09e5ee7.elementor-position-top .bdt-advanced-icon-box-icon {
  margin-bottom: 20px;
}

.elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box .bdt-icon-wrapper i,
.elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box .bdt-icon-wrapper img,
.elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box .bdt-icon-wrapper svg {
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box img {
  transition-duration: 0.3s;
}

.elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box-title {
  margin-bottom: 5px;
}

.elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
  font-size: 14px;
}

.elementor-10 .elementor-element.elementor-element-7a9b54c:not(.elementor-motion-effects-element-type-background)>.elementor-widget-wrap,
.elementor-10 .elementor-element.elementor-element-7a9b54c>.elementor-widget-wrap>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-uicore_light);
}

.elementor-10 .elementor-element.elementor-element-7a9b54c>.elementor-element-populated {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 35px 35px 35px 35px;
}

.elementor-10 .elementor-element.elementor-element-7a9b54c>.elementor-element-populated>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-d688743>.elementor-widget-container {
  margin: 0px 0px 20px 0px;
}

.elementor-10 .elementor-element.elementor-element-86d3625 {
  --ep-advanced-icon-box-icon-left-h-offset: 0px;
  --ep-advanced-icon-box-icon-left-v-offset: -5px;
}

.elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box .bdt-icon-wrapper {
  border-radius: 100px 100px 100px 100px;
  overflow: hidden;
  font-size: 60px;
  width: 60px;
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-86d3625.elementor-position-right .bdt-advanced-icon-box-icon {
  margin-left: 20px;
}

.elementor-10 .elementor-element.elementor-element-86d3625.elementor-position-left .bdt-advanced-icon-box-icon {
  margin-right: 20px;
}

.elementor-10 .elementor-element.elementor-element-86d3625.elementor-position-top .bdt-advanced-icon-box-icon {
  margin-bottom: 20px;
}

.elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box .bdt-icon-wrapper i,
.elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box .bdt-icon-wrapper img,
.elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box .bdt-icon-wrapper svg {
  transform: rotate(0deg);
}

.elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box img {
  transition-duration: 0.3s;
}

.elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box-title {
  margin-bottom: 5px;
}

.elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
  font-size: 14px;
}

.elementor-10 .elementor-element.elementor-element-0457a9b:not(.elementor-motion-effects-element-type-background),
.elementor-10 .elementor-element.elementor-element-0457a9b>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-uicore_light);
  background-image: url("https://level.uicore.co/crypto-trading/wp-content/uploads/sites/4/2021/10/Crypto-Trading-CTA-BG.webp");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
}

.elementor-10 .elementor-element.elementor-element-0457a9b {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #FFFFFF1A;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-0457a9b>.elementor-background-overlay {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.elementor-10 .elementor-element.elementor-element-d027334>.elementor-element-populated {
  margin: 75px 0px 90px 0px;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px;
}

.elementor-10 .elementor-element.elementor-element-898f2f4>.elementor-widget-container {
  margin: 0px 50px 10px 0px;
}

.elementor-10 .elementor-element.elementor-element-abdf8f8 .elementor-button .elementor-align-icon-right {
  margin-left: 10px;
}

.elementor-10 .elementor-element.elementor-element-abdf8f8 .elementor-button .elementor-align-icon-left {
  margin-right: 10px;
}

.elementor-bc-flex-widget .elementor-10 .elementor-element.elementor-element-fdedf7c.elementor-column .elementor-widget-wrap {
  align-items: flex-end;
}

.elementor-10 .elementor-element.elementor-element-fdedf7c.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated {
  align-content: flex-end;
  align-items: flex-end;
}

.elementor-10 .elementor-element.elementor-element-fdedf7c>.elementor-element-populated {
  padding: 0px 0px 0px 0px;
}

.elementor-10 .elementor-element.elementor-element-a17621a {
  text-align: right;
}

.elementor-10 .elementor-element.elementor-element-a17621a img {
  width: 475px;
}

.elementor-10 .elementor-element.elementor-element-a17621a>.elementor-widget-container {
  margin: -100px 0px 0px 0px;
}

@media(min-width:768px) {
  .elementor-10 .elementor-element.elementor-element-d027334 {
    width: 45%;
  }

  .elementor-10 .elementor-element.elementor-element-fdedf7c {
    width: 55%;
  }
}

@media(max-width:1024px) {
  .elementor-10 .elementor-element.elementor-element-2cc4247 {
    padding: 150px 0px 75px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-2d5e0d8>.elementor-element-populated {
    margin: 0px 150px 0px 0px;
    --e-column-margin-right: 150px;
    --e-column-margin-left: 0px;
  }

  .elementor-10 .elementor-element.elementor-element-019c853>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-6ffefaa>.elementor-widget-container {
    margin: 0px 150px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-f23de2b>.elementor-widget-container {
    padding: 10px 0px 40px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-b093b62>.elementor-widget-container {
    margin: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-215e720>.elementor-widget-container {
    margin: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-06c79d3>.elementor-widget-container {
    margin: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-d11132e {
    padding: 45px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-9d0754e>.elementor-widget-container {
    margin: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-1eb6edc>.elementor-widget-container {
    margin: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-34687df>.elementor-widget-container {
    margin: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3eca0d6>.elementor-widget-container {
    margin: 30px 100px 0px 100px;
    padding: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-bf90a4b {
    padding: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-4180900>.elementor-widget-container {
    margin: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-f296d4a>.elementor-widget-container {
    margin: 0px 125px 20px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-2b70973 .bdt-total-count-content .bdt-total-count-number {
    font-size: 35px;
  }

  .elementor-10 .elementor-element.elementor-element-2b70973 .bdt-total-count-content .bdt-total-count-content-text {
    font-size: 14px;
  }

  .elementor-10 .elementor-element.elementor-element-a33cd5b .bdt-total-count-content .bdt-total-count-number {
    font-size: 35px;
  }

  .elementor-10 .elementor-element.elementor-element-a33cd5b .bdt-total-count-content .bdt-total-count-content-text {
    font-size: 14px;
  }

  .elementor-10 .elementor-element.elementor-element-3dd59ed .bdt-total-count-content .bdt-total-count-number {
    font-size: 35px;
  }

  .elementor-10 .elementor-element.elementor-element-3dd59ed .bdt-total-count-content .bdt-total-count-content-text {
    font-size: 14px;
  }

  .elementor-10 .elementor-element.elementor-element-e76f3bf>.elementor-element-populated {
    margin: 20px 0px 0px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
  }

  .elementor-10 .elementor-element.elementor-element-c4a3921>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-fb58ab3 .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-fb58ab3 {
    left: 115px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-fb58ab3 {
    right: 115px;
  }

  .elementor-10 .elementor-element.elementor-element-fb58ab3 {
    top: 81px;
  }

  .elementor-10 .elementor-element.elementor-element-1b20895 .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-1b20895 {
    left: 152px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-1b20895 {
    right: 152px;
  }

  .elementor-10 .elementor-element.elementor-element-1b20895 {
    top: 123px;
  }

  .elementor-10 .elementor-element.elementor-element-f2f689d .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-f2f689d {
    left: 197px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-f2f689d {
    right: 197px;
  }

  .elementor-10 .elementor-element.elementor-element-f2f689d {
    top: 233px;
  }

  .elementor-10 .elementor-element.elementor-element-770c204 .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-770c204 {
    left: 242px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-770c204 {
    right: 242px;
  }

  .elementor-10 .elementor-element.elementor-element-770c204 {
    top: 31px;
  }

  .elementor-10 .elementor-element.elementor-element-92b5534 .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-92b5534 {
    left: 389px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-92b5534 {
    right: 389px;
  }

  .elementor-10 .elementor-element.elementor-element-92b5534 {
    top: 80px;
  }

  .elementor-10 .elementor-element.elementor-element-c39a3ca .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-c39a3ca {
    left: 336px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-c39a3ca {
    right: 336px;
  }

  .elementor-10 .elementor-element.elementor-element-c39a3ca {
    top: 164px;
  }

  .elementor-10 .elementor-element.elementor-element-fd8b557 .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-fd8b557 {
    left: 363px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-fd8b557 {
    right: 363px;
  }

  .elementor-10 .elementor-element.elementor-element-fd8b557 {
    top: 224px;
  }

  .elementor-10 .elementor-element.elementor-element-8164ccf .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-8164ccf {
    left: 491px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-8164ccf {
    right: 491px;
  }

  .elementor-10 .elementor-element.elementor-element-8164ccf {
    top: 126px;
  }

  .elementor-10 .elementor-element.elementor-element-c05bc39 .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-c05bc39 {
    left: 573px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-c05bc39 {
    right: 573px;
  }

  .elementor-10 .elementor-element.elementor-element-c05bc39 {
    top: 54px;
  }

  .elementor-10 .elementor-element.elementor-element-617f2da .elementor-icon {
    font-size: 8px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-617f2da {
    left: 581px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-617f2da {
    right: 581px;
  }

  .elementor-10 .elementor-element.elementor-element-617f2da {
    top: 252px;
  }

  .elementor-10 .elementor-element.elementor-element-2cc15ba {
    padding: 75px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3f01e9a.elementor-column>.elementor-widget-wrap {
    justify-content: center;
  }

  .elementor-10 .elementor-element.elementor-element-5a4c117>.elementor-widget-container {
    margin: 0px 0px 20px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17 {
    --ep-advanced-icon-box-icon-top-v-offset: -0px;
    --ep-advanced-icon-box-icon-top-h-offset: 0px;
    width: var(--container-widget-width, 50%);
    max-width: 50%;
    --container-widget-width: 50%;
    --container-widget-flex-grow: 0;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-icon-wrapper {
    padding: 15px 15px 15px 15px;
    font-size: 30px;
    width: 30px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
    font-size: 13px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17>.elementor-widget-container {
    margin: 0px 15px 0px 0px;
    padding: 30px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3 {
    --ep-advanced-icon-box-icon-top-v-offset: -0px;
    --ep-advanced-icon-box-icon-top-h-offset: 0px;
    width: var(--container-widget-width, 50%);
    max-width: 50%;
    --container-widget-width: 50%;
    --container-widget-flex-grow: 0;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-icon-wrapper {
    padding: 15px 15px 15px 15px;
    font-size: 30px;
    width: 30px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
    font-size: 13px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3>.elementor-widget-container {
    margin: 0px 0px 0px 15px;
    padding: 30px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc {
    --ep-advanced-icon-box-icon-top-v-offset: -0px;
    --ep-advanced-icon-box-icon-top-h-offset: 0px;
    width: var(--container-widget-width, 50%);
    max-width: 50%;
    --container-widget-width: 50%;
    --container-widget-flex-grow: 0;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-icon-wrapper {
    padding: 15px 15px 15px 15px;
    font-size: 30px;
    width: 30px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
    font-size: 13px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc>.elementor-widget-container {
    margin: 30px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3f6054c {
    padding: 100px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-34e0137>.elementor-element-populated {
    padding: 0px 50px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-a853d4a>.elementor-element-populated {
    padding: 0px 0px 0px 50px;
  }

  .elementor-10 .elementor-element.elementor-element-2338a02 .bdt-crypto-currency-table table tr.bdt-cryptocurrency-title th {
    font-size: 12px;
  }

  .elementor-10 .elementor-element.elementor-element-2338a02>.elementor-widget-container {
    margin: 75px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-639ca84 {
    padding: 100px 0px 150px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-15debc0>.elementor-element-populated {
    padding: 35px 35px 40px 35px;
  }

  .elementor-10 .elementor-element.elementor-element-819b841>.elementor-widget-container {
    margin: 0px 0px 10px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47 {
    --ep-advanced-icon-box-icon-left-h-offset: 0px;
    --ep-advanced-icon-box-icon-left-v-offset: -4px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47.elementor-position-right .bdt-advanced-icon-box-icon {
    margin-left: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47.elementor-position-left .bdt-advanced-icon-box-icon {
    margin-right: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47.elementor-position-top .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box .bdt-icon-wrapper {
    font-size: 50px;
    width: 50px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
    font-size: 12px;
  }

  .elementor-10 .elementor-element.elementor-element-1b99a82>.elementor-element-populated {
    margin: 30px 0px 30px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 35px 35px 40px 35px;
  }

  .elementor-10 .elementor-element.elementor-element-2aa55e3>.elementor-widget-container {
    margin: 0px 0px 10px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7 {
    --ep-advanced-icon-box-icon-left-h-offset: 0px;
    --ep-advanced-icon-box-icon-left-v-offset: -4px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7.elementor-position-right .bdt-advanced-icon-box-icon {
    margin-left: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7.elementor-position-left .bdt-advanced-icon-box-icon {
    margin-right: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7.elementor-position-top .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box .bdt-icon-wrapper {
    font-size: 50px;
    width: 50px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
    font-size: 12px;
  }

  .elementor-10 .elementor-element.elementor-element-7a9b54c>.elementor-element-populated {
    margin: 0px 0px 0px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 35px 35px 40px 35px;
  }

  .elementor-10 .elementor-element.elementor-element-d688743>.elementor-widget-container {
    margin: 0px 0px 10px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625 {
    --ep-advanced-icon-box-icon-left-h-offset: 0px;
    --ep-advanced-icon-box-icon-left-v-offset: -4px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625.elementor-position-right .bdt-advanced-icon-box-icon {
    margin-left: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625.elementor-position-left .bdt-advanced-icon-box-icon {
    margin-right: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625.elementor-position-top .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box .bdt-icon-wrapper {
    font-size: 50px;
    width: 50px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box-content .bdt-advanced-icon-box-description {
    font-size: 12px;
  }

  .elementor-10 .elementor-element.elementor-element-d027334>.elementor-element-populated {
    margin: 75px 0px 75px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
  }

  .elementor-10 .elementor-element.elementor-element-ddd6121>.elementor-widget-container {
    margin: 0px 30px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-898f2f4>.elementor-widget-container {
    margin: 0px 30px 10px 0px;
  }
}

@media(max-width:767px) {
  .elementor-10 .elementor-element.elementor-element-2cc4247 {
    padding: 150px 0px 75px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-019c853>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-6ffefaa>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-f23de2b>.elementor-widget-container {
    padding: 0px 0px 30px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-1a9d933 {
    width: 33%;
  }

  .elementor-10 .elementor-element.elementor-element-b093b62>.elementor-widget-container {
    margin: 0px 25px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-8ee5b44 {
    width: 33%;
  }

  .elementor-10 .elementor-element.elementor-element-215e720>.elementor-widget-container {
    margin: 0px 25px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-deb4f11 {
    width: 33%;
  }

  .elementor-10 .elementor-element.elementor-element-06c79d3>.elementor-widget-container {
    margin: 0px 25px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-d11132e {
    padding: 35px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3cfd52d {
    width: 33%;
  }

  .elementor-10 .elementor-element.elementor-element-9d0754e>.elementor-widget-container {
    margin: 0px 25px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-eeed5c9 {
    width: 33%;
  }

  .elementor-10 .elementor-element.elementor-element-1eb6edc>.elementor-widget-container {
    margin: 0px 25px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-d62c480 {
    width: 33%;
  }

  .elementor-10 .elementor-element.elementor-element-34687df>.elementor-widget-container {
    margin: 0px 25px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3eca0d6>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
    padding: 20px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-4180900>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-f296d4a>.elementor-widget-container {
    margin: 0px 0px 10px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-2b70973 .bdt-total-count-content .bdt-total-count-number {
    font-size: 35px;
  }

  .elementor-10 .elementor-element.elementor-element-2b70973 .bdt-total-count-content .bdt-total-count-content-text {
    font-size: 14px;
  }

  .elementor-10 .elementor-element.elementor-element-2b70973>.elementor-widget-container {
    padding: 0px 0px 20px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-2b70973 {
    width: 100%;
    max-width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-a33cd5b .bdt-total-count-content .bdt-total-count-number {
    font-size: 35px;
  }

  .elementor-10 .elementor-element.elementor-element-a33cd5b .bdt-total-count-content .bdt-total-count-content-text {
    font-size: 14px;
  }

  .elementor-10 .elementor-element.elementor-element-a33cd5b>.elementor-widget-container {
    padding: 0px 0px 20px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-a33cd5b {
    width: 100%;
    max-width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-3dd59ed .bdt-total-count-content .bdt-total-count-number {
    font-size: 35px;
  }

  .elementor-10 .elementor-element.elementor-element-3dd59ed .bdt-total-count-content .bdt-total-count-content-text {
    font-size: 14px;
  }

  .elementor-10 .elementor-element.elementor-element-3dd59ed>.elementor-widget-container {
    padding: 0px 0px 20px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3dd59ed {
    width: 100%;
    max-width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-c4a3921>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-fb58ab3 .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-fb58ab3 {
    left: 49px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-fb58ab3 {
    right: 49px;
  }

  .elementor-10 .elementor-element.elementor-element-fb58ab3 {
    top: 42px;
  }

  .elementor-10 .elementor-element.elementor-element-1b20895 .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-1b20895 {
    left: 95px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-1b20895 {
    right: 95px;
  }

  .elementor-10 .elementor-element.elementor-element-1b20895 {
    top: 92px;
  }

  .elementor-10 .elementor-element.elementor-element-f2f689d .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-f2f689d {
    left: 162px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-f2f689d {
    right: 162px;
  }

  .elementor-10 .elementor-element.elementor-element-f2f689d {
    top: 58px;
  }

  .elementor-10 .elementor-element.elementor-element-770c204 .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-770c204 {
    left: 200px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-770c204 {
    right: 200px;
  }

  .elementor-10 .elementor-element.elementor-element-770c204 {
    top: 39px;
  }

  .elementor-10 .elementor-element.elementor-element-92b5534 .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-92b5534 {
    left: 240px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-92b5534 {
    right: 240px;
  }

  .elementor-10 .elementor-element.elementor-element-92b5534 {
    top: 43px;
  }

  .elementor-10 .elementor-element.elementor-element-c39a3ca .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-c39a3ca {
    left: 81px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-c39a3ca {
    right: 81px;
  }

  .elementor-10 .elementor-element.elementor-element-c39a3ca {
    top: 32px;
  }

  .elementor-10 .elementor-element.elementor-element-fd8b557 .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-fd8b557 {
    left: 156px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-fd8b557 {
    right: 156px;
  }

  .elementor-10 .elementor-element.elementor-element-fd8b557 {
    top: 94px;
  }

  .elementor-10 .elementor-element.elementor-element-8164ccf .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-8164ccf {
    left: 268px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-8164ccf {
    right: 268px;
  }

  .elementor-10 .elementor-element.elementor-element-8164ccf {
    top: 17px;
  }

  .elementor-10 .elementor-element.elementor-element-c05bc39 .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-c05bc39 {
    left: 67px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-c05bc39 {
    right: 67px;
  }

  .elementor-10 .elementor-element.elementor-element-c05bc39 {
    top: -2px;
  }

  .elementor-10 .elementor-element.elementor-element-617f2da .elementor-icon {
    font-size: 5px;
  }

  body:not(.rtl) .elementor-10 .elementor-element.elementor-element-617f2da {
    left: 247px;
  }

  body.rtl .elementor-10 .elementor-element.elementor-element-617f2da {
    right: 247px;
  }

  .elementor-10 .elementor-element.elementor-element-617f2da {
    top: 104px;
  }

  .elementor-10 .elementor-element.elementor-element-2cc15ba {
    padding: 25px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17 {
    --ep-advanced-icon-box-icon-top-v-offset: -0px;
    --ep-advanced-icon-box-icon-top-h-offset: 0px;
    width: 100%;
    max-width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17.elementor-position-right .bdt-advanced-icon-box-icon {
    margin-left: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17.elementor-position-left .bdt-advanced-icon-box-icon {
    margin-right: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17.elementor-position-top .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-icon-wrapper {
    font-size: 30px;
    width: 30px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17 .bdt-advanced-icon-box .bdt-advanced-icon-box-content {
    padding: 0px 30px 20px 30px;
  }

  .elementor-10 .elementor-element.elementor-element-3b5fb17>.elementor-widget-container {
    margin: 0px 0px 20px 0px;
    padding: 30px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3 {
    --ep-advanced-icon-box-icon-top-v-offset: -0px;
    --ep-advanced-icon-box-icon-top-h-offset: 0px;
    width: 100%;
    max-width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3.elementor-position-right .bdt-advanced-icon-box-icon {
    margin-left: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3.elementor-position-left .bdt-advanced-icon-box-icon {
    margin-right: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3.elementor-position-top .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-icon-wrapper {
    font-size: 30px;
    width: 30px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3 .bdt-advanced-icon-box .bdt-advanced-icon-box-content {
    padding: 0px 30px 20px 30px;
  }

  .elementor-10 .elementor-element.elementor-element-f35b8d3>.elementor-widget-container {
    margin: 0px 0px 20px 0px;
    padding: 30px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc {
    --ep-advanced-icon-box-icon-top-v-offset: -0px;
    --ep-advanced-icon-box-icon-top-h-offset: 0px;
    width: 100%;
    max-width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc.elementor-position-right .bdt-advanced-icon-box-icon {
    margin-left: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc.elementor-position-left .bdt-advanced-icon-box-icon {
    margin-right: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc.elementor-position-top .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-icon-wrapper {
    font-size: 30px;
    width: 30px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc .bdt-advanced-icon-box .bdt-advanced-icon-box-content {
    padding: 0px 30px 20px 30px;
  }

  .elementor-10 .elementor-element.elementor-element-41222dc>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-3f6054c {
    padding: 75px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-a853d4a>.elementor-element-populated {
    padding: 20px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-2338a02>.elementor-widget-container {
    margin: 50px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-639ca84 {
    padding: 75px 0px 100px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-9c5b194>.elementor-widget-container {
    margin: 0px 0px 10px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-15debc0 {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-15debc0>.elementor-element-populated {
    margin: 0px 0px 0px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 30px 30px 30px 30px;
  }

  .elementor-10 .elementor-element.elementor-element-819b841>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box {
    text-align: left;
  }

  .elementor-10 .elementor-element.elementor-element-266da47 {
    --ep-advanced-icon-box-icon-left-h-offset: -60px;
    --ep-advanced-icon-box-icon-left-v-offset: 64px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47 .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-266da47>.elementor-widget-container {
    margin: -60px 0px 0px 60px;
  }

  .elementor-10 .elementor-element.elementor-element-1b99a82 {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-1b99a82>.elementor-element-populated {
    margin: 20px 0px 20px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 30px 30px 30px 30px;
  }

  .elementor-10 .elementor-element.elementor-element-2aa55e3>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box {
    text-align: left;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7 {
    --ep-advanced-icon-box-icon-left-h-offset: -60px;
    --ep-advanced-icon-box-icon-left-v-offset: 64px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7 .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-09e5ee7>.elementor-widget-container {
    margin: -60px 0px 0px 60px;
  }

  .elementor-10 .elementor-element.elementor-element-7a9b54c {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-7a9b54c>.elementor-element-populated {
    margin: 0px 0px 0px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 30px 30px 30px 30px;
  }

  .elementor-10 .elementor-element.elementor-element-d688743>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box {
    text-align: left;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625 {
    --ep-advanced-icon-box-icon-left-h-offset: -60px;
    --ep-advanced-icon-box-icon-left-v-offset: 64px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625 .bdt-advanced-icon-box-icon {
    margin-bottom: 15px;
  }

  .elementor-10 .elementor-element.elementor-element-86d3625>.elementor-widget-container {
    margin: -60px 0px 0px 60px;
  }

  .elementor-10 .elementor-element.elementor-element-d027334>.elementor-element-populated {
    margin: 75px 0px 25px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
  }

  .elementor-10 .elementor-element.elementor-element-a17621a>.elementor-widget-container {
    margin: 0px 0px 0px 0px;
  }
}

@media(max-width:1024px) and (min-width:768px) {
  .elementor-10 .elementor-element.elementor-element-2d5e0d8 {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-a3295f4 {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-a2cbb05 {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-e76f3bf {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-15debc0 {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-1b99a82 {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-7a9b54c {
    width: 100%;
  }

  .elementor-10 .elementor-element.elementor-element-d027334 {
    width: 50%;
  }

  .elementor-10 .elementor-element.elementor-element-fdedf7c {
    width: 50%;
  }
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fab,
.fad,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -.0667em
}

.fa-xs {
  font-size: .75em
}

.fa-sm {
  font-size: .875em
}

.fa-1x {
  font-size: 1em
}

.fa-2x {
  font-size: 2em
}

.fa-3x {
  font-size: 3em
}

.fa-4x {
  font-size: 4em
}

.fa-5x {
  font-size: 5em
}

.fa-6x {
  font-size: 6em
}

.fa-7x {
  font-size: 7em
}

.fa-8x {
  font-size: 8em
}

.fa-9x {
  font-size: 9em
}

.fa-10x {
  font-size: 10em
}

.fa-fw {
  text-align: center;
  width: 1.25em
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0
}

.fa-ul>li {
  position: relative
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit
}

.fa-border {
  border: .08em solid #eee;
  border-radius: .1em;
  padding: .2em .25em .15em
}

.fa-pull-left {
  float: left
}

.fa-pull-right {
  float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: .3em
}

.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite
}

.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg)
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1)
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%
}

.fa-stack-1x {
  line-height: inherit
}

.fa-stack-2x {
  font-size: 2em
}

.fa-inverse {
  color: #fff
}

.fa-500px:before {
  content: "\f26e"
}

.fa-accessible-icon:before {
  content: "\f368"
}

.fa-accusoft:before {
  content: "\f369"
}

.fa-acquisitions-incorporated:before {
  content: "\f6af"
}

.fa-ad:before {
  content: "\f641"
}

.fa-address-book:before {
  content: "\f2b9"
}

.fa-address-card:before {
  content: "\f2bb"
}

.fa-adjust:before {
  content: "\f042"
}

.fa-adn:before {
  content: "\f170"
}

.fa-adversal:before {
  content: "\f36a"
}

.fa-affiliatetheme:before {
  content: "\f36b"
}

.fa-air-freshener:before {
  content: "\f5d0"
}

.fa-airbnb:before {
  content: "\f834"
}

.fa-algolia:before {
  content: "\f36c"
}

.fa-align-center:before {
  content: "\f037"
}

.fa-align-justify:before {
  content: "\f039"
}

.fa-align-left:before {
  content: "\f036"
}

.fa-align-right:before {
  content: "\f038"
}

.fa-alipay:before {
  content: "\f642"
}

.fa-allergies:before {
  content: "\f461"
}

.fa-amazon:before {
  content: "\f270"
}

.fa-amazon-pay:before {
  content: "\f42c"
}

.fa-ambulance:before {
  content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"
}

.fa-amilia:before {
  content: "\f36d"
}

.fa-anchor:before {
  content: "\f13d"
}

.fa-android:before {
  content: "\f17b"
}

.fa-angellist:before {
  content: "\f209"
}

.fa-angle-double-down:before {
  content: "\f103"
}

.fa-angle-double-left:before {
  content: "\f100"
}

.fa-angle-double-right:before {
  content: "\f101"
}

.fa-angle-double-up:before {
  content: "\f102"
}

.fa-angle-down:before {
  content: "\f107"
}

.fa-angle-left:before {
  content: "\f104"
}

.fa-angle-right:before {
  content: "\f105"
}

.fa-angle-up:before {
  content: "\f106"
}

.fa-angry:before {
  content: "\f556"
}

.fa-angrycreative:before {
  content: "\f36e"
}

.fa-angular:before {
  content: "\f420"
}

.fa-ankh:before {
  content: "\f644"
}

.fa-app-store:before {
  content: "\f36f"
}

.fa-app-store-ios:before {
  content: "\f370"
}

.fa-apper:before {
  content: "\f371"
}

.fa-apple:before {
  content: "\f179"
}

.fa-apple-alt:before {
  content: "\f5d1"
}

.fa-apple-pay:before {
  content: "\f415"
}

.fa-archive:before {
  content: "\f187"
}

.fa-archway:before {
  content: "\f557"
}

.fa-arrow-alt-circle-down:before {
  content: "\f358"
}

.fa-arrow-alt-circle-left:before {
  content: "\f359"
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b"
}

.fa-arrow-circle-down:before {
  content: "\f0ab"
}

.fa-arrow-circle-left:before {
  content: "\f0a8"
}

.fa-arrow-circle-right:before {
  content: "\f0a9"
}

.fa-arrow-circle-up:before {
  content: "\f0aa"
}

.fa-arrow-down:before {
  content: "\f063"
}

.fa-arrow-left:before {
  content: "\f060"
}

.fa-arrow-right:before {
  content: "\f061"
}

.fa-arrow-up:before {
  content: "\f062"
}

.fa-arrows-alt:before {
  content: "\f0b2"
}

.fa-arrows-alt-h:before {
  content: "\f337"
}

.fa-arrows-alt-v:before {
  content: "\f338"
}

.fa-artstation:before {
  content: "\f77a"
}

.fa-assistive-listening-systems:before {
  content: "\f2a2"
}

.fa-asterisk:before {
  content: "\f069"
}

.fa-asymmetrik:before {
  content: "\f372"
}

.fa-at:before {
  content: "\f1fa"
}

.fa-atlas:before {
  content: "\f558"
}

.fa-atlassian:before {
  content: "\f77b"
}

.fa-atom:before {
  content: "\f5d2"
}

.fa-audible:before {
  content: "\f373"
}

.fa-audio-description:before {
  content: "\f29e"
}

.fa-autoprefixer:before {
  content: "\f41c"
}

.fa-avianex:before {
  content: "\f374"
}

.fa-aviato:before {
  content: "\f421"
}

.fa-award:before {
  content: "\f559"
}

.fa-aws:before {
  content: "\f375"
}

.fa-baby:before {
  content: "\f77c"
}

.fa-baby-carriage:before {
  content: "\f77d"
}

.fa-backspace:before {
  content: "\f55a"
}

.fa-backward:before {
  content: "\f04a"
}

.fa-bacon:before {
  content: "\f7e5"
}

.fa-bacteria:before {
  content: "\e059"
}

.fa-bacterium:before {
  content: "\e05a"
}

.fa-bahai:before {
  content: "\f666"
}

.fa-balance-scale:before {
  content: "\f24e"
}

.fa-balance-scale-left:before {
  content: "\f515"
}

.fa-balance-scale-right:before {
  content: "\f516"
}

.fa-ban:before {
  content: "\f05e"
}

.fa-band-aid:before {
  content: "\f462"
}

.fa-bandcamp:before {
  content: "\f2d5"
}

.fa-barcode:before {
  content: "\f02a"
}

.fa-bars:before {
  content: "\f0c9"
}

.fa-baseball-ball:before {
  content: "\f433"
}

.fa-basketball-ball:before {
  content: "\f434"
}

.fa-bath:before {
  content: "\f2cd"
}

.fa-battery-empty:before {
  content: "\f244"
}

.fa-battery-full:before {
  content: "\f240"
}

.fa-battery-half:before {
  content: "\f242"
}

.fa-battery-quarter:before {
  content: "\f243"
}

.fa-battery-three-quarters:before {
  content: "\f241"
}

.fa-battle-net:before {
  content: "\f835"
}

.fa-bed:before {
  content: "\f236"
}

.fa-beer:before {
  content: "\f0fc"
}

.fa-behance:before {
  content: "\f1b4"
}

.fa-behance-square:before {
  content: "\f1b5"
}

.fa-bell:before {
  content: "\f0f3"
}

.fa-bell-slash:before {
  content: "\f1f6"
}

.fa-bezier-curve:before {
  content: "\f55b"
}

.fa-bible:before {
  content: "\f647"
}

.fa-bicycle:before {
  content: "\f206"
}

.fa-biking:before {
  content: "\f84a"
}

.fa-bimobject:before {
  content: "\f378"
}

.fa-binoculars:before {
  content: "\f1e5"
}

.fa-biohazard:before {
  content: "\f780"
}

.fa-birthday-cake:before {
  content: "\f1fd"
}

.fa-bitbucket:before {
  content: "\f171"
}

.fa-bitcoin:before {
  content: "\f379"
}

.fa-bity:before {
  content: "\f37a"
}

.fa-black-tie:before {
  content: "\f27e"
}

.fa-blackberry:before {
  content: "\f37b"
}

.fa-blender:before {
  content: "\f517"
}

.fa-blender-phone:before {
  content: "\f6b6"
}

.fa-blind:before {
  content: "\f29d"
}

.fa-blog:before {
  content: "\f781"
}

.fa-blogger:before {
  content: "\f37c"
}

.fa-blogger-b:before {
  content: "\f37d"
}

.fa-bluetooth:before {
  content: "\f293"
}

.fa-bluetooth-b:before {
  content: "\f294"
}

.fa-bold:before {
  content: "\f032"
}

.fa-bolt:before {
  content: "\f0e7"
}

.fa-bomb:before {
  content: "\f1e2"
}

.fa-bone:before {
  content: "\f5d7"
}

.fa-bong:before {
  content: "\f55c"
}

.fa-book:before {
  content: "\f02d"
}

.fa-book-dead:before {
  content: "\f6b7"
}

.fa-book-medical:before {
  content: "\f7e6"
}

.fa-book-open:before {
  content: "\f518"
}

.fa-book-reader:before {
  content: "\f5da"
}

.fa-bookmark:before {
  content: "\f02e"
}

.fa-bootstrap:before {
  content: "\f836"
}

.fa-border-all:before {
  content: "\f84c"
}

.fa-border-none:before {
  content: "\f850"
}

.fa-border-style:before {
  content: "\f853"
}

.fa-bowling-ball:before {
  content: "\f436"
}

.fa-box:before {
  content: "\f466"
}

.fa-box-open:before {
  content: "\f49e"
}

.fa-box-tissue:before {
  content: "\e05b"
}

.fa-boxes:before {
  content: "\f468"
}

.fa-braille:before {
  content: "\f2a1"
}

.fa-brain:before {
  content: "\f5dc"
}

.fa-bread-slice:before {
  content: "\f7ec"
}

.fa-briefcase:before {
  content: "\f0b1"
}

.fa-briefcase-medical:before {
  content: "\f469"
}

.fa-broadcast-tower:before {
  content: "\f519"
}

.fa-broom:before {
  content: "\f51a"
}

.fa-brush:before {
  content: "\f55d"
}

.fa-btc:before {
  content: "\f15a"
}

.fa-buffer:before {
  content: "\f837"
}

.fa-bug:before {
  content: "\f188"
}

.fa-building:before {
  content: "\f1ad"
}

.fa-bullhorn:before {
  content: "\f0a1"
}

.fa-bullseye:before {
  content: "\f140"
}

.fa-burn:before {
  content: "\f46a"
}

.fa-buromobelexperte:before {
  content: "\f37f"
}

.fa-bus:before {
  content: "\f207"
}

.fa-bus-alt:before {
  content: "\f55e"
}

.fa-business-time:before {
  content: "\f64a"
}

.fa-buy-n-large:before {
  content: "\f8a6"
}

.fa-buysellads:before {
  content: "\f20d"
}

.fa-calculator:before {
  content: "\f1ec"
}

.fa-calendar:before {
  content: "\f133"
}

.fa-calendar-alt:before {
  content: "\f073"
}

.fa-calendar-check:before {
  content: "\f274"
}

.fa-calendar-day:before {
  content: "\f783"
}

.fa-calendar-minus:before {
  content: "\f272"
}

.fa-calendar-plus:before {
  content: "\f271"
}

.fa-calendar-times:before {
  content: "\f273"
}

.fa-calendar-week:before {
  content: "\f784"
}

.fa-camera:before {
  content: "\f030"
}

.fa-camera-retro:before {
  content: "\f083"
}

.fa-campground:before {
  content: "\f6bb"
}

.fa-canadian-maple-leaf:before {
  content: "\f785"
}

.fa-candy-cane:before {
  content: "\f786"
}

.fa-cannabis:before {
  content: "\f55f"
}

.fa-capsules:before {
  content: "\f46b"
}

.fa-car:before {
  content: "\f1b9"
}

.fa-car-alt:before {
  content: "\f5de"
}

.fa-car-battery:before {
  content: "\f5df"
}

.fa-car-crash:before {
  content: "\f5e1"
}

.fa-car-side:before {
  content: "\f5e4"
}

.fa-caravan:before {
  content: "\f8ff"
}

.fa-caret-down:before {
  content: "\f0d7"
}

.fa-caret-left:before {
  content: "\f0d9"
}

.fa-caret-right:before {
  content: "\f0da"
}

.fa-caret-square-down:before {
  content: "\f150"
}

.fa-caret-square-left:before {
  content: "\f191"
}

.fa-caret-square-right:before {
  content: "\f152"
}

.fa-caret-square-up:before {
  content: "\f151"
}

.fa-caret-up:before {
  content: "\f0d8"
}

.fa-carrot:before {
  content: "\f787"
}

.fa-cart-arrow-down:before {
  content: "\f218"
}

.fa-cart-plus:before {
  content: "\f217"
}

.fa-cash-register:before {
  content: "\f788"
}

.fa-cat:before {
  content: "\f6be"
}

.fa-cc-amazon-pay:before {
  content: "\f42d"
}

.fa-cc-amex:before {
  content: "\f1f3"
}

.fa-cc-apple-pay:before {
  content: "\f416"
}

.fa-cc-diners-club:before {
  content: "\f24c"
}

.fa-cc-discover:before {
  content: "\f1f2"
}

.fa-cc-jcb:before {
  content: "\f24b"
}

.fa-cc-mastercard:before {
  content: "\f1f1"
}

.fa-cc-paypal:before {
  content: "\f1f4"
}

.fa-cc-stripe:before {
  content: "\f1f5"
}

.fa-cc-visa:before {
  content: "\f1f0"
}

.fa-centercode:before {
  content: "\f380"
}

.fa-centos:before {
  content: "\f789"
}

.fa-certificate:before {
  content: "\f0a3"
}

.fa-chair:before {
  content: "\f6c0"
}

.fa-chalkboard:before {
  content: "\f51b"
}

.fa-chalkboard-teacher:before {
  content: "\f51c"
}

.fa-charging-station:before {
  content: "\f5e7"
}

.fa-chart-area:before {
  content: "\f1fe"
}

.fa-chart-bar:before {
  content: "\f080"
}

.fa-chart-line:before {
  content: "\f201"
}

.fa-chart-pie:before {
  content: "\f200"
}

.fa-check:before {
  content: "\f00c"
}

.fa-check-circle:before {
  content: "\f058"
}

.fa-check-double:before {
  content: "\f560"
}

.fa-check-square:before {
  content: "\f14a"
}

.fa-cheese:before {
  content: "\f7ef"
}

.fa-chess:before {
  content: "\f439"
}

.fa-chess-bishop:before {
  content: "\f43a"
}

.fa-chess-board:before {
  content: "\f43c"
}

.fa-chess-king:before {
  content: "\f43f"
}

.fa-chess-knight:before {
  content: "\f441"
}

.fa-chess-pawn:before {
  content: "\f443"
}

.fa-chess-queen:before {
  content: "\f445"
}

.fa-chess-rook:before {
  content: "\f447"
}

.fa-chevron-circle-down:before {
  content: "\f13a"
}

.fa-chevron-circle-left:before {
  content: "\f137"
}

.fa-chevron-circle-right:before {
  content: "\f138"
}

.fa-chevron-circle-up:before {
  content: "\f139"
}

.fa-chevron-down:before {
  content: "\f078"
}

.fa-chevron-left:before {
  content: "\f053"
}

.fa-chevron-right:before {
  content: "\f054"
}

.fa-chevron-up:before {
  content: "\f077"
}

.fa-child:before {
  content: "\f1ae"
}

.fa-chrome:before {
  content: "\f268"
}

.fa-chromecast:before {
  content: "\f838"
}

.fa-church:before {
  content: "\f51d"
}

.fa-circle:before {
  content: "\f111"
}

.fa-circle-notch:before {
  content: "\f1ce"
}

.fa-city:before {
  content: "\f64f"
}

.fa-clinic-medical:before {
  content: "\f7f2"
}

.fa-clipboard:before {
  content: "\f328"
}

.fa-clipboard-check:before {
  content: "\f46c"
}

.fa-clipboard-list:before {
  content: "\f46d"
}

.fa-clock:before {
  content: "\f017"
}

.fa-clone:before {
  content: "\f24d"
}

.fa-closed-captioning:before {
  content: "\f20a"
}

.fa-cloud:before {
  content: "\f0c2"
}

.fa-cloud-download-alt:before {
  content: "\f381"
}

.fa-cloud-meatball:before {
  content: "\f73b"
}

.fa-cloud-moon:before {
  content: "\f6c3"
}

.fa-cloud-moon-rain:before {
  content: "\f73c"
}

.fa-cloud-rain:before {
  content: "\f73d"
}

.fa-cloud-showers-heavy:before {
  content: "\f740"
}

.fa-cloud-sun:before {
  content: "\f6c4"
}

.fa-cloud-sun-rain:before {
  content: "\f743"
}

.fa-cloud-upload-alt:before {
  content: "\f382"
}

.fa-cloudflare:before {
  content: "\e07d"
}

.fa-cloudscale:before {
  content: "\f383"
}

.fa-cloudsmith:before {
  content: "\f384"
}

.fa-cloudversify:before {
  content: "\f385"
}

.fa-cocktail:before {
  content: "\f561"
}

.fa-code:before {
  content: "\f121"
}

.fa-code-branch:before {
  content: "\f126"
}

.fa-codepen:before {
  content: "\f1cb"
}

.fa-codiepie:before {
  content: "\f284"
}

.fa-coffee:before {
  content: "\f0f4"
}

.fa-cog:before {
  content: "\f013"
}

.fa-cogs:before {
  content: "\f085"
}

.fa-coins:before {
  content: "\f51e"
}

.fa-columns:before {
  content: "\f0db"
}

.fa-comment:before {
  content: "\f075"
}

.fa-comment-alt:before {
  content: "\f27a"
}

.fa-comment-dollar:before {
  content: "\f651"
}

.fa-comment-dots:before {
  content: "\f4ad"
}

.fa-comment-medical:before {
  content: "\f7f5"
}

.fa-comment-slash:before {
  content: "\f4b3"
}

.fa-comments:before {
  content: "\f086"
}

.fa-comments-dollar:before {
  content: "\f653"
}

.fa-compact-disc:before {
  content: "\f51f"
}

.fa-compass:before {
  content: "\f14e"
}

.fa-compress:before {
  content: "\f066"
}

.fa-compress-alt:before {
  content: "\f422"
}

.fa-compress-arrows-alt:before {
  content: "\f78c"
}

.fa-concierge-bell:before {
  content: "\f562"
}

.fa-confluence:before {
  content: "\f78d"
}

.fa-connectdevelop:before {
  content: "\f20e"
}

.fa-contao:before {
  content: "\f26d"
}

.fa-cookie:before {
  content: "\f563"
}

.fa-cookie-bite:before {
  content: "\f564"
}

.fa-copy:before {
  content: "\f0c5"
}

.fa-copyright:before {
  content: "\f1f9"
}

.fa-cotton-bureau:before {
  content: "\f89e"
}

.fa-couch:before {
  content: "\f4b8"
}

.fa-cpanel:before {
  content: "\f388"
}

.fa-creative-commons:before {
  content: "\f25e"
}

.fa-creative-commons-by:before {
  content: "\f4e7"
}

.fa-creative-commons-nc:before {
  content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"
}

.fa-creative-commons-nd:before {
  content: "\f4eb"
}

.fa-creative-commons-pd:before {
  content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"
}

.fa-creative-commons-remix:before {
  content: "\f4ee"
}

.fa-creative-commons-sa:before {
  content: "\f4ef"
}

.fa-creative-commons-sampling:before {
  content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"
}

.fa-creative-commons-share:before {
  content: "\f4f2"
}

.fa-creative-commons-zero:before {
  content: "\f4f3"
}

.fa-credit-card:before {
  content: "\f09d"
}

.fa-critical-role:before {
  content: "\f6c9"
}

.fa-crop:before {
  content: "\f125"
}

.fa-crop-alt:before {
  content: "\f565"
}

.fa-cross:before {
  content: "\f654"
}

.fa-crosshairs:before {
  content: "\f05b"
}

.fa-crow:before {
  content: "\f520"
}

.fa-crown:before {
  content: "\f521"
}

.fa-crutch:before {
  content: "\f7f7"
}

.fa-css3:before {
  content: "\f13c"
}

.fa-css3-alt:before {
  content: "\f38b"
}

.fa-cube:before {
  content: "\f1b2"
}

.fa-cubes:before {
  content: "\f1b3"
}

.fa-cut:before {
  content: "\f0c4"
}

.fa-cuttlefish:before {
  content: "\f38c"
}

.fa-d-and-d:before {
  content: "\f38d"
}

.fa-d-and-d-beyond:before {
  content: "\f6ca"
}

.fa-dailymotion:before {
  content: "\e052"
}

.fa-dashcube:before {
  content: "\f210"
}

.fa-database:before {
  content: "\f1c0"
}

.fa-deaf:before {
  content: "\f2a4"
}

.fa-deezer:before {
  content: "\e077"
}

.fa-delicious:before {
  content: "\f1a5"
}

.fa-democrat:before {
  content: "\f747"
}

.fa-deploydog:before {
  content: "\f38e"
}

.fa-deskpro:before {
  content: "\f38f"
}

.fa-desktop:before {
  content: "\f108"
}

.fa-dev:before {
  content: "\f6cc"
}

.fa-deviantart:before {
  content: "\f1bd"
}

.fa-dharmachakra:before {
  content: "\f655"
}

.fa-dhl:before {
  content: "\f790"
}

.fa-diagnoses:before {
  content: "\f470"
}

.fa-diaspora:before {
  content: "\f791"
}

.fa-dice:before {
  content: "\f522"
}

.fa-dice-d20:before {
  content: "\f6cf"
}

.fa-dice-d6:before {
  content: "\f6d1"
}

.fa-dice-five:before {
  content: "\f523"
}

.fa-dice-four:before {
  content: "\f524"
}

.fa-dice-one:before {
  content: "\f525"
}

.fa-dice-six:before {
  content: "\f526"
}

.fa-dice-three:before {
  content: "\f527"
}

.fa-dice-two:before {
  content: "\f528"
}

.fa-digg:before {
  content: "\f1a6"
}

.fa-digital-ocean:before {
  content: "\f391"
}

.fa-digital-tachograph:before {
  content: "\f566"
}

.fa-directions:before {
  content: "\f5eb"
}

.fa-discord:before {
  content: "\f392"
}

.fa-discourse:before {
  content: "\f393"
}

.fa-disease:before {
  content: "\f7fa"
}

.fa-divide:before {
  content: "\f529"
}

.fa-dizzy:before {
  content: "\f567"
}

.fa-dna:before {
  content: "\f471"
}

.fa-dochub:before {
  content: "\f394"
}

.fa-docker:before {
  content: "\f395"
}

.fa-dog:before {
  content: "\f6d3"
}

.fa-dollar-sign:before {
  content: "\f155"
}

.fa-dolly:before {
  content: "\f472"
}

.fa-dolly-flatbed:before {
  content: "\f474"
}

.fa-donate:before {
  content: "\f4b9"
}

.fa-door-closed:before {
  content: "\f52a"
}

.fa-door-open:before {
  content: "\f52b"
}

.fa-dot-circle:before {
  content: "\f192"
}

.fa-dove:before {
  content: "\f4ba"
}

.fa-download:before {
  content: "\f019"
}

.fa-draft2digital:before {
  content: "\f396"
}

.fa-drafting-compass:before {
  content: "\f568"
}

.fa-dragon:before {
  content: "\f6d5"
}

.fa-draw-polygon:before {
  content: "\f5ee"
}

.fa-dribbble:before {
  content: "\f17d"
}

.fa-dribbble-square:before {
  content: "\f397"
}

.fa-dropbox:before {
  content: "\f16b"
}

.fa-drum:before {
  content: "\f569"
}

.fa-drum-steelpan:before {
  content: "\f56a"
}

.fa-drumstick-bite:before {
  content: "\f6d7"
}

.fa-drupal:before {
  content: "\f1a9"
}

.fa-dumbbell:before {
  content: "\f44b"
}

.fa-dumpster:before {
  content: "\f793"
}

.fa-dumpster-fire:before {
  content: "\f794"
}

.fa-dungeon:before {
  content: "\f6d9"
}

.fa-dyalog:before {
  content: "\f399"
}

.fa-earlybirds:before {
  content: "\f39a"
}

.fa-ebay:before {
  content: "\f4f4"
}

.fa-edge:before {
  content: "\f282"
}

.fa-edge-legacy:before {
  content: "\e078"
}

.fa-edit:before {
  content: "\f044"
}

.fa-egg:before {
  content: "\f7fb"
}

.fa-eject:before {
  content: "\f052"
}

.fa-elementor:before {
  content: "\f430"
}

.fa-ellipsis-h:before {
  content: "\f141"
}

.fa-ellipsis-v:before {
  content: "\f142"
}

.fa-ello:before {
  content: "\f5f1"
}

.fa-ember:before {
  content: "\f423"
}

.fa-empire:before {
  content: "\f1d1"
}

.fa-envelope:before {
  content: "\f0e0"
}

.fa-envelope-open:before {
  content: "\f2b6"
}

.fa-envelope-open-text:before {
  content: "\f658"
}

.fa-envelope-square:before {
  content: "\f199"
}

.fa-envira:before {
  content: "\f299"
}

.fa-equals:before {
  content: "\f52c"
}

.fa-eraser:before {
  content: "\f12d"
}

.fa-erlang:before {
  content: "\f39d"
}

.fa-ethereum:before {
  content: "\f42e"
}

.fa-ethernet:before {
  content: "\f796"
}

.fa-etsy:before {
  content: "\f2d7"
}

.fa-euro-sign:before {
  content: "\f153"
}

.fa-evernote:before {
  content: "\f839"
}

.fa-exchange-alt:before {
  content: "\f362"
}

.fa-exclamation:before {
  content: "\f12a"
}

.fa-exclamation-circle:before {
  content: "\f06a"
}

.fa-exclamation-triangle:before {
  content: "\f071"
}

.fa-expand:before {
  content: "\f065"
}

.fa-expand-alt:before {
  content: "\f424"
}

.fa-expand-arrows-alt:before {
  content: "\f31e"
}

.fa-expeditedssl:before {
  content: "\f23e"
}

.fa-external-link-alt:before {
  content: "\f35d"
}

.fa-external-link-square-alt:before {
  content: "\f360"
}

.fa-eye:before {
  content: "\f06e"
}

.fa-eye-dropper:before {
  content: "\f1fb"
}

.fa-eye-slash:before {
  content: "\f070"
}

.fa-facebook:before {
  content: "\f09a"
}

.fa-facebook-f:before {
  content: "\f39e"
}

.fa-facebook-messenger:before {
  content: "\f39f"
}

.fa-facebook-square:before {
  content: "\f082"
}

.fa-fan:before {
  content: "\f863"
}

.fa-fantasy-flight-games:before {
  content: "\f6dc"
}

.fa-fast-backward:before {
  content: "\f049"
}

.fa-fast-forward:before {
  content: "\f050"
}

.fa-faucet:before {
  content: "\e005"
}

.fa-fax:before {
  content: "\f1ac"
}

.fa-feather:before {
  content: "\f52d"
}

.fa-feather-alt:before {
  content: "\f56b"
}

.fa-fedex:before {
  content: "\f797"
}

.fa-fedora:before {
  content: "\f798"
}

.fa-female:before {
  content: "\f182"
}

.fa-fighter-jet:before {
  content: "\f0fb"
}

.fa-figma:before {
  content: "\f799"
}

.fa-file:before {
  content: "\f15b"
}

.fa-file-alt:before {
  content: "\f15c"
}

.fa-file-archive:before {
  content: "\f1c6"
}

.fa-file-audio:before {
  content: "\f1c7"
}

.fa-file-code:before {
  content: "\f1c9"
}

.fa-file-contract:before {
  content: "\f56c"
}

.fa-file-csv:before {
  content: "\f6dd"
}

.fa-file-download:before {
  content: "\f56d"
}

.fa-file-excel:before {
  content: "\f1c3"
}

.fa-file-export:before {
  content: "\f56e"
}

.fa-file-image:before {
  content: "\f1c5"
}

.fa-file-import:before {
  content: "\f56f"
}

.fa-file-invoice:before {
  content: "\f570"
}

.fa-file-invoice-dollar:before {
  content: "\f571"
}

.fa-file-medical:before {
  content: "\f477"
}

.fa-file-medical-alt:before {
  content: "\f478"
}

.fa-file-pdf:before {
  content: "\f1c1"
}

.fa-file-powerpoint:before {
  content: "\f1c4"
}

.fa-file-prescription:before {
  content: "\f572"
}

.fa-file-signature:before {
  content: "\f573"
}

.fa-file-upload:before {
  content: "\f574"
}

.fa-file-video:before {
  content: "\f1c8"
}

.fa-file-word:before {
  content: "\f1c2"
}

.fa-fill:before {
  content: "\f575"
}

.fa-fill-drip:before {
  content: "\f576"
}

.fa-film:before {
  content: "\f008"
}

.fa-filter:before {
  content: "\f0b0"
}

.fa-fingerprint:before {
  content: "\f577"
}

.fa-fire:before {
  content: "\f06d"
}

.fa-fire-alt:before {
  content: "\f7e4"
}

.fa-fire-extinguisher:before {
  content: "\f134"
}

.fa-firefox:before {
  content: "\f269"
}

.fa-firefox-browser:before {
  content: "\e007"
}

.fa-first-aid:before {
  content: "\f479"
}

.fa-first-order:before {
  content: "\f2b0"
}

.fa-first-order-alt:before {
  content: "\f50a"
}

.fa-firstdraft:before {
  content: "\f3a1"
}

.fa-fish:before {
  content: "\f578"
}

.fa-fist-raised:before {
  content: "\f6de"
}

.fa-flag:before {
  content: "\f024"
}

.fa-flag-checkered:before {
  content: "\f11e"
}

.fa-flag-usa:before {
  content: "\f74d"
}

.fa-flask:before {
  content: "\f0c3"
}

.fa-flickr:before {
  content: "\f16e"
}

.fa-flipboard:before {
  content: "\f44d"
}

.fa-flushed:before {
  content: "\f579"
}

.fa-fly:before {
  content: "\f417"
}

.fa-folder:before {
  content: "\f07b"
}

.fa-folder-minus:before {
  content: "\f65d"
}

.fa-folder-open:before {
  content: "\f07c"
}

.fa-folder-plus:before {
  content: "\f65e"
}

.fa-font:before {
  content: "\f031"
}

.fa-font-awesome:before {
  content: "\f2b4"
}

.fa-font-awesome-alt:before {
  content: "\f35c"
}

.fa-font-awesome-flag:before {
  content: "\f425"
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6"
}

.fa-fonticons:before {
  content: "\f280"
}

.fa-fonticons-fi:before {
  content: "\f3a2"
}

.fa-football-ball:before {
  content: "\f44e"
}

.fa-fort-awesome:before {
  content: "\f286"
}

.fa-fort-awesome-alt:before {
  content: "\f3a3"
}

.fa-forumbee:before {
  content: "\f211"
}

.fa-forward:before {
  content: "\f04e"
}

.fa-foursquare:before {
  content: "\f180"
}

.fa-free-code-camp:before {
  content: "\f2c5"
}

.fa-freebsd:before {
  content: "\f3a4"
}

.fa-frog:before {
  content: "\f52e"
}

.fa-frown:before {
  content: "\f119"
}

.fa-frown-open:before {
  content: "\f57a"
}

.fa-fulcrum:before {
  content: "\f50b"
}

.fa-funnel-dollar:before {
  content: "\f662"
}

.fa-futbol:before {
  content: "\f1e3"
}

.fa-galactic-republic:before {
  content: "\f50c"
}

.fa-galactic-senate:before {
  content: "\f50d"
}

.fa-gamepad:before {
  content: "\f11b"
}

.fa-gas-pump:before {
  content: "\f52f"
}

.fa-gavel:before {
  content: "\f0e3"
}

.fa-gem:before {
  content: "\f3a5"
}

.fa-genderless:before {
  content: "\f22d"
}

.fa-get-pocket:before {
  content: "\f265"
}

.fa-gg:before {
  content: "\f260"
}

.fa-gg-circle:before {
  content: "\f261"
}

.fa-ghost:before {
  content: "\f6e2"
}

.fa-gift:before {
  content: "\f06b"
}

.fa-gifts:before {
  content: "\f79c"
}

.fa-git:before {
  content: "\f1d3"
}

.fa-git-alt:before {
  content: "\f841"
}

.fa-git-square:before {
  content: "\f1d2"
}

.fa-github:before {
  content: "\f09b"
}

.fa-github-alt:before {
  content: "\f113"
}

.fa-github-square:before {
  content: "\f092"
}

.fa-gitkraken:before {
  content: "\f3a6"
}

.fa-gitlab:before {
  content: "\f296"
}

.fa-gitter:before {
  content: "\f426"
}

.fa-glass-cheers:before {
  content: "\f79f"
}

.fa-glass-martini:before {
  content: "\f000"
}

.fa-glass-martini-alt:before {
  content: "\f57b"
}

.fa-glass-whiskey:before {
  content: "\f7a0"
}

.fa-glasses:before {
  content: "\f530"
}

.fa-glide:before {
  content: "\f2a5"
}

.fa-glide-g:before {
  content: "\f2a6"
}

.fa-globe:before {
  content: "\f0ac"
}

.fa-globe-africa:before {
  content: "\f57c"
}

.fa-globe-americas:before {
  content: "\f57d"
}

.fa-globe-asia:before {
  content: "\f57e"
}

.fa-globe-europe:before {
  content: "\f7a2"
}

.fa-gofore:before {
  content: "\f3a7"
}

.fa-golf-ball:before {
  content: "\f450"
}

.fa-goodreads:before {
  content: "\f3a8"
}

.fa-goodreads-g:before {
  content: "\f3a9"
}

.fa-google:before {
  content: "\f1a0"
}

.fa-google-drive:before {
  content: "\f3aa"
}

.fa-google-pay:before {
  content: "\e079"
}

.fa-google-play:before {
  content: "\f3ab"
}

.fa-google-plus:before {
  content: "\f2b3"
}

.fa-google-plus-g:before {
  content: "\f0d5"
}

.fa-google-plus-square:before {
  content: "\f0d4"
}

.fa-google-wallet:before {
  content: "\f1ee"
}

.fa-gopuram:before {
  content: "\f664"
}

.fa-graduation-cap:before {
  content: "\f19d"
}

.fa-gratipay:before {
  content: "\f184"
}

.fa-grav:before {
  content: "\f2d6"
}

.fa-greater-than:before {
  content: "\f531"
}

.fa-greater-than-equal:before {
  content: "\f532"
}

.fa-grimace:before {
  content: "\f57f"
}

.fa-grin:before {
  content: "\f580"
}

.fa-grin-alt:before {
  content: "\f581"
}

.fa-grin-beam:before {
  content: "\f582"
}

.fa-grin-beam-sweat:before {
  content: "\f583"
}

.fa-grin-hearts:before {
  content: "\f584"
}

.fa-grin-squint:before {
  content: "\f585"
}

.fa-grin-squint-tears:before {
  content: "\f586"
}

.fa-grin-stars:before {
  content: "\f587"
}

.fa-grin-tears:before {
  content: "\f588"
}

.fa-grin-tongue:before {
  content: "\f589"
}

.fa-grin-tongue-squint:before {
  content: "\f58a"
}

.fa-grin-tongue-wink:before {
  content: "\f58b"
}

.fa-grin-wink:before {
  content: "\f58c"
}

.fa-grip-horizontal:before {
  content: "\f58d"
}

.fa-grip-lines:before {
  content: "\f7a4"
}

.fa-grip-lines-vertical:before {
  content: "\f7a5"
}

.fa-grip-vertical:before {
  content: "\f58e"
}

.fa-gripfire:before {
  content: "\f3ac"
}

.fa-grunt:before {
  content: "\f3ad"
}

.fa-guilded:before {
  content: "\e07e"
}

.fa-guitar:before {
  content: "\f7a6"
}

.fa-gulp:before {
  content: "\f3ae"
}

.fa-h-square:before {
  content: "\f0fd"
}

.fa-hacker-news:before {
  content: "\f1d4"
}

.fa-hacker-news-square:before {
  content: "\f3af"
}

.fa-hackerrank:before {
  content: "\f5f7"
}

.fa-hamburger:before {
  content: "\f805"
}

.fa-hammer:before {
  content: "\f6e3"
}

.fa-hamsa:before {
  content: "\f665"
}

.fa-hand-holding:before {
  content: "\f4bd"
}

.fa-hand-holding-heart:before {
  content: "\f4be"
}

.fa-hand-holding-medical:before {
  content: "\e05c"
}

.fa-hand-holding-usd:before {
  content: "\f4c0"
}

.fa-hand-holding-water:before {
  content: "\f4c1"
}

.fa-hand-lizard:before {
  content: "\f258"
}

.fa-hand-middle-finger:before {
  content: "\f806"
}

.fa-hand-paper:before {
  content: "\f256"
}

.fa-hand-peace:before {
  content: "\f25b"
}

.fa-hand-point-down:before {
  content: "\f0a7"
}

.fa-hand-point-left:before {
  content: "\f0a5"
}

.fa-hand-point-right:before {
  content: "\f0a4"
}

.fa-hand-point-up:before {
  content: "\f0a6"
}

.fa-hand-pointer:before {
  content: "\f25a"
}

.fa-hand-rock:before {
  content: "\f255"
}

.fa-hand-scissors:before {
  content: "\f257"
}

.fa-hand-sparkles:before {
  content: "\e05d"
}

.fa-hand-spock:before {
  content: "\f259"
}

.fa-hands:before {
  content: "\f4c2"
}

.fa-hands-helping:before {
  content: "\f4c4"
}

.fa-hands-wash:before {
  content: "\e05e"
}

.fa-handshake:before {
  content: "\f2b5"
}

.fa-handshake-alt-slash:before {
  content: "\e05f"
}

.fa-handshake-slash:before {
  content: "\e060"
}

.fa-hanukiah:before {
  content: "\f6e6"
}

.fa-hard-hat:before {
  content: "\f807"
}

.fa-hashtag:before {
  content: "\f292"
}

.fa-hat-cowboy:before {
  content: "\f8c0"
}

.fa-hat-cowboy-side:before {
  content: "\f8c1"
}

.fa-hat-wizard:before {
  content: "\f6e8"
}

.fa-hdd:before {
  content: "\f0a0"
}

.fa-head-side-cough:before {
  content: "\e061"
}

.fa-head-side-cough-slash:before {
  content: "\e062"
}

.fa-head-side-mask:before {
  content: "\e063"
}

.fa-head-side-virus:before {
  content: "\e064"
}

.fa-heading:before {
  content: "\f1dc"
}

.fa-headphones:before {
  content: "\f025"
}

.fa-headphones-alt:before {
  content: "\f58f"
}

.fa-headset:before {
  content: "\f590"
}

.fa-heart:before {
  content: "\f004"
}

.fa-heart-broken:before {
  content: "\f7a9"
}

.fa-heartbeat:before {
  content: "\f21e"
}

.fa-helicopter:before {
  content: "\f533"
}

.fa-highlighter:before {
  content: "\f591"
}

.fa-hiking:before {
  content: "\f6ec"
}

.fa-hippo:before {
  content: "\f6ed"
}

.fa-hips:before {
  content: "\f452"
}

.fa-hire-a-helper:before {
  content: "\f3b0"
}

.fa-history:before {
  content: "\f1da"
}

.fa-hive:before {
  content: "\e07f"
}

.fa-hockey-puck:before {
  content: "\f453"
}

.fa-holly-berry:before {
  content: "\f7aa"
}

.fa-home:before {
  content: "\f015"
}

.fa-hooli:before {
  content: "\f427"
}

.fa-hornbill:before {
  content: "\f592"
}

.fa-horse:before {
  content: "\f6f0"
}

.fa-horse-head:before {
  content: "\f7ab"
}

.fa-hospital:before {
  content: "\f0f8"
}

.fa-hospital-alt:before {
  content: "\f47d"
}

.fa-hospital-symbol:before {
  content: "\f47e"
}

.fa-hospital-user:before {
  content: "\f80d"
}

.fa-hot-tub:before {
  content: "\f593"
}

.fa-hotdog:before {
  content: "\f80f"
}

.fa-hotel:before {
  content: "\f594"
}

.fa-hotjar:before {
  content: "\f3b1"
}

.fa-hourglass:before {
  content: "\f254"
}

.fa-hourglass-end:before {
  content: "\f253"
}

.fa-hourglass-half:before {
  content: "\f252"
}

.fa-hourglass-start:before {
  content: "\f251"
}

.fa-house-damage:before {
  content: "\f6f1"
}

.fa-house-user:before {
  content: "\e065"
}

.fa-houzz:before {
  content: "\f27c"
}

.fa-hryvnia:before {
  content: "\f6f2"
}

.fa-html5:before {
  content: "\f13b"
}

.fa-hubspot:before {
  content: "\f3b2"
}

.fa-i-cursor:before {
  content: "\f246"
}

.fa-ice-cream:before {
  content: "\f810"
}

.fa-icicles:before {
  content: "\f7ad"
}

.fa-icons:before {
  content: "\f86d"
}

.fa-id-badge:before {
  content: "\f2c1"
}

.fa-id-card:before {
  content: "\f2c2"
}

.fa-id-card-alt:before {
  content: "\f47f"
}

.fa-ideal:before {
  content: "\e013"
}

.fa-igloo:before {
  content: "\f7ae"
}

.fa-image:before {
  content: "\f03e"
}

.fa-images:before {
  content: "\f302"
}

.fa-imdb:before {
  content: "\f2d8"
}

.fa-inbox:before {
  content: "\f01c"
}

.fa-indent:before {
  content: "\f03c"
}

.fa-industry:before {
  content: "\f275"
}

.fa-infinity:before {
  content: "\f534"
}

.fa-info:before {
  content: "\f129"
}

.fa-info-circle:before {
  content: "\f05a"
}

.fa-innosoft:before {
  content: "\e080"
}

.fa-instagram:before {
  content: "\f16d"
}

.fa-instagram-square:before {
  content: "\e055"
}

.fa-instalod:before {
  content: "\e081"
}

.fa-intercom:before {
  content: "\f7af"
}

.fa-internet-explorer:before {
  content: "\f26b"
}

.fa-invision:before {
  content: "\f7b0"
}

.fa-ioxhost:before {
  content: "\f208"
}

.fa-italic:before {
  content: "\f033"
}

.fa-itch-io:before {
  content: "\f83a"
}

.fa-itunes:before {
  content: "\f3b4"
}

.fa-itunes-note:before {
  content: "\f3b5"
}

.fa-java:before {
  content: "\f4e4"
}

.fa-jedi:before {
  content: "\f669"
}

.fa-jedi-order:before {
  content: "\f50e"
}

.fa-jenkins:before {
  content: "\f3b6"
}

.fa-jira:before {
  content: "\f7b1"
}

.fa-joget:before {
  content: "\f3b7"
}

.fa-joint:before {
  content: "\f595"
}

.fa-joomla:before {
  content: "\f1aa"
}

.fa-journal-whills:before {
  content: "\f66a"
}

.fa-js:before {
  content: "\f3b8"
}

.fa-js-square:before {
  content: "\f3b9"
}

.fa-jsfiddle:before {
  content: "\f1cc"
}

.fa-kaaba:before {
  content: "\f66b"
}

.fa-kaggle:before {
  content: "\f5fa"
}

.fa-key:before {
  content: "\f084"
}

.fa-keybase:before {
  content: "\f4f5"
}

.fa-keyboard:before {
  content: "\f11c"
}

.fa-keycdn:before {
  content: "\f3ba"
}

.fa-khanda:before {
  content: "\f66d"
}

.fa-kickstarter:before {
  content: "\f3bb"
}

.fa-kickstarter-k:before {
  content: "\f3bc"
}

.fa-kiss:before {
  content: "\f596"
}

.fa-kiss-beam:before {
  content: "\f597"
}

.fa-kiss-wink-heart:before {
  content: "\f598"
}

.fa-kiwi-bird:before {
  content: "\f535"
}

.fa-korvue:before {
  content: "\f42f"
}

.fa-landmark:before {
  content: "\f66f"
}

.fa-language:before {
  content: "\f1ab"
}

.fa-laptop:before {
  content: "\f109"
}

.fa-laptop-code:before {
  content: "\f5fc"
}

.fa-laptop-house:before {
  content: "\e066"
}

.fa-laptop-medical:before {
  content: "\f812"
}

.fa-laravel:before {
  content: "\f3bd"
}

.fa-lastfm:before {
  content: "\f202"
}

.fa-lastfm-square:before {
  content: "\f203"
}

.fa-laugh:before {
  content: "\f599"
}

.fa-laugh-beam:before {
  content: "\f59a"
}

.fa-laugh-squint:before {
  content: "\f59b"
}

.fa-laugh-wink:before {
  content: "\f59c"
}

.fa-layer-group:before {
  content: "\f5fd"
}

.fa-leaf:before {
  content: "\f06c"
}

.fa-leanpub:before {
  content: "\f212"
}

.fa-lemon:before {
  content: "\f094"
}

.fa-less:before {
  content: "\f41d"
}

.fa-less-than:before {
  content: "\f536"
}

.fa-less-than-equal:before {
  content: "\f537"
}

.fa-level-down-alt:before {
  content: "\f3be"
}

.fa-level-up-alt:before {
  content: "\f3bf"
}

.fa-life-ring:before {
  content: "\f1cd"
}

.fa-lightbulb:before {
  content: "\f0eb"
}

.fa-line:before {
  content: "\f3c0"
}

.fa-link:before {
  content: "\f0c1"
}

.fa-linkedin:before {
  content: "\f08c"
}

.fa-linkedin-in:before {
  content: "\f0e1"
}

.fa-linode:before {
  content: "\f2b8"
}

.fa-linux:before {
  content: "\f17c"
}

.fa-lira-sign:before {
  content: "\f195"
}

.fa-list:before {
  content: "\f03a"
}

.fa-list-alt:before {
  content: "\f022"
}

.fa-list-ol:before {
  content: "\f0cb"
}

.fa-list-ul:before {
  content: "\f0ca"
}

.fa-location-arrow:before {
  content: "\f124"
}

.fa-lock:before {
  content: "\f023"
}

.fa-lock-open:before {
  content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
  content: "\f309"
}

.fa-long-arrow-alt-left:before {
  content: "\f30a"
}

.fa-long-arrow-alt-right:before {
  content: "\f30b"
}

.fa-long-arrow-alt-up:before {
  content: "\f30c"
}

.fa-low-vision:before {
  content: "\f2a8"
}

.fa-luggage-cart:before {
  content: "\f59d"
}

.fa-lungs:before {
  content: "\f604"
}

.fa-lungs-virus:before {
  content: "\e067"
}

.fa-lyft:before {
  content: "\f3c3"
}

.fa-magento:before {
  content: "\f3c4"
}

.fa-magic:before {
  content: "\f0d0"
}

.fa-magnet:before {
  content: "\f076"
}

.fa-mail-bulk:before {
  content: "\f674"
}

.fa-mailchimp:before {
  content: "\f59e"
}

.fa-male:before {
  content: "\f183"
}

.fa-mandalorian:before {
  content: "\f50f"
}

.fa-map:before {
  content: "\f279"
}

.fa-map-marked:before {
  content: "\f59f"
}

.fa-map-marked-alt:before {
  content: "\f5a0"
}

.fa-map-marker:before {
  content: "\f041"
}

.fa-map-marker-alt:before {
  content: "\f3c5"
}

.fa-map-pin:before {
  content: "\f276"
}

.fa-map-signs:before {
  content: "\f277"
}

.fa-markdown:before {
  content: "\f60f"
}

.fa-marker:before {
  content: "\f5a1"
}

.fa-mars:before {
  content: "\f222"
}

.fa-mars-double:before {
  content: "\f227"
}

.fa-mars-stroke:before {
  content: "\f229"
}

.fa-mars-stroke-h:before {
  content: "\f22b"
}

.fa-mars-stroke-v:before {
  content: "\f22a"
}

.fa-mask:before {
  content: "\f6fa"
}

.fa-mastodon:before {
  content: "\f4f6"
}

.fa-maxcdn:before {
  content: "\f136"
}

.fa-mdb:before {
  content: "\f8ca"
}

.fa-medal:before {
  content: "\f5a2"
}

.fa-medapps:before {
  content: "\f3c6"
}

.fa-medium:before {
  content: "\f23a"
}

.fa-medium-m:before {
  content: "\f3c7"
}

.fa-medkit:before {
  content: "\f0fa"
}

.fa-medrt:before {
  content: "\f3c8"
}

.fa-meetup:before {
  content: "\f2e0"
}

.fa-megaport:before {
  content: "\f5a3"
}

.fa-meh:before {
  content: "\f11a"
}

.fa-meh-blank:before {
  content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5"
}

.fa-memory:before {
  content: "\f538"
}

.fa-mendeley:before {
  content: "\f7b3"
}

.fa-menorah:before {
  content: "\f676"
}

.fa-mercury:before {
  content: "\f223"
}

.fa-meteor:before {
  content: "\f753"
}

.fa-microblog:before {
  content: "\e01a"
}

.fa-microchip:before {
  content: "\f2db"
}

.fa-microphone:before {
  content: "\f130"
}

.fa-microphone-alt:before {
  content: "\f3c9"
}

.fa-microphone-alt-slash:before {
  content: "\f539"
}

.fa-microphone-slash:before {
  content: "\f131"
}

.fa-microscope:before {
  content: "\f610"
}

.fa-microsoft:before {
  content: "\f3ca"
}

.fa-minus:before {
  content: "\f068"
}

.fa-minus-circle:before {
  content: "\f056"
}

.fa-minus-square:before {
  content: "\f146"
}

.fa-mitten:before {
  content: "\f7b5"
}

.fa-mix:before {
  content: "\f3cb"
}

.fa-mixcloud:before {
  content: "\f289"
}

.fa-mixer:before {
  content: "\e056"
}

.fa-mizuni:before {
  content: "\f3cc"
}

.fa-mobile:before {
  content: "\f10b"
}

.fa-mobile-alt:before {
  content: "\f3cd"
}

.fa-modx:before {
  content: "\f285"
}

.fa-monero:before {
  content: "\f3d0"
}

.fa-money-bill:before {
  content: "\f0d6"
}

.fa-money-bill-alt:before {
  content: "\f3d1"
}

.fa-money-bill-wave:before {
  content: "\f53a"
}

.fa-money-bill-wave-alt:before {
  content: "\f53b"
}

.fa-money-check:before {
  content: "\f53c"
}

.fa-money-check-alt:before {
  content: "\f53d"
}

.fa-monument:before {
  content: "\f5a6"
}

.fa-moon:before {
  content: "\f186"
}

.fa-mortar-pestle:before {
  content: "\f5a7"
}

.fa-mosque:before {
  content: "\f678"
}

.fa-motorcycle:before {
  content: "\f21c"
}

.fa-mountain:before {
  content: "\f6fc"
}

.fa-mouse:before {
  content: "\f8cc"
}

.fa-mouse-pointer:before {
  content: "\f245"
}

.fa-mug-hot:before {
  content: "\f7b6"
}

.fa-music:before {
  content: "\f001"
}

.fa-napster:before {
  content: "\f3d2"
}

.fa-neos:before {
  content: "\f612"
}

.fa-network-wired:before {
  content: "\f6ff"
}

.fa-neuter:before {
  content: "\f22c"
}

.fa-newspaper:before {
  content: "\f1ea"
}

.fa-nimblr:before {
  content: "\f5a8"
}

.fa-node:before {
  content: "\f419"
}

.fa-node-js:before {
  content: "\f3d3"
}

.fa-not-equal:before {
  content: "\f53e"
}

.fa-notes-medical:before {
  content: "\f481"
}

.fa-npm:before {
  content: "\f3d4"
}

.fa-ns8:before {
  content: "\f3d5"
}

.fa-nutritionix:before {
  content: "\f3d6"
}

.fa-object-group:before {
  content: "\f247"
}

.fa-object-ungroup:before {
  content: "\f248"
}

.fa-octopus-deploy:before {
  content: "\e082"
}

.fa-odnoklassniki:before {
  content: "\f263"
}

.fa-odnoklassniki-square:before {
  content: "\f264"
}

.fa-oil-can:before {
  content: "\f613"
}

.fa-old-republic:before {
  content: "\f510"
}

.fa-om:before {
  content: "\f679"
}

.fa-opencart:before {
  content: "\f23d"
}

.fa-openid:before {
  content: "\f19b"
}

.fa-opera:before {
  content: "\f26a"
}

.fa-optin-monster:before {
  content: "\f23c"
}

.fa-orcid:before {
  content: "\f8d2"
}

.fa-osi:before {
  content: "\f41a"
}

.fa-otter:before {
  content: "\f700"
}

.fa-outdent:before {
  content: "\f03b"
}

.fa-page4:before {
  content: "\f3d7"
}

.fa-pagelines:before {
  content: "\f18c"
}

.fa-pager:before {
  content: "\f815"
}

.fa-paint-brush:before {
  content: "\f1fc"
}

.fa-paint-roller:before {
  content: "\f5aa"
}

.fa-palette:before {
  content: "\f53f"
}

.fa-palfed:before {
  content: "\f3d8"
}

.fa-pallet:before {
  content: "\f482"
}

.fa-paper-plane:before {
  content: "\f1d8"
}

.fa-paperclip:before {
  content: "\f0c6"
}

.fa-parachute-box:before {
  content: "\f4cd"
}

.fa-paragraph:before {
  content: "\f1dd"
}

.fa-parking:before {
  content: "\f540"
}

.fa-passport:before {
  content: "\f5ab"
}

.fa-pastafarianism:before {
  content: "\f67b"
}

.fa-paste:before {
  content: "\f0ea"
}

.fa-patreon:before {
  content: "\f3d9"
}

.fa-pause:before {
  content: "\f04c"
}

.fa-pause-circle:before {
  content: "\f28b"
}

.fa-paw:before {
  content: "\f1b0"
}

.fa-paypal:before {
  content: "\f1ed"
}

.fa-peace:before {
  content: "\f67c"
}

.fa-pen:before {
  content: "\f304"
}

.fa-pen-alt:before {
  content: "\f305"
}

.fa-pen-fancy:before {
  content: "\f5ac"
}

.fa-pen-nib:before {
  content: "\f5ad"
}

.fa-pen-square:before {
  content: "\f14b"
}

.fa-pencil-alt:before {
  content: "\f303"
}

.fa-pencil-ruler:before {
  content: "\f5ae"
}

.fa-penny-arcade:before {
  content: "\f704"
}

.fa-people-arrows:before {
  content: "\e068"
}

.fa-people-carry:before {
  content: "\f4ce"
}

.fa-pepper-hot:before {
  content: "\f816"
}

.fa-perbyte:before {
  content: "\e083"
}

.fa-percent:before {
  content: "\f295"
}

.fa-percentage:before {
  content: "\f541"
}

.fa-periscope:before {
  content: "\f3da"
}

.fa-person-booth:before {
  content: "\f756"
}

.fa-phabricator:before {
  content: "\f3db"
}

.fa-phoenix-framework:before {
  content: "\f3dc"
}

.fa-phoenix-squadron:before {
  content: "\f511"
}

.fa-phone:before {
  content: "\f095"
}

.fa-phone-alt:before {
  content: "\f879"
}

.fa-phone-slash:before {
  content: "\f3dd"
}

.fa-phone-square:before {
  content: "\f098"
}

.fa-phone-square-alt:before {
  content: "\f87b"
}

.fa-phone-volume:before {
  content: "\f2a0"
}

.fa-photo-video:before {
  content: "\f87c"
}

.fa-php:before {
  content: "\f457"
}

.fa-pied-piper:before {
  content: "\f2ae"
}

.fa-pied-piper-alt:before {
  content: "\f1a8"
}

.fa-pied-piper-hat:before {
  content: "\f4e5"
}

.fa-pied-piper-pp:before {
  content: "\f1a7"
}

.fa-pied-piper-square:before {
  content: "\e01e"
}

.fa-piggy-bank:before {
  content: "\f4d3"
}

.fa-pills:before {
  content: "\f484"
}

.fa-pinterest:before {
  content: "\f0d2"
}

.fa-pinterest-p:before {
  content: "\f231"
}

.fa-pinterest-square:before {
  content: "\f0d3"
}

.fa-pizza-slice:before {
  content: "\f818"
}

.fa-place-of-worship:before {
  content: "\f67f"
}

.fa-plane:before {
  content: "\f072"
}

.fa-plane-arrival:before {
  content: "\f5af"
}

.fa-plane-departure:before {
  content: "\f5b0"
}

.fa-plane-slash:before {
  content: "\e069"
}

.fa-play:before {
  content: "\f04b"
}

.fa-play-circle:before {
  content: "\f144"
}

.fa-playstation:before {
  content: "\f3df"
}

.fa-plug:before {
  content: "\f1e6"
}

.fa-plus:before {
  content: "\f067"
}

.fa-plus-circle:before {
  content: "\f055"
}

.fa-plus-square:before {
  content: "\f0fe"
}

.fa-podcast:before {
  content: "\f2ce"
}

.fa-poll:before {
  content: "\f681"
}

.fa-poll-h:before {
  content: "\f682"
}

.fa-poo:before {
  content: "\f2fe"
}

.fa-poo-storm:before {
  content: "\f75a"
}

.fa-poop:before {
  content: "\f619"
}

.fa-portrait:before {
  content: "\f3e0"
}

.fa-pound-sign:before {
  content: "\f154"
}

.fa-power-off:before {
  content: "\f011"
}

.fa-pray:before {
  content: "\f683"
}

.fa-praying-hands:before {
  content: "\f684"
}

.fa-prescription:before {
  content: "\f5b1"
}

.fa-prescription-bottle:before {
  content: "\f485"
}

.fa-prescription-bottle-alt:before {
  content: "\f486"
}

.fa-print:before {
  content: "\f02f"
}

.fa-procedures:before {
  content: "\f487"
}

.fa-product-hunt:before {
  content: "\f288"
}

.fa-project-diagram:before {
  content: "\f542"
}

.fa-pump-medical:before {
  content: "\e06a"
}

.fa-pump-soap:before {
  content: "\e06b"
}

.fa-pushed:before {
  content: "\f3e1"
}

.fa-puzzle-piece:before {
  content: "\f12e"
}

.fa-python:before {
  content: "\f3e2"
}

.fa-qq:before {
  content: "\f1d6"
}

.fa-qrcode:before {
  content: "\f029"
}

.fa-question:before {
  content: "\f128"
}

.fa-question-circle:before {
  content: "\f059"
}

.fa-quidditch:before {
  content: "\f458"
}

.fa-quinscape:before {
  content: "\f459"
}

.fa-quora:before {
  content: "\f2c4"
}

.fa-quote-left:before {
  content: "\f10d"
}

.fa-quote-right:before {
  content: "\f10e"
}

.fa-quran:before {
  content: "\f687"
}

.fa-r-project:before {
  content: "\f4f7"
}

.fa-radiation:before {
  content: "\f7b9"
}

.fa-radiation-alt:before {
  content: "\f7ba"
}

.fa-rainbow:before {
  content: "\f75b"
}

.fa-random:before {
  content: "\f074"
}

.fa-raspberry-pi:before {
  content: "\f7bb"
}

.fa-ravelry:before {
  content: "\f2d9"
}

.fa-react:before {
  content: "\f41b"
}

.fa-reacteurope:before {
  content: "\f75d"
}

.fa-readme:before {
  content: "\f4d5"
}

.fa-rebel:before {
  content: "\f1d0"
}

.fa-receipt:before {
  content: "\f543"
}

.fa-record-vinyl:before {
  content: "\f8d9"
}

.fa-recycle:before {
  content: "\f1b8"
}

.fa-red-river:before {
  content: "\f3e3"
}

.fa-reddit:before {
  content: "\f1a1"
}

.fa-reddit-alien:before {
  content: "\f281"
}

.fa-reddit-square:before {
  content: "\f1a2"
}

.fa-redhat:before {
  content: "\f7bc"
}

.fa-redo:before {
  content: "\f01e"
}

.fa-redo-alt:before {
  content: "\f2f9"
}

.fa-registered:before {
  content: "\f25d"
}

.fa-remove-format:before {
  content: "\f87d"
}

.fa-renren:before {
  content: "\f18b"
}

.fa-reply:before {
  content: "\f3e5"
}

.fa-reply-all:before {
  content: "\f122"
}

.fa-replyd:before {
  content: "\f3e6"
}

.fa-republican:before {
  content: "\f75e"
}

.fa-researchgate:before {
  content: "\f4f8"
}

.fa-resolving:before {
  content: "\f3e7"
}

.fa-restroom:before {
  content: "\f7bd"
}

.fa-retweet:before {
  content: "\f079"
}

.fa-rev:before {
  content: "\f5b2"
}

.fa-ribbon:before {
  content: "\f4d6"
}

.fa-ring:before {
  content: "\f70b"
}

.fa-road:before {
  content: "\f018"
}

.fa-robot:before {
  content: "\f544"
}

.fa-rocket:before {
  content: "\f135"
}

.fa-rocketchat:before {
  content: "\f3e8"
}

.fa-rockrms:before {
  content: "\f3e9"
}

.fa-route:before {
  content: "\f4d7"
}

.fa-rss:before {
  content: "\f09e"
}

.fa-rss-square:before {
  content: "\f143"
}

.fa-ruble-sign:before {
  content: "\f158"
}

.fa-ruler:before {
  content: "\f545"
}

.fa-ruler-combined:before {
  content: "\f546"
}

.fa-ruler-horizontal:before {
  content: "\f547"
}

.fa-ruler-vertical:before {
  content: "\f548"
}

.fa-running:before {
  content: "\f70c"
}

.fa-rupee-sign:before {
  content: "\f156"
}

.fa-rust:before {
  content: "\e07a"
}

.fa-sad-cry:before {
  content: "\f5b3"
}

.fa-sad-tear:before {
  content: "\f5b4"
}

.fa-safari:before {
  content: "\f267"
}

.fa-salesforce:before {
  content: "\f83b"
}

.fa-sass:before {
  content: "\f41e"
}

.fa-satellite:before {
  content: "\f7bf"
}

.fa-satellite-dish:before {
  content: "\f7c0"
}

.fa-save:before {
  content: "\f0c7"
}

.fa-schlix:before {
  content: "\f3ea"
}

.fa-school:before {
  content: "\f549"
}

.fa-screwdriver:before {
  content: "\f54a"
}

.fa-scribd:before {
  content: "\f28a"
}

.fa-scroll:before {
  content: "\f70e"
}

.fa-sd-card:before {
  content: "\f7c2"
}

.fa-search:before {
  content: "\f002"
}

.fa-search-dollar:before {
  content: "\f688"
}

.fa-search-location:before {
  content: "\f689"
}

.fa-search-minus:before {
  content: "\f010"
}

.fa-search-plus:before {
  content: "\f00e"
}

.fa-searchengin:before {
  content: "\f3eb"
}

.fa-seedling:before {
  content: "\f4d8"
}

.fa-sellcast:before {
  content: "\f2da"
}

.fa-sellsy:before {
  content: "\f213"
}

.fa-server:before {
  content: "\f233"
}

.fa-servicestack:before {
  content: "\f3ec"
}

.fa-shapes:before {
  content: "\f61f"
}

.fa-share:before {
  content: "\f064"
}

.fa-share-alt:before {
  content: "\f1e0"
}

.fa-share-alt-square:before {
  content: "\f1e1"
}

.fa-share-square:before {
  content: "\f14d"
}

.fa-shekel-sign:before {
  content: "\f20b"
}

.fa-shield-alt:before {
  content: "\f3ed"
}

.fa-shield-virus:before {
  content: "\e06c"
}

.fa-ship:before {
  content: "\f21a"
}

.fa-shipping-fast:before {
  content: "\f48b"
}

.fa-shirtsinbulk:before {
  content: "\f214"
}

.fa-shoe-prints:before {
  content: "\f54b"
}

.fa-shopify:before {
  content: "\e057"
}

.fa-shopping-bag:before {
  content: "\f290"
}

.fa-shopping-basket:before {
  content: "\f291"
}

.fa-shopping-cart:before {
  content: "\f07a"
}

.fa-shopware:before {
  content: "\f5b5"
}

.fa-shower:before {
  content: "\f2cc"
}

.fa-shuttle-van:before {
  content: "\f5b6"
}

.fa-sign:before {
  content: "\f4d9"
}

.fa-sign-in-alt:before {
  content: "\f2f6"
}

.fa-sign-language:before {
  content: "\f2a7"
}

.fa-sign-out-alt:before {
  content: "\f2f5"
}

.fa-signal:before {
  content: "\f012"
}

.fa-signature:before {
  content: "\f5b7"
}

.fa-sim-card:before {
  content: "\f7c4"
}

.fa-simplybuilt:before {
  content: "\f215"
}

.fa-sink:before {
  content: "\e06d"
}

.fa-sistrix:before {
  content: "\f3ee"
}

.fa-sitemap:before {
  content: "\f0e8"
}

.fa-sith:before {
  content: "\f512"
}

.fa-skating:before {
  content: "\f7c5"
}

.fa-sketch:before {
  content: "\f7c6"
}

.fa-skiing:before {
  content: "\f7c9"
}

.fa-skiing-nordic:before {
  content: "\f7ca"
}

.fa-skull:before {
  content: "\f54c"
}

.fa-skull-crossbones:before {
  content: "\f714"
}

.fa-skyatlas:before {
  content: "\f216"
}

.fa-skype:before {
  content: "\f17e"
}

.fa-slack:before {
  content: "\f198"
}

.fa-slack-hash:before {
  content: "\f3ef"
}

.fa-slash:before {
  content: "\f715"
}

.fa-sleigh:before {
  content: "\f7cc"
}

.fa-sliders-h:before {
  content: "\f1de"
}

.fa-slideshare:before {
  content: "\f1e7"
}

.fa-smile:before {
  content: "\f118"
}

.fa-smile-beam:before {
  content: "\f5b8"
}

.fa-smile-wink:before {
  content: "\f4da"
}

.fa-smog:before {
  content: "\f75f"
}

.fa-smoking:before {
  content: "\f48d"
}

.fa-smoking-ban:before {
  content: "\f54d"
}

.fa-sms:before {
  content: "\f7cd"
}

.fa-snapchat:before {
  content: "\f2ab"
}

.fa-snapchat-ghost:before {
  content: "\f2ac"
}

.fa-snapchat-square:before {
  content: "\f2ad"
}

.fa-snowboarding:before {
  content: "\f7ce"
}

.fa-snowflake:before {
  content: "\f2dc"
}

.fa-snowman:before {
  content: "\f7d0"
}

.fa-snowplow:before {
  content: "\f7d2"
}

.fa-soap:before {
  content: "\e06e"
}

.fa-socks:before {
  content: "\f696"
}

.fa-solar-panel:before {
  content: "\f5ba"
}

.fa-sort:before {
  content: "\f0dc"
}

.fa-sort-alpha-down:before {
  content: "\f15d"
}

.fa-sort-alpha-down-alt:before {
  content: "\f881"
}

.fa-sort-alpha-up:before {
  content: "\f15e"
}

.fa-sort-alpha-up-alt:before {
  content: "\f882"
}

.fa-sort-amount-down:before {
  content: "\f160"
}

.fa-sort-amount-down-alt:before {
  content: "\f884"
}

.fa-sort-amount-up:before {
  content: "\f161"
}

.fa-sort-amount-up-alt:before {
  content: "\f885"
}

.fa-sort-down:before {
  content: "\f0dd"
}

.fa-sort-numeric-down:before {
  content: "\f162"
}

.fa-sort-numeric-down-alt:before {
  content: "\f886"
}

.fa-sort-numeric-up:before {
  content: "\f163"
}

.fa-sort-numeric-up-alt:before {
  content: "\f887"
}

.fa-sort-up:before {
  content: "\f0de"
}

.fa-soundcloud:before {
  content: "\f1be"
}

.fa-sourcetree:before {
  content: "\f7d3"
}

.fa-spa:before {
  content: "\f5bb"
}

.fa-space-shuttle:before {
  content: "\f197"
}

.fa-speakap:before {
  content: "\f3f3"
}

.fa-speaker-deck:before {
  content: "\f83c"
}

.fa-spell-check:before {
  content: "\f891"
}

.fa-spider:before {
  content: "\f717"
}

.fa-spinner:before {
  content: "\f110"
}

.fa-splotch:before {
  content: "\f5bc"
}

.fa-spotify:before {
  content: "\f1bc"
}

.fa-spray-can:before {
  content: "\f5bd"
}

.fa-square:before {
  content: "\f0c8"
}

.fa-square-full:before {
  content: "\f45c"
}

.fa-square-root-alt:before {
  content: "\f698"
}

.fa-squarespace:before {
  content: "\f5be"
}

.fa-stack-exchange:before {
  content: "\f18d"
}

.fa-stack-overflow:before {
  content: "\f16c"
}

.fa-stackpath:before {
  content: "\f842"
}

.fa-stamp:before {
  content: "\f5bf"
}

.fa-star:before {
  content: "\f005"
}

.fa-star-and-crescent:before {
  content: "\f699"
}

.fa-star-half:before {
  content: "\f089"
}

.fa-star-half-alt:before {
  content: "\f5c0"
}

.fa-star-of-david:before {
  content: "\f69a"
}

.fa-star-of-life:before {
  content: "\f621"
}

.fa-staylinked:before {
  content: "\f3f5"
}

.fa-steam:before {
  content: "\f1b6"
}

.fa-steam-square:before {
  content: "\f1b7"
}

.fa-steam-symbol:before {
  content: "\f3f6"
}

.fa-step-backward:before {
  content: "\f048"
}

.fa-step-forward:before {
  content: "\f051"
}

.fa-stethoscope:before {
  content: "\f0f1"
}

.fa-sticker-mule:before {
  content: "\f3f7"
}

.fa-sticky-note:before {
  content: "\f249"
}

.fa-stop:before {
  content: "\f04d"
}

.fa-stop-circle:before {
  content: "\f28d"
}

.fa-stopwatch:before {
  content: "\f2f2"
}

.fa-stopwatch-20:before {
  content: "\e06f"
}

.fa-store:before {
  content: "\f54e"
}

.fa-store-alt:before {
  content: "\f54f"
}

.fa-store-alt-slash:before {
  content: "\e070"
}

.fa-store-slash:before {
  content: "\e071"
}

.fa-strava:before {
  content: "\f428"
}

.fa-stream:before {
  content: "\f550"
}

.fa-street-view:before {
  content: "\f21d"
}

.fa-strikethrough:before {
  content: "\f0cc"
}

.fa-stripe:before {
  content: "\f429"
}

.fa-stripe-s:before {
  content: "\f42a"
}

.fa-stroopwafel:before {
  content: "\f551"
}

.fa-studiovinari:before {
  content: "\f3f8"
}

.fa-stumbleupon:before {
  content: "\f1a4"
}

.fa-stumbleupon-circle:before {
  content: "\f1a3"
}

.fa-subscript:before {
  content: "\f12c"
}

.fa-subway:before {
  content: "\f239"
}

.fa-suitcase:before {
  content: "\f0f2"
}

.fa-suitcase-rolling:before {
  content: "\f5c1"
}

.fa-sun:before {
  content: "\f185"
}

.fa-superpowers:before {
  content: "\f2dd"
}

.fa-superscript:before {
  content: "\f12b"
}

.fa-supple:before {
  content: "\f3f9"
}

.fa-surprise:before {
  content: "\f5c2"
}

.fa-suse:before {
  content: "\f7d6"
}

.fa-swatchbook:before {
  content: "\f5c3"
}

.fa-swift:before {
  content: "\f8e1"
}

.fa-swimmer:before {
  content: "\f5c4"
}

.fa-swimming-pool:before {
  content: "\f5c5"
}

.fa-symfony:before {
  content: "\f83d"
}

.fa-synagogue:before {
  content: "\f69b"
}

.fa-sync:before {
  content: "\f021"
}

.fa-sync-alt:before {
  content: "\f2f1"
}

.fa-syringe:before {
  content: "\f48e"
}

.fa-table:before {
  content: "\f0ce"
}

.fa-table-tennis:before {
  content: "\f45d"
}

.fa-tablet:before {
  content: "\f10a"
}

.fa-tablet-alt:before {
  content: "\f3fa"
}

.fa-tablets:before {
  content: "\f490"
}

.fa-tachometer-alt:before {
  content: "\f3fd"
}

.fa-tag:before {
  content: "\f02b"
}

.fa-tags:before {
  content: "\f02c"
}

.fa-tape:before {
  content: "\f4db"
}

.fa-tasks:before {
  content: "\f0ae"
}

.fa-taxi:before {
  content: "\f1ba"
}

.fa-teamspeak:before {
  content: "\f4f9"
}

.fa-teeth:before {
  content: "\f62e"
}

.fa-teeth-open:before {
  content: "\f62f"
}

.fa-telegram:before {
  content: "\f2c6"
}

.fa-telegram-plane:before {
  content: "\f3fe"
}

.fa-temperature-high:before {
  content: "\f769"
}

.fa-temperature-low:before {
  content: "\f76b"
}

.fa-tencent-weibo:before {
  content: "\f1d5"
}

.fa-tenge:before {
  content: "\f7d7"
}

.fa-terminal:before {
  content: "\f120"
}

.fa-text-height:before {
  content: "\f034"
}

.fa-text-width:before {
  content: "\f035"
}

.fa-th:before {
  content: "\f00a"
}

.fa-th-large:before {
  content: "\f009"
}

.fa-th-list:before {
  content: "\f00b"
}

.fa-the-red-yeti:before {
  content: "\f69d"
}

.fa-theater-masks:before {
  content: "\f630"
}

.fa-themeco:before {
  content: "\f5c6"
}

.fa-themeisle:before {
  content: "\f2b2"
}

.fa-thermometer:before {
  content: "\f491"
}

.fa-thermometer-empty:before {
  content: "\f2cb"
}

.fa-thermometer-full:before {
  content: "\f2c7"
}

.fa-thermometer-half:before {
  content: "\f2c9"
}

.fa-thermometer-quarter:before {
  content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8"
}

.fa-think-peaks:before {
  content: "\f731"
}

.fa-thumbs-down:before {
  content: "\f165"
}

.fa-thumbs-up:before {
  content: "\f164"
}

.fa-thumbtack:before {
  content: "\f08d"
}

.fa-ticket-alt:before {
  content: "\f3ff"
}

.fa-tiktok:before {
  content: "\e07b"
}

.fa-times:before {
  content: "\f00d"
}

.fa-times-circle:before {
  content: "\f057"
}

.fa-tint:before {
  content: "\f043"
}

.fa-tint-slash:before {
  content: "\f5c7"
}

.fa-tired:before {
  content: "\f5c8"
}

.fa-toggle-off:before {
  content: "\f204"
}

.fa-toggle-on:before {
  content: "\f205"
}

.fa-toilet:before {
  content: "\f7d8"
}

.fa-toilet-paper:before {
  content: "\f71e"
}

.fa-toilet-paper-slash:before {
  content: "\e072"
}

.fa-toolbox:before {
  content: "\f552"
}

.fa-tools:before {
  content: "\f7d9"
}

.fa-tooth:before {
  content: "\f5c9"
}

.fa-torah:before {
  content: "\f6a0"
}

.fa-torii-gate:before {
  content: "\f6a1"
}

.fa-tractor:before {
  content: "\f722"
}

.fa-trade-federation:before {
  content: "\f513"
}

.fa-trademark:before {
  content: "\f25c"
}

.fa-traffic-light:before {
  content: "\f637"
}

.fa-trailer:before {
  content: "\e041"
}

.fa-train:before {
  content: "\f238"
}

.fa-tram:before {
  content: "\f7da"
}

.fa-transgender:before {
  content: "\f224"
}

.fa-transgender-alt:before {
  content: "\f225"
}

.fa-trash:before {
  content: "\f1f8"
}

.fa-trash-alt:before {
  content: "\f2ed"
}

.fa-trash-restore:before {
  content: "\f829"
}

.fa-trash-restore-alt:before {
  content: "\f82a"
}

.fa-tree:before {
  content: "\f1bb"
}

.fa-trello:before {
  content: "\f181"
}

.fa-tripadvisor:before {
  content: "\f262"
}

.fa-trophy:before {
  content: "\f091"
}

.fa-truck:before {
  content: "\f0d1"
}

.fa-truck-loading:before {
  content: "\f4de"
}

.fa-truck-monster:before {
  content: "\f63b"
}

.fa-truck-moving:before {
  content: "\f4df"
}

.fa-truck-pickup:before {
  content: "\f63c"
}

.fa-tshirt:before {
  content: "\f553"
}

.fa-tty:before {
  content: "\f1e4"
}

.fa-tumblr:before {
  content: "\f173"
}

.fa-tumblr-square:before {
  content: "\f174"
}

.fa-tv:before {
  content: "\f26c"
}

.fa-twitch:before {
  content: "\f1e8"
}

.fa-twitter:before {
  content: "\f099"
}

.fa-twitter-square:before {
  content: "\f081"
}

.fa-typo3:before {
  content: "\f42b"
}

.fa-uber:before {
  content: "\f402"
}

.fa-ubuntu:before {
  content: "\f7df"
}

.fa-uikit:before {
  content: "\f403"
}

.fa-umbraco:before {
  content: "\f8e8"
}

.fa-umbrella:before {
  content: "\f0e9"
}

.fa-umbrella-beach:before {
  content: "\f5ca"
}

.fa-uncharted:before {
  content: "\e084"
}

.fa-underline:before {
  content: "\f0cd"
}

.fa-undo:before {
  content: "\f0e2"
}

.fa-undo-alt:before {
  content: "\f2ea"
}

.fa-uniregistry:before {
  content: "\f404"
}

.fa-unity:before {
  content: "\e049"
}

.fa-universal-access:before {
  content: "\f29a"
}

.fa-university:before {
  content: "\f19c"
}

.fa-unlink:before {
  content: "\f127"
}

.fa-unlock:before {
  content: "\f09c"
}

.fa-unlock-alt:before {
  content: "\f13e"
}

.fa-unsplash:before {
  content: "\e07c"
}

.fa-untappd:before {
  content: "\f405"
}

.fa-upload:before {
  content: "\f093"
}

.fa-ups:before {
  content: "\f7e0"
}

.fa-usb:before {
  content: "\f287"
}

.fa-user:before {
  content: "\f007"
}

.fa-user-alt:before {
  content: "\f406"
}

.fa-user-alt-slash:before {
  content: "\f4fa"
}

.fa-user-astronaut:before {
  content: "\f4fb"
}

.fa-user-check:before {
  content: "\f4fc"
}

.fa-user-circle:before {
  content: "\f2bd"
}

.fa-user-clock:before {
  content: "\f4fd"
}

.fa-user-cog:before {
  content: "\f4fe"
}

.fa-user-edit:before {
  content: "\f4ff"
}

.fa-user-friends:before {
  content: "\f500"
}

.fa-user-graduate:before {
  content: "\f501"
}

.fa-user-injured:before {
  content: "\f728"
}

.fa-user-lock:before {
  content: "\f502"
}

.fa-user-md:before {
  content: "\f0f0"
}

.fa-user-minus:before {
  content: "\f503"
}

.fa-user-ninja:before {
  content: "\f504"
}

.fa-user-nurse:before {
  content: "\f82f"
}

.fa-user-plus:before {
  content: "\f234"
}

.fa-user-secret:before {
  content: "\f21b"
}

.fa-user-shield:before {
  content: "\f505"
}

.fa-user-slash:before {
  content: "\f506"
}

.fa-user-tag:before {
  content: "\f507"
}

.fa-user-tie:before {
  content: "\f508"
}

.fa-user-times:before {
  content: "\f235"
}

.fa-users:before {
  content: "\f0c0"
}

.fa-users-cog:before {
  content: "\f509"
}

.fa-users-slash:before {
  content: "\e073"
}

.fa-usps:before {
  content: "\f7e1"
}

.fa-ussunnah:before {
  content: "\f407"
}

.fa-utensil-spoon:before {
  content: "\f2e5"
}

.fa-utensils:before {
  content: "\f2e7"
}

.fa-vaadin:before {
  content: "\f408"
}

.fa-vector-square:before {
  content: "\f5cb"
}

.fa-venus:before {
  content: "\f221"
}

.fa-venus-double:before {
  content: "\f226"
}

.fa-venus-mars:before {
  content: "\f228"
}

.fa-vest:before {
  content: "\e085"
}

.fa-vest-patches:before {
  content: "\e086"
}

.fa-viacoin:before {
  content: "\f237"
}

.fa-viadeo:before {
  content: "\f2a9"
}

.fa-viadeo-square:before {
  content: "\f2aa"
}

.fa-vial:before {
  content: "\f492"
}

.fa-vials:before {
  content: "\f493"
}

.fa-viber:before {
  content: "\f409"
}

.fa-video:before {
  content: "\f03d"
}

.fa-video-slash:before {
  content: "\f4e2"
}

.fa-vihara:before {
  content: "\f6a7"
}

.fa-vimeo:before {
  content: "\f40a"
}

.fa-vimeo-square:before {
  content: "\f194"
}

.fa-vimeo-v:before {
  content: "\f27d"
}

.fa-vine:before {
  content: "\f1ca"
}

.fa-virus:before {
  content: "\e074"
}

.fa-virus-slash:before {
  content: "\e075"
}

.fa-viruses:before {
  content: "\e076"
}

.fa-vk:before {
  content: "\f189"
}

.fa-vnv:before {
  content: "\f40b"
}

.fa-voicemail:before {
  content: "\f897"
}

.fa-volleyball-ball:before {
  content: "\f45f"
}

.fa-volume-down:before {
  content: "\f027"
}

.fa-volume-mute:before {
  content: "\f6a9"
}

.fa-volume-off:before {
  content: "\f026"
}

.fa-volume-up:before {
  content: "\f028"
}

.fa-vote-yea:before {
  content: "\f772"
}

.fa-vr-cardboard:before {
  content: "\f729"
}

.fa-vuejs:before {
  content: "\f41f"
}

.fa-walking:before {
  content: "\f554"
}

.fa-wallet:before {
  content: "\f555"
}

.fa-warehouse:before {
  content: "\f494"
}

.fa-watchman-monitoring:before {
  content: "\e087"
}

.fa-water:before {
  content: "\f773"
}

.fa-wave-square:before {
  content: "\f83e"
}

.fa-waze:before {
  content: "\f83f"
}

.fa-weebly:before {
  content: "\f5cc"
}

.fa-weibo:before {
  content: "\f18a"
}

.fa-weight:before {
  content: "\f496"
}

.fa-weight-hanging:before {
  content: "\f5cd"
}

.fa-weixin:before {
  content: "\f1d7"
}

.fa-whatsapp:before {
  content: "\f232"
}

.fa-whatsapp-square:before {
  content: "\f40c"
}

.fa-wheelchair:before {
  content: "\f193"
}

.fa-whmcs:before {
  content: "\f40d"
}

.fa-wifi:before {
  content: "\f1eb"
}

.fa-wikipedia-w:before {
  content: "\f266"
}

.fa-wind:before {
  content: "\f72e"
}

.fa-window-close:before {
  content: "\f410"
}

.fa-window-maximize:before {
  content: "\f2d0"
}

.fa-window-minimize:before {
  content: "\f2d1"
}

.fa-window-restore:before {
  content: "\f2d2"
}

.fa-windows:before {
  content: "\f17a"
}

.fa-wine-bottle:before {
  content: "\f72f"
}

.fa-wine-glass:before {
  content: "\f4e3"
}

.fa-wine-glass-alt:before {
  content: "\f5ce"
}

.fa-wix:before {
  content: "\f5cf"
}

.fa-wizards-of-the-coast:before {
  content: "\f730"
}

.fa-wodu:before {
  content: "\e088"
}

.fa-wolf-pack-battalion:before {
  content: "\f514"
}

.fa-won-sign:before {
  content: "\f159"
}

.fa-wordpress:before {
  content: "\f19a"
}

.fa-wordpress-simple:before {
  content: "\f411"
}

.fa-wpbeginner:before {
  content: "\f297"
}

.fa-wpexplorer:before {
  content: "\f2de"
}

.fa-wpforms:before {
  content: "\f298"
}

.fa-wpressr:before {
  content: "\f3e4"
}

.fa-wrench:before {
  content: "\f0ad"
}

.fa-x-ray:before {
  content: "\f497"
}

.fa-xbox:before {
  content: "\f412"
}

.fa-xing:before {
  content: "\f168"
}

.fa-xing-square:before {
  content: "\f169"
}

.fa-y-combinator:before {
  content: "\f23b"
}

.fa-yahoo:before {
  content: "\f19e"
}

.fa-yammer:before {
  content: "\f840"
}

.fa-yandex:before {
  content: "\f413"
}

.fa-yandex-international:before {
  content: "\f414"
}

.fa-yarn:before {
  content: "\f7e3"
}

.fa-yelp:before {
  content: "\f1e9"
}

.fa-yen-sign:before {
  content: "\f157"
}

.fa-yin-yang:before {
  content: "\f6ad"
}

.fa-yoast:before {
  content: "\f2b1"
}

.fa-youtube:before {
  content: "\f167"
}

.fa-youtube-square:before {
  content: "\f431"
}

.fa-zhihu:before {
  content: "\f63f"
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/static/asset/fonts/fa-solid-900.eot);
  src: url(/static/asset/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/static/asset/fonts/fa-solid-900.woff2) format("woff2"), url(/static/asset/fonts/fa-solid-900.woff) format("woff"), url(/static/asset/fonts/fa-solid-900.ttf) format("truetype"), url(/static/asset/fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900
}

.bdt-total-count .bdt-total-count-icon-wrapper {
  display: inline-block;
  line-height: 1;
  transition: all 350ms cubic-bezier(0.24, 0.85, 0.58, 1);
  color: #818a91;
  font-size: 48px;
  width: 48px;
  height: auto;
  text-align: center;
  position: relative;
  box-sizing: content-box;
}

.bdt-total-count .bdt-total-count-icon-wrapper:hover {
  color: #818a91;
}

.bdt-total-count .bdt-total-count-icon-wrapper i,
.bdt-total-count .bdt-total-count-icon-wrapper img {
  position: relative;
  display: block;
  transition: transform 350ms cubic-bezier(0.24, 0.85, 0.58, 1);
  z-index: 1;
}

.bdt-total-count .bdt-total-count-icon-wrapper i:before,
.bdt-total-count .bdt-total-count-icon-wrapper img:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.bdt-total-count .bdt-total-count-icon-wrapper i {
  width: 1em;
  height: 1em;
}

.bdt-total-count .bdt-number-separator-wrapper {
  margin-bottom: 24px;
  line-height: 1;
}

.bdt-total-count .bdt-number-separator-wrapper>* {
  height: auto;
}

.bdt-total-count .bdt-number-separator-wrapper>svg [stroke*='#'] {
  stroke: currentcolor;
}

.bdt-total-count .bdt-number-separator {
  border-top: 4px solid #ddd;
  display: inline-block;
  width: 100px;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-none .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-none .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  opacity: 1;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-a .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale(0);
  top: 0;
  left: 0;
  border-radius: 200px;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-a .bdt-total-count:hover .bdt-total-count-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-a .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  opacity: 1;
  transform: scale(1.5);
}

.elementor-widget-bdt-total-count.bdt-icon-effect-g .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 0;
  height: 103%;
  top: 50%;
  left: 50%;
  z-index: -1;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
}

.elementor-widget-bdt-total-count.bdt-icon-effect-g .bdt-total-count:hover .bdt-total-count-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-g .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  width: 90%;
  opacity: 1;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-b .bdt-total-count .bdt-total-count-icon-wrapper {
  overflow: hidden;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-b .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.elementor-widget-bdt-total-count.bdt-icon-effect-b .bdt-total-count:hover .bdt-total-count-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-b .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  height: 260%;
  opacity: 1;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-c .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 101%;
  height: 0;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
}

.elementor-widget-bdt-total-count.bdt-icon-effect-c .bdt-total-count:hover .bdt-total-count-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-c .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  height: 75%;
  opacity: 1;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-d .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  z-index: -1;
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform-origin: 0% 100%;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-d .bdt-total-count:hover .bdt-total-count-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-d .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0deg);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.elementor-widget-bdt-total-count.bdt-icon-effect-e .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-e .bdt-total-count:hover .bdt-total-count-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-e .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  height: 100%;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-f .bdt-total-count .bdt-total-count-icon-wrapper:after {
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease-out;
  background: #666;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-f .bdt-total-count:hover .bdt-total-count-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-total-count.bdt-icon-effect-f .bdt-total-count:hover .bdt-total-count-icon-wrapper:after {
  width: 100%;
}

.elementor-widget-bdt-total-count .bdt-total-count {
  text-align: center;
}

.elementor-widget-bdt-total-count .bdt-total-count-number {
  font-weight: 700;
  font-size: 48px;
  color: #4d535f;
}

.elementor-widget-bdt-total-count .bdt-total-count-number a {
  color: inherit;
}

.elementor-widget-bdt-total-count .bdt-total-count-content-text {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #999ea7;
  font-weight: 400;
}

.elementor-widget-bdt-total-count h1:not(.site-title):before,
.elementor-widget-bdt-total-count h2:before {
  content: '';
  display: none;
}

.elementor-widget-bdt-total-count .bdt-icon-heading {
  margin-bottom: 20px;
}

.elementor-widget-bdt-total-count .bdt-icon-heading .bdt-total-count-number {
  margin-bottom: 0;
  margin-top: 0;
}

.elementor-widget-bdt-total-count.bdt-global-link-yes .bdt-total-count:hover {
  cursor: pointer;
}

.elementor-widget-bdt-total-count .bdt-total-count {
  text-align: center;
}

.elementor-widget-bdt-total-count .bdt-total-count-number {
  font-weight: 700;
  font-size: 48px;
}

.elementor-widget-bdt-total-count .bdt-total-count-number a {
  color: inherit;
}

.elementor-widget-bdt-total-count .bdt-total-count-content-text {
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .elementor-widget-bdt-total-count.elementor-position-left .bdt-total-count {
    display: flex;
    text-align: left;
    flex-direction: row;
  }

  .elementor-widget-bdt-total-count.elementor-position-left .bdt-total-count-icon {
    flex: 0 0 auto;
  }

  .elementor-widget-bdt-total-count.elementor-position-right .bdt-total-count {
    display: flex;
    text-align: right;
    flex-direction: row-reverse;
  }

  .elementor-widget-bdt-total-count.elementor-position-right .bdt-total-count-icon {
    flex: 0 0 auto;
  }

  .elementor-widget-bdt-total-count.elementor-position-top .bdt-total-count-img {
    margin: auto;
  }

  .elementor-widget-bdt-total-count.elementor-position-top .bdt-total-count-icon {
    display: inline-block;
  }

  .elementor-widget-bdt-total-count.elementor-vertical-align-top .bdt-total-count {
    align-items: flex-start;
  }

  .elementor-widget-bdt-total-count.elementor-vertical-align-middle .bdt-total-count {
    align-items: center;
  }

  .elementor-widget-bdt-total-count.elementor-vertical-align-bottom .bdt-total-count {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .elementor-widget-bdt-total-count .bdt-total-count-icon {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 15px;
  }

  .elementor-widget-bdt-total-count.bdt-icon-type-image .bdt-total-count-icon-wrapper {
    width: auto;
  }
}

.bdt-advanced-icon-box .bdt-icon-wrapper {
  display: inline-block;
  line-height: 1;
  transition: all 350ms cubic-bezier(0.24, 0.85, 0.58, 1);
  color: #818a91;
  font-size: 48px;
  width: 48px;
  height: auto;
  text-align: center;
  position: relative;
  box-sizing: content-box;
}

.bdt-advanced-icon-box .bdt-icon-wrapper:hover {
  color: #818a91;
}

.bdt-advanced-icon-box .bdt-icon-wrapper i,
.bdt-advanced-icon-box .bdt-icon-wrapper svg,
.bdt-advanced-icon-box .bdt-icon-wrapper img {
  position: relative;
  display: block;
  transition: transform 350ms cubic-bezier(0.24, 0.85, 0.58, 1);
  z-index: 1;
  margin: auto;
}

.bdt-advanced-icon-box .bdt-icon-wrapper i:before,
.bdt-advanced-icon-box .bdt-icon-wrapper svg:before,
.bdt-advanced-icon-box .bdt-icon-wrapper img:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.bdt-advanced-icon-box .bdt-icon-wrapper i {
  width: 1em;
  height: 1em;
}

.bdt-advanced-icon-box .bdt-advanced-icon-box-content {
  margin-top: var(--ep-advanced-icon-box-icon-top-v-offset, 0);
}

.bdt-advanced-icon-box .bdt-advanced-icon-box-readmore {
  display: inline-block;
}

.bdt-advanced-icon-box .bdt-advanced-icon-box-readmore svg {
  width: 1em;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper {
  overflow: hidden;
  margin-bottom: 24px;
  line-height: 1;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper>* {
  height: auto;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper>svg [stroke*='#'] {
  stroke: currentcolor;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper img {
  display: none;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper svg * {
  stroke: #798184;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper svg.ep_round {
  stroke-linecap: round;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper svg.ep_square {
  stroke-linecap: square;
}

.bdt-advanced-icon-box .bdt-title-separator-wrapper svg.ep_butt {
  stroke-linecap: butt;
}

.bdt-advanced-icon-box .bdt-title-separator {
  border-top: 4px solid #ddd;
  display: inline-block;
  width: 100px;
}

.elementor-widget-bdt-advanced-icon-box .bdt-indicator-svg {
  -webkit-transform: translate(var(--ep-advanced-icon-box-indicator-h-offset, 0), var(--ep-advanced-icon-box-indicator-v-offset, 0)) rotate(var(--ep-advanced-icon-box-indicator-rotate, 0));
  transform: translate(var(--ep-advanced-icon-box-indicator-h-offset, 0), var(--ep-advanced-icon-box-indicator-v-offset, 0)) rotate(var(--ep-advanced-icon-box-indicator-rotate, 0));
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-badge {
  -webkit-transform: translate(var(--ep-advanced-icon-box-badge-h-offset, 0), var(--ep-advanced-icon-box-badge-v-offset, 0)) rotate(var(--ep-advanced-icon-box-badge-rotate, 0));
  transform: translate(var(--ep-advanced-icon-box-badge-h-offset, 0), var(--ep-advanced-icon-box-badge-v-offset, 0)) rotate(var(--ep-advanced-icon-box-badge-rotate, 0));
}

.elementor-widget-bdt-advanced-icon-box.elementor-position-top .bdt-advanced-icon-box-icon {
  -webkit-transform: translate(var(--ep-advanced-icon-box-icon-top-h-offset, 0), var(--ep-advanced-icon-box-icon-top-v-offset, 0));
  transform: translate(var(--ep-advanced-icon-box-icon-top-h-offset, 0), var(--ep-advanced-icon-box-icon-top-v-offset, 0));
}

.elementor-widget-bdt-advanced-icon-box.elementor-position-left .bdt-advanced-icon-box-icon,
.elementor-widget-bdt-advanced-icon-box.elementor-position-right .bdt-advanced-icon-box-icon {
  -webkit-transform: translate(var(--ep-advanced-icon-box-icon-left-h-offset, 0), var(--ep-advanced-icon-box-icon-left-v-offset, 0));
  transform: translate(var(--ep-advanced-icon-box-icon-left-h-offset, 0), var(--ep-advanced-icon-box-icon-left-v-offset, 0));
}

.rtl .bdt-indicator-svg svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-none .bdt-advanced-icon-box .bdt-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-none .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  opacity: 1;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-a .bdt-advanced-icon-box .bdt-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale(0);
  top: 0;
  left: 0;
  border-radius: 200px;
  background-color: #d5dadf;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-a .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-a .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  opacity: 1;
  transform: scale(1.5);
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-b .bdt-advanced-icon-box .bdt-icon-wrapper {
  overflow: hidden;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-b .bdt-advanced-icon-box .bdt-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background-color: #d5dadf;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-b .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-b .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  height: 260%;
  opacity: 1;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-c .bdt-advanced-icon-box .bdt-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 101%;
  height: 0;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  background-color: #d5dadf;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-c .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-c .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  height: 75%;
  opacity: 1;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-d .bdt-advanced-icon-box .bdt-icon-wrapper {
  overflow: hidden;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-d .bdt-advanced-icon-box .bdt-icon-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  z-index: -1;
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform-origin: 0% 100%;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  background-color: #d5dadf;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-d .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-d .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0deg);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-e .bdt-advanced-icon-box .bdt-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #d5dadf;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-e .bdt-advanced-icon-box:hover .bdt-icon-wrapper {
  background-color: transparent;
}

.elementor-widget-bdt-advanced-icon-box.bdt-icon-effect-e .bdt-advanced-icon-box:hover .bdt-icon-wrapper:after {
  height: 100%;
}

.elementor-widget-bdt-advanced-icon-box.bdt-readmore-on-hover-yes .bdt-advanced-icon-box .bdt-advanced-icon-box-readmore {
  margin-top: 26px;
  position: absolute;
  -webkit-transform: translate(var(--ep-advanced-icon-box-readmore-h-offset, -50%), var(--ep-advanced-icon-box-readmore-v-offset, 0));
  transform: translate(var(--ep-advanced-icon-box-readmore-h-offset, -50%), var(--ep-advanced-icon-box-readmore-v-offset, 0));
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.24, 0.85, 0.58, 1);
}

.elementor-widget-bdt-advanced-icon-box.bdt-readmore-on-hover-yes .bdt-advanced-icon-box:hover .bdt-advanced-icon-box-readmore {
  opacity: 1;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box {
  text-align: center;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-title a {
  color: inherit;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-description {
  margin-bottom: 20px;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-sub-title {
  font-size: 14px;
  margin-top: -20px;
  margin-bottom: 20px;
  transition: all .25s ease;
}

.elementor-widget-bdt-advanced-icon-box .bdt-icon-heading {
  margin-bottom: 20px;
}

.elementor-widget-bdt-advanced-icon-box .bdt-icon-heading .bdt-advanced-icon-box-title,
.elementor-widget-bdt-advanced-icon-box .bdt-icon-heading .bdt-advanced-icon-box-sub-title {
  margin-bottom: 0;
  margin-top: 0;
}

.elementor-widget-bdt-advanced-icon-box.bdt-global-link-yes .bdt-advanced-icon-box:hover {
  cursor: pointer;
}

.elementor-widget-bdt-advanced-icon-box.bdt-title-link-yes .bdt-advanced-icon-box-title:hover {
  cursor: pointer;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box {
  text-align: center;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-title a {
  color: inherit;
}

.elementor-widget-bdt-advanced-icon-box .bdt-advanced-icon-box-description {
  margin-bottom: 20px;
}

.bdt-readmore-on-hover-yes .bdt-advanced-icon-box-readmore {
  -webkit-transform: translate(var(--ep-advanced-icon-box-readmore-h-offset, 0), var(--ep-advanced-icon-box-readmore-v-offset, 0));
  transform: translate(var(--ep-advanced-icon-box-readmore-h-offset, 0), var(--ep-advanced-icon-box-readmore-v-offset, 0));
}

@media (min-width: 768px) {
  .elementor-widget-bdt-advanced-icon-box.elementor-position-left .bdt-advanced-icon-box {
    display: flex;
    text-align: left;
    flex-direction: row;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-position-left .bdt-advanced-icon-box-icon {
    flex: 0 0 auto;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-position-right .bdt-advanced-icon-box {
    display: flex;
    text-align: right;
    flex-direction: row-reverse;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-position-right .bdt-advanced-icon-box-icon {
    flex: 0 0 auto;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-position-top .bdt-advanced-icon-box-img {
    margin: auto;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-position-top .bdt-advanced-icon-box-icon {
    display: inline-block;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-vertical-align-top .bdt-advanced-icon-box {
    align-items: flex-start;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-vertical-align-middle .bdt-advanced-icon-box {
    align-items: center;
  }

  .elementor-widget-bdt-advanced-icon-box.elementor-vertical-align-bottom .bdt-advanced-icon-box {
    align-items: flex-end;
  }

  .elementor-widget-bdt-advanced-icon-box .bdt-indicator-svg {
    position: absolute;
    left: 100%;
    top: 0;
    width: 150px;
    height: auto;
    transform-origin: center center;
    z-index: 10;
  }

  .elementor-widget-bdt-advanced-icon-box .bdt-indicator-svg svg {
    height: auto;
    width: 100%;
  }
}

.bdt-crypto-currency-table table thead tr.bdt-cryptocurrency-title {
  background-color: #54595f;
}

.bdt-crypto-currency-table table thead tr.bdt-cryptocurrency-title th {
  color: #fff;
  padding: 15px;
  vertical-align: middle;
  font-size: 12px;
  text-transform: uppercase;
}

.bdt-crypto-currency-table table tr td {
  padding: 5px 12px;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 400;
}

.bdt-crypto-currency-table table tr td .bdt-crypto-currency-image {
  display: inline-block;
}

.bdt-crypto-currency-table table tr td .bdt-cryptocurrency-fullname {
  vertical-align: middle;
  margin-left: 20px;
  display: inline-block;
}

.bdt-crypto-currency-table table tr td img {
  width: 40px;
}

.bdt-crypto-currency-table table tr td .bdt-cryptocurrency-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.bdt-crypto-currency-table table tr td .bdt-currency-short-name {
  font-size: 14px;
  color: #999;
}

@media (min-width: 1024px) {
  .bdt-crypto-currency table tr.bdt-cryptocurrency-title th {
    padding: 15px 12px;
  }
}

@media only screen and (max-width: 768px) {
  table.bdt-table.bdt-table-responsive-2 {
    display: block;
    position: relative;
    width: 100%;
  }

  table.bdt-table.bdt-table-responsive-2 thead {
    display: block;
    float: left;
  }

  table.bdt-table.bdt-table-responsive-2 thead tr {
    display: block;
  }

  table.bdt-table.bdt-table-responsive-2 tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }

  table.bdt-table.bdt-table-responsive-2 tbody tr {
    display: inline-block;
    vertical-align: top;
  }

  table.bdt-table.bdt-table-responsive-2 th {
    display: block;
    padding: 11px !important;
    border-bottom: none;
    border-right: none;
    border-left: none;
  }

  table.bdt-table.bdt-table-responsive-2 th:first-child {
    border-top: none;
  }

  table.bdt-table.bdt-table-responsive-2 td {
    display: block;
    padding: 0.5em 1em !important;
    min-height: 1.25em;
    border-bottom: none;
    border-right: none;
  }

  table.bdt-table.bdt-table-responsive-2 td:first-child {
    border-top: none;
  }

  .bdt-crypto-currency-table table tr td .bdt-cryptocurrency-fullname {
    margin-left: 3px;
  }
}