/* Pass media breakpoints to JS
 ========================================================================== */
/*
 * Breakpoints
 */
.var-media-s::before {
  content: '640px';
}
.var-media-m::before {
  content: '960px';
}
.var-media-l::before {
  content: '1200px';
}
.var-media-xl::before {
  content: '1600px';
}
/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.bdt-link-muted,
.bdt-link-muted a {
  color: #999;
}
a.bdt-link-muted:hover,
.bdt-link-muted a:hover {
  color: #666;
}
/* Text
 ========================================================================== */
a.bdt-link-text:not(:hover),
.bdt-link-text a:not(:hover) {
  color: inherit;
}
a.bdt-link-text:hover,
.bdt-link-text a:hover {
  color: #999;
}
/* Heading
 ========================================================================== */
a.bdt-link-heading:not(:hover),
.bdt-link-heading a:not(:hover) {
  color: inherit;
}
a.bdt-link-heading:hover,
.bdt-link-heading a:hover {
  color: #1e87f0;
  text-decoration: none;
}
/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.bdt-link-reset,
a.bdt-link-reset:hover,
.bdt-link-reset a,
.bdt-link-reset a:hover {
  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("../../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 #e5e5e5;
}
.bdt-divider-icon::before {
  right: calc(50% + (50px / 2));
  width: 100%;
}
.bdt-divider-icon::after {
  left: calc(50% + (50px / 2));
  width: 100%;
}
/* Small
 ========================================================================== */
/*
 * Reset child height, caused by `inline-block`
 */
.bdt-divider-small {
  line-height: 0;
}
.bdt-divider-small::after {
  content: "";
  display: inline-block;
  width: 100px;
  max-width: 100%;
  border-top: 1px solid #e5e5e5;
  vertical-align: top;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.bdt-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix
 */
.bdt-list > li::before,
.bdt-list > li::after {
  content: "";
  display: table;
}
.bdt-list > li::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.bdt-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
.bdt-list ul {
  margin: 0;
  padding-left: 30px;
  list-style: none;
}
/*
 * Style
 */
.bdt-list > li:nth-child(n+2),
.bdt-list > li > ul {
  margin-top: 10px;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.bdt-list-divider > li:nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}
/*
 * Striped
 */
.bdt-list-striped > li {
  padding: 10px 10px;
}
.bdt-list-striped > li:nth-of-type(odd) {
  background: #f8f8f8;
}
.bdt-list-striped > li:nth-child(n+2) {
  margin-top: 0;
}
/*
 * Bullet
 */
.bdt-list-bullet > li {
  position: relative;
  padding-left: calc(1.5em + 10px);
}
.bdt-list-bullet > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background-image: url("../../images/backgrounds/list-bullet.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  float: left;
}
/* Size modifier
 ========================================================================== */
.bdt-list-large > li:nth-child(n+2),
.bdt-list-large > li > ul {
  margin-top: 20px;
}
/*
 * Divider
 */
.bdt-list-large.bdt-list-divider > li:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}
/*
 * Striped
 */
.bdt-list-large.bdt-list-striped > li {
  padding: 20px 10px;
}
.bdt-list-large.bdt-list-striped > li: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 #e5e5e5;
}
/* ========================================================================
   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 #e5e5e5;
}
/*
 * 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
 * 1. Fix for uppercase attribute names in Edge. Will be fixed in Windows 10 builds 16251+
 */
.bdt-icon [fill*='#']:not(.bdt-preserve),
.bdt-icon [FILL*='#']:not(.bdt-preserve) {
  fill: currentcolor;
}
.bdt-icon [stroke*='#']:not(.bdt-preserve),
.bdt-icon [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
 */
.bdt-icon-image {
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.bdt-icon-link {
  color: #999;
}
.bdt-icon-link:hover,
.bdt-icon-link:focus {
  color: #666;
  outline: none;
}
/* 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 + Focus */
.bdt-icon-button:hover,
.bdt-icon-button:focus {
  background-color: #ebebeb;
  color: #666;
  outline: none;
}
/* OnClick + Active */
.bdt-icon-button:active,
.bdt-active > .bdt-icon-button {
  background-color: #dfdfdf;
  color: #666;
}
/* ========================================================================
   Component: Form Range
 ========================================================================== */
/*
 * 1. Normalize and defaults
 * 2. Prevent content overflow if a fixed width is used
 * 3. Take the full width
 * 4. Remove default style
 * 5. Remove white background in Chrome
 * 6. Remove padding in IE11
 */
.bdt-range {
  /* 1 */
  box-sizing: border-box;
  margin: 0;
  vertical-align: middle;
  /* 2 */
  max-width: 100%;
  /* 3 */
  width: 100%;
  /* 4 */
  -webkit-appearance: none;
  /* 5 */
  background: transparent;
  /* 6 */
  padding: 0;
}
/* Focus */
.bdt-range:focus {
  outline: none;
}
.bdt-range::-moz-focus-outer {
  border: none;
}
/* IE11 Reset */
.bdt-range::-ms-track {
  height: 15px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
/*
 * 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;
}
.bdt-range:not(:disabled)::-ms-thumb {
  cursor: pointer;
}
/* 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;
  border-radius: 500px;
  background: #666;
}
/* Edge */
.bdt-range::-ms-thumb {
  /* 1 */
  margin-top: 0;
}
/* IE11 */
.bdt-range::-ms-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #666;
}
/* Edge + IE11 */
.bdt-range::-ms-tooltip {
  display: none;
}
/* 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: #d2d2d2;
}
/* Firefox */
.bdt-range::-moz-range-track {
  height: 3px;
  background: #ebebeb;
}
.bdt-range:focus::-moz-range-track {
  background: #d2d2d2;
}
/* Edge */
.bdt-range::-ms-fill-lower,
.bdt-range::-ms-fill-upper {
  height: 3px;
  background: #ebebeb;
}
.bdt-range:focus::-ms-fill-lower,
.bdt-range:focus::-ms-fill-upper {
  background: #d2d2d2;
}
/* ========================================================================
   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: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}
/* Focus */
.bdt-input:focus,
.bdt-select:focus,
.bdt-textarea:focus {
  outline: none;
  background-color: #f8f8f8;
  color: #666;
}
/* Disabled */
.bdt-input:disabled,
.bdt-select:disabled,
.bdt-textarea:disabled {
  background-color: #f8f8f8;
  color: #999;
}
/*
 * Placeholder
 */
.bdt-input:-ms-input-placeholder {
  color: #999 !important;
}
.bdt-input::placeholder {
  color: #999;
}
.bdt-textarea:-ms-input-placeholder {
  color: #999 !important;
}
.bdt-textarea::placeholder {
  color: #999;
}
/* Style modifier (`bdt-input`, `bdt-select` and `bdt-textarea`)
 ========================================================================== */
/*
 * Small
 */
.bdt-form-small {
  font-size: 0.875rem;
}
.bdt-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
.bdt-form-small:not(select):not(input):not(textarea) {
  line-height: 30px;
}
/*
 * Large
 */
.bdt-form-large {
  font-size: 1.25rem;
}
.bdt-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 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. Remove default style in IE 10/11
 * 4. 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])::-ms-expand {
  display: none;
}
/* 4 */
.bdt-select:not([multiple]):not([size]) option {
  color: #444;
}
/*
 * 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");
}
/* Radio and checkbox
 * Note: Does not work in IE11
 ========================================================================== */
/*
 * 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 {
  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. 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. 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 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 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 {
  /* 8 */
  text-decoration: none;
}
/* Focus */
.bdt-button:focus {
  outline: none;
}
/* OnClick + Active */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-button-default {
  background-color: #f8f8f8;
  color: #333;
}
/* Hover + Focus */
.bdt-button-default:hover,
.bdt-button-default:focus {
  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 + Focus */
.bdt-button-primary:hover,
.bdt-button-primary:focus {
  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 + Focus */
.bdt-button-secondary:hover,
.bdt-button-secondary:focus {
  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 + Focus */
.bdt-button-danger:hover,
.bdt-button-danger:focus {
  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: #999;
}
/* Hover + Focus */
.bdt-button-text:hover,
.bdt-button-text:focus {
  color: #666;
}
/* 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: #1e87f0;
}
/* Hover + Focus */
.bdt-button-link:hover,
.bdt-button-link:focus {
  color: #0f6ecd;
  text-decoration: underline;
}
/* 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 {
  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;
  }
}
/*
 * Micro clearfix
 */
.bdt-section::before,
.bdt-section::after {
  content: "";
  display: table;
}
.bdt-section::after {
  clear: both;
}
/*
 * 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 {
  box-sizing: content-box;
  /* 1 */
  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;
  }
}
/*
 * Micro clearfix
 */
.bdt-container::before,
.bdt-container::after {
  content: "";
  display: table;
}
.bdt-container::after {
  clear: both;
}
/*
 * 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-small {
  max-width: 900px;
}
.bdt-container-large {
  max-width: 1600px;
}
.bdt-container-expand {
  max-width: none;
}
/* ========================================================================
   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 {
  margin-left: -15px;
}
.bdt-grid-small > * {
  padding-left: 15px;
}
/* Vertical */
.bdt-grid + .bdt-grid-small,
.bdt-grid-small > .bdt-grid-margin,
* + .bdt-grid-margin-small {
  margin-top: 15px;
}
/*
 * Medium
 */
/* Horizontal */
.bdt-grid-medium {
  margin-left: -30px;
}
.bdt-grid-medium > * {
  padding-left: 30px;
}
/* Vertical */
.bdt-grid + .bdt-grid-medium,
.bdt-grid-medium > .bdt-grid-margin,
* + .bdt-grid-margin-medium {
  margin-top: 30px;
}
/*
 * Large
 */
/* Horizontal */
.bdt-grid-large {
  margin-left: -40px;
}
.bdt-grid-large > * {
  padding-left: 40px;
}
/* Vertical */
.bdt-grid + .bdt-grid-large,
.bdt-grid-large > .bdt-grid-margin,
* + .bdt-grid-margin-large {
  margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .bdt-grid-large {
    margin-left: -70px;
  }
  .bdt-grid-large > * {
    padding-left: 70px;
  }
  /* Vertical */
  .bdt-grid + .bdt-grid-large,
  .bdt-grid-large > .bdt-grid-margin,
  * + .bdt-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.bdt-grid-collapse {
  margin-left: 0;
}
.bdt-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.bdt-grid + .bdt-grid-collapse,
.bdt-grid-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 #e5e5e5;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-stack > .bdt-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/*
 * 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 {
  margin-left: -30px;
}
.bdt-grid-divider.bdt-grid-small > * {
  padding-left: 30px;
}
.bdt-grid-divider.bdt-grid-small > :not(.bdt-first-column)::before {
  left: 15px;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-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;
}
/*
 * Medium
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-medium {
  margin-left: -60px;
}
.bdt-grid-divider.bdt-grid-medium > * {
  padding-left: 60px;
}
.bdt-grid-divider.bdt-grid-medium > :not(.bdt-first-column)::before {
  left: 30px;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-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;
}
/*
 * Large
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-large {
  margin-left: -80px;
}
.bdt-grid-divider.bdt-grid-large > * {
  padding-left: 80px;
}
.bdt-grid-divider.bdt-grid-large > :not(.bdt-first-column)::before {
  left: 40px;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-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;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .bdt-grid-divider.bdt-grid-large {
    margin-left: -140px;
  }
  .bdt-grid-divider.bdt-grid-large > * {
    padding-left: 140px;
  }
  .bdt-grid-divider.bdt-grid-large > :not(.bdt-first-column)::before {
    left: 70px;
  }
  /* Vertical */
  .bdt-grid-divider.bdt-grid-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;
  }
}
/* 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 {
  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;
  }
}
/*
 * Micro clearfix
 */
.bdt-tile::before,
.bdt-tile::after {
  content: "";
  display: table;
}
.bdt-tile::after {
  clear: both;
}
/*
 * 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: #fff;
}
/*
 * Muted
 */
.bdt-tile-muted {
  background: #f8f8f8;
}
/*
 * Primary
 */
.bdt-tile-primary {
  background: #1e87f0;
}
/*
 * Secondary
 */
.bdt-tile-secondary {
  background: #222;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.bdt-card {
  position: relative;
  box-sizing: border-box;
}
/* Sections
 ========================================================================== */
.bdt-card-body {
  padding: 30px 30px;
}
.bdt-card-header {
  padding: 15px 30px;
}
.bdt-card-footer {
  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;
  }
}
/*
 * Micro clearfix
 */
.bdt-card-body::before,
.bdt-card-body::after,
.bdt-card-header::before,
.bdt-card-header::after,
.bdt-card-footer::before,
.bdt-card-footer::after {
  content: "";
  display: table;
}
.bdt-card-body::after,
.bdt-card-header::after,
.bdt-card-footer::after {
  clear: both;
}
/*
 * 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
 ========================================================================== */
.bdt-card-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
/*
 * 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: #f8f8f8;
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.bdt-card-default {
  background: #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: #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: #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 + Focus */
.bdt-close:hover,
.bdt-close:focus {
  color: #666;
  outline: none;
}
/* ========================================================================
   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 + Focus */
.bdt-totop:hover,
.bdt-totop:focus {
  color: #666;
  outline: none;
}
/* OnClick */
.bdt-totop:active {
  color: #333;
}
/* ========================================================================
   Component: Marker
 ========================================================================== */
/*
 * Addopts `bdt-icon`
 */
.bdt-marker {
  padding: 5px;
  background: #222;
  color: #fff;
}
/* Hover + Focus */
.bdt-marker:hover,
.bdt-marker:focus {
  color: #fff;
  outline: none;
}
/* ========================================================================
   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 + Focus
 */
/* 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: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #1e87f0;
  color: #fff;
  font-size: 0.875rem;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/*
 * Required for `a`
 */
.bdt-badge:hover,
.bdt-badge:focus {
  color: #fff;
  text-decoration: none;
  outline: 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(255, 255, 255, 0.8);
}
/*
 * Primary
 */
.bdt-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}
/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix
 */
.bdt-article::before,
.bdt-article::after {
  content: "";
  display: table;
}
.bdt-article::after {
  clear: both;
}
/*
 * 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 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.bdt-comment-header {
  margin-bottom: 20px;
}
/*
 * Micro clearfix
 */
.bdt-comment-body::before,
.bdt-comment-body::after,
.bdt-comment-header::before,
.bdt-comment-header::after {
  content: "";
  display: table;
}
.bdt-comment-body::after,
.bdt-comment-header::after {
  clear: both;
}
/*
 * 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:-ms-input-placeholder {
  color: #999 !important;
}
.bdt-search-input::placeholder {
  color: #999;
}
/* Icon (Adopts `bdt-icon`)
 ========================================================================== */
/*
 * Remove default focus style
 */
.bdt-search-icon:focus {
  outline: none;
}
/*
 * 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: 180px;
}
/*
 * Input
 */
.bdt-search-default .bdt-search-input {
  height: 40px;
  padding-left: 6px;
  padding-right: 6px;
  background: #f8f8f8;
}
/* Focus */
.bdt-search-default .bdt-search-input:focus {
  background-color: #f8f8f8;
}
/*
 * 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;
}
/*
 * 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;
}
/*
 * 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 + Focus */
.bdt-search-toggle:hover,
.bdt-search-toggle:focus {
  color: #666;
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 * 1. Prepare lists
 * 2. Prepare links
 * 3. Remove default focus style
 */
/* 1 */
.bdt-nav,
.bdt-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* 2 */
.bdt-nav li > a {
  display: block;
  text-decoration: none;
}
/* 3 */
.bdt-nav li > a:focus {
  outline: 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;
  float: right;
  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-divider {
  margin: 5px 0;
}
/* Default modifier
 ========================================================================== */
/*
 * Items
 */
.bdt-nav-default > li > a {
  color: #999;
}
/* Hover + Focus */
.bdt-nav-default > li > a:hover,
.bdt-nav-default > li > a:focus {
  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 #e5e5e5;
}
/*
 * Sublists
 */
.bdt-nav-default .bdt-nav-sub a {
  color: #999;
}
.bdt-nav-default .bdt-nav-sub a:hover,
.bdt-nav-default .bdt-nav-sub a:focus {
  color: #666;
}
/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.bdt-nav-primary > li > a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #999;
}
/* Hover + Focus */
.bdt-nav-primary > li > a:hover,
.bdt-nav-primary > li > a:focus {
  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 #e5e5e5;
}
/*
 * Sublists
 */
.bdt-nav-primary .bdt-nav-sub a {
  color: #999;
}
.bdt-nav-primary .bdt-nav-sub a:hover,
.bdt-nav-primary .bdt-nav-sub a:focus {
  color: #666;
}
/* Alignment modifier
 ========================================================================== */
.bdt-nav-center {
  text-align: 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 {
  position: absolute;
}
/* ========================================================================
   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;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution (if Container component is used)
 */
.bdt-navbar-container > ::before,
.bdt-navbar-container > ::after {
  display: none !important;
}
/* 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. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 3. Fix text wrapping if the centered section is larger than 50% of the navbar
 * 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 */
  z-index: 990;
}
/* 3 */
.bdt-navbar-center:not(:only-child) .bdt-navbar-nav > li > a,
.bdt-navbar-center:not(:only-child) .bdt-navbar-item,
.bdt-navbar-center:not(:only-child) .bdt-navbar-toggle {
  white-space: nowrap;
}
/* 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-'] .bdt-navbar-nav > li > a,
[class*='bdt-navbar-center-'] .bdt-navbar-item,
[class*='bdt-navbar-center-'] .bdt-navbar-toggle {
  white-space: nowrap;
}
/* 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. Dimensions
 * 3. Style
 * 4. Required for `a`
 */
.bdt-navbar-nav > li > a,
.bdt-navbar-item,
.bdt-navbar-toggle {
  /* 1 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 2 */
  box-sizing: border-box;
  height: 80px;
  padding: 0 15px;
  /* 3 */
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* 4 */
  text-decoration: none;
}
/*
 * Nav items
 */
.bdt-navbar-nav > li > a {
  color: #999;
}
/*
 * Hover
 * Apply hover style also to focus state and if dropdown is opened
 */
.bdt-navbar-nav > li:hover > a,
.bdt-navbar-nav > li > a:focus,
.bdt-navbar-nav > li > a.bdt-open {
  color: #666;
  outline: none;
}
/* 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;
}
/* Toggle
 ========================================================================== */
.bdt-navbar-toggle {
  color: #999;
}
.bdt-navbar-toggle:hover,
.bdt-navbar-toggle:focus,
.bdt-navbar-toggle.bdt-open {
  color: #666;
  outline: none;
  text-decoration: none;
}
/*
 * Icon
 * Adopts `bdt-icon`
 */
/* Hover + Focus */
/* 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 + Focus */
.bdt-navbar-dropdown-nav > li > a:hover,
.bdt-navbar-dropdown-nav > li > a:focus {
  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 #e5e5e5;
}
/*
 * Sublists
 */
.bdt-navbar-dropdown-nav .bdt-nav-sub a {
  color: #999;
}
.bdt-navbar-dropdown-nav .bdt-nav-sub a:hover,
.bdt-navbar-dropdown-nav .bdt-nav-sub a:focus {
  color: #666;
}
/* 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. Gutter
 * 3. Reset list
 */
.bdt-subnav {
  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-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. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.bdt-subnav > * > :first-child {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}
/* Hover + Focus */
.bdt-subnav > * > a:hover,
.bdt-subnav > * > a:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}
/* Active */
.bdt-subnav > .bdt-active > a {
  color: #333;
}
/* Divider modifier
 ========================================================================== */
/*
 * 1. Align items and divider vertically
 */
.bdt-subnav-divider > * {
  /* 1 */
  display: flex;
  align-items: center;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.bdt-subnav-divider > :nth-child(n+2):not(.bdt-first-column)::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid #e5e5e5;
}
/* Pill modifier
 ========================================================================== */
.bdt-subnav-pill > * > :first-child {
  padding: 5px 10px;
  background: transparent;
  color: #999;
}
/* Hover + Focus */
.bdt-subnav-pill > * > a:hover,
.bdt-subnav-pill > * > a:focus {
  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
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 */
.bdt-breadcrumb {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * Space is allocated solely based on content dimensions: 0 0 auto
 */
.bdt-breadcrumb > * {
  flex: none;
}
/* Items
 ========================================================================== */
.bdt-breadcrumb > * > * {
  display: inline-block;
  font-size: 0.875rem;
  color: #999;
}
/* Hover + Focus */
.bdt-breadcrumb > * > :hover,
.bdt-breadcrumb > * > :focus {
  color: #666;
  text-decoration: none;
}
/* Disabled */
/* Active */
.bdt-breadcrumb > :last-child > * {
  color: #666;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.bdt-breadcrumb > :nth-child(n+2):not(.bdt-first-column)::before {
  content: "/";
  display: inline-block;
  margin: 0 20px;
  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: -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-pagination > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 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 */
  color: #999;
}
/* Hover + Focus */
.bdt-pagination > * > :hover,
.bdt-pagination > * > :focus {
  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 text if a width is set
 * 2. Style
 */
.bdt-tab > * > a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 10px 15px;
  color: #999;
}
/* Hover + Focus */
.bdt-tab > * > a:hover,
.bdt-tab > * > a:focus {
  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 {
  text-align: left;
}
.bdt-tab-right > * > a {
  text-align: left;
}
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `bdt-icon`
 */
.bdt-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
}
/* Hover + Focus */
.bdt-slidenav:hover,
.bdt-slidenav:focus {
  color: rgba(102, 102, 102, 0.9);
  outline: none;
}
/* 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 + Focus */
.bdt-dotnav > * > :hover,
.bdt-dotnav > * > :focus {
  background-color: rgba(102, 102, 102, 0.6);
  outline: none;
}
/* 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 + Focus */
.bdt-thumbnav > * > :hover,
.bdt-thumbnav > * > :focus {
  outline: none;
}
/* 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 + Focus */
.bdt-accordion-title:hover,
.bdt-accordion-title:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}
/* Content
 ========================================================================== */
.bdt-accordion-content {
  margin-top: 20px;
}
/*
 * Micro clearfix
 */
.bdt-accordion-content::before,
.bdt-accordion-content::after {
  content: "";
  display: table;
}
.bdt-accordion-content::after {
  clear: both;
}
/*
 * 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 + Focus + Active */
.bdt-dropdown-nav > li > a:hover,
.bdt-dropdown-nav > li > a:focus,
.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 #e5e5e5;
}
/*
 * Sublists
 */
.bdt-dropdown-nav .bdt-nav-sub a {
  color: #999;
}
.bdt-dropdown-nav .bdt-nav-sub a:hover,
.bdt-dropdown-nav .bdt-nav-sub a:focus {
  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. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
 *    `!important` 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: calc(100% - 0.01px) !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 {
  padding: 30px 30px;
}
.bdt-modal-header {
  padding: 15px 30px;
  background: #f8f8f8;
}
.bdt-modal-footer {
  padding: 15px 30px;
  background: #f8f8f8;
}
/*
 * Micro clearfix
 */
.bdt-modal-body::before,
.bdt-modal-body::after,
.bdt-modal-header::before,
.bdt-modal-header::after,
.bdt-modal-footer::before,
.bdt-modal-footer::after {
  content: "";
  display: table;
}
.bdt-modal-body::after,
.bdt-modal-header::after,
.bdt-modal-footer::after {
  clear: both;
}
/*
 * 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
 */
.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;
}
/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.bdt-lightbox.bdt-open {
  display: block;
  /* 2 */
  opacity: 1;
}
/* 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
 *    Using `vh` and `vw` to make responsive image work in IE11
 */
.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;
}
/* Caption
 ========================================================================== */
/* 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.
 */
.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;
}
/* Item
 ========================================================================== */
/*
 * 1. Position items above each other
 * 2. Take the full width
 * 3. Clip child elements, e.g. for `bdt-cover`
 * 4. Optimize animation
 * 5. Disable horizontal panning gestures in IE11 and Edge
 */
.bdt-slideshow-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
  /* 5 */
  touch-action: pan-y;
}
/*
 * 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
 ========================================================================== */
/*
 * 1. Clip child elements
 */
.bdt-slider-container {
  /* 1 */
  overflow: hidden;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.bdt-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
}
/*
 * 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)
 * 2. Create position context
 * 3. Disable horizontal panning gestures in IE11 and Edge
 */
.bdt-slider-items > * {
  /* 1 */
  flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
 */
.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
 * 4. Transform
 */
.bdt-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  transform: translateX(-100%);
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-offcanvas-bar {
    width: 350px;
    padding: 40px 40px;
  }
}
/* Flip modifier */
.bdt-offcanvas-flip .bdt-offcanvas-bar {
  left: auto;
  right: 0;
  transform: translateX(100%);
}
/*
 * Open
 */
.bdt-open > .bdt-offcanvas-bar {
  transform: translateX(0);
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.bdt-offcanvas-bar-animation {
  transition: transform 0.3s ease-out;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset transform
 */
.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 */
  transform: translateX(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;
}
/* Container
 ========================================================================== */
/*
 * 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;
}
/*
 * Prevent all scrollbars if overlay is used
 */
.bdt-offcanvas-container-overlay {
  overflow: hidden;
}
/* Content
 ========================================================================== */
/*
 * 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
 * Note: JS sets a fixed width and height so the page can slide-out without shrinking
 * 1. Smooth scrolling
 */
.bdt-offcanvas-container .bdt-offcanvas-content {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  -webkit-overflow-scrolling: touch;
}
/* Disable scrolling if overlay mode */
.bdt-offcanvas-overlay .bdt-offcanvas-content {
  overflow-y: hidden;
}
/*
 * Activate slide-out animation
 */
:not(.bdt-offcanvas-flip) > .bdt-offcanvas-content-animation {
  left: 270px;
}
.bdt-offcanvas-flip > .bdt-offcanvas-content-animation {
  left: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.bdt-offcanvas-flip) > .bdt-offcanvas-content-animation {
    left: 350px;
  }
  .bdt-offcanvas-flip > .bdt-offcanvas-content-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 */
.var-leader-fill::before {
  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;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.bdt-iconnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 10px;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.bdt-iconnav > * > a {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}
/* Hover + Focus */
.bdt-iconnav > * > a:hover,
.bdt-iconnav > * > a:focus {
  color: #666;
  outline: none;
}
/* 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;
  margin-bottom: 10px;
  padding: 15px;
  background: #f8f8f8;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
}
/* 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. Dimensions
 * 4. Style
 */
.bdt-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 4 */
  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 Chrome, Firefox, and Opera.
 * 2. Remove default style
 * 3. Behave like a block element
 * 4. Remove borders in Firefox and Edge
 * 5. Set background color for progress container in Firefox, IE11 and Edge
 * 6. Style
 */
.bdt-progress {
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 3 */
  display: block;
  width: 100%;
  /* 4 */
  border: 0;
  /* 5 */
  background-color: #f8f8f8;
  /* 6 */
  margin-bottom: 20px;
  height: 15px;
}
/* Add margin if adjacent element */
* + .bdt-progress {
  margin-top: 20px;
}
/*
 * Remove animated circles for indeterminate state in IE11 and Edge
 */
.bdt-progress:indeterminate {
  color: transparent;
}
/*
 * Progress container
 * 2. Remove progress bar for indeterminate state in Firefox
 */
.bdt-progress::-webkit-progress-bar {
  background-color: #f8f8f8;
}
/* 2 */
.bdt-progress:indeterminate::-moz-progress-bar {
  width: 0;
}
/*
 * Progress bar
 * 1. Remove right border in IE11 and Edge
 */
.bdt-progress::-webkit-progress-value {
  background-color: #1e87f0;
  transition: width 0.6s ease;
}
.bdt-progress::-moz-progress-bar {
  background-color: #1e87f0;
}
.bdt-progress::-ms-fill {
  background-color: #1e87f0;
  transition: width 0.6s ease;
  /* 1 */
  border: 0;
}
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.bdt-sortable {
  position: relative;
}
/*
 * Deactivate browser touch actions in IE11 and Edge
 */
.bdt-sortable > * {
  touch-action: none;
}
/*
 * Deactivate pointer-events on SVGs in Safari
 */
.bdt-sortable svg {
  pointer-events: none;
}
/*
 * Remove margin from the last-child
 */
.bdt-sortable > :last-child {
  margin-bottom: 0;
}
/* Drag
 ========================================================================== */
.bdt-sortable-drag {
  position: absolute !important;
  z-index: 1050 !important;
  pointer-events: none;
}
/* Placeholder
 ========================================================================== */
.bdt-sortable-placeholder {
  opacity: 0;
}
/* Empty modifier
 ========================================================================== */
.bdt-sortable-empty {
  min-height: 50px;
}
/* Handle
 ========================================================================== */
/* Hover */
.bdt-sortable-handle:hover {
  cursor: move;
}
/* ========================================================================
   Component: Countdown
 ========================================================================== */
/* Item
 ========================================================================== */
/*
 * 1. Center numbers and separators vertically
 */
.bdt-countdown-number,
.bdt-countdown-separator {
  /* 1 */
  line-height: 70px;
}
/* Number
 ========================================================================== */
.bdt-countdown-number {
  font-size: 2rem;
}
/* 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;
}
/* 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-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
/* Direction modifier
 ========================================================================== */
.bdt-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}
/* Animations for scrollspy
 ========================================================================== */
/*
 * 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-scale-02;
}
.bdt-animation-scale-down {
  animation-name: bdt-fade-scale-18;
}
/*
 * Slide
 */
.bdt-animation-slide-top {
  animation-name: bdt-fade-top;
}
.bdt-animation-slide-bottom {
  animation-name: bdt-fade-bottom;
}
.bdt-animation-slide-left {
  animation-name: bdt-fade-left;
}
.bdt-animation-slide-right {
  animation-name: bdt-fade-right;
}
/*
 * Slide Small
 */
.bdt-animation-slide-top-small {
  animation-name: bdt-fade-top-small;
}
.bdt-animation-slide-bottom-small {
  animation-name: bdt-fade-bottom-small;
}
.bdt-animation-slide-left-small {
  animation-name: bdt-fade-left-small;
}
.bdt-animation-slide-right-small {
  animation-name: bdt-fade-right-small;
}
/*
 * Slide Medium
 */
.bdt-animation-slide-top-medium {
  animation-name: bdt-fade-top-medium;
}
.bdt-animation-slide-bottom-medium {
  animation-name: bdt-fade-bottom-medium;
}
.bdt-animation-slide-left-medium {
  animation-name: bdt-fade-left-medium;
}
.bdt-animation-slide-right-medium {
  animation-name: bdt-fade-right-medium;
}
/*
 * Kenburns
 */
.bdt-animation-kenburns {
  animation-name: bdt-scale-kenburns;
  animation-duration: 15s;
}
/*
 * Shake
 */
.bdt-animation-shake {
  animation-name: bdt-shake;
}
/* Duration modifier
 ========================================================================== */
.bdt-animation-fast {
  animation-duration: 0.1s;
}
/* Enable animation only on hover
========================================================================== */
/*
 * Note: Firefox and IE needs this because animations are not triggered when switching between display `none` and `block`
 */
.bdt-animation-toggle:not(:hover):not(.bdt-hover) [class*='bdt-animation-'] {
  animation-name: none;
}
/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes bdt-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Slide Top
 */
@keyframes bdt-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Bottom
 */
@keyframes bdt-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Left
 */
@keyframes bdt-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Right
 */
@keyframes bdt-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Top Small
 */
@keyframes bdt-fade-top-small {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Bottom Small
 */
@keyframes bdt-fade-bottom-small {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Left Small
 */
@keyframes bdt-fade-left-small {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Right Small
 */
@keyframes bdt-fade-right-small {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Top Medium
 */
@keyframes bdt-fade-top-medium {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Bottom Medium
 */
@keyframes bdt-fade-bottom-medium {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Left Medium
 */
@keyframes bdt-fade-left-medium {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Right Medium
 */
@keyframes bdt-fade-right-medium {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Scale Up
 */
@keyframes bdt-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale Down
 */
@keyframes bdt-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Kenburns
 */
@keyframes bdt-scale-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);
  }
}
/* ========================================================================
   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;
}
/*
 *    Instead of 0, 1px is needed to make cell wrap into next row if predecessor is 100% wide
 *    and the grid gutter is 0 pixels wide
 */
.bdt-child-width-expand > * {
  width: 1px;
}
/*
 * 1. Make `width: 1px` work, because according to the spec flex items won’t shrink
 *    below their minimum content size. To change this, set the min-width.
 *    Only needed for Firefox. All other browsers ignore this.
 *
 * 2. `width` is ignored when wrapping flex items in Safari
 *    https://github.com/philipwalton/flexbugs#11-min-and-max-size-declarations-are-ignored-when-wrapping-flex-items
 */
.bdt-child-width-expand > :not([class*='bdt-width']) {
  flex: 1;
  /* 1 */
  min-width: 0;
  /* 2 */
  flex-basis: 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 > * {
    width: 1px;
  }
  .bdt-child-width-expand\@s > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 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 > * {
    width: 1px;
  }
  .bdt-child-width-expand\@m > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 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 > * {
    width: 1px;
  }
  .bdt-child-width-expand\@l > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 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 > * {
    width: 1px;
  }
  .bdt-child-width-expand\@xl > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 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-xxlarge {
  width: 750px;
}
/* Auto */
.bdt-width-auto {
  width: auto;
}
/* Expand */
.bdt-width-expand {
  width: 1px;
  flex: 1;
  min-width: 0;
  flex-basis: 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-xxlarge\@s {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@s {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 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-xxlarge\@m {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@m {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 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-xxlarge\@l {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@l {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 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-xxlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@xl {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* ========================================================================
   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;
}
/*
 * 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;
}
/* Weight modifier
 ========================================================================== */
.bdt-text-bold {
  font-weight: bolder;
}
/* Transform modifier
 ========================================================================== */
.bdt-text-uppercase {
  text-transform: uppercase !important;
}
.bdt-text-capitalize {
  text-transform: capitalize !important;
}
.bdt-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
 ========================================================================== */
.bdt-text-muted {
  color: #999 !important;
}
.bdt-text-primary {
  color: #1e87f0 !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 Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.bdt-text-background {
  /* 1 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: #1e87f0 !important;
}
@supports (-webkit-background-clip: text) {
  .bdt-text-background {
    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;
}
/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
 */
.bdt-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}
/* 3 */
th.bdt-text-break,
td.bdt-text-break {
  word-break: break-all;
}
/* ========================================================================
   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 #e5e5e5;
  /* 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. Reset responsiveness for embedded content
 * 2. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
.bdt-cover {
  /* 1 */
  max-width: none;
  /* 2 */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
iframe.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 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.bdt-background-cover {
  background-size: cover;
}
.bdt-background-contain {
  background-size: contain;
}
/* 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
 * 3. Fix for uppercase attribute names in Edge. Will be fixed in Windows 10 builds 16251+
 */
/* 1 */
.bdt-svg,
.bdt-svg:not(.bdt-preserve) [fill*='#']:not(.bdt-preserve),
.bdt-svg:not(.bdt-preserve) [FILL*='#']:not(.bdt-preserve) {
  fill: currentcolor;
}
.bdt-svg:not(.bdt-preserve) [stroke*='#']:not(.bdt-preserve),
.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 {
  position: relative;
  box-sizing: border-box;
}
/*
 * Micro clearfix
 */
.bdt-panel::before,
.bdt-panel::after {
  content: "";
  display: table;
}
.bdt-panel::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.bdt-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.bdt-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  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 hardware acceleration 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 audio,
.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;
}
/* Border
 ========================================================================== */
.bdt-border-circle {
  border-radius: 50%;
}
.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. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) {
  .bdt-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .bdt-box-shadow-bottom::before {
    content: '';
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
  }
  /* 3 */
  .bdt-box-shadow-bottom > * {
    position: relative;
  }
}
/* 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
 * 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
 *    This doubles the `font-size` exponential when using the `em` unit.
 */
.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%;
  }
}
/* 3 */
@supports (-ms-ime-align: auto) {
  .bdt-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.bdt-logo {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #666;
  /* 1 */
  text-decoration: none;
}
/* Hover + Focus */
.bdt-logo:hover,
.bdt-logo:focus {
  color: #666;
  outline: none;
  /* 1 */
  text-decoration: none;
}
.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;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.bdt-flex::before,
.bdt-flex::after,
.bdt-flex-inline::before,
.bdt-flex-inline::after {
  display: none;
}
/* 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;
  }
}
/* 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 + * {
  margin-top: 0 !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;
}
/* ========================================================================
   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: 30px;
}
/* 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
 ========================================================================== */
/* Directions
 ========================================================================== */
[class*='bdt-position-top'],
[class*='bdt-position-bottom'],
[class*='bdt-position-left'],
[class*='bdt-position-right'],
[class*='bdt-position-center'] {
  position: absolute !important;
}
/* Edges
 ========================================================================== */
/* Don't use `width: 100%` because it is 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 (Not working in Firefox)
 * 2. Fix text wrapping for Firefox
 */
.bdt-position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 1 */
  display: table;
  /* 2 */
  width: -moz-max-content;
  max-width: 100%;
  box-sizing: border-box;
}
/* Vertical */
[class*='bdt-position-center-left'],
[class*='bdt-position-center-right'] {
  top: 50%;
  transform: translateY(-50%);
}
.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: 50%;
  transform: translateX(-50%);
  /* 1 */
  display: table;
  /* 2 */
  width: -moz-max-content;
  max-width: 100%;
  box-sizing: border-box;
}
.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;
}
/* Utility
 ========================================================================== */
.bdt-position-relative {
  position: relative !important;
}
.bdt-position-absolute {
  position: absolute !important;
}
.bdt-position-fixed {
  position: fixed !important;
}
.bdt-position-z-index {
  z-index: 1;
}
/* Margin modifier
 ========================================================================== */
/*
 * Small
 */
.bdt-position-small {
  margin: 15px;
}
.bdt-position-small.bdt-position-center {
  transform: translate(-50%, -50%) translate(-15px, -15px);
}
.bdt-position-small[class*='bdt-position-center-left'],
.bdt-position-small[class*='bdt-position-center-right'] {
  transform: translateY(-50%) translateY(-15px);
}
.bdt-position-small.bdt-position-top-center,
.bdt-position-small.bdt-position-bottom-center {
  transform: translateX(-50%) translateX(-15px);
}
/*
 * Medium
 */
.bdt-position-medium {
  margin: 30px;
}
.bdt-position-medium.bdt-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.bdt-position-medium[class*='bdt-position-center-left'],
.bdt-position-medium[class*='bdt-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}
.bdt-position-medium.bdt-position-top-center,
.bdt-position-medium.bdt-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/*
 * Large
 */
.bdt-position-large {
  margin: 30px;
}
.bdt-position-large.bdt-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.bdt-position-large[class*='bdt-position-center-left'],
.bdt-position-large[class*='bdt-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}
.bdt-position-large.bdt-position-top-center,
.bdt-position-large.bdt-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-position-large {
    margin: 50px;
  }
  .bdt-position-large.bdt-position-center {
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }
  .bdt-position-large[class*='bdt-position-center-left'],
  .bdt-position-large[class*='bdt-position-center-right'] {
    transform: translateY(-50%) translateY(-50px);
  }
  .bdt-position-large.bdt-position-top-center,
  .bdt-position-large.bdt-position-bottom-center {
    transform: translateX(-50%) translateX(-50px);
  }
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/*
 * Using multiple selectors to exclude `bdt-transition-toggle`
 * Note: Transitions don't work with `bdt-postion-center-*` classes because they also use `transform`
 *       Just put the transition in an extra `div`
 */
.bdt-transition-fade,
[class*='bdt-transition-scale'],
[class*='bdt-transition-slide'] {
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
}
.bdt-transition-toggle:focus {
  outline: none;
}
/*
 * Fade
 */
.bdt-transition-fade {
  opacity: 0;
}
/* Show */
.bdt-transition-toggle:hover [class*='bdt-transition-fade'],
.bdt-transition-toggle.bdt-hover [class*='bdt-transition-fade'],
.bdt-transition-toggle:focus [class*='bdt-transition-fade'],
.bdt-transition-active.bdt-active [class*='bdt-transition-fade'] {
  opacity: 1;
}
/*
 * Scale
 * Note: Using `scale3d` for better image rendering
 */
[class*='bdt-transition-scale'] {
  opacity: 0;
}
.bdt-transition-scale-up {
  transform: scale3d(1, 1, 1);
}
.bdt-transition-scale-down {
  transform: scale3d(1.1, 1.1, 1);
}
/* Show */
.bdt-transition-toggle:hover .bdt-transition-scale-up,
.bdt-transition-toggle.bdt-hover .bdt-transition-scale-up,
.bdt-transition-toggle:focus .bdt-transition-scale-up,
.bdt-transition-active.bdt-active .bdt-transition-scale-up {
  opacity: 1;
  transform: scale3d(1.1, 1.1, 1);
}
.bdt-transition-toggle:hover .bdt-transition-scale-down,
.bdt-transition-toggle.bdt-hover .bdt-transition-scale-down,
.bdt-transition-toggle:focus .bdt-transition-scale-down,
.bdt-transition-active.bdt-active .bdt-transition-scale-down {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
/*
 * Slide
 */
[class*='bdt-transition-slide'] {
  opacity: 0;
}
.bdt-transition-slide-top {
  transform: translateY(-100%);
}
.bdt-transition-slide-bottom {
  transform: translateY(100%);
}
.bdt-transition-slide-left {
  transform: translateX(-100%);
}
.bdt-transition-slide-right {
  transform: translateX(100%);
}
.bdt-transition-slide-top-small {
  transform: translateY(-10px);
}
.bdt-transition-slide-bottom-small {
  transform: translateY(10px);
}
.bdt-transition-slide-left-small {
  transform: translateX(-10px);
}
.bdt-transition-slide-right-small {
  transform: translateX(10px);
}
.bdt-transition-slide-top-medium {
  transform: translateY(-50px);
}
.bdt-transition-slide-bottom-medium {
  transform: translateY(50px);
}
.bdt-transition-slide-left-medium {
  transform: translateX(-50px);
}
.bdt-transition-slide-right-medium {
  transform: translateX(50px);
}
/* Show */
.bdt-transition-toggle:hover [class*='bdt-transition-slide'],
.bdt-transition-toggle.bdt-hover [class*='bdt-transition-slide'],
.bdt-transition-toggle:focus [class*='bdt-transition-slide'],
.bdt-transition-active.bdt-active [class*='bdt-transition-slide'] {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
/* 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;
}
/* Hover
 ========================================================================== */
/*
 * Hidden
 * Can't use `display: hidden` because it's not focusable. This is accessible through keyboard.
 */
.bdt-visible-toggle:not(:hover):not(.bdt-hover) .bdt-hidden-hover:not(:focus) {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
/*
 * Invisible
 * Can't use `visibility: hidden` because it's not focusable. This is accessible through keyboard.
 */
.bdt-visible-toggle:not(:hover):not(.bdt-hover) .bdt-invisible-hover:not(:focus) {
  opacity: 0 !important;
}
/* Touch
 ========================================================================== */
/*
 * Hide if primary pointing device has limited accuracy, e.g. a touch screen.
 * Works on mobile browsers: Safari, Chrome and Android browser
 */
@media (pointer: coarse) {
  .bdt-hidden-touch {
    display: none !important;
  }
}
/*
 * Hide if primary pointing device is accurate, e.g. mouse.
 * 1. Fallback for IE11 and Firefox, because `pointer` is not supported
 * 2. Reset if supported
 */
/* 1 */
.bdt-hidden-notouch {
  display: none !important;
}
@media (pointer: coarse) {
  .bdt-hidden-notouch {
    display: block !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;
  }
}
.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;
}
.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-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-particles canvas {
  display: block;
  vertical-align: bottom;
}
.bdt-particles .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;
  }
}
.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-dots-container .swiper-pagination,
.bdt-arrows-dots-container .swiper-pagination {
  position: relative;
}
.bdt-dots-container .swiper-pagination .swiper-pagination-bullet,
.bdt-arrows-dots-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.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: 5px;
}
.bdt-dots-container .swiper-pagination.swiper-pagination-fraction,
.bdt-arrows-dots-container .swiper-pagination.swiper-pagination-fraction {
  bottom: auto;
}
[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%);
}
.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%;
}
.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;
}
.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;
}
@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;
  }
}
.bdt-accordion-container .bdt-accordion {
  text-align: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-title {
  display: block;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  padding: 15px 20px;
  background: #f3f3f3;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-title .bdt-accordion-icon {
  display: inline-block;
  width: 1.5em;
  font-weight: 400;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-title .bdt-accordion-icon.bdt-accordion-icon-right {
  float: right;
  text-align: right;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-title .bdt-accordion-icon.bdt-accordion-icon-left {
  float: left;
  text-align: left;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-item .bdt-accordion-icon-closed {
  display: block;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-item .bdt-accordion-icon-opened {
  display: none;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-item.bdt-open .bdt-accordion-icon-closed {
  display: none;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-item.bdt-open .bdt-accordion-icon-opened {
  display: block;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-content {
  padding: 15px 20px;
  margin-top: 0;
}
.bdt-accordion-container .bdt-accordion .bdt-accordion-content > * {
  margin: 0;
}
@media (max-width: 767px) {
  .bdt-accordion-container .bdt-accordion .bdt-accordion-title {
    padding: 12px 15px;
  }
  .bdt-accordion-container .bdt-accordion .bdt-accordion-title .bdt-accordion-icon {
    width: 1.2em;
  }
  .bdt-accordion-container .bdt-accordion .bdt-accordion-content {
    padding: 7px 15px;
  }
}
.bdt-business-hours .bdt-business-hours-inner .heading-time {
  text-align: right;
}
.bdt-callout.bdt-callout-button-align-left .bdt-width-auto\@m {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}
.bdt-callout.bdt-callout-button-align-center {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.bdt-callout.bdt-callout-button-align-center .bdt-width-expand {
  width: auto;
  text-align: center;
  padding-left: 0;
}
.bdt-callout.bdt-callout-button-align-center .bdt-width-auto\@m {
  padding-left: 0;
  margin-top: 20px;
  text-align: center;
}
.bdt-callout .bdt-callout-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0;
}
.bdt-callout .bdt-callout-description {
  margin-top: 10px;
}
.bdt-callout .bdt-callout-button {
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px 43px;
  font-size: 16px;
  background-color: #61ce70;
}
@media (max-width: 768px) {
  .bdt-callout.bdt-callout-button-align-right .bdt-width-auto\@m {
    margin-top: 20px;
  }
}
.bdt-heading a {
  color: inherit;
}
.bdt-heading a:hover {
  color: inherit;
}
.bdt-heading .bdt-pre-heading,
.bdt-heading .bdt-animated-heading,
.bdt-heading .bdt-post-heading {
  display: inline-block;
}
.bdt-heading span {
  display: inline-block;
}
.bdt-heading .typed-cursor {
  opacity: 1;
  font-weight: 100;
  -webkit-animation: typed-blink 0.7s infinite;
  -moz-animation: typed-blink 0.7s infinite;
  -ms-animation: typed-blink 0.7s infinite;
  -o-animation: typed-blink 0.7s infinite;
  animation: typed-blink 0.7s infinite;
}
@keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bdt-advanced-heading .bdt-heading-tag {
  margin: 0;
  padding: 0;
}
.bdt-advanced-heading a {
  color: inherit;
}
.bdt-advanced-heading a:hover {
  color: inherit;
}
.bdt-advanced-heading .bdt-sub-heading,
.bdt-advanced-heading .bdt-main-heading {
  z-index: 1;
  position: relative;
}
.bdt-advanced-heading .bdt-sub-heading {
  display: inline-block;
  line-height: 1;
}
.bdt-advanced-heading .bdt-sub-heading-content,
.bdt-advanced-heading .bdt-main-heading {
  display: inline-block;
  vertical-align: middle;
}
.bdt-advanced-heading .bdt-sub-heading .line:after,
.bdt-advanced-heading .bdt-main-heading .line:after {
  content: "";
  background-color: #1e87f0;
  height: 2px;
  width: 40px;
  display: inline-block;
  vertical-align: middle;
}
.bdt-advanced-heading .bdt-sub-heading .line.bdt-button-icon-align-bottom,
.bdt-advanced-heading .bdt-main-heading .line.bdt-button-icon-align-bottom {
  line-height: 0;
}
.bdt-advanced-heading .bdt-advanced-heading-content {
  color: rgba(156, 156, 156, 0.12);
  z-index: 0;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  bottom: 0;
  width: 100%;
  transition: all 0.3s ease-out;
  position: absolute;
}
.bdt-advanced-heading .bdt-advanced-heading-content > div {
  display: inline-block;
}
.bdt-ep-main-color-yes .bdt-advanced-heading .bdt-main-heading {
  background-color: transparent;
  background-image: linear-gradient(240deg, #0E83CD 0, #8062d4 100%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bdt-ep-advanced-color-yes .bdt-advanced-heading .bdt-advanced-heading-content > div {
  background-color: transparent;
  background-image: linear-gradient(240deg, #0E83CD 0, #8062d4 100%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bdt-advanced-image-gallery {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}
.bdt-advanced-image-gallery .bdt-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}
.bdt-advanced-image-gallery .bdt-gallery-item {
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin: 0;
  text-align: center;
  overflow: hidden;
}
.bdt-advanced-image-gallery .bdt-gallery-item .bdt-advanced-image-gallery-inner {
  position: relative;
}
.bdt-advanced-image-gallery .bdt-gallery-item .bdt-gallery-item-caption {
  margin: 0;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.bdt-advanced-image-gallery .bdt-gallery-item .bdt-gallery-thumbnail {
  overflow: hidden;
}
.bdt-advanced-image-gallery .bdt-gallery-item .bdt-gallery-thumbnail img {
  width: 100%;
  object-fit: cover;
  vertical-align: top;
}
.bdt-advanced-image-gallery .bdt-gallery-item-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.bdt-advanced-image-gallery .bdt-gallery-item-link:hover {
  background-color: transparent;
}
.bdt-advanced-image-gallery .bdt-gallery-item-link:hover span {
  color: rgba(0, 0, 0, 0.5);
}
.bdt-advanced-image-gallery .bdt-gallery-item-link.icon-type-icon .bdt-icon {
  transition: transform 0.3s cubic-bezier(0, 0.36, 0.38, 1.01);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0.36, 0.38, 1.01);
}
.bdt-advanced-image-gallery .bdt-gallery-item-link.icon-type-icon:hover .bdt-icon {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.bdt-advanced-image-gallery .bdt-gallery-item-link.icon-type-text {
  border: 2px solid #444;
}
.bdt-advanced-image-gallery .bdt-gallery-item-link span.bdt-text {
  padding: 0 15px;
  color: #444;
  font-size: 12px;
  font-weight: 700;
}
.bdt-advanced-image-gallery .bdt-advanced-image-gallery-inner {
  position: relative;
  overflow: hidden;
}
.bdt-hidden-gallery-button {
  transition: all 0.5s;
  display: inline-block;
}
@media (max-width: 767px) {
  .elementor-widget-bdt-advanced-image-gallery .elementor-widget-container {
    overflow: hidden;
  }
}
body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people {
  height: auto;
  padding-top: 26px;
}
body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-time {
  height: auto;
}
body .booked-calendar-wrap .booked-appt-list .timeslot .spots-available {
  padding-bottom: 13px;
}
body .booked-list-view.small .booked-list-view-nav .booked-list-view-date-next {
  margin: 0 1px 5px;
  left: 0;
  right: auto;
}
body .booked-list-view.small .booked-list-view-nav .booked-list-view-date-prev {
  margin: 0 1px 5px;
  right: 0;
  left: auto;
}
.bdt-carousel .bdt-carousel-item .bdt-carousel-title a {
  color: #213640;
}
.bdt-carousel .bdt-carousel-item .bdt-carousel-title a:hover {
  color: #222;
}
.bdt-carousel .bdt-carousel-item .bdt-carousel-thumbnail {
  position: relative;
  overflow: hidden;
}
.bdt-carousel .bdt-carousel-item .bdt-carousel-thumbnail img {
  display: block;
  width: 100%;
  max-height: none;
  max-width: none;
}
.bdt-carousel .bdt-carousel-item .bdt-carousel-meta li.bdt-margin-small-top {
  margin-top: 5px !important;
}
.bdt-carousel .bdt-carousel-item .bdt-carousel-meta li > * > * {
  color: inherit;
}
.bdt-custom-carousel .swiper-container .swiper-slide {
  height: 220px;
}
.bdt-custom-carousel .swiper-container-coverflow {
  padding-top: 15px;
}
.bdt-custom-carousel .swiper-container-coverflow .swiper-slide {
  -webkit-transition-property: transform, border, background;
  transition-property: transform, border, background;
}
.bdt-custom-carousel .bdt-custom-carousel-item .bdt-custom-carousel-thumbnail {
  background: no-repeat 50%;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100%;
  position: relative;
}
.bdt-custom-carousel .bdt-custom-carousel-item .bdt-custom-carousel-thumbnail img {
  display: block;
  width: 100%;
  max-height: none;
  max-width: none;
}
.bdt-custom-carousel .bdt-custom-carousel-item .bdt-overlay svg {
  width: 40px;
  height: auto;
}
.bdt-custom-carousel .swiper-container-horizontal > .swiper-pagination-progress {
  top: auto;
  bottom: 0;
}
.bdt-custom-carousel .bdt-custom-carousel-thumbnail {
  background: no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100%;
  position: relative;
}
.bdt-custom-carousel .bdt-custom-carousel-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #fff;
  background-color: rgba(129, 138, 145, 0.8);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -o-transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
}
.bdt-custom-carousel .bdt-custom-carousel-thumbnail-overlay i {
  font-size: 21px;
}
.bdt-custom-carousel .bdt-custom-carousel-arrow-prev,
.bdt-custom-carousel .bdt-custom-carousel-arrow-next,
.bdt-custom-carousel .elementor-custom-embed-play {
  cursor: pointer;
}
.bdt-custom-carousel .bdt-custom-carousel-arrow-prev svg,
.bdt-custom-carousel .bdt-custom-carousel-arrow-next svg,
.bdt-custom-carousel .elementor-custom-embed-play svg {
  -webkit-transition: all 0.5s cubic-bezier(0.15, 0.74, 0.25, 1);
  transition: all 0.5s cubic-bezier(0.15, 0.74, 0.25, 1);
}
.bdt-custom-carousel .bdt-custom-carousel-arrow-prev:hover svg,
.bdt-custom-carousel .bdt-custom-carousel-arrow-next:hover svg,
.bdt-custom-carousel .elementor-custom-embed-play:hover svg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.bdt-custom-carousel-style-carousel .bdt-custom-carousel-arrow-prev,
.bdt-custom-carousel-style-carousel .bdt-custom-carousel-arrow-next {
  margin: 30px;
}
.elementor-pagination-position-inside .swiper-pagination-fraction,
.elementor-pagination-position-inside .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
}
.elementor-pagination-position-outside .swiper-container {
  padding-bottom: 40px;
}
.elementor-pagination-position-outside .swiper-pagination-fraction,
.elementor-pagination-position-outside .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.elementor-pagination-position-outside .bdt-custom-carousel-arrow-prev,
.elementor-pagination-position-outside .bdt-custom-carousel-arrow-next {
  margin-top: -14px;
}
.elementor-widget-bdt-countdown.bdt-countdown--label-block .bdt-countdown-number,
.elementor-widget-bdt-countdown.bdt-countdown--label-block .bdt-countdown-label {
  display: block;
  text-align: center;
}
.elementor-widget-bdt-countdown .bdt-countdown-number {
  padding: 25px;
  color: #fff;
}
.bdt-contact-form .elementor-field-type-submit .elementor-button {
  padding: 12px 30px;
}
.bdt-contact-form-skin-dropdown .bdt-dropdown {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  max-width: 300px;
}
.bdt-field-group {
  margin-bottom: 10px;
}
.bdt-form-stacked .bdt-field-group.bdt-margin-remove-bottom {
  line-height: 1;
}
.bdt-form-stacked .bdt-field-group .bdt-checkbox {
  margin-right: 3px;
}
.bdt-contact-form-modal .bdt-modal-dialog {
  width: 450px;
}
.bdt-contact-form-modal .bdt-modal-header {
  background: transparent;
  border-radius: inherit;
  border-bottom: 1px solid rgba(153, 153, 153, 0.19);
}
.bdt-contact-form-modal .bdt-modal-header .bdt-icon {
  transform: translateY(-3px);
  margin-right: 5px;
}
.bdt-contact-form-modal .bdt-modal-close-default {
  top: 18px;
  right: 20px;
}
.bdt-contact-form-modal .elementor-field-type-submit .elementor-button {
  padding: 12px 20px;
}
.bdt-register-additional-message {
  font-size: 12px;
  color: #999;
}
.bdt-custom-gallery.bdt-custom-gallery-skin-fedara .bdt-custom-gallery-skin-fedara-desc {
  position: relative;
  background: #fff;
}
.bdt-custom-gallery.bdt-custom-gallery-skin-fedara .bdt-custom-gallery-skin-fedara-desc:after {
  content: '';
  position: absolute;
  top: 0;
  height: 20px;
  width: 20px;
  background: inherit;
  transform: translate(-50%, -50%) rotate(45deg);
}
.bdt-custom-gallery-skin-fedara-style-right .bdt-custom-gallery-skin-fedara-desc:after {
  right: 8px;
}
.bdt-custom-gallery-skin-fedara-style-left .bdt-custom-gallery-skin-fedara-desc:after {
  left: 30px;
}
.bdt-custom-gallery-skin-fedara-style-center .bdt-custom-gallery-skin-fedara-desc:after {
  left: 50%;
}
.bdt-custom-gallery.bdt-custom-gallery-skin-abetis .bdt-custom-gallery-skin-abetis-desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}
.bdt-custom-gallery {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}
.bdt-custom-gallery .bdt-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}
.bdt-custom-gallery .bdt-gallery-item {
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin: 0;
  text-align: center;
  overflow: hidden;
}
.bdt-custom-gallery .bdt-gallery-item .bdt-gallery-item-title {
  margin-top: 0;
  margin-bottom: 5px;
}
.bdt-custom-gallery .bdt-gallery-item .bdt-gallery-item-text p:last-child {
  margin-bottom: 0px;
}
.bdt-custom-gallery .bdt-gallery-item .bdt-gallery-item-tags {
  line-height: 1;
}
.bdt-custom-gallery .bdt-gallery-item .bdt-gallery-thumbnail {
  overflow: hidden;
}
.bdt-custom-gallery .bdt-gallery-item .bdt-gallery-thumbnail img {
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.bdt-custom-gallery .bdt-gallery-item-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.bdt-custom-gallery .bdt-gallery-item-link {
  margin-left: 5px;
  margin-right: 5px;
  padding: 7px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  line-height: 18px;
  margin-bottom: 15px;
}
.bdt-custom-gallery .bdt-gallery-item-link:hover {
  background-color: transparent;
}
.bdt-custom-gallery .bdt-gallery-item-link:hover span {
  color: rgba(0, 0, 0, 0.5);
}
.bdt-custom-gallery .bdt-gallery-item-link.icon-type-text {
  border: 2px solid #444;
}
.bdt-custom-gallery .bdt-gallery-item-link span.bdt-text {
  padding: 0 15px;
  color: #444;
  font-size: 12px;
  font-weight: 700;
}
.bdt-custom-gallery .bdt-custom-gallery-inner {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .elementor-widget-bdt-custom-gallery .elementor-widget-container {
    overflow: hidden;
  }
}
.bdt-circle-menu-container {
  z-index: 99;
  position: relative;
}
.bdt-circle-menu-container .bdt-menu-icon {
  font-size: 14px;
}
.bdt-circle-menu li.bdt-toggle-icon {
  display: block !important;
  width: 50px !important;
  height: 50px !important;
  text-align: center !important;
  line-height: 50px !important;
  position: relative !important;
  z-index: 1000 !important;
  border-radius: 50% !important;
  transition: all 500ms ease !important;
  vertical-align: middle;
  transform-origin: center;
  background: #1e87f0;
  color: #fff;
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  position: absolute;
  z-index: 1000;
  border-radius: 35px;
  transition: all 200ms ease;
}
.bdt-circle-menu li {
  background: #000;
  color: #fff;
  font-size: 25px;
}
.bdt-circle-menu li a {
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.circleMenu-open > li:first-child {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}
#examples {
  margin-left: 200px;
}
#examples > div {
  display: none;
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.bdt-device-slider {
  position: relative;
}
.bdt-device-slider.bdt-device-slider-desktop {
  padding: 4% 4% 23.5% 4%;
}
.bdt-device-slider.bdt-device-slider-macbookpro {
  padding: 2.6% 9.5% 15.2% 9.5%;
}
.bdt-device-slider.bdt-device-slider-macbookair {
  padding: 3.6% 14.5% 10% 14%;
}
.bdt-device-slider.bdt-device-slider-tablet {
  padding: 11% 9.5% 11% 9.5%;
}
.bdt-device-slider.bdt-device-slider-mobile {
  padding: 11% 9.5% 11% 9.5%;
}
.bdt-device-slider.bdt-device-slider-galaxy {
  padding: 10.5% 2% 10.5% 2%;
}
.bdt-device-slider.bdt-device-slider-galaxy .bdt-slideshow-items {
  border-radius: 15px;
}
.bdt-device-slider.bdt-device-slider-iphonex {
  padding: 3% 3.5% 3% 3.5%;
}
.bdt-device-slider.bdt-device-slider-iphonex .bdt-slideshow-items {
  border-radius: 15px;
}
.bdt-device-slider .bdt-slideshow {
  position: relative;
}
.bdt-device-slider .bdt-slideshow .bdt-slidenav {
  color: rgba(255, 255, 255, 0.7);
}
.bdt-device-slider .bdt-slideshow .bdt-slidenav:hover,
.bdt-device-slider .bdt-slideshow .bdt-slidenav:focus {
  color: #fff;
}
.bdt-device-slider .bdt-slideshow .bdt-slidenav svg {
  width: 14px;
}
.bdt-device-slider .bdt-slideshow .bdt-dotnav-wrapper {
  margin-top: -20px;
}
.bdt-device-slider .bdt-device-slider-title {
  color: #fff;
  font-size: 32px;
}
.bdt-device-slider-device {
  pointer-events: none;
  overflow: hidden;
}
.bdt-device-slider-device img {
  top: 0;
  left: 0;
  position: absolute;
  max-width: 100%;
  width: 100%;
}
.bdt-device-slider-align-left .bdt-device-slider-container {
  margin-right: auto;
}
.bdt-device-slider-align-right .bdt-device-slider-container {
  margin-left: auto;
}
.bdt-device-slider-align-center .bdt-device-slider-container {
  margin-left: auto;
  margin-right: auto;
}
.bdt-dual-button {
  display: flex;
  position: relative;
}
.bdt-dual-button a.bdt-advanced-button {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.bdt-dual-button a.bdt-dual-button-a {
  background-color: #818a91;
  color: #fff;
}
.bdt-dual-button a.bdt-dual-button-a:after,
.bdt-dual-button a.bdt-dual-button-a:before {
  background-color: #697279;
}
.bdt-dual-button a.bdt-dual-button-b {
  background: #1e87f0;
  color: #fff;
}
.bdt-dual-button a.bdt-dual-button-b:after,
.bdt-dual-button a.bdt-dual-button-b:before {
  background: #0f6ecd;
}
.bdt-dual-button span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  background: #FAFAF8;
  color: #444444;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  font-size: 14px;
}
.bdt-dual-button .bdt-advanced-button-size-xs + span {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
}
.bdt-dual-button .bdt-advanced-button-size-sm + span {
  width: 29px;
  height: 29px;
  line-height: 29px;
  font-size: 12px;
}
.bdt-faq .bdt-accordion-title {
  display: block;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  line-height: 1.4;
  margin: 0;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
}
.bdt-faq .bdt-accordion-title .bdt-accordion-icon {
  display: inline-block;
  width: 1.3em;
  font-weight: 400;
}
.bdt-faq .bdt-accordion-title .bdt-accordion-icon i {
  line-height: inherit;
}
.bdt-faq .bdt-accordion-title .bdt-accordion-icon.bdt-accordion-icon-right {
  float: right;
  text-align: right;
}
.bdt-faq .bdt-accordion-title .bdt-accordion-icon.bdt-accordion-icon-left {
  float: left;
  text-align: left;
}
.bdt-faq .bdt-accordion > :nth-child(n+2) {
  margin-top: 15px;
}
.bdt-faq .bdt-faq-item .bdt-accordion-icon-closed {
  display: block;
}
.bdt-faq .bdt-faq-item .bdt-accordion-icon-opened {
  display: none;
}
.bdt-faq .bdt-faq-item.bdt-open .bdt-accordion-icon-closed {
  display: none;
}
.bdt-faq .bdt-faq-item.bdt-open .bdt-accordion-icon-opened {
  display: block;
}
.bdt-flip-box {
  height: 280px;
  position: relative;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.bdt-flip-box .elementor-icon {
  color: #fff;
}
.bdt-flip-box .elementor-view-framed .elementor-icon {
  color: #fff;
  border-color: #fff;
}
.bdt-flip-box .elementor-view-stacked .elementor-icon {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
.bdt-flip-box .elementor-icon-wrapper {
  margin-bottom: 20px;
}
.bdt-flip-box-front {
  background-color: #1e87f0;
}
.bdt-flip-box-back {
  background-color: #b7b4b4;
  display: block;
}
.bdt-flip-box-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.bdt-flip-box-layer-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
  padding: 35px;
}
.bdt-flip-box-layer-title {
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
.bdt-flip-box-layer-title:not(:last-child) {
  margin: 0 0 20px 0;
  padding: 0;
}
.bdt-flip-box-layer-desc {
  font-size: 14px;
  color: #e5e5e5;
}
.bdt-flip-box-layer-desc:not(:last-child) {
  margin: 0 0 20px 0;
  padding: 0;
}
.bdt-flip-box-image {
  margin: 0 0 20px 0;
  display: inline-block;
  width: 100%;
}
.bdt-flip-box-image img {
  width: 50%;
}
.bdt-flip-box-3d-yes .bdt-flip-box-layer-inner {
  -webkit-transform: translateZ(90px) scale(0.91);
  transform: translateZ(90px) scale(0.91);
}
.bdt-flip-box-3d-yes .bdt-flip-box-layer-overlay {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(0.1px);
  transform: translateZ(0.1px);
}
.bdt-flip-box-effect-flip .bdt-flip-box {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.bdt-flip-box-effect-flip .bdt-flip-box:hover .bdt-flip-box-back {
  -webkit-transform: none;
  transform: none;
}
.bdt-flip-box-effect-flip .bdt-flip-box-layer {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.bdt-flip-box-effect-flip .bdt-flip-box-front {
  -webkit-transform: none;
  transform: none;
  z-index: 1;
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-right .bdt-flip-box-back {
  -webkit-transform: rotateX(0) rotateY(-180deg);
  transform: rotateX(0) rotateY(-180deg);
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-right .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: rotateX(0) rotateY(180deg);
  transform: rotateX(0) rotateY(180deg);
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-left .bdt-flip-box-back {
  -webkit-transform: rotateX(0) rotateY(180deg);
  transform: rotateX(0) rotateY(180deg);
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-left .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: rotateX(0) rotateY(-180deg);
  transform: rotateX(0) rotateY(-180deg);
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-up .bdt-flip-box-back {
  -webkit-transform: rotateX(-180deg) rotateY(0);
  transform: rotateX(-180deg) rotateY(0);
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-up .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: rotateX(180deg) rotateY(0);
  transform: rotateX(180deg) rotateY(0);
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-down .bdt-flip-box-back {
  -webkit-transform: rotateX(180deg) rotateY(0);
  transform: rotateX(180deg) rotateY(0);
}
.bdt-flip-box-effect-flip.bdt-flip-box-direction-down .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: rotateX(-180deg) rotateY(0);
  transform: rotateX(-180deg) rotateY(0);
}
.bdt-flip-box-effect-push .bdt-flip-box-front {
  -webkit-transform: none;
  transform: none;
}
.bdt-flip-box-effect-push .bdt-flip-box {
  overflow: hidden;
}
.bdt-flip-box-effect-push .bdt-flip-box:hover .bdt-flip-box-back {
  -webkit-transform: none;
  transform: none;
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-right .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: translateX(100%) translateY(0);
  transform: translateX(100%) translateY(0);
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-right .bdt-flip-box-back {
  -webkit-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0);
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-left .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0);
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-left .bdt-flip-box-back {
  -webkit-transform: translateX(100%) translateY(0);
  transform: translateX(100%) translateY(0);
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-up .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: translateX(0) translateY(-100%);
  transform: translateX(0) translateY(-100%);
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-up .bdt-flip-box-back {
  -webkit-transform: translateX(0) translateY(100%);
  transform: translateX(0) translateY(100%);
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-down .bdt-flip-box:hover .bdt-flip-box-front {
  -webkit-transform: translateX(0) translateY(100%);
  transform: translateX(0) translateY(100%);
}
.bdt-flip-box-effect-push.bdt-flip-box-direction-down .bdt-flip-box-back {
  -webkit-transform: translateX(0) translateY(-100%);
  transform: translateX(0) translateY(-100%);
}
.bdt-flip-box-effect-slide .bdt-flip-box {
  overflow: hidden;
}
.bdt-flip-box-effect-slide .bdt-flip-box:hover .bdt-flip-box-back {
  -webkit-transform: none;
  transform: none;
}
.bdt-flip-box-effect-slide.bdt-flip-box-direction-right .bdt-flip-box-back {
  -webkit-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0);
}
.bdt-flip-box-effect-slide.bdt-flip-box-direction-left .bdt-flip-box-back {
  -webkit-transform: translateX(100%) translateY(0);
  transform: translateX(100%) translateY(0);
}
.bdt-flip-box-effect-slide.bdt-flip-box-direction-up .bdt-flip-box-back {
  -webkit-transform: translateX(0) translateY(100%);
  transform: translateX(0) translateY(100%);
}
.bdt-flip-box-effect-slide.bdt-flip-box-direction-down .bdt-flip-box-back {
  -webkit-transform: translateX(0) translateY(-100%);
  transform: translateX(0) translateY(-100%);
}
.bdt-flip-box-effect-zoom-out .bdt-flip-box .bdt-flip-box-front {
  -webkit-transition: opacity 0.35s, width 0.1ms, -webkit-transform 0.7s;
  transition: opacity 0.35s, width 0.1ms, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.35s, width 0.1ms;
  transition: transform 0.7s, opacity 0.35s, width 0.1ms, -webkit-transform 0.7s;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 1;
  width: 100%;
}
.bdt-flip-box-effect-zoom-out .bdt-flip-box:hover .bdt-flip-box-front {
  width: 0;
  opacity: 0;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: opacity 0.7s 0.1s, width 0.1ms 0.7s, -webkit-transform 0.8s;
  transition: opacity 0.7s 0.1s, width 0.1ms 0.7s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.7s 0.1s, width 0.1ms 0.7s;
  transition: transform 0.8s, opacity 0.7s 0.1s, width 0.1ms 0.7s, -webkit-transform 0.8s;
}
.bdt-flip-box-effect-zoom-in .bdt-flip-box .bdt-flip-box-back {
  -webkit-transition: opacity 0.5s 0.2s, -webkit-transform 0.7s;
  transition: opacity 0.5s 0.2s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.5s 0.2s;
  transition: transform 0.7s, opacity 0.5s 0.2s, -webkit-transform 0.7s;
  opacity: 0;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.bdt-flip-box-effect-zoom-in .bdt-flip-box:hover .bdt-flip-box-back {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.7s;
  transition: opacity 0.5s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.5s;
  transition: transform 0.7s, opacity 0.5s, -webkit-transform 0.7s;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.bdt-flip-box-effect-fade .bdt-flip-box .bdt-flip-box-back {
  opacity: 0;
}
.bdt-flip-box-effect-fade .bdt-flip-box:hover .bdt-flip-box-back {
  opacity: 1;
}
.elementor-widget-bdt-flip-box.bdt-flip-box-flipped .elementor-widget-container .bdt-flip-box-front {
  display: none;
}
.elementor-widget-bdt-flip-box.bdt-flip-box-flipped .elementor-widget-container .bdt-flip-box-back {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}
@media (max-device-width: 1024px) {
  .bdt-flip-box {
    cursor: pointer;
  }
}
.bdt-advanced-gmap {
  min-height: 360px;
  height: 100%;
  width: 100%;
}
.bdt-icon-nav .bdt-icon-nav-container {
  background: #1e87f0;
  position: fixed;
  height: 100%;
  top: 0;
  z-index: 1001;
}
.bdt-icon-nav .bdt-icon-nav-container.bdt-icon-nav-left {
  left: 0;
}
.bdt-icon-nav .bdt-icon-nav-container.bdt-icon-nav-left .bdt-icon-nav-tooltip {
  left: 100%;
  margin-left: 5px;
}
.bdt-icon-nav .bdt-icon-nav-container.bdt-icon-nav-right {
  right: 0;
}
.bdt-icon-nav .bdt-icon-nav-container.bdt-icon-nav-right .bdt-icon-nav-tooltip {
  right: 100%;
  margin-right: 5px;
}
.bdt-icon-nav .bdt-icon-nav-container ul.bdt-icon-nav.bdt-icon-nav-vertical {
  padding: 0;
  margin: 0;
  text-align: center;
  list-style-type: none;
}
.bdt-icon-nav .bdt-icon-nav-container ul.bdt-icon-nav.bdt-icon-nav-vertical li + li {
  margin-top: 15px;
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-icon-wrapper {
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  position: relative;
  font-weight: 700;
  display: block;
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-icon-wrapper .bdt-icon-nav-icon {
  color: inherit;
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-icon-wrapper:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-icon-wrapper:hover .bdt-icon-nav-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0px);
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-tooltip {
  background: #1e87f0;
  color: inherit;
  padding: 10px 15px;
  position: absolute;
  box-sizing: border-box;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 3px;
  -webkit-transition: all 0.35s cubic-bezier(0.28, 0.86, 0.58, 1);
  transition: all 0.35s cubic-bezier(0.28, 0.86, 0.58, 1);
  transform: translateY(-50%) translateX(15px);
  top: 50%;
  width: 100px;
  text-align: left;
  visibility: hidden;
  opacity: 0;
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-branding {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  min-height: 50px;
  text-align: center;
  padding: 10px;
  position: relative;
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-branding .bdt-logo-txt * {
  color: #fff;
}
.bdt-icon-nav .bdt-icon-nav-container .bdt-icon-nav-branding .bdt-logo-image img {
  width: 25px;
  height: auto;
}
.bdt-icon-nav-offcanvas .bdt-offcanvas-bar li.bdt-active {
  position: relative;
}
.bdt-icon-nav-offcanvas .bdt-offcanvas-bar li.bdt-active a:before {
  content: "";
  width: 2px;
  height: calc(100% - 10px);
  background-color: #1e87f0;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.bdt-marker {
  border-radius: 100px;
}
.bdt-marker-animated .bdt-marker:before {
  width: 32px;
  height: 32px;
  left: 50%;
  top: 50%;
  z-index: -1;
}
.bdt-marker-animated .bdt-marker:before,
.bdt-marker-animated .bdt-marker:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: scale(0.35) translateY(-50%) translateX(-50%);
  -ms-transform: scale(0.35) translateY(-50%) translateX(-50%);
  transform: scale(0.35) translateY(-50%) translateX(-50%);
  opacity: 0;
  -webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
  animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
}
.bdt-marker-animated .bdt-marker:after {
  width: 32px;
  height: 32px;
  z-index: -1;
  border-color: rgba(255, 255, 255, 0.4);
  -webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
  animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
}
.bdt-marker-animated .bdt-marker svg {
  transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
}
.bdt-marker-animated .bdt-marker:hover svg {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
@-webkit-keyframes marker-ripple-animation {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.7);
    opacity: 0;
  }
}
@keyframes marker-ripple-animation {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate3d(-50%, -50%, 0) scale(1.7);
    opacity: 0;
  }
}
.bdt-member {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.bdt-member .bdt-member-icons a:hover .fa-facebook {
  color: #3B5998;
}
.bdt-member .bdt-member-icons a:hover .fa-flickr {
  color: #ff0084;
}
.bdt-member .bdt-member-icons a:hover .fa-google-plus {
  color: #dd4b39;
}
.bdt-member .bdt-member-icons a:hover .fa-twitter {
  color: #00aced;
}
.bdt-member .bdt-member-icons a:hover .fa-github-alt {
  color: #bd5990;
}
.bdt-member .bdt-member-icons a:hover .fa-linkedin {
  color: #007bb6;
}
.bdt-member .bdt-member-icons a:hover .fa-pinterest {
  color: #BD081C;
}
.bdt-member-photo-wrapper {
  overflow: hidden;
}
.bdt-member-photo > div {
  opacity: 1;
}
.bdt-member-photo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.bdt-member-description {
  padding: 1em 1.5em;
}
.bdt-member-name {
  display: block;
  margin-bottom: .2em;
  font-size: 1.2em;
  font-weight: 700;
}
.bdt-member-role {
  display: block;
  margin-bottom: 1em;
  font-size: 0.9em;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.bdt-member-icons {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1em;
}
.bdt-member-icons .bdt-member-icon {
  padding: 5px;
}
.bdt-member-icons a {
  display: inline-block;
  text-align: center;
  line-height: 1;
}
.bdt-member-icons a:first-child {
  margin-left: 0;
}
.bdt-member-icons a:last-child {
  margin-right: 0 !important;
}
.bdt-member-icons a i {
  display: inline-block;
  min-width: 16px;
  text-align: center;
}
.bdt-member-icons a i:before {
  font-size: 16px;
}
.bdt-member-icons a img {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.bdt-member-icons a + a {
  margin-left: 0.8em;
}
.bdt-member-clickable:hover {
  cursor: pointer;
}
.elementor-widget-bdt-member .elementor-widget-container {
  background-color: #ffffff;
  overflow: hidden;
}
.bdt-member.bdt-member-skin-phaedra .bdt-member-role {
  margin-bottom: 0;
}
.bdt-member.bdt-member-skin-calm .bdt-member-role {
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  margin-bottom: 0;
}
.bdt-member.bdt-member-skin-calm .bdt-member-name {
  margin-bottom: 0;
}
.bdt-member.bdt-member-skin-calm:hover .bdt-member-role {
  opacity: 0;
}
.bdt-member.bdt-member-skin-calm .bdt-member-icons {
  padding: 0;
  color: #fff;
  margin-top: -15px;
}
.bdt-member.bdt-member-skin-calm .bdt-member-description {
  opacity: 1;
  padding: 0;
  color: #fff;
}
.bdt-member.bdt-member-skin-calm .bdt-overlay {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.31) 50%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.31) 50%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.31) 50%, rgba(0, 0, 0, 0.65) 100%);
  bottom: -15px;
  padding-bottom: 45px;
}
.bdt-member.bdt-member-skin-calm .bdt-member-icons {
  border-top: 0px solid rgba(0, 0, 0, 0.05);
}
.bdt-navbar > li > a {
  transition: all 350ms cubic-bezier(0, 0.43, 0.29, 0.96);
}
.bdt-navbar .bdt-navbar-dropdown-nav li.hot,
.bdt-navbar .bdt-navbar-dropdown-nav li.new {
  position: relative;
}
.bdt-navbar .bdt-navbar-dropdown-nav li.hot:after,
.bdt-navbar .bdt-navbar-dropdown-nav li.new:after {
  content: "";
  position: absolute;
  width: auto;
  background: rgba(20, 171, 244, 0.58);
  color: #fff;
  right: 5px;
  top: 50%;
  margin-top: -7px;
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 2px;
}
.bdt-navbar .bdt-navbar-dropdown-nav li.hot:after {
  content: "HOT";
}
.bdt-navbar .bdt-navbar-dropdown-nav li.new:after {
  content: "NEW";
  background: #F2295B;
}
.bdt-nav.bdt-navbar-dropdown-nav li.bdt-parent {
  position: relative;
}
.bdt-nav.bdt-navbar-dropdown-nav li.bdt-parent .bdt-navbar-dropdown {
  top: 0 !important;
  left: 100% !important;
  right: auto;
}
.bdt-navbar-parent-indicator-yes ul > li.bdt-parent > a {
  position: relative;
}
.bdt-navbar-parent-indicator-yes ul > li.bdt-parent > a:after {
  font: normal normal normal 12px/1 FontAwesome;
  position: relative;
  line-height: inherit;
  content: "\f107";
  top: 1px;
  margin-left: 12px;
}
.bdt-navbar-parent-indicator-yes .bdt-navbar-dropdown-nav > li.bdt-parent > a:after {
  position: absolute;
  transform: translate(-50%, -50%);
  transform-origin: center;
  top: calc(50% + 1px);
  content: "\f105";
  right: 0;
  margin: 0;
}
.bdt-news-ticker {
  position: relative;
}
.bdt-news-ticker .bdt-news-ticker-label {
  background-color: #14ABF4;
  height: 50px;
  line-height: 50px;
  position: relative;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
  text-align: left;
  color: #fff;
  padding: 0 20px;
  text-transform: uppercase;
  z-index: 1;
}
.bdt-news-ticker .bdt-news-ticker-label::after {
  content: '';
  position: absolute;
  right: -20px;
  border: 10px solid transparent;
  border-left-color: #14ABF4;
  top: 50%;
  transform: translateY(-50%);
}
.bdt-news-ticker .bdt-news-ticker-content {
  background-color: #000;
  color: #fff;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  padding-left: 20px;
  padding-right: 20px;
}
.bdt-news-ticker .bdt-news-ticker-content > * > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bdt-news-ticker .bdt-news-ticker-content a {
  color: #fff;
}
.bdt-news-ticker .bdt-news-ticker-navigation {
  padding-left: 10px;
  padding-right: 10px;
  height: 50px;
  background-color: #000;
  line-height: 46px;
  vertical-align: middle;
}
.bdt-news-ticker .bdt-news-ticker-navigation a svg {
  color: #fff;
}
.bdt-news-ticker .bdt-news-ticker-navigation .bdt-slidenav {
  padding: 5px;
}
.bdt-offcanvas-button {
  outline: none;
}
.bdt-offcanvas-button .bdt-offcanvas-button-align-icon-right {
  float: right;
}
.bdt-offcanvas-button .bdt-offcanvas-button-align-icon-left {
  float: left;
}
.bdt-offcanvas .bdt-offcanvas-bar {
  word-wrap: break-word;
}
.bdt-offcanvas .bdt-offcanvas-bar .widget:not(:first-child) {
  margin-top: 30px;
}
.bdt-post-card > div:nth-child(2) .bdt-post-card-item {
  box-shadow: 0 0 0 20px rgba(30, 135, 240, 0.7);
  position: relative;
}
.bdt-post-card .bdt-post-card-item {
  background-color: #fff;
}
.bdt-post-card .bdt-post-card-item .bdt-post-card-title {
  margin-top: 0;
  margin-bottom: 10px;
  color: #666666;
}
.bdt-post-card .bdt-post-card-item .bdt-post-card-title a {
  text-decoration: none;
  color: inherit;
}
.bdt-post-card .bdt-post-card-item .bdt-post-card-button {
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  margin-right: 10px;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.bdt-post-card .bdt-post-card-item .bdt-post-card-tag {
  margin-bottom: 10px;
}
.bdt-post-card .bdt-post-card-item .bdt-post-card-tag span a {
  padding: 2px 6px;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  font-size: 10px;
  text-transform: uppercase;
  background: #1e87f0;
}
.bdt-post-card .bdt-post-card-desc {
  background-color: #fff;
  padding: 50px;
}
.bdt-post-card .bdt-post-card-desc ul.bdt-post-card-meta {
  color: #999;
  text-transform: uppercase;
  font-weight: bolder;
  margin-top: 0;
  font-size: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
@media (min-width: 960px) {
  .bdt-post-card > div:nth-child(2) .bdt-post-card-item {
    margin-top: -20px;
  }
  .bdt-post-card > div:nth-child(2) .bdt-post-card-item .bdt-post-card-thumb {
    display: block;
    overflow: hidden;
  }
  .bdt-post-card > div:nth-child(2) .bdt-post-card-item .bdt-post-card-thumb img {
    padding-top: 20px;
    -webkit-transform: scale(1.33);
    transform: scale(1.33);
  }
}
.bdt-post-slider .bdt-post-slider-content-wrap {
  max-width: 1170px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.bdt-post-slider .bdt-post-slider-content-wrap .bdt-post-slider-content {
  max-width: 950px;
  display: inline-block;
}
.bdt-post-slider .bdt-post-slider-tag-wrap span {
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
}
.bdt-post-slider .bdt-post-slider-tag-wrap span a {
  color: #fff;
}
.bdt-post-slider .bdt-post-slider-tag-wrap span + span {
  margin-left: 5px;
}
.bdt-post-slider .bdt-post-slider-title {
  margin-top: 10px;
  line-height: 1;
  font-size: 1.4rem;
  color: #fff;
}
.bdt-post-slider .bdt-post-slider-text {
  margin-top: 15px;
  font-size: .65rem;
  line-height: 1.4;
}
.bdt-post-slider .bdt-post-slider-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.bdt-post-slider .bdt-post-slider-meta {
  margin-top: 5px;
}
.bdt-post-slider .bdt-post-slider-meta span {
  margin-left: 3px;
  text-transform: capitalize;
  color: rgba(246, 251, 255, 0.55);
}
.bdt-post-slider .bdt-post-slider-button-wrap {
  margin-top: 20px;
}
.bdt-post-slider .bdt-post-slider-pagination {
  max-width: 1170px;
  width: 100%;
  bottom: 3px;
  margin-top: 0;
  position: relative !important;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
.bdt-post-slider .bdt-post-slider-pagination .bdt-thumbnav {
  border-top: 3px solid rgba(255, 255, 255, 0.5);
  margin-left: 0;
}
.bdt-post-slider .bdt-post-slider-pagination .bdt-thumbnav li:first-child {
  padding-left: 0;
}
.bdt-post-slider .bdt-post-slider-pagination .bdt-post-slider-thumb-wrap {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.bdt-post-slider .bdt-post-slider-pagination .bdt-post-slider-thumb-wrap img {
  height: 64px;
  width: 64px;
}
.bdt-post-slider .bdt-post-slider-pagination li .bdt-post-slider-pagination-item {
  border-top: 3px solid transparent;
  padding-top: 15px;
  margin-top: -3px;
  transition: all 300ms cubic-bezier(0.13, 0.27, 0.39, 1);
}
.bdt-post-slider .bdt-post-slider-pagination li.bdt-active .bdt-post-slider-pagination-item {
  border-top-color: #ffffff;
  opacity: 1;
}
.bdt-post-slider .bdt-post-slider-pagination li .bdt-post-slider-pagination-item {
  opacity: 0.7;
}
.bdt-post-slider .bdt-post-slider-pagination li h6,
.bdt-post-slider .bdt-post-slider-pagination li span {
  font-weight: 700;
  line-height: 1;
  font-size: 12px;
  color: #fff;
}
.bdt-post-slider .bdt-post-slider-pagination li .bdt-post-slider-date {
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  font-size: 11px;
}
.bdt-post-slider.bdt-post-slider-skin-vast .bdt-post-slider-text p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}
.bdt-post-slider.bdt-post-slider-skin-vast .bdt-post-slider-text p + p {
  margin-top: 15px;
}
.bdt-post-slider.bdt-post-slider-skin-vast .bdt-post-slider-title {
  color: #444;
}
.bdt-post-slider.bdt-post-slider-skin-vast .bdt-post-slider-meta span {
  color: rgba(136, 136, 136, 0.55);
  margin-left: 12px;
}
.bdt-post-slider.bdt-post-slider-skin-vast .bdt-post-slider-navigation a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bdt-post-slider .bdt-post-slider-content-wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
  .bdt-post-slider .bdt-post-slider-title {
    font-size: 2.2rem;
  }
  .bdt-post-slider .bdt-post-slider-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .bdt-post-slider .bdt-post-slider-meta {
    margin-top: 20px;
  }
  .bdt-post-slider .bdt-post-slider-meta .bdt-post-slider-author {
    margin-right: 5px;
  }
  .bdt-post-slider .bdt-post-slider-pagination {
    bottom: 0;
    position: absolute !important;
    margin-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .bdt-post-slider .bdt-post-slider-pagination li .bdt-post-slider-pagination-item {
    padding-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .bdt-post-slider .bdt-post-slider-content-wrap {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 70px;
  }
  .bdt-post-slider .bdt-post-slider-pagination li .bdt-post-slider-pagination-item {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .bdt-post-slider .bdt-post-slider-title {
    font-size: 2.625rem;
    line-height: 1.2;
  }
  .bdt-post-slider.bdt-post-slider-skin-vast .bdt-post-slider-title {
    font-size: 2rem;
    line-height: 1;
  }
}
.parallax-scene {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  overflow: hidden;
}
.bdt-scene-item {
  position: absolute;
  width: 102%;
  height: 104%;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: -1%;
  left: -2%;
  background-size: auto;
}
.bdt-progress-pie-wrapper {
  text-align: center;
}
.bdt-progress-pie-wrapper .bdt-progress-pie {
  text-align: center;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 20px;
}
.bdt-progress-pie-wrapper .bdt-progress-pie svg {
  margin: 0 auto;
}
.bdt-progress-pie-wrapper .bdt-progress-pie svg ellipse {
  stroke: #f5f5f5;
}
.bdt-progress-pie-wrapper .bdt-progress-pie svg path {
  stroke: #14ABF4;
}
.bdt-progress-pie-wrapper .bdt-progress-pie .bdt-progress-pie-number,
.bdt-progress-pie-wrapper .bdt-progress-pie .bdt-progress-pie-text {
  font-size: 32px;
  font-weight: 700;
}
.bdt-progress-pie-wrapper .bdt-progress-pie.bdt-pp-lc-square svg path {
  stroke-linecap: square;
}
.bdt-progress-pie-wrapper .bdt-progress-pie.bdt-pp-lc-round svg path {
  stroke-linecap: round;
}
.bdt-progress-pie-wrapper .bdt-progress-pie.bdt-pp-lc-butt svg path {
  stroke-linecap: butt;
}
.bdt-progress-pie-wrapper .bdt-progress-pie .bdt-progress-pie-label {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bdt-progress-pie-wrapper .bdt-progress-pie .bdt-progress-pie-label div {
  line-height: 1.2em;
}
.bdt-progress-pie-wrapper .bdt-progress-pie .bdt-progress-pie-svg {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: hidden;
}
.bdt-progress-pie-wrapper .bdt-progress-pie .bdt-progress-pie-svg svg {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.bdt-progress-pie-wrapper .bdt-progress-pie-title {
  text-align: center;
  padding: 30px;
  margin: 0;
  font-size: 1.1rem;
}
.bdt-progress-pie-wrapper .bdt-progress-pie-title:not(.bdt-no-divider) {
  border-top: 1px solid rgba(100, 100, 100, 0.1);
}
.bdt-panel-slider .swiper-container {
  cursor: -webkit-grab;
}
.bdt-panel-slider .swiper-button-prev,
.bdt-panel-slider .swiper-container-rtl .swiper-button-next {
  left: 50px;
}
.bdt-panel-slider .swiper-button-next,
.bdt-panel-slider .swiper-container-rtl .swiper-button-prev {
  right: 50px;
}
.bdt-panel-slider .bdt-panel-slide-item .bdt-panel-slide-desc {
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 20px 30px;
}
.bdt-panel-slider .bdt-panel-slide-item .bdt-panel-slide-thumb img {
  opacity: 0.4;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.bdt-panel-slider .bdt-panel-slide-item:hover .bdt-panel-slide-thumb img {
  opacity: 1;
}
.bdt-panel-slider .bdt-panel-slide-item .bdt-panel-slide-text {
  font-size: 14px;
}
.bdt-panel-slider .bdt-panel-slide-item .bdt-panel-slide-text h2,
.bdt-panel-slider .bdt-panel-slide-item .bdt-panel-slide-text a {
  text-transform: uppercase;
}
.bdt-panel-slider .bdt-panel-slide-item .bdt-panel-slide-link {
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  color: inherit;
}
.bdt-panel-slider .bdt-panel-slide-title {
  transition-delay: 50ms;
  margin-bottom: 0;
  margin-top: 10px;
  color: inherit;
}
.bdt-panel-slider .bdt-panel-slide-text {
  transition-delay: 100ms;
}
.bdt-post-block .bdt-post-block-item .bdt-post-block-excerpt {
  margin-bottom: 10px;
}
.bdt-post-block .bdt-post-block-item .bdt-post-block-link {
  color: #444;
}
.bdt-post-block .bdt-post-block-item .bdt-post-block-link:hover {
  color: #000;
}
.bdt-post-block .bdt-post-block-item .bdt-post-block-read-more {
  margin-right: 10px;
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}
.bdt-post-block .bdt-post-block-item .bdt-post-block-desc .bdt-post-block-meta {
  margin-bottom: 10px;
  margin-top: 0;
  color: #999;
}
.bdt-post-block .bdt-post-block-item .bdt-post-block-desc .bdt-post-block-meta * {
  font-size: 13px;
  font-weight: 400;
}
.bdt-post-block .bdt-post-block-item .bdt-post-block-desc span {
  color: inherit;
}
.bdt-post-block .bdt-post-block-item.featured-part h4 {
  margin-bottom: 10px;
}
.bdt-post-block .bdt-post-block-item.list-part .bdt-post-block-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.bdt-post-block .bdt-post-block-item.list-part .bdt-post-block-thumbnail img {
  width: 80px;
  height: auto;
}
.bdt-post-block .bdt-post-block-tag-wrap span {
  padding: 2px 6px;
  color: #fff;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
}
.bdt-post-block .bdt-post-block-tag-wrap span + span {
  margin-left: 5px;
}
.bdt-post-block.bdt-post-block-skin-trinity .bdt-post-block-title a {
  color: #ffffff;
}
.bdt-post-block.bdt-post-block-skin-trinity .bdt-post-block-title a:hover {
  color: #ffffff;
  opacity: 0.8;
}
.bdt-post-block.bdt-post-block-skin-trinity .bdt-post-block-item .bdt-overlay-primary {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0.5;
}
.bdt-post-block.bdt-post-block-skin-trinity .bdt-post-block-item:hover .bdt-overlay-primary {
  opacity: 1;
}
.bdt-post-block.bdt-post-block-skin-genesis .bdt-has-divider li > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
.bdt-post-grid .bdt-post-grid-item {
  overflow: hidden;
}
.bdt-post-grid .bdt-post-grid-item .bdt-position-top-left {
  top: -1px;
}
.bdt-post-grid .bdt-post-grid-item * {
  color: #fff;
}
.bdt-post-grid .bdt-post-grid-item .bdt-post-grid-readmore span {
  color: inherit;
}
.bdt-post-grid .bdt-post-grid-item .bdt-post-grid-readmore span i {
  color: inherit;
}
.bdt-post-grid .bdt-post-grid-item .bdt-custom-overlay {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0.75;
  transition: 0.5s cubic-bezier(0.4, 0.7, 0.04, 0.88);
  transition-property: opacity, transform, filter;
}
.bdt-post-grid .bdt-post-grid-item:hover .bdt-custom-overlay {
  opacity: 1;
}
.bdt-post-grid .bdt-post-grid-item .bdt-post-grid-category a {
  background: #1e87f0;
  padding: 5px 8px;
  color: #fff;
  box-sizing: border-box;
  display: inline-block;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}
.bdt-post-grid .bdt-post-grid-item .bdt-post-grid-category a + a {
  margin-left: 10px;
}
.bdt-post-grid .bdt-post-grid-item .bdt-subnav span + span:before {
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #e5e5e5;
  margin-left: -10px;
  margin-right: 10px;
  display: inline-block;
}
.bdt-post-grid .bdt-primary .bdt-post-grid-title {
  font-size: 1.5rem;
}
.bdt-post-grid .bdt-primary .bdt-post-grid-author {
  font-size: 13px;
  font-weight: 700;
}
.bdt-post-grid .bdt-primary .bdt-post-grid-date {
  font-size: 13px;
}
.bdt-post-grid .bdt-secondary .bdt-post-grid-meta,
.bdt-post-grid .bdt-tertiary .bdt-post-grid-meta,
.bdt-post-grid .bdt-secondary .bdt-post-grid-comments,
.bdt-post-grid .bdt-tertiary .bdt-post-grid-comments {
  display: none;
}
.bdt-post-grid-skin-default .bdt-primary .bdt-post-grid-img-wrap a {
  height: 300px;
}
.bdt-post-grid-skin-default .bdt-secondary .bdt-post-grid-img-wrap a {
  height: 200px;
}
.bdt-post-grid-skin-carmie .bdt-post-grid-img-wrap a {
  height: 380px;
}
.bdt-post-grid-skin-carmie .bdt-transition-slide-bottom {
  max-height: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bdt-post-grid-skin-carmie .bdt-post-grid-item:hover .bdt-transition-slide-bottom {
  max-height: 72px;
}
.bdt-post-grid-skin-carmie .bdt-post-grid-item:hover .bdt-post-grid-excerpt {
  margin-top: 15px !important;
}
.bdt-post-grid-skin-carmie .bdt-post-grid-item .bdt-post-grid-desc {
  background: rgba(0, 0, 0, 0.5);
}
.bdt-post-grid-skin-carmie .bdt-post-grid-title {
  margin: 0;
}
.bdt-post-grid-skin-carmie .bdt-post-grid-meta span {
  font-size: 13px;
}
.bdt-post-grid-skin-carmie .bdt-post-grid-excerpt {
  margin-top: 0 !important;
}
.bdt-post-grid-skin-modern .bdt-primary .bdt-post-grid-img-wrap a,
.bdt-post-grid-skin-elanza .bdt-primary .bdt-post-grid-img-wrap a {
  height: 399px;
}
.bdt-post-grid-skin-modern .bdt-secondary .bdt-post-grid-img-wrap a,
.bdt-post-grid-skin-elanza .bdt-secondary .bdt-post-grid-img-wrap a {
  height: 192px;
}
.bdt-post-grid-tab .bdt-post-grid-tab-thumbnail {
  overflow: hidden;
  cursor: pointer;
}
.bdt-post-grid-tab .bdt-post-grid-tab-thumbnail img {
  width: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: transform 250ms cubic-bezier(0.3, 0.91, 0.58, 1);
}
.bdt-post-grid-tab .bdt-post-grid-tab-thumbnail:hover img {
  transform: scale(1.1);
}
.bdt-post-grid-tab .bdt-subnav span a {
  display: inline-block;
}
.bdt-post-grid-tab .bdt-subnav span + span:before {
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #e5e5e5;
  margin-left: -10px;
  margin-right: 10px;
  display: inline-block;
}
.bdt-post-grid-tab .gridtab > dt {
  line-height: normal;
}
.bdt-post-grid-tab .bdt-post-grid-tab-title {
  cursor: pointer;
}
/* GridTab v2.1.1*/
.gridtab,
.gridtab > dt,
.gridtab > dd {
  position: relative;
}
.gridtab {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  box-sizing: border-box;
}
.gridtab > dt {
  border-style: solid;
}
.gridtab > dd {
  z-index: 1;
  display: none;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  border-style: solid;
}
.gridtab > dd > .gridtab__controls {
  position: absolute;
  right: 10px;
  top: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.gridtab > dd > .gridtab__controls > .gridtab__close {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-left: 5px;
}
.gridtab > dd > .gridtab__controls > .gridtab__close:before,
.gridtab > dd > .gridtab__controls > .gridtab__close:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.gridtab > dd > .gridtab__controls > .gridtab__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gridtab > dd > .gridtab__controls > .gridtab__arrow,
.gridtab > dd > .gridtab__controls > .gridtab__close {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background: #666;
  text-indent: -999px;
  position: relative;
  border-radius: 50px;
  transition: all 300ms ease-out;
}
.gridtab > dd > .gridtab__controls > .gridtab__arrow:hover,
.gridtab > dd > .gridtab__controls > .gridtab__close:hover {
  background: #333;
}
.gridtab > dd > .gridtab__controls > .gridtab__close:hover {
  transform: rotate(90deg);
}
.gridtab > dd > .gridtab__controls > .gridtab__arrow:before,
.gridtab > dd > .gridtab__controls > .gridtab__arrow:after,
.gridtab > dd > .gridtab__controls > .gridtab__close:before,
.gridtab > dd > .gridtab__controls > .gridtab__close:after {
  position: absolute;
  width: 2px;
  height: 10px;
  content: '';
  display: block;
  background: #FFF;
}
.gridtab > dd > .gridtab__controls > .gridtab__arrow:before,
.gridtab > dd > .gridtab__controls > .gridtab__arrow:after {
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  margin: -6px 0 0 -3px;
  height: 8px;
}
.gridtab > dd > .gridtab__controls > .gridtab__arrow:after {
  margin-top: -3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.gridtab > dd > .gridtab__controls > .gridtab__arrow.is-disabled {
  opacity: 0.25;
}
.gridtab > dd > .gridtab__controls > .gridtab__next {
  -webkit-transform: scale(-1);
  transform: scale(-1);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.gridtab > dt {
  transition: background 1s;
  background: #f2f2f2;
}
.gridtab > dt:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
}
.gridtab > dt.is-disabled {
  pointer-events: none;
}
.gridtab > dt.is-active {
  z-index: 2;
}
.gridtab > dt > img {
  max-width: 100%;
  float: left;
  height: auto;
}
.gridtab[dir="rtl"] > dd > .gridtab__controls {
  right: auto;
  left: 5px;
}
.gridtab[dir="rtl"] > dd > .gridtab__controls > .gridtab__next {
  -webkit-transform: none;
  transform: none;
}
.gridtab[dir="rtl"] > dd > .gridtab__controls > .gridtab__prev {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}
.gridtab[dir="rtl"] > dd > .gridtab__controls > .gridtab__close {
  margin-right: 5px;
  margin-left: 0;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-excerpt {
  margin-bottom: 10px;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-read-more {
  margin-bottom: 10px;
  margin-right: 10px;
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-title {
  margin-bottom: 0;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-desc {
  margin-bottom: 40px;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-desc ul.bdt-post-block-modern-meta {
  font-weight: bolder;
  margin-bottom: 0;
  margin-top: 0;
  color: #999;
  text-transform: uppercase;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-desc ul.bdt-post-block-modern-meta li a {
  background: #1e87f0;
  font-size: 11px;
  color: #ffffff;
  padding: 2px 5px;
  font-weight: normal;
  border-radius: 2px;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-desc h4 {
  margin-top: 5px;
}
.bdt-post-block-modern .bdt-post-block-modern-item .bdt-post-block-modern-desc span {
  color: inherit;
}
.bdt-post-block-modern .bdt-post-block-modern-item.left-part {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 350px;
}
.bdt-post-block-modern .bdt-post-block-modern-item.left-part .bdt-post-block-modern-desc {
  text-align: center;
}
.bdt-post-block-modern .bdt-post-block-modern-item.right-part {
  margin-bottom: 40px;
}
.bdt-post-block-modern .bdt-post-block-modern-item.right-part:last-child {
  margin-bottom: 0;
}
.bdt-post-gallery.bdt-post-gallery-skin-fedara .bdt-post-gallery-skin-fedara-desc {
  position: relative;
  background: #fff;
}
.bdt-post-gallery.bdt-post-gallery-skin-fedara .bdt-post-gallery-skin-fedara-desc:after {
  content: '';
  position: absolute;
  top: 0;
  height: 20px;
  width: 20px;
  background: inherit;
  transform: translate(-50%, -50%) rotate(45deg);
}
.bdt-post-gallery.bdt-post-gallery-skin-fedara .bdt-gallery-item-link {
  background-color: transparent;
  color: #444444;
  border-radius: 3px;
  border: 1px solid;
}
.bdt-post-gallery-skin-fedara-style-right .bdt-post-gallery-skin-fedara-desc:after {
  right: 8px;
}
.bdt-post-gallery-skin-fedara-style-left .bdt-post-gallery-skin-fedara-desc:after {
  left: 30px;
}
.bdt-post-gallery-skin-fedara-style-center .bdt-post-gallery-skin-fedara-desc:after {
  left: 50%;
}
.bdt-post-gallery.bdt-post-gallery-skin-abetis .bdt-gallery-item-link {
  background-color: transparent;
  color: #444444;
  border-radius: 500px;
  border: 1px solid ;
}
.bdt-post-gallery.bdt-post-gallery-skin-abetis .bdt-gallery-item-link:hover {
  border-color: #000;
}
.bdt-post-gallery {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bdt-post-gallery .bdt-post-gallery-inner {
  position: relative;
  overflow: hidden;
}
.bdt-post-gallery .bdt-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}
.bdt-post-gallery .bdt-gallery-item {
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin: 0;
  text-align: center;
  overflow: hidden;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-item-title {
  color: #666;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-item-title:hover {
  color: #222;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-content-inner > *:not(:first-child) {
  margin-top: 15px;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-item-tags {
  line-height: 1;
  margin-top: 5px;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-item-tags .bdt-gallery-item-tag {
  font-size: 13px;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-item-tags span + span {
  margin-left: 5px;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-thumbnail {
  overflow: hidden;
}
.bdt-post-gallery .bdt-gallery-item .bdt-gallery-thumbnail img {
  width: 100%;
  object-fit: cover;
}
.bdt-post-gallery.bdt-post-gallery-skin-default .bdt-gallery-item-link {
  background-color: #f8f8f8;
  color: #444444;
  border-radius: 500px;
}
.bdt-post-gallery .bdt-gallery-item-link {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  line-height: 1;
  box-sizing: border-box;
  vertical-align: middle;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.bdt-post-gallery .bdt-gallery-item-link.bdt-link-icon {
  padding: 10px;
}
.bdt-post-gallery .bdt-gallery-item-link.bdt-link-text {
  padding: 8px 20px;
}
.bdt-post-gallery .bdt-gallery-item-link span {
  font-size: 10px;
  font-weight: 700;
}
.bdt-post-gallery .bdt-gallery-item-link:not(:first-child) {
  margin-left: 10px;
}
@media (min-width: 1024px) {
  .filtr-container {
    transition: height 0.5s ease-out;
  }
}
.bdt-price-table {
  text-align: center;
}
.bdt-price-table .bdt-price-table-header {
  background: #222222;
  padding: 30px 0;
}
.bdt-price-table .bdt-price-table-image {
  background: #222222;
}
.bdt-price-table .bdt-price-table-heading {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.bdt-price-table .bdt-price-table-subheading {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}
.bdt-price-table .bdt-price-table-original-price {
  margin-right: 15px;
  text-decoration: line-through;
  font-size: 0.5em;
  line-height: 1;
  font-weight: 400;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.bdt-price-table .bdt-price-table-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #555;
  font-weight: 800;
  font-size: 65px;
  padding: 30px 0;
}
.bdt-price-table .bdt-price-table-price .elementor-typo-excluded {
  line-height: initial;
  letter-spacing: initial;
  text-transform: initial;
  font-weight: initial;
  font-size: initial;
  font-style: initial;
}
.bdt-price-table .bdt-price-table-after-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.bdt-price-table .bdt-price-table-integer-part {
  line-height: 0.8;
}
.bdt-price-table .bdt-price-table-currency,
.bdt-price-table .bdt-price-table-fractional-part {
  line-height: 1;
  font-size: 0.3em;
}
.bdt-price-table .bdt-price-table-currency {
  margin-right: 3px;
}
.bdt-price-table .bdt-price-table-period {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
}
.bdt-price-table .bdt-price-table-period.bdt-price-table-period-position-below {
  margin-top: 10px;
}
.bdt-price-table .bdt-price-table-period.bdt-price-table-period-position-beside {
  margin-left: 10px;
}
.bdt-price-table .bdt-price-table-features-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 1;
  padding: 30px 0;
}
.bdt-price-table .bdt-price-table-features-list li {
  font-size: 14px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.bdt-price-table .bdt-price-table-features-list li .bdt-price-table-feature-inner {
  margin-left: 15px;
  margin-right: 15px;
}
.bdt-price-table .bdt-price-table-features-list li:not(:first-child):before {
  content: '';
  display: block;
  border: 0 solid rgba(122, 122, 122, 0.3);
  margin: 10px 12.5%;
}
.bdt-price-table .bdt-price-table-features-list i {
  margin-right: 10px;
}
.bdt-price-table .bdt-price-table-footer {
  padding: 30px 0;
}
.bdt-price-table .bdt-price-table-additional_info {
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 1.4;
}
.bdt-price-table.bdt-price-table-skin-partait .bdt-price-table-features-list-wrap .bdt-price-table-features-list {
  width: 100%;
}
.bdt-price-table .edd-cart-ajax-alert {
  display: block;
  text-align: center;
}
.bdt-price-table .edd-cart-ajax-alert .edd-cart-added-alert {
  position: relative;
}
.bdt-price-table-ribbon {
  position: absolute;
  top: -30px;
  left: 0;
  right: auto;
  text-align: center;
}
.bdt-price-table-ribbon-inner {
  font-size: 13px;
  line-height: 2;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 10px;
  box-sizing: border-box;
}
.bdt-price-table-ribbon.elementor-ribbon-left {
  left: 0;
  right: auto;
}
.bdt-price-table-ribbon.elementor-ribbon-center {
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.bdt-price-table-ribbon.elementor-ribbon-right {
  right: 0;
  left: auto;
}
.bdt-price-table-ribbon.elementor-ribbon-justify {
  left: 0;
  right: 0;
}
.elementor-widget-bdt-price-table .elementor-widget-container {
  overflow: hidden;
  background-color: #f8f8f8;
}
.bdt-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bdt-price-list .bdt-price-list-image {
  max-width: 50%;
  padding-right: 25px;
}
.bdt-price-list .bdt-price-list-image img {
  width: 100%;
}
.bdt-price-list .bdt-price-list-price {
  font-size: 16px;
  font-weight: 700;
}
.bdt-price-list .bdt-price-list-header {
  font-size: 19px;
  font-weight: 600;
}
.bdt-price-list .bdt-price-list-title {
  max-width: 80%;
  color: #444444;
}
.bdt-price-list .bdt-price-list-description {
  font-size: 14px;
  margin: 0;
  color: #999999;
}
.bdt-price-list .bdt-price-list-separator {
  margin-left: 10px;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  height: 0;
  color: #cccccc;
}
.bdt-price-list li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .bdt-price-list .bdt-price-list-image,
  .bdt-price-list .bdt-price-list-separator {
    display: none;
  }
  .bdt-price-list .bdt-price-list-title {
    font-size: 14px;
    max-width: 100%;
  }
  .bdt-price-list .bdt-price-list-description {
    font-size: 12px;
  }
  .bdt-price-list .bdt-grid.bdt-has-image {
    margin-left: 0;
  }
}
.bdt-post-list .bdt-post-list-item .bdt-post-list-excerpt {
  margin-bottom: 10px;
}
.bdt-post-list .bdt-post-list-item .bdt-post-list-link {
  color: #444;
}
.bdt-post-list .bdt-post-list-item .bdt-post-list-link:hover {
  color: #000;
}
.bdt-post-list .bdt-post-list-item .bdt-post-list-read-more {
  margin-right: 10px;
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}
.bdt-post-list .bdt-post-list-item .bdt-post-list-desc .bdt-post-list-meta {
  margin-top: 0;
  color: #999;
}
.bdt-post-list .bdt-post-list-item .bdt-post-list-desc .bdt-post-list-meta * {
  font-size: 13px;
  font-weight: 400;
}
.bdt-post-list .bdt-post-list-item .bdt-post-list-desc span {
  color: inherit;
}
.bdt-post-list .bdt-post-list-item.list-part .bdt-post-list-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.bdt-post-list .bdt-post-list-item.list-part .bdt-post-list-thumbnail img {
  width: 80px;
  height: auto;
}
.bdt-post-list .bdt-post-list-tag-wrap span {
  padding: 2px 6px;
  color: #fff;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
}
.bdt-post-list .bdt-post-list-tag-wrap span + span {
  margin-left: 5px;
}
.bdt-post-list.bdt-post-list-skin-base .bdt-has-divider.bdt-child-width-1-2\@m li:nth-child(n+3) > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
.bdt-post-list.bdt-post-list-skin-base .bdt-has-divider.bdt-child-width-1-3\@m li:nth-child(n+4) > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
.bdt-post-list.bdt-post-list-skin-base .bdt-has-divider.bdt-child-width-1-4\@m li:nth-child(n+5) > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
.bdt-qrcode canvas {
  max-width: 100%;
}
.elementor-widget-bdt-search .bdt-search-default {
  width: 100%;
}
.elementor-widget-bdt-search .bdt-search {
  display: inline-block;
}
.elementor-widget-bdt-search .bdt-search .bdt-search-input {
  border: 0px solid transparent;
}
.bdt-slider .swiper-container {
  cursor: -webkit-grab;
}
.bdt-slider .swiper-button-prev,
.bdt-slider .swiper-container-rtl ~ .swiper-button-next {
  left: 35px;
  right: auto;
}
.bdt-slider .swiper-button-next,
.bdt-slider .swiper-container-rtl ~ .swiper-button-prev {
  right: 35px;
  left: auto;
}
.bdt-slider .swiper-pagination.swiper-pagination-bullets {
  bottom: 20px;
}
.bdt-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 0.4;
}
.bdt-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}
.bdt-slider .bdt-slide-item {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.bdt-slider .bdt-slide-item .bdt-slide-desc {
  color: #ffffff;
}
.bdt-slider .bdt-slide-item .bdt-slide-title,
.bdt-slider .bdt-slide-item .bdt-slide-text,
.bdt-slider .bdt-slide-item .bdt-slide-link-wrapper {
  -webkit-transition: all 400ms cubic-bezier(0.19, 0.6, 0.58, 1);
  transition: all 400ms cubic-bezier(0.19, 0.6, 0.58, 1);
  opacity: 0;
  transform: translateX(50px);
}
.bdt-slider .bdt-slide-item .bdt-slide-title {
  transition-delay: 500ms;
  display: inline-block;
  margin: 0;
  color: inherit;
  font-size: 36px;
}
.bdt-slider .bdt-slide-item .bdt-slide-text {
  transition-delay: 700ms;
}
.bdt-slider .bdt-slide-item .bdt-slide-text p:last-child {
  margin-bottom: 0;
}
.bdt-slider .bdt-slide-item .bdt-slide-link-wrapper {
  transition-delay: 900ms;
}
.bdt-slider .bdt-slide-item .bdt-slide-link-wrapper .bdt-slide-link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
.bdt-slider .bdt-slide-item .bdt-slide-link-wrapper .bdt-slide-link:hover {
  color: #fff;
}
.bdt-slider .bdt-slide-item.swiper-slide-active .bdt-slide-title,
.bdt-slider .bdt-slide-item.swiper-slide-active .bdt-slide-text,
.bdt-slider .bdt-slide-item.swiper-slide-active .bdt-slide-link-wrapper {
  transform: translateX(0);
  opacity: 1;
}
.bdt-slider .bdt-slide-effect-left .bdt-slide-title,
.bdt-slider .bdt-slide-effect-left .bdt-slide-text,
.bdt-slider .bdt-slide-effect-left .bdt-slide-link-wrapper {
  transform: translateX(50px);
}
.bdt-slider .bdt-slide-effect-left.swiper-slide-active .bdt-slide-title,
.bdt-slider .bdt-slide-effect-left.swiper-slide-active .bdt-slide-text,
.bdt-slider .bdt-slide-effect-left.swiper-slide-active .bdt-slide-link-wrapper {
  transform: translateX(0);
}
.bdt-slider .bdt-slide-effect-bottom .bdt-slide-title,
.bdt-slider .bdt-slide-effect-bottom .bdt-slide-text,
.bdt-slider .bdt-slide-effect-bottom .bdt-slide-link-wrapper {
  transform: translateY(50px);
}
.bdt-slider .bdt-slide-effect-bottom.swiper-slide-active .bdt-slide-title,
.bdt-slider .bdt-slide-effect-bottom.swiper-slide-active .bdt-slide-text,
.bdt-slider .bdt-slide-effect-bottom.swiper-slide-active .bdt-slide-link-wrapper {
  transform: translateY(0);
}
.bdt-slideshow .bdt-slideshow-button {
  margin: 1.5em 0 0;
  color: #fff;
}
.bdt-slideshow .bdt-slideshow-content-wrapper {
  max-width: 800px;
}
.bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
.bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-pre-title,
.bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-post-title {
  font-size: .75rem;
  font-weight: 400;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
}
.bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-text {
  font-size: .65rem;
  line-height: 1.4;
  color: #f5f5f5;
  margin: .8em 0 0;
}
.bdt-slideshow .bdt-slideshow-content-wrapper div {
  line-height: 1;
}
.bdt-slideshow .bdt-slidenav svg {
  width: 22px;
  height: auto;
}
.bdt-slideshow .bdt-dotnav li a {
  background-color: rgba(0, 0, 0, 0.5);
}
.bdt-slideshow .bdt-dotnav li.bdt-active a {
  background-color: #1e87f0;
}
@media screen and (min-width: 768px) {
  .bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-title {
    font-size: 2.2rem;
  }
  .bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-pre-title,
  .bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-post-title {
    font-size: 1.2rem;
  }
  .bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1024px) {
  .bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-title {
    font-size: 2.625rem;
    line-height: 1.2;
  }
  .bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-pre-title,
  .bdt-slideshow .bdt-slideshow-content-wrapper .bdt-slideshow-post-title {
    font-size: 1.4rem;
  }
}
.bdt-tabs-container {
  text-align: center;
}
.bdt-tabs-container .bdt-tab {
  padding: 5px;
  border-radius: 50px;
  display: inline-block;
  background-color: #f5f5f5;
}
.bdt-tabs-container .bdt-tab .bdt-tabs-item {
  padding-left: 0;
  display: inline-block;
  float: left;
}
.bdt-tabs-container .bdt-tab .bdt-tabs-item a {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
.bdt-tabs-container .bdt-tab .bdt-tabs-item a .bdt-tab-text-wrapper {
  position: relative;
}
.bdt-tabs-container .bdt-tab .bdt-tabs-item a:before {
  height: 100%;
  top: 0;
  z-index: 0;
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  transition: all 300ms ease-out;
}
.bdt-tabs-container .bdt-tab > .bdt-active > a {
  color: #fff;
}
.bdt-tabs-container .bdt-tab > .bdt-active > a:before {
  width: 100%;
  background-color: #1e87f0;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-excerpt {
  margin-bottom: 10px;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-link {
  color: #444;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-link:hover {
  color: #000;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-desc .bdt-single-post-meta {
  margin-bottom: 10px;
  margin-top: 0;
  color: #999;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-desc .bdt-single-post-meta * {
  font-size: 13px;
  font-weight: 400;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-desc a {
  color: inherit;
  text-decoration: none;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-thumbnail img {
  width: 100%;
}
.bdt-single-post .bdt-single-post-tag-wrap span {
  padding: 4px 8px;
  color: #fff;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 10px;
}
.bdt-single-post .bdt-single-post-tag-wrap span + span {
  margin-left: 5px;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-title {
  color: #ffffff;
}
.bdt-single-post .bdt-single-post-item .bdt-single-post-link:hover .bdt-single-post-title {
  opacity: 0.7;
}
.bdt-single-post .bdt-single-post-item .bdt-overlay-primary {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0.5;
}
.bdt-single-post .bdt-single-post-item:hover .bdt-overlay-primary {
  opacity: 1;
}
.elementor-widget-bdt-single-post .elementor-widget-container {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .bdt-single-post .bdt-single-post-title {
    font-size: 1.3rem;
    line-height: 1;
  }
}
.bdt-tabs .bdt-tabs-item-title {
  outline: none;
  background: #f3f3f3;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
  position: relative;
}
.bdt-tabs .bdt-tabs-item-title .bdt-tab-text-wrapper {
  display: inline-flex;
}
.bdt-tabs .bdt-switcher-item-content p {
  margin: 0;
}
.bdt-tabs .bdt-switcher-item-content p + p {
  margin: 10px 0 0;
}
.bdt-tabs .bdt-tab .bdt-tabs-item a:after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 300ms ease-out;
}
.bdt-tabs .bdt-tab .bdt-active a:after {
  width: 100%;
  background: #1e87f0;
}
.bdt-tabs .bdt-tab.bdt-tab-bottom .bdt-tabs-item a:after {
  top: 0;
  bottom: auto;
}
.bdt-tabs .bdt-tab.bdt-tab-left .bdt-tabs-item a:after,
.bdt-tabs .bdt-tab.bdt-tab-right .bdt-tabs-item a:after {
  width: 3px;
  right: 0;
  left: auto;
  top: 0;
  bottom: auto;
}
.bdt-tabs .bdt-tab.bdt-tab-left .bdt-active a:after,
.bdt-tabs .bdt-tab.bdt-tab-right .bdt-active a:after {
  height: 100%;
}
.bdt-tabs .bdt-tab.bdt-tab-right .bdt-tabs-item a:after {
  left: 0;
  right: auto;
}
.bdt-tabs .bdt-tabs-item.bdt-has-no-title span[class*="bdt-button-icon-align-"] {
  margin: 0 !important;
}
.bdt-timeline .bdt-timeline-item-main-container {
  padding-left: 50px;
  padding-bottom: 50px;
}
.bdt-timeline .bdt-timeline-thumbnail {
  overflow: hidden;
}
.bdt-timeline .bdt-timeline-thumbnail img {
  width: 100%;
  object-fit: cover;
}
.bdt-timeline .bdt-timeline-item-main-wrapper {
  position: relative;
  padding-left: 50px;
}
.bdt-timeline .bdt-timeline-item-main-wrapper .bdt-timeline-item-main-container {
  padding-left: 50px;
}
.bdt-timeline .bdt-timeline-item-main-wrapper .bdt-timeline-item-main {
  position: relative;
}
.bdt-timeline .bdt-timeline-item-main-wrapper .bdt-timeline-line {
  position: absolute;
  top: 0;
  height: 100%;
}
.bdt-timeline .bdt-timeline-item-main-wrapper .bdt-timeline-line span {
  height: 100%;
  position: absolute;
  background-color: #1e87f0;
  transform: translateX(-50%);
  transform-origin: center;
  display: block;
}
.bdt-timeline .bdt-timeline-item-main-wrapper .bdt-timeline-icon {
  position: absolute;
  top: 20px;
  transform: translate(-50%, -50%);
  left: 51px;
}
.bdt-timeline .bdt-timeline-item-main-wrapper .bdt-timeline-icon span {
  position: absolute;
  text-align: center;
  border: 4px solid #1e87f0;
  padding: 20px;
  transform: translate(-50%, -50%);
  border-radius: 130px;
  line-height: 40px;
}
.bdt-timeline .bdt-timeline-meta {
  margin-bottom: 0;
}
.bdt-timeline .bdt-timeline-title,
.bdt-timeline .bdt-timeline-excerpt,
.bdt-timeline .bdt-timeline-excerpt p {
  margin: 0;
  padding: 0;
}
.bdt-timeline .bdt-timeline-readmore {
  margin: 0;
}
.bdt-timeline .bdt-timeline-arrow {
  position: absolute;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  z-index: 0;
  top: 15px;
  left: -8px;
}
.bdt-timeline .bdt-timeline-item:nth-last-child(-n+1) .bdt-timeline-item-main-container {
  padding-bottom: 0;
}
.bdt-timeline .bdt-timeline-item:nth-last-child(-n+1) .bdt-timeline-line {
  display: none;
}
.bdt-timeline.bdt-timeline-skin-custom .bdt-timeline-icon span {
  padding: 10px;
  line-height: 1;
}
.bdt-timeline.bdt-timeline-skin-custom .bdt-timeline-icon span .fa {
  height: 18px;
  width: 18px;
  font-size: 18px;
}
.bdt-timeline.bdt-timeline-skin-custom .bdt-timeline-icon span:after {
  display: none;
}
.bdt-timeline-icon-yes .bdt-timeline-icon span:after {
  transform: translate(-50%, -50%);
  transform-origin: center;
  font: normal normal normal 16px/1 FontAwesome;
  position: absolute;
  line-height: inherit;
  content: "\f15c";
}
.bdt-timeline-icon-yes .bdt-timeline-icon.bdt-post-format-standard span:after {
  content: "\f15c";
}
.bdt-timeline-icon-yes .bdt-timeline-icon.bdt-post-format-link span:after {
  content: "\f0c1";
}
.bdt-timeline-icon-yes .bdt-timeline-icon.bdt-post-format-audio span:after {
  content: "\f025";
}
.bdt-timeline-icon-yes .bdt-timeline-icon.bdt-post-format-video span:after {
  content: "\f04b";
}
.bdt-timeline-icon-yes .bdt-timeline-icon.bdt-post-format-gallery span:after {
  content: "\f03e";
}
.bdt-timeline-icon-yes .bdt-timeline-icon.bdt-post-format-quote span:after {
  content: "\f10d";
}
.bdt-timeline-right .bdt-timeline-item .bdt-timeline-item-main-wrapper {
  padding-left: 0;
}
.bdt-timeline-right .bdt-timeline-item.left-part .bdt-timeline-item-main-container,
.bdt-timeline-right .bdt-timeline-item.right-part .bdt-timeline-item-main-container {
  padding-right: 50px;
  padding-left: 0;
}
.bdt-timeline-right .bdt-timeline-item.left-part .bdt-timeline-arrow,
.bdt-timeline-right .bdt-timeline-item.right-part .bdt-timeline-arrow {
  right: -8px;
  left: auto;
}
.bdt-timeline-right .bdt-timeline-item.left-part .bdt-timeline-line,
.bdt-timeline-right .bdt-timeline-item.right-part .bdt-timeline-line {
  right: 0;
}
.bdt-timeline-right .bdt-timeline-item.left-part .bdt-timeline-icon,
.bdt-timeline-right .bdt-timeline-item.right-part .bdt-timeline-icon {
  right: 0;
  left: auto;
}
.bdt-timeline-right .bdt-timeline-date {
  padding: 10px 50px;
}
@media (max-width: 959px) {
  .bdt-timeline-right .bdt-timeline-item .bdt-timeline-item-main-wrapper {
    padding-right: 55px;
  }
  .bdt-timeline-right .bdt-timeline-item.left-part .bdt-timeline-line,
  .bdt-timeline-right .bdt-timeline-item.right-part .bdt-timeline-line {
    right: 55px;
  }
  .bdt-timeline-right .bdt-timeline-item.left-part .bdt-timeline-icon,
  .bdt-timeline-right .bdt-timeline-item.right-part .bdt-timeline-icon {
    right: 55px;
    left: auto;
  }
}
@media (min-width: 960px) {
  .bdt-timeline-center .bdt-timeline-item .bdt-timeline-item-main-wrapper {
    padding-left: 0;
  }
  .bdt-timeline-center .bdt-timeline-item.left-part .bdt-timeline-item-main-container {
    padding-right: 50px;
    padding-left: 0;
  }
  .bdt-timeline-center .bdt-timeline-item.left-part .bdt-timeline-arrow {
    right: -8px;
    left: auto;
  }
  .bdt-timeline-center .bdt-timeline-item.left-part .bdt-timeline-line {
    right: 0;
  }
  .bdt-timeline-center .bdt-timeline-item.left-part .bdt-timeline-icon {
    right: 0;
    left: auto;
  }
  .bdt-timeline-center .bdt-timeline-item.right-part .bdt-timeline-item-main-container {
    padding-left: 50px;
    padding-right: 0;
  }
  .bdt-timeline-center .bdt-timeline-item.right-part .bdt-timeline-icon {
    left: 0;
  }
  .bdt-timeline-center .bdt-timeline-date {
    padding: 10px 50px;
  }
  .bdt-timeline-center .bdt-timeline-item:nth-child(-n+2) .bdt-timeline-item-main-container {
    padding-top: 0;
  }
  .bdt-timeline-center .bdt-timeline-item:nth-child(-n+2) .bdt-timeline-icon {
    top: 22px;
  }
  .bdt-timeline-center .bdt-timeline-item:nth-last-child(-n+2) .bdt-timeline-item-main-container {
    padding-bottom: 0;
  }
}
/* post type fix */
.bdt-timeline figcaption {
  margin-bottom: 0;
}
.bdt-toggle-container .bdt-accordion {
  margin: 0;
  padding: 0;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-content {
  margin: 0;
  padding: 0;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-content p:empty {
  display: none;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item {
  list-style-type: none;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item .bdt-accordion-title {
  text-align: center;
  font-size: 1rem;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
  position: relative;
  padding: 15px 0;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item .bdt-accordion-title:before {
  content: '';
  position: absolute;
  height: 100px;
  width: 100%;
  left: 0;
  bottom: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  transition: all 500ms cubic-bezier(0, 0.49, 0.27, 0.99);
  pointer-events: none;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item .bdt-toggle-close,
.bdt-toggle-container .bdt-accordion .bdt-accordion-item .bdt-toggle-open {
  display: none;
  z-index: 2;
  position: relative;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item.bdt-open .bdt-toggle-close {
  display: inline-block;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item.bdt-open .bdt-accordion-icon-closed {
  display: none;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item.bdt-open .bdt-accordion-icon-opened {
  display: block;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item.bdt-open .bdt-accordion-title:before {
  height: 15px !important;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item:not(.bdt-open) .bdt-toggle-open {
  display: inline-block;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item .bdt-accordion-icon-closed {
  display: block;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-item .bdt-accordion-icon-opened {
  display: none;
}
.bdt-toggle-container .bdt-accordion .bdt-accordion-icon {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  z-index: 2;
}
.bdt-table-of-content .bdt-nav li {
  position: relative;
}
.bdt-table-of-content .bdt-nav li a {
  position: relative;
}
.bdt-table-of-content .bdt-nav li a:before {
  content: '';
  transition: height 500ms cubic-bezier(0.18, 0.86, 0.58, 1);
  height: 0;
  position: absolute;
  left: -10px;
  width: 3px;
  background-color: #1e87f0;
  top: 50%;
  transform: translateY(-50%);
}
.bdt-table-of-content .bdt-nav li.bdt-active > a {
  color: #000;
}
.bdt-table-of-content .bdt-nav li.bdt-active > a:before {
  height: calc(100% - 10px);
}
.bdt-trailer-box img {
  width: 100%;
}
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-title {
  margin-bottom: 10px;
  margin-top: 0;
}
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-pre-title,
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-title,
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-text,
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-button {
  text-decoration: none;
  color: inherit;
}
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-pre-title {
  margin-bottom: 0;
  margin-top: 0;
}
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-text {
  transition-delay: 50ms;
  margin-top: 10px;
}
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-button {
  transition-delay: 100ms;
  display: inline-block;
}
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-button .bdt-trailer-box-button-icon-left {
  float: left;
}
.bdt-trailer-box .bdt-trailer-box-desc-inner .bdt-trailer-box-button .bdt-trailer-box-button-icon-right {
  float: right;
}
[class*='bdt-item-transition-'] {
  overflow: hidden;
}
[class*='bdt-item-transition-'] .elementor-widget-container {
  -webkit-transition: 0.3s ease-out !important;
  transition: 0.3s ease-out !important;
  -webkit-transition-property: transform !important;
  transition-property: transform !important;
}
[class*='bdt-item-transition-'].bdt-item-transition-content .bdt-trailer-box-desc-inner {
  -webkit-transition: all 0.25s cubic-bezier(0.13, 0.51, 0.58, 1);
  transition: all 0.25s cubic-bezier(0.13, 0.51, 0.58, 1);
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
[class*='bdt-item-transition-'].bdt-item-transition-content:hover .bdt-trailer-box-desc-inner {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
[class*='bdt-item-transition-'].bdt-item-transition-scale-up .elementor-widget-container {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
}
[class*='bdt-item-transition-'].bdt-item-transition-scale-up:hover .elementor-widget-container {
  transform: scale3d(1.1, 1.1, 1);
  -webkit-transform: scale3d(1.1, 1.1, 1);
}
[class*='bdt-item-transition-'].bdt-item-transition-scale-down .elementor-widget-container {
  transform: scale3d(1.1, 1.1, 1);
  -webkit-transform: scale3d(1.1, 1.1, 1);
}
[class*='bdt-item-transition-'].bdt-item-transition-scale-down:hover .elementor-widget-container {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
}
.bdt-thumb-gallery .bdt-thumb-gallery-thumbnav a {
  position: relative;
}
.bdt-thumb-gallery .bdt-thumb-gallery-thumbnav a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: background-color 0.1s ease-in-out;
}
.bdt-thumb-gallery .bdt-thumb-gallery-thumbnav a:hover::after {
  background-color: transparent;
}
.bdt-thumb-gallery .bdt-thumb-gallery-thumbnav.bdt-active a::after {
  background-color: transparent;
}
.bdt-thumb-gallery .bdt-thumbnav-vertical > * > a {
  display: block;
}
.bdt-thumb-gallery .bdt-thumb-gallery-thumbnav a {
  height: 80px;
  width: 120px;
}
.bdt-thumb-gallery .bdt-thumb-gallery-title {
  color: #fff;
}
.bdt-thumb-gallery .bdt-thumb-gallery-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.bdt-thumb-gallery .bdt-thumb-gallery-button {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}
.bdt-thumb-gallery .bdt-thumb-gallery-button:hover {
  color: #fff;
}
.bdt-thumb-gallery .bdt-thumb-gallery-thumbnav a {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.bdt-thumb-gallery .bdt-thumb-gallery-thumbnav a:hover {
  overflow: hidden;
}
.bdt-thumb-gallery .bdt-thumb-gallery-content {
  background-color: rgba(25, 25, 25, 0.5);
  padding: 35px;
  max-width: 600px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .bdt-thumb-gallery .bdt-thumbnav-wrapper {
    position: relative !important;
    -webkit-transform: translate(0) !important;
    transform: translate(0) !important;
    left: auto !important;
    right: auto !important;
  }
  .bdt-thumb-gallery .bdt-thumbnav {
    display: block;
    flex: none;
    text-align: center;
  }
  .bdt-thumb-gallery .bdt-thumbnav li {
    display: inline-block;
  }
  .bdt-thumb-gallery .bdt-thumbnav-vertical > * {
    padding-left: 15px !important;
  }
  .bdt-thumb-gallery .bdt-thumb-gallery-text {
    display: none;
  }
}
.bdt-testimonial-grid .bdt-testimonial-grid-item-inner {
  padding: 35px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}
.bdt-testimonial-grid .bdt-testimonial-grid-img-wrapper {
  width: 64px;
  height: 64px;
}
.bdt-testimonial-grid .bdt-testimonial-grid-img-wrapper img {
  width: 100%;
  height: 100%;
}
.bdt-testimonial-grid .bdt-testimonial-grid-text {
  margin-top: 20px;
  margin-bottom: 20px;
}
.bdt-testimonial-grid.bdt-testimonial-grid-layout-2 .bdt-position-top-center {
  top: -40px;
}
.bdt-testimonial-grid.bdt-testimonial-grid-layout-2 .bdt-rating {
  justify-content: center;
}
.bdt-testimonial-grid.bdt-testimonial-grid-layout-2 .bdt-testimonial-grid-title {
  margin-top: 20px;
}
.bdt-testimonial-grid.bdt-testimonial-grid-layout-2 .bdt-testimonial-grid-img-wrapper {
  width: 80px;
  height: 80px;
  display: inline-block;
}
.bdt-testimonial-grid.bdt-testimonial-grid-layout-3 .bdt-testimonial-grid-text {
  margin-top: 0px;
  margin-bottom: 20px;
}
.bdt-testimonial-grid.bdt-testimonial-grid-layout-1 .bdt-testimonial-grid.bdt-testimonial-grid-layout-3 .bdt-position-center-right {
  margin-top: 0px;
}
@media only screen and (max-width: 960px) {
  .bdt-testimonial-grid .bdt-position-center-right {
    position: relative !important;
    margin-top: 15px;
  }
}
.bdt-testimonial-slider .bdt-testimonial-thumb {
  width: 80px;
  height: 80px;
  margin-right: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.bdt-testimonial-slider .bdt-testimonial-thumb img {
  width: 100%;
  height: 100%;
}
.bdt-testimonial-slider .bdt-testimonial-meta .bdt-testimonial-title {
  margin-bottom: 0;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.4;
}
.bdt-testimonial-slider .bdt-testimonial-meta .bdt-testimonial-address {
  font-size: 14px;
  line-height: 1.5;
}
.bdt-testimonial-slider .bdt-testimonial-text {
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
  color: #666666;
  padding-top: 80px;
  text-align: center;
  margin-bottom: 40px;
}
.bdt-testimonial-slider .bdt-testimonial-text:before {
  content: '';
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjY0cHgiIGhlaWdodD0iNjRweCIgdmlld0JveD0iMCAwIDk1LjMzMyA5NS4zMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDk1LjMzMyA5NS4zMzI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMzAuNTEyLDQzLjkzOWMtMi4zNDgtMC42NzYtNC42OTYtMS4wMTktNi45OC0xLjAxOWMtMy41MjcsMC02LjQ3LDAuODA2LTguNzUyLDEuNzkzICAgIGMyLjItOC4wNTQsNy40ODUtMjEuOTUxLDE4LjAxMy0yMy41MTZjMC45NzUtMC4xNDUsMS43NzQtMC44NSwyLjA0LTEuNzk5bDIuMzAxLTguMjNjMC4xOTQtMC42OTYsMC4wNzktMS40NDEtMC4zMTgtMi4wNDUgICAgcy0xLjAzNS0xLjAwNy0xLjc1LTEuMTA1Yy0wLjc3Ny0wLjEwNi0xLjU2OS0wLjE2LTIuMzU0LTAuMTZjLTEyLjYzNywwLTI1LjE1MiwxMy4xOS0zMC40MzMsMzIuMDc2ICAgIGMtMy4xLDExLjA4LTQuMDA5LDI3LjczOCwzLjYyNywzOC4yMjNjNC4yNzMsNS44NjcsMTAuNTA3LDksMTguNTI5LDkuMzEzYzAuMDMzLDAuMDAxLDAuMDY1LDAuMDAyLDAuMDk4LDAuMDAyICAgIGM5Ljg5OCwwLDE4LjY3NS02LjY2NiwyMS4zNDUtMTYuMjA5YzEuNTk1LTUuNzA1LDAuODc0LTExLjY4OC0yLjAzMi0xNi44NTFDNDAuOTcxLDQ5LjMwNywzNi4yMzYsNDUuNTg2LDMwLjUxMiw0My45Mzl6IiBmaWxsPSIjMDAwMDAwIi8+CgkJPHBhdGggZD0iTTkyLjQ3MSw1NC40MTNjLTIuODc1LTUuMTA2LTcuNjEtOC44MjctMTMuMzM0LTEwLjQ3NGMtMi4zNDgtMC42NzYtNC42OTYtMS4wMTktNi45NzktMS4wMTkgICAgYy0zLjUyNywwLTYuNDcxLDAuODA2LTguNzUzLDEuNzkzYzIuMi04LjA1NCw3LjQ4NS0yMS45NTEsMTguMDE0LTIzLjUxNmMwLjk3NS0wLjE0NSwxLjc3My0wLjg1LDIuMDQtMS43OTlsMi4zMDEtOC4yMyAgICBjMC4xOTQtMC42OTYsMC4wNzktMS40NDEtMC4zMTgtMi4wNDVjLTAuMzk2LTAuNjA0LTEuMDM0LTEuMDA3LTEuNzUtMS4xMDVjLTAuNzc2LTAuMTA2LTEuNTY4LTAuMTYtMi4zNTQtMC4xNiAgICBjLTEyLjYzNywwLTI1LjE1MiwxMy4xOS0zMC40MzQsMzIuMDc2Yy0zLjA5OSwxMS4wOC00LjAwOCwyNy43MzgsMy42MjksMzguMjI1YzQuMjcyLDUuODY2LDEwLjUwNyw5LDE4LjUyOCw5LjMxMiAgICBjMC4wMzMsMC4wMDEsMC4wNjUsMC4wMDIsMC4wOTksMC4wMDJjOS44OTcsMCwxOC42NzUtNi42NjYsMjEuMzQ1LTE2LjIwOUM5Ni4wOTgsNjUuNTU5LDk1LjM3Niw1OS41NzUsOTIuNDcxLDU0LjQxM3oiIGZpbGw9IiMwMDAwMDAiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  opacity: .1;
  width: 64px;
  height: 64px;
  font-weight: 600;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -32px;
}
.bdt-testimonial-slider .swiper-slide .bdt-testimonial-meta,
.bdt-testimonial-slider .swiper-slide .bdt-testimonial-thumb {
  opacity: 0;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 0.7s cubic-bezier(0.21, 0.44, 0.25, 0.93);
  -moz-transition: all 0.7s cubic-bezier(0.21, 0.44, 0.25, 0.93);
  transition: all 0.7s cubic-bezier(0.21, 0.44, 0.25, 0.93);
}
.bdt-testimonial-slider .swiper-slide .bdt-testimonial-meta {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.bdt-testimonial-slider .swiper-slide .bdt-testimonial-thumb {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.bdt-testimonial-slider .swiper-slide.swiper-slide-active .bdt-testimonial-meta,
.bdt-testimonial-slider .swiper-slide.swiper-slide-active .bdt-testimonial-thumb {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 1199px) {
  .bdt-testimonial-slider .bdt-testimonial-text {
    font-size: 16px;
  }
}
@media (max-width: 959px) {
  .bdt-testimonial-slider .bdt-testimonial-meta .bdt-testimonial-title {
    font-size: 1rem;
    line-height: 1.2;
  }
  .bdt-testimonial-slider .bdt-testimonial-meta .bdt-testimonial-address {
    font-size: 12px;
    line-height: 1.2;
  }
  .bdt-testimonial-slider .bdt-testimonial-thumb {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}
.bdt-testimonial-carousel .swiper-button-prev,
.bdt-testimonial-carousel .swiper-container-rtl .swiper-button-next {
  left: 10px;
}
.bdt-testimonial-carousel .swiper-button-next,
.bdt-testimonial-carousel .swiper-container-rtl .swiper-button-prev {
  right: 10px;
}
.bdt-testimonial-carousel .bdt-testimonial-carousel-item-wrapper {
  padding: 40px;
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.bdt-testimonial-carousel .bdt-testimonial-carousel-item-wrapper .testimonial-item-header .bdt-testimonial-carousel-title {
  font-size: 1.2rem;
  line-height: 1.3;
}
.bdt-testimonial-carousel .bdt-testimonial-carousel-item-wrapper .bdt-testimonial-carousel-text {
  border-top: 1px solid rgba(175, 175, 175, 0.15);
  box-sizing: border-box;
  padding-top: 20px;
  margin-top: 20px;
}
.bdt-testimonial-carousel .bdt-testimonial-carousel-item-wrapper .bdt-testimonial-carousel-rating {
  padding-top: 20px;
}
.bdt-testimonial-carousel .bdt-testimonial-carousel-img-wrapper {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 72px;
  height: 72px;
}
.bdt-testimonial-carousel .bdt-testimonial-carousel-img-wrapper img {
  height: 100%;
  width: 100%;
}
.bdt-testimonial-carousel-skin-default .bdt-testimonial-carousel-img-wrapper {
  width: 64px;
  height: 64px;
}
.bdt-testimonial-carousel-skin-vyxo .testimonial-item-header {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bdt-testimonial-carousel-skin-vyxo .bdt-testimonial-carousel-text-wrap {
  color: #fff;
  background: #1e87f0;
}
.bdt-testimonial-carousel-skin-vyxo .bdt-testimonial-carousel-text {
  color: inherit;
  margin-bottom: 20px;
}
.bdt-testimonial-carousel-skin-vyxo .bdt-testimonial-carousel-title {
  margin-top: 20px;
}
.bdt-testimonial-carousel-skin-twyla .bdt-testimonial-carousel-img-wrapper {
  display: inline-block;
}
.bdt-testimonial-carousel-skin-twyla .bdt-testimonial-carousel-item-wrapper .bdt-testimonial-carousel-text {
  border-top: 0px solid rgba(175, 175, 175, 0.15);
  padding-top: 20px;
  margin-top: 0px;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-text {
  font-size: 18px;
  font-weight: 300;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-text a {
  opacity: 0.8;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-text a:hover {
  opacity: 1;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-thumb .bdt-twitter-thumb-wrapper {
  display: inline-block;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-thumb img {
  width: 20px;
  height: auto;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-meta-wrapper {
  position: relative;
  height: 35px;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-meta-wrapper .bdt-twitter-time-link {
  display: block;
  color: #b3b9bd;
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-meta-wrapper .bdt-twitter-meta-button {
  position: absolute;
  left: 0;
  bottom: 0;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-meta-wrapper .bdt-twitter-meta-button a {
  color: #b3b9bd;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-meta-wrapper .bdt-twitter-meta-button a:hover {
  color: #838d94;
}
.bdt-twitter-carousel .bdt-carousel-item .bdt-twitter-meta-wrapper .bdt-twitter-meta-button a + a {
  margin-left: 5px;
}
.bdt-twitter-slider .bdt-twitter-text {
  text-align: center;
  font-size: 22px;
  line-height: normal;
  margin-bottom: 15px;
  padding-left: 80px;
  padding-right: 80px;
  font-weight: 300;
}
.bdt-twitter-slider .bdt-twitter-time-link {
  display: block;
  font-size: 1.2em;
  opacity: 0.8;
}
.bdt-twitter-slider .bdt-twitter-thumb {
  margin-bottom: 20px;
}
.bdt-twitter-slider .bdt-twitter-thumb .bdt-twitter-thumb-wrapper {
  display: inline-block;
}
.bdt-twitter-slider .bdt-twitter-thumb .bdt-twitter-thumb-wrapper img {
  width: 48px;
  height: auto;
}
.bdt-table table {
  width: 100%;
  margin: 0 0 1.5em 0;
  border-collapse: collapse;
  font-size: 1em;
}
.bdt-table th {
  font-size: 1em;
  font-weight: 700;
}
@media only screen and (max-width: 40em) {
  .elementor-widget-bdt-table .bdt-table table {
    display: block;
    position: relative;
    width: 100%;
  }
  .elementor-widget-bdt-table .bdt-table table thead {
    display: block;
    float: left;
  }
  .elementor-widget-bdt-table .bdt-table table thead tr {
    display: block;
  }
  .elementor-widget-bdt-table .bdt-table table tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }
  .elementor-widget-bdt-table .bdt-table table tbody tr {
    display: inline-block;
    vertical-align: top;
  }
  .elementor-widget-bdt-table .bdt-table table th {
    display: block;
    padding: 0.5em 1em !important;
    border-bottom: none;
    border-right: none;
    border-left: none;
  }
  .elementor-widget-bdt-table .bdt-table table th:first-child {
    border-top: none;
  }
  .elementor-widget-bdt-table .bdt-table table td {
    display: block;
    padding: 0.5em 1em !important;
    min-height: 1.25em;
    border-bottom: none;
    border-right: none;
  }
  .elementor-widget-bdt-table .bdt-table table td:first-child {
    border-top: none;
  }
}
.bdt-scroll-image-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.bdt-scroll-image-container .bdt-scroll-image-holder {
  display: block;
  position: relative;
  width: 100%;
}
.bdt-scroll-image-container .bdt-scroll-image-holder .bdt-icon {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.bdt-scroll-image-container .bdt-scroll-image-holder .bdt-scroll-image {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 320px;
  overflow: hidden;
  border-top: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  transition: background-position 2s cubic-bezier(0.1, 0.54, 0.43, 0.94);
  -webkit-transition: background-position 2s cubic-bezier(0.1, 0.54, 0.43, 0.94);
}
.bdt-scroll-image-container .bdt-scroll-image-holder .bdt-scroll-image:hover {
  background-position: center bottom !important;
}
.bdt-scroll-button .bdt-scroll-button-align-icon-right {
  float: right;
}
.bdt-scroll-button .bdt-scroll-button-align-icon-left {
  float: left;
}
.bdt-scrollnav .bdt-button-icon-align-left {
  order: -1;
}
@media (max-width: 959px) {
  .bdt-scrollnav .bdt-navbar-nav {
    flex-wrap: wrap;
  }
  .bdt-scrollnav .bdt-navbar-nav > li > a {
    height: 40px;
  }
}
@media (max-width: 639px) {
  .bdt-scrollnav .bdt-navbar-nav {
    flex-wrap: wrap;
  }
  .bdt-scrollnav .bdt-navbar-nav > li > a {
    height: 30px;
  }
}
.bdt-user-login .elementor-field-type-submit .elementor-button {
  padding: 12px 20px;
}
.bdt-user-login-skin-dropdown .bdt-dropdown {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.bdt-field-group {
  margin-bottom: 10px;
}
.bdt-form-stacked .bdt-field-group.bdt-margin-remove-bottom {
  line-height: 1;
}
.bdt-form-stacked .bdt-field-group .bdt-checkbox {
  margin-right: 3px;
}
.bdt-user-login-password a {
  position: relative;
  display: inline-block;
}
.bdt-user-login-password a:not(:last-child) {
  margin-right: 22px;
}
.bdt-user-login-password a:not(:last-child):after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  right: -15px;
  background-color: rgba(100, 100, 100, 0.39);
  border-radius: 8px;
  margin-top: -2px;
  opacity: .3;
}
.bdt-user-login-modal .bdt-modal-header {
  background: transparent;
  border-radius: inherit;
  border-bottom: 1px solid rgba(153, 153, 153, 0.19);
}
.bdt-user-login-modal .bdt-modal-header .bdt-icon {
  transform: translateY(-3px);
  margin-right: 5px;
}
.bdt-user-login-modal .bdt-modal-close-default {
  top: 18px;
  right: 20px;
}
.bdt-user-login-modal .elementor-field-type-submit .elementor-button {
  padding: 12px 20px;
}
.bdt-user-register .elementor-field-type-submit .elementor-button {
  padding: 12px 30px;
}
.bdt-user-register-skin-dropdown .bdt-dropdown {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  max-width: 300px;
}
.bdt-field-group {
  margin-bottom: 10px;
}
.bdt-form-stacked .bdt-field-group.bdt-margin-remove-bottom {
  line-height: 1;
}
.bdt-form-stacked .bdt-field-group .bdt-checkbox {
  margin-right: 3px;
}
.bdt-user-register-password a {
  position: relative;
  display: inline-block;
}
.bdt-user-register-password a:not(:last-child) {
  margin-right: 22px;
}
.bdt-user-register-password a:not(:last-child):after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  right: -15px;
  background-color: rgba(100, 100, 100, 0.39);
  border-radius: 8px;
  margin-top: -2px;
  opacity: .3;
}
.bdt-user-register-modal .bdt-modal-dialog {
  width: 450px;
}
.bdt-user-register-modal .bdt-modal-header {
  background: transparent;
  border-radius: inherit;
  border-bottom: 1px solid rgba(153, 153, 153, 0.19);
}
.bdt-user-register-modal .bdt-modal-header .bdt-icon {
  transform: translateY(-3px);
  margin-right: 5px;
}
.bdt-user-register-modal .bdt-modal-close-default {
  top: 18px;
  right: 20px;
}
.bdt-user-register-modal .elementor-field-type-submit .elementor-button {
  padding: 12px 20px;
}
.bdt-register-additional-message {
  font-size: 12px;
  color: #999;
}
.bdt-download-monitor-button {
  text-align: left;
}
.bdt-download-monitor-button .bdt-dm-description {
  display: inline-block;
}
.bdt-download-monitor-button .bdt-dm-description .bdt-dm-title {
  font-weight: 700;
  text-transform: uppercase;
}
.bdt-download-monitor-button .bdt-dm-description .bdt-dm-meta > * {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.7;
  position: relative;
}
.bdt-download-monitor-button .bdt-dm-description .bdt-dm-meta * + * {
  margin-left: 8px;
}
.bdt-download-monitor-button .bdt-dm-description .bdt-dm-meta * + *:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 10px;
  border-left: 1px solid;
  top: 9%;
  left: -6px;
  opacity: 0.5;
}
.wpDataTablesWrapper table.wpDataTable:not(.responsive) tr td {
  text-overflow: clip;
  white-space: normal;
}
@media (max-width: 767px) {
  .wpDataTables {
    overflow-x: auto;
  }
}
@font-face {
  font-family: 'star';
  src: url('../../../../plugins/woocommerce/assets/fonts/star.eot');
  src: url('../../../../plugins/woocommerce/assets/fonts/star.eot?#iefix') format('embedded-opentype'), url('../../../../plugins/woocommerce/assets/fonts/star.woff') format('woff'), url('../../../../plugins/woocommerce/assets/fonts/star.ttf') format('truetype'), url('../../../../plugins/woocommerce/assets/fonts/star.svg#star') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'WooCommerce';
  src: url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot');
  src: url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix') format('embedded-opentype'), url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff') format('woff'), url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf') format('truetype'), url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce') format('svg');
  font-weight: normal;
  font-style: normal;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bdt-wc-carousel .bdt-overlay-default {
  background: #fff;
}
.bdt-wc-carousel span.onsale {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e87f0;
  border: 2px solid #1e87f0;
  border-radius: 100px;
  text-align: center;
  padding: 5px 12px;
  box-sizing: border-box;
}
.bdt-wc-carousel .bdt-wc-carousel-item {
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}
.bdt-wc-carousel .bdt-wc-carousel-item .bdt-wc-carousel-desc-inner {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.bdt-wc-carousel .bdt-wc-carousel-item .bdt-wc-carousel-desc-inner .bdt-wc-carousel-price {
  font-weight: 700;
}
.bdt-wc-carousel .bdt-wc-carousel-item .bdt-wc-carousel-desc-inner .bdt-wc-carousel-price ins {
  background: none;
}
.bdt-wc-carousel .bdt-wc-carousel-item .bdt-wc-carousel-desc-inner .bdt-wc-carousel-price del {
  font-weight: 600;
  opacity: 0.3;
  font-size: 14px;
}
.bdt-wc-carousel .bdt-wc-carousel-item .bdt-wc-carousel-desc-inner .bdt-wc-carousel-price p,
.bdt-wc-carousel .bdt-wc-carousel-item .bdt-wc-carousel-desc-inner .bdt-wc-carousel-price span {
  margin: 0;
}
.bdt-wc-carousel .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 12px;
  width: 5.6em;
  font-family: 'star';
  letter-spacing: 1px;
}
.bdt-wc-carousel .star-rating:before {
  font-family: star;
  content: "\73\73\73\73\73";
  color: #e7e7e7;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.bdt-wc-carousel .star-rating span {
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  float: left;
  padding-top: 20px;
  color: #FFCC00;
}
.bdt-wc-carousel .star-rating span:before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0;
}
.bdt-wc-carousel .bdt-wc-carousel-add-to-cart a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 2px solid #1e87f0;
  border-radius: 5000px;
  color: #1e87f0;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  padding: 10px 45px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.bdt-wc-carousel .bdt-wc-carousel-add-to-cart a:hover {
  background: #1e87f0;
  color: #fff;
  border: 2px solid #1e87f0;
}
.bdt-wc-carousel .bdt-wc-carousel-add-to-cart a.added {
  display: none;
}
.bdt-wc-carousel .bdt-wc-carousel-add-to-cart a.loading:after {
  content: "\f1ce";
  font-family: "FontAwesome";
  -webkit-animation: spin 0.5s linear infinite;
  animation: spin 1.2s linear infinite;
  margin-left: 10px;
  display: inline-block;
}
.bdt-wc-carousel .bdt-wc-carousel-add-to-cart.bdt-position-center {
  width: auto;
}
.bdt-wc-carousel .bdt-wc-carousel-title {
  color: #333;
  font-weight: 700;
  font-size: 16px;
}
/* swiper */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal .swiper-pagination-bullets,
.swiper-container-horizontal + .swiper-pagination-bullets {
  bottom: -50px;
  width: 100%;
}
.swiper-pagination-fraction .swiper-pagination-bullet,
.swiper-pagination-custom .swiper-pagination-bullet,
.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-container-horizontal + .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
/* woocommerce */
.elementor-widget-container .woocommerce .product-category a {
  display: block;
  transition: all 350ms cubic-bezier(0.15, 0.83, 0.58, 1);
}
.elementor-widget-container .woocommerce .product-category img {
  transition: all 350ms cubic-bezier(0.15, 0.83, 0.58, 1);
}
.elementor-widget-container .woocommerce-loop-category__title mark {
  background-color: transparent;
  color: inherit;
}
/* Common Less */
.bdt-carousel .swiper-container,
.bdt-wc-carousel .swiper-container,
.bdt-testimonial-carousel .swiper-container {
  padding: 10px;
  margin: 0 -10px;
}
/* Button icon align */
.bdt-button-icon-align-left {
  float: left;
}
.bdt-button-icon-align-right {
  float: right;
}
/* Custom grid */
.bdt-ep-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  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 */
.swiper-container .elementor-lightbox-content-source {
  display: none;
}
.swiper-slide {
  border-style: solid;
  border-width: 0;
  overflow: hidden;
}
.swiper-container-horizontal + .swiper-pagination-progressbar,
.swiper-container-vertical + .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -ms-transform: scale(0);
  transform: scale(0);
  -ms-transform-origin: left top;
  transform-origin: left top;
}
/* Animation Delay */
.bdt-animated-slow > span {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.bdt-animated-fast > span {
  -webkit-animation-duration: .75s;
  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 {
  padding: 0;
}
.bdt-ep-grid-filters .bdt-ep-grid-filter {
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
}
.bdt-ep-grid-filters .bdt-ep-grid-filter.bdt-active {
  border-bottom: 2px solid #444;
}
@media (min-width: 1024px) {
  .bdt-ep-grid-filter-container {
    transition: height 0.5s ease-out;
  }
}
.bdt-document-viewer iframe {
  border: none;
}
/* 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 {
  left: 0;
  background: -webkit-linear-gradient(left, #ffffff 5%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, #ffffff 5%, rgba(255, 255, 255, 0) 100%);
  left: -10px;
}
.bdt-ep-shadow-mode-yes .elementor-widget-container:after {
  right: 0;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 95%);
  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 {
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, background-color;
  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;
  -webkit-transition: 0.15s cubic-bezier(0, 0.75, 0.43, 1);
  transition: 0.1s cubic-bezier(0, 0.75, 0.43, 1);
  -webkit-transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 15px;
  opacity: 1;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}
.bdt-navbar-style-1 .bdt-navbar-nav > li.bdt-active > a:before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
.bdt-navbar-style-1 .bdt-navbar-nav > li:hover > a:before {
  -webkit-transform: scale3d(1, 1, 1);
  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;
  -webkit-transition: 0.15s cubic-bezier(0, 0.75, 0.43, 1);
  transition: 0.1s cubic-bezier(0, 0.75, 0.43, 1);
  -webkit-transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 15px;
  opacity: 1;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}
.bdt-navbar-style-2 .bdt-navbar-nav > li.bdt-active > a:after {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
.bdt-navbar-style-2 .bdt-navbar-nav > li:hover > a:after {
  -webkit-transform: scale3d(1, 1, 1);
  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;
  -webkit-transition: 0.25s cubic-bezier(0, 0.75, 0.43, 1);
  transition: 0.25s cubic-bezier(0, 0.75, 0.43, 1);
  -webkit-transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform;
  left: 0;
  right: 0;
  margin: 0 10px;
  opacity: 1;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  z-index: -1;
  transform-origin: left;
}
.bdt-navbar-style-3 .bdt-navbar-nav > li.bdt-active > a:after {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.bdt-navbar-style-3 .bdt-navbar-nav > li:hover > a:after {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
/* Scroll to top */
@keyframes totopscroller {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@-webkit-keyframes totopscroller {
  0% {
    -webkit-transform: translateY(0px);
  }
  100% {
    -webkit-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;
  -webkit-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;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.bdt-ep-scroll-to-section a:hover {
  background: #fff;
  color: #282828;
  border: 2px solid #fff;
}
