@charset "UTF-8";
:root {
  --contrast:#222222;
  --contrast-2:#6e6f71;
  --contrast-3:#bababa;
  --contrast-4:#DFDFDF;
  --base:#f0f0f0;
  --base-2:#f7f8f9;
  --base-3:#ffffff;
  --accent:#06a2a8;
  --ttc-red:#FF0000;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}
/*
 * Remove margin from the last-child
 */
.uk-list > * > :last-child {
  margin-bottom: 0;
}
/*
 * Style
 */
.uk-list > :nth-child(n+2), .uk-list > * > ul {
  margin-top: 10px;
}
/* Marker modifiers
 * Moving `::marker` inside `::before` to style it differently
 * To style the `::marker` is currently only supported in Firefox and Safari
 ========================================================================== */
.uk-list-disc > *, .uk-list-circle > *, .uk-list-square > *, .uk-list-decimal > *, .uk-list-hyphen > * {
  padding-left: 30px;
}
/*
 * Type modifiers
 */
.uk-list-decimal {
  counter-reset: decimal;
}
.uk-list-decimal > * {
  counter-increment: decimal;
}
[class*="uk-list"] > ::before {
  content: "";
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.5em;
  margin-bottom: -1.5em;
  display: list-item;
  list-style-position: inside;
  text-align: right;
}
.uk-list-disc > ::before {
  list-style-type: disc;
}
.uk-list-circle > ::before {
  list-style-type: circle;
}
.uk-list-square > ::before {
  list-style-type: square;
}
.uk-list-decimal > ::before {
  content: counter(decimal,decimal) " . ";
}
.uk-list-hyphen > ::before {
  content: "–  ";
}
/*
 * Color modifiers
 */
.uk-list-muted > ::before {
  color: #ffffff !important;
}
.uk-list-emphasis > ::before {
  color: #06a2a8 !important;
}
.uk-list-primary > ::before {
  color: #06a2a8 !important;
}
.uk-list-secondary > ::before {
  color: #6e6f71 !important;
}
/* Image bullet modifier
 ========================================================================== */
.uk-list-bullet > * {
  padding-left: 30px;
}
.uk-list-bullet > ::before {
  content: "";
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.5em;
  margin-bottom: -1.5em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%236e6f71%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.uk-list-divider > :nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ffffff;
}
/*
 * Striped
 */
.uk-list-striped > * {
  padding: 10px 10px;
}
.uk-list-striped > :nth-of-type(odd) {
  background: #ffffff;
}
.uk-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* Size modifier
 ========================================================================== */
.uk-list-large > :nth-child(n+2), .uk-list-large > * > ul {
  margin-top: 20px;
}
.uk-list-collapse > :nth-child(n+2), .uk-list-collapse > * > ul {
  margin-top: 0;
}
/*
 * Divider
 */
.uk-list-large.uk-list-divider > :nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}
.uk-list-collapse.uk-list-divider > :nth-child(n+2) {
  margin-top: 0;
  padding-top: 0;
}
/*
 * Striped
 */
.uk-list-large.uk-list-striped > * {
  padding: 20px 10px;
}
.uk-list-collapse.uk-list-striped > * {
  padding-top: 0;
  padding-bottom: 0;
}
.uk-list-large.uk-list-striped > :nth-child(n+2), .uk-list-collapse.uk-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/*
 * Term
 */
.uk-description-list > dt {
  color: #06a2a8;
}
.uk-description-list > dt:nth-child(n+2) {
  margin-top: 20px;
}
/*
 * Description
 */
/* Style modifier
 ========================================================================== */
/*
 * Line
 */
.uk-description-list-divider > dt:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ffffff;
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Behave like a block element
 * 3. Style
 */
.uk-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 20px;
}
/* Add margin if adjacent element */
* + .uk-table {
  margin-top: 20px;
}
/* Header cell
 ========================================================================== */
/*
 * 1. Style
 */
.uk-table th {
  padding: 16px 12px;
  text-align: left;
  vertical-align: bottom;
  /* 1 */
  font-size: 16px;
  font-weight: bold;
  color: #6e6f71;
}
/* Cell
 ========================================================================== */
.uk-table td {
  padding: 16px 12px;
  vertical-align: top;
}
/*
 * Remove margin from the last-child
 */
.uk-table td > :last-child {
  margin-bottom: 0;
}
/* Footer
 ========================================================================== */
.uk-table tfoot {
  font-size: 0.875rem;
}
/* Caption
 ========================================================================== */
.uk-table caption {
  font-size: 0.875rem;
  text-align: left;
  color: #ffffff;
}
/* Alignment modifier
 ========================================================================== */
.uk-table-middle, .uk-table-middle td {
  vertical-align: middle !important;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.uk-table-divider > tr:not(:first-child), .uk-table-divider > :not(:first-child) > tr, .uk-table-divider > :first-child > tr:not(:first-child) {
  border-top: 1px solid #ffffff;
}
/*
 * Striped
 */
.uk-table-striped > tr:nth-of-type(odd), .uk-table-striped tbody tr:nth-of-type(odd) {
  background: #ffffff;
}
/*
 * Hover
 */
.uk-table-hover > tr:hover, .uk-table-hover tbody tr:hover {
  background: #ffd;
}
/* Active state
 ========================================================================== */
.uk-table > tr.uk-active, .uk-table tbody tr.uk-active {
  background: #ffd;
}
/* Size modifier
 ========================================================================== */
.uk-table-small th, .uk-table-small td {
  padding: 10px 12px;
}
.uk-table-large th, .uk-table-large td {
  padding: 22px 12px;
}
/* Justify modifier
 ========================================================================== */
.uk-table-justify th:first-child, .uk-table-justify td:first-child {
  padding-left: 0;
}
.uk-table-justify th:last-child, .uk-table-justify td:last-child {
  padding-right: 0;
}
/* Cell size modifier
 ========================================================================== */
.uk-table-shrink {
  width: 1px;
}
.uk-table-expand {
  min-width: 150px;
}
/* Cell link modifier
 ========================================================================== */
/*
 * Does not work with `uk-table-justify` at the moment
 */
.uk-table-link {
  padding: 0 !important;
}
.uk-table-link > a {
  display: block;
  padding: 16px 12px;
}
.uk-table-small .uk-table-link > a {
  padding: 10px 12px;
}
/* Responsive table
 ========================================================================== */
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-table-responsive, .uk-table-responsive tbody, .uk-table-responsive th, .uk-table-responsive td, .uk-table-responsive tr {
    display: block;
  }
  .uk-table-responsive thead {
    display: none;
  }
  .uk-table-responsive th, .uk-table-responsive td {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }
  .uk-table-responsive th:not(:first-child):not(.uk-table-link), .uk-table-responsive td:not(:first-child):not(.uk-table-link), .uk-table-responsive .uk-table-link:not(:first-child) > a {
    padding-top: 5px !important;
  }
  .uk-table-responsive th:not(:last-child):not(.uk-table-link), .uk-table-responsive td:not(:last-child):not(.uk-table-link), .uk-table-responsive .uk-table-link:not(:last-child) > a {
    padding-bottom: 5px !important;
  }
  .uk-table-justify.uk-table-responsive th, .uk-table-justify.uk-table-responsive td {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ========================================================================
   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
 */
.uk-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.uk-icon:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Set the fill and stroke color of all SVG elements to the current text color
 */
.uk-icon:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
  fill: currentcolor;
}
.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-icon > * {
  transform: translate(0, 0);
}
/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 */
.uk-icon-image {
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.uk-icon-link {
  color: #ffffff;
}
.uk-icon-link:hover, .uk-icon-link:focus {
  color: #6e6f71;
  outline: none;
}
/* OnClick + Active */
.uk-icon-link:active, .uk-active > .uk-icon-link {
  color: #616264;
}
/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.uk-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #ffffff;
  color: #ffffff;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/* Hover + Focus */
.uk-icon-button:hover, .uk-icon-button:focus {
  background-color: #f2f2f2;
  color: #6e6f71;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active, .uk-active > .uk-icon-button {
  background-color: #e6e6e6;
  color: #6e6f71;
}
/* ========================================================================
   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
 */
.uk-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 */
.uk-range:focus {
  outline: none;
}
.uk-range::-moz-focus-outer {
  border: none;
}
/* IE11 Reset */
.uk-range::-ms-track {
  height: 15px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-range:not(:disabled)::-webkit-slider-thumb {
  cursor: pointer;
}
.uk-range:not(:disabled)::-moz-range-thumb {
  cursor: pointer;
}
.uk-range:not(:disabled)::-ms-thumb {
  cursor: pointer;
}
/* Thumb
 ========================================================================== */
/*
 * 1. Reset
 * 2. Style
 */
/* Webkit */
.uk-range::-webkit-slider-thumb {
  /* 1 */
  -webkit-appearance: none;
  margin-top: -7px;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #6e6f71;
}
/* Firefox */
.uk-range::-moz-range-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #6e6f71;
}
/* Edge */
.uk-range::-ms-thumb {
  /* 1 */
  margin-top: 0;
}
/* IE11 */
.uk-range::-ms-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #6e6f71;
}
/* Edge + IE11 */
.uk-range::-ms-tooltip {
  display: none;
}
/* Track
 ========================================================================== */
/*
 * 1. Safari doesn't have a focus state. Using active instead.
 */
/* Webkit */
.uk-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #f2f2f2;
}
.uk-range:focus::-webkit-slider-runnable-track, .uk-range:active::-webkit-slider-runnable-track {
  /* 1 */
  background: #e6e6e6;
}
/* Firefox */
.uk-range::-moz-range-track {
  height: 3px;
  background: #f2f2f2;
}
.uk-range:focus::-moz-range-track {
  background: #e6e6e6;
}
/* Edge */
.uk-range::-ms-fill-lower, .uk-range::-ms-fill-upper {
  height: 3px;
  background: #f2f2f2;
}
.uk-range:focus::-ms-fill-lower, .uk-range:focus::-ms-fill-upper {
  background: #e6e6e6;
}
/* ========================================================================
   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.
 */
.uk-input, .uk-select, .uk-textarea, .uk-radio, .uk-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}
/*
 * Show the overflow in Edge.
 */
.uk-input {
  overflow: visible;
}
/*
 * Remove the inheritance of text transform in Firefox.
 */
.uk-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.
 */
.uk-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.uk-textarea {
  overflow: auto;
}
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.uk-input[type="search"]::-webkit-search-cancel-button, .uk-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.uk-input[type="number"]::-webkit-inner-spin-button, .uk-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-input::-moz-placeholder, .uk-textarea::-moz-placeholder {
  opacity: 1;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-radio:not(:disabled), .uk-checkbox:not(:disabled) {
  cursor: pointer;
}
/*
 * Define consistent border, margin, and padding.
 */
.uk-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.
 */
.uk-input, .uk-textarea {
  -webkit-appearance: none;
}
/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.uk-input, .uk-select, .uk-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: #ffffff;
  color: #6e6f71;
}
/*
 * 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
 */
.uk-input, .uk-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
}
/* 2 */
.uk-input:not(input), .uk-select:not(select) {
  line-height: 40px;
}
/*
 * Multi-line
 */
.uk-select[multiple], .uk-select[size], .uk-textarea {
  padding-top: 6px;
  padding-bottom: 6px;
  vertical-align: top;
}
.uk-select[multiple], .uk-select[size] {
  resize: vertical;
}
/* Focus */
.uk-input:focus, .uk-select:focus, .uk-textarea:focus {
  outline: none;
  background-color: #f2f2f2;
  color: #6e6f71;
}
/* Disabled */
/*
 * Placeholder
 */
.uk-input::-ms-input-placeholder {
  color: #ffffff !important;
}
.uk-input::placeholder {
  color: #ffffff;
}
.uk-textarea::-ms-input-placeholder {
  color: #ffffff !important;
}
.uk-textarea::placeholder {
  color: #ffffff;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
  font-size: 0.875rem;
}
/* Single-line */
.uk-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
/* Multi-line */
textarea.uk-form-small, [multiple].uk-form-small, [size].uk-form-small {
  padding: 5px 8px;
}
.uk-form-small:not(select):not(input):not(textarea) {
  line-height: 30px;
}
/*
 * Large
 */
.uk-form-large {
  font-size: 1.25rem;
}
/* Single-line */
.uk-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}
/* Multi-line */
textarea.uk-form-large, [multiple].uk-form-large, [size].uk-form-large {
  padding: 7px 12px;
}
.uk-form-large:not(select):not(input):not(textarea) {
  line-height: 55px;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Error
 */
.uk-form-danger, .uk-form-danger:focus {
  color: #f0506e;
}
/*
 * Success
 */
.uk-form-success, .uk-form-success:focus {
  color: #32d296;
}
/*
 * Blank
 */
.uk-form-blank {
  background: none;
}
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-xsmall {
  width: 50px;
}
select.uk-form-width-xsmall {
  width: 75px;
}
.uk-form-width-small {
  width: 130px;
}
.uk-form-width-medium {
  width: 200px;
}
.uk-form-width-large {
  width: 500px;
}
/* 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.
 */
.uk-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%0A%20%20%20%20%3Cpolygon%20fill%3D%22%236e6f71%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%236e6f71%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
/* 3 */
.uk-select:not([multiple]):not([size])::-ms-expand {
  display: none;
}
/* 4 */
.uk-select:not([multiple]):not([size]) option {
  color: #444;
}
/*
 * Disabled
 */
.uk-select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* Datalist
 ========================================================================== */
/*
 * 1. Remove default style in Chrome
 */
.uk-input[list] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.uk-input[list]:hover, .uk-input[list]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%236e6f71%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* 1 */
.uk-input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}
/* 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
 */
.uk-radio, .uk-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: #f2f2f2;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-radio {
  border-radius: 50%;
}
/* Focus */
.uk-radio:focus, .uk-checkbox:focus {
  background-color: #e6e6e6;
  outline: none;
}
/*
 * Checked
 */
.uk-radio:checked, .uk-checkbox:checked, .uk-checkbox:indeterminate {
  background-color: #06a2a8;
}
/* Focus */
.uk-radio:checked:focus, .uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus {
  background-color: #047377;
}
/*
 * Icons
 */
.uk-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22white%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22white%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/*
 * Disabled
 */
.uk-radio:disabled, .uk-checkbox:disabled {
  background-color: #ffffff;
}
.uk-radio:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22white%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-checkbox:disabled:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22white%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%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
 */
.uk-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
 */
.uk-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
 */
.uk-form-custom select, .uk-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;
}
.uk-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}
/* Label
 ========================================================================== */
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 10px;
}
/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 10px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }
  .uk-form-horizontal .uk-form-controls {
    margin-left: 215px;
  }
  .uk-form-horizontal .uk-form-controls-text {
    padding-top: 7px;
  }
}
/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.uk-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: #ffffff;
}
/*
 * Required for `a`.
 */
.uk-form-icon:hover {
  color: #6e6f71;
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.uk-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Input padding
 */
.uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input {
  padding-left: 40px !important;
}
/*
 * Position modifier
 */
.uk-form-icon-flip {
  right: 0;
  left: auto;
}
.uk-form-icon-flip ~ .uk-input {
  padding-right: 40px !important;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.uk-card {
  position: relative;
  box-sizing: border-box;
}
/* Sections
 ========================================================================== */
.uk-card-body {
  display: flow-root;
  padding: 30px 30px;
}
.uk-card-header {
  display: flow-root;
  padding: 15px 30px;
}
.uk-card-footer {
  display: flow-root;
  padding: 15px 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body {
    padding: 40px 40px;
  }
  .uk-card-header {
    padding: 20px 40px;
  }
  .uk-card-footer {
    padding: 20px 40px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-card-body > :last-child, .uk-card-header > :last-child, .uk-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
 ========================================================================== */
.uk-card-title {
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Badge
 ========================================================================== */
/*
 * 1. Position
 * 2. Size
 * 3. Style
 * 4. Center child vertically
 */
.uk-card-badge {
  /* 1 */
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  /* 2 */
  height: 22px;
  padding: 0 10px;
  /* 3 */
  background: #06a2a8;
  color: #fff;
  font-size: 0.875rem;
  /* 4 */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
/*
 * Remove margin from adjacent element
 */
.uk-card-badge:first-child + * {
  margin-top: 0;
}
/* Hover modifier
 ========================================================================== */
.uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary):hover {
  background: #ffffff;
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.uk-card-default {
  background: #ffffff;
  color: #6e6f71;
}
.uk-card-default .uk-card-title {
  color: #06a2a8;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #f2f2f2;
}
/*
 * Primary
 */
.uk-card-primary {
  background: #06a2a8;
  color: #fff;
}
.uk-card-primary .uk-card-title {
  color: #fff;
}
.uk-card-primary.uk-card-hover:hover {
  background-color: #058a8f;
}
/*
 * Secondary
 */
.uk-card-secondary {
  background: #6e6f71;
  color: #fff;
}
.uk-card-secondary .uk-card-title {
  color: #fff;
}
.uk-card-secondary.uk-card-hover:hover {
  background-color: #616264;
}
/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.uk-card-small.uk-card-body, .uk-card-small .uk-card-body {
  padding: 12px 12px;
}
.uk-card-small .uk-card-header {
  padding: 12px 12px;
}
.uk-card-small .uk-card-footer {
  padding: 12px 12px;
}
/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large.uk-card-body, .uk-card-large .uk-card-body {
    padding: 70px 70px;
  }
  .uk-card-large .uk-card-header {
    padding: 35px 70px;
  }
  .uk-card-large .uk-card-footer {
    padding: 35px 70px;
  }
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-close {
  color: #ffffff;
}
/* Hover + Focus */
.uk-close:hover, .uk-close:focus {
  color: #6e6f71;
  outline: none;
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
/* SVG
 ========================================================================== */
.uk-spinner > * {
  animation: uk-spinner-rotate 1.4s linear infinite;
}
@keyframes uk-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
/*
 * Circle
 */
.uk-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}
@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    transform: rotate(450deg);
  }
}
/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-totop {
  padding: 5px;
  color: #ffffff;
}
/* Hover + Focus */
.uk-totop:hover, .uk-totop:focus {
  color: #6e6f71;
  outline: none;
}
/* OnClick */
.uk-totop:active {
  color: #06a2a8;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #ffffff;
  color: #6e6f71;
}
/* Add margin if adjacent element */
* + .uk-alert {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
  margin-bottom: 0;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
}
/*
 * Remove margin from adjacent element
 */
.uk-alert-close:first-child + * {
  margin-top: 0;
}
/*
 * Hover + Focus
 */
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.uk-alert-primary {
  background: #b6e3e5;
  color: #06a2a8;
}
/*
 * Success
 */
.uk-alert-success {
  background: #edfbf6;
  color: #32d296;
}
/*
 * Warning
 */
.uk-alert-warning {
  background: #fef5ee;
  color: #faa05a;
}
/*
 * Danger
 */
.uk-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}
/* ========================================================================
   Component: Label
 ========================================================================== */
.uk-label {
  display: inline-block;
  padding: 0 10px;
  background: #06a2a8;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
}
/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.uk-label-success {
  background-color: #32d296;
  color: #fff;
}
/*
 * Warning
 */
.uk-label-warning {
  background-color: #faa05a;
  color: #fff;
}
/*
 * Danger
 */
.uk-label-danger {
  background-color: #f0506e;
  color: #fff;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
.uk-overlay {
  padding: 30px 30px;
}
/*
 * Remove margin from the last-child
 */
.uk-overlay > :last-child {
  margin-bottom: 0;
}
/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-overlay-default {
  background: rgba(241, 241, 241, 0.8);
}
/*
 * Primary
 */
.uk-overlay-primary {
  background: rgba(110, 111, 113, 0.8);
  background: rgba(110, 111, 113, 0.6);
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 15px;
  background: #ffffff;
  color: #6e6f71;
}
/* Show */
.uk-dropdown.uk-open {
  display: block;
}
/* Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-dropdown-nav {
  white-space: nowrap;
}
/*
 * Items
 */
.uk-dropdown-nav > li > a {
  color: #6e6f71;
}
/* Hover + Focus + Active */
.uk-dropdown-nav > li > a:hover, .uk-dropdown-nav > li > a:focus, .uk-dropdown-nav > li.uk-active > a {
  color: #6e6f71;
}
/*
 * Header
 */
.uk-dropdown-nav .uk-nav-header {
  color: #06a2a8;
}
/*
 * Divider
 */
.uk-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #ffffff;
}
/*
 * Sublists
 */
.uk-dropdown-nav .uk-nav-sub a {
  color: #ffffff;
}
.uk-dropdown-nav .uk-nav-sub a:hover, .uk-dropdown-nav .uk-nav-sub a:focus, .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
  color: #6e6f71;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*="uk-dropdown-top"] {
  margin-top: -10px;
}
[class*="uk-dropdown-bottom"] {
  margin-top: 10px;
}
[class*="uk-dropdown-left"] {
  margin-left: -10px;
}
[class*="uk-dropdown-right"] {
  margin-left: 10px;
}
/* Grid modifiers
 ========================================================================== */
.uk-dropdown-stack .uk-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
 */
.uk-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) {
  .uk-modal {
    padding: 50px 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Open
 */
.uk-modal.uk-open {
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-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 `uk-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.uk-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: #f1f1f1;
  /* 5 */
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.3s linear;
  transition-property: opacity, transform;
}
/*
 * Open
 */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.uk-modal-container .uk-modal-dialog {
  width: 1200px;
}
/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.uk-modal-full {
  padding: 0;
  background: none;
}
/* 2 */
.uk-modal-full .uk-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}
/* Sections
 ========================================================================== */
.uk-modal-body {
  display: flow-root;
  padding: 30px 30px;
}
.uk-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: #ffffff;
}
.uk-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: #ffffff;
}
/*
 * Remove margin from the last-child
 */
.uk-modal-body > :last-child, .uk-modal-header > :last-child, .uk-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.uk-modal-title {
  font-size: 2rem;
  line-height: 1.3;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
[class*="uk-modal-close-"] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}
/*
 * Remove margin from adjacent element
 */
[class*="uk-modal-close-"]:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.uk-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  transform: translate(0, -100%);
  color: white;
}
.uk-modal-close-outside:hover {
  color: #fff;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* 1 */
  .uk-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}
/*
 * Full
 */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-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.
 */
.uk-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 `uk-cover`
 * 4. Optimize animation
 * 5. Disable horizontal panning gestures in IE11 and Edge
 * 6. Suppress outline on focus
 */
.uk-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;
}
/* 6 */
.uk-slideshow-items > :focus {
  outline: none;
}
/*
 * Hide not active items
 */
.uk-slideshow-items > :not(.uk-active) {
  display: none;
}
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Container
 ========================================================================== */
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}
/*
 * Widen container to prevent box-shadows from clipping, `large-box-shadow`
 */
.uk-slider-container-offset {
  margin: -11px -25px -39px -25px;
  padding: 11px 25px 39px 25px;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.uk-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.
 */
.uk-slider-items:not(.uk-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}
.uk-slider-items.uk-grid {
  flex-wrap: nowrap;
}
/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 *    `max-width` needed to keep image responsiveness and prevent content overflow
 * 3. Create position context
 * 4. Disable horizontal panning gestures in IE11 and Edge
 * 5. Suppress outline on focus
 */
.uk-slider-items > * {
  /* 1 */
  flex: none;
  max-width: 100%;
  /* 3 */
  position: relative;
  /* 4 */
  touch-action: pan-y;
}
/* 5 */
.uk-slider-items > :focus {
  outline: none;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
 */
.uk-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*
 * Faster animations
 */
.uk-sticky[class*="uk-animation-"] {
  animation-duration: 0.2s;
}
.uk-sticky.uk-animation-reverse {
  animation-duration: 0.2s;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas {
  right: 0;
  left: auto;
}
/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 */
.uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: -270px;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #6e6f71;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 40px 40px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-flip .uk-offcanvas-bar {
    right: -350px;
  }
}
/*
 * Open
 */
.uk-open > .uk-offcanvas-bar {
  left: 0;
}
.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
  left: auto;
  right: 0;
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.uk-offcanvas-bar-animation {
  transition: left 0.3s ease-out;
}
.uk-offcanvas-flip .uk-offcanvas-bar-animation {
  transition-property: right;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset position
 */
.uk-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  transition: width 0.3s ease-out;
}
.uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: 0;
}
.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}
.uk-open > .uk-offcanvas-reveal {
  width: 270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-open > .uk-offcanvas-reveal {
    width: 350px;
  }
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-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.
 */
.uk-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}
/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.uk-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;
}
.uk-offcanvas-overlay.uk-open::before {
  opacity: 1;
}
/* Prevent scrolling
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.uk-offcanvas-page, .uk-offcanvas-container {
  overflow-x: hidden;
}
/* Container
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * 1. Provide a fixed width and prevent shrinking
 */
.uk-offcanvas-container {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  box-sizing: border-box;
  width: 100%;
}
/*
 * Activate slide-out animation
 */
:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
  left: 270px;
}
.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
    left: 350px;
  }
  .uk-offcanvas-flip.uk-offcanvas-container-animation {
    left: -350px;
  }
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.uk-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
 */
.uk-grid > * {
  margin: 0;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.uk-grid {
  margin-left: -30px;
}
.uk-grid > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid, .uk-grid > .uk-grid-margin, * + .uk-grid-margin {
  margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  /* Vertical */
  .uk-grid {
    margin-left: -40px;
  }
  .uk-grid > * {
    padding-left: 40px;
  }
  .uk-grid + .uk-grid, .uk-grid > .uk-grid-margin, * + .uk-grid-margin {
    margin-top: 40px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-small, .uk-grid-column-small {
  margin-left: -15px;
}
.uk-grid-small > *, .uk-grid-column-small > * {
  padding-left: 15px;
}
/* Vertical */
.uk-grid + .uk-grid-small, .uk-grid + .uk-grid-row-small, .uk-grid-small > .uk-grid-margin, .uk-grid-row-small > .uk-grid-margin, * + .uk-grid-margin-small {
  margin-top: 15px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-medium, .uk-grid-column-medium {
  margin-left: -30px;
}
.uk-grid-medium > *, .uk-grid-column-medium > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid-medium, .uk-grid + .uk-grid-row-medium, .uk-grid-medium > .uk-grid-margin, .uk-grid-row-medium > .uk-grid-margin, * + .uk-grid-margin-medium {
  margin-top: 30px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-large, .uk-grid-column-large {
  margin-left: -40px;
}
.uk-grid-large > *, .uk-grid-column-large > * {
  padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid-large, .uk-grid + .uk-grid-row-large, .uk-grid-large > .uk-grid-margin, .uk-grid-row-large > .uk-grid-margin, * + .uk-grid-margin-large {
  margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  /* Vertical */
  .uk-grid-large, .uk-grid-column-large {
    margin-left: -70px;
  }
  .uk-grid-large > *, .uk-grid-column-large > * {
    padding-left: 70px;
  }
  .uk-grid + .uk-grid-large, .uk-grid + .uk-grid-row-large, .uk-grid-large > .uk-grid-margin, .uk-grid-row-large > .uk-grid-margin, * + .uk-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.uk-grid-collapse, .uk-grid-column-collapse {
  margin-left: 0;
}
.uk-grid-collapse > *, .uk-grid-column-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid + .uk-grid-collapse, .uk-grid + .uk-grid-row-collapse, .uk-grid-collapse > .uk-grid-margin, .uk-grid-row-collapse > .uk-grid-margin {
  margin-top: 0;
}
/* Divider
 ========================================================================== */
.uk-grid-divider > * {
  position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #ffffff;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #ffffff;
}
/*
 * Default
 */
/* Horizontal */
.uk-grid-divider {
  margin-left: -60px;
}
.uk-grid-divider > * {
  padding-left: 60px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  /* Vertical */
  .uk-grid-divider {
    margin-left: -80px;
  }
  .uk-grid-divider > * {
    padding-left: 80px;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 40px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-divider.uk-grid-small, .uk-grid-divider.uk-grid-column-small {
  margin-left: -30px;
}
.uk-grid-divider.uk-grid-small > *, .uk-grid-divider.uk-grid-column-small > * {
  padding-left: 30px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
  left: 15px;
}
/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 30px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
  left: 30px;
}
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
}
.uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
  left: 30px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-divider.uk-grid-medium, .uk-grid-divider.uk-grid-column-medium {
  margin-left: -60px;
}
.uk-grid-divider.uk-grid-medium > *, .uk-grid-divider.uk-grid-column-medium > * {
  padding-left: 60px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
}
.uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
  left: 60px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-divider.uk-grid-large, .uk-grid-divider.uk-grid-column-large {
  margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > *, .uk-grid-divider.uk-grid-column-large > * {
  padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
  left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
}
.uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
  left: 80px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  /* Vertical */
  .uk-grid-divider.uk-grid-large, .uk-grid-divider.uk-grid-column-large {
    margin-left: -140px;
  }
  .uk-grid-divider.uk-grid-large > *, .uk-grid-divider.uk-grid-column-large > * {
    padding-left: 140px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before, .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 70px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin, .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 140px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
    left: 140px;
  }
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
  }
  .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 140px;
  }
}
/* 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)
 */
.uk-grid-match > *, .uk-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*="uk-width"]), .uk-grid-item-match > :not([class*="uk-width"]) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 */
.uk-nav, .uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
* 1. Center content vertically, e.g. an icon
* 2. Imitate white space gap when using flexbox
* 3. Reset link
* 4. Space is allocated solely based on content dimensions: 0 0 auto
 */
.uk-nav li > a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3*/
  text-decoration: none;
}
/* 4 */
.uk-nav li > a > * {
  flex: none;
}
/*
 * Remove default focus style
 */
.uk-nav li > a:focus {
  outline: none;
}
/*
 * Items
 * Must target `a` elements to exclude other elements (e.g. lists)
 */
.uk-nav > li > a {
  padding: 5px 0;
}
/* Sublists
 ========================================================================== */
/*
 * Level 2
 * `ul` needed for higher specificity to override padding
 */
ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}
/*
 * Level 3 and deeper
 */
.uk-nav-sub ul {
  padding-left: 15px;
}
/*
 * Items
 */
.uk-nav-sub a {
  padding: 2px 0;
}
/* Parent icon modifier
 ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  margin-left: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%236e6f71%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-nav-parent-icon > .uk-parent.uk-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%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%236e6f71%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* Header
 ========================================================================== */
.uk-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.uk-nav-header:not(:first-child) {
  margin-top: 20px;
}
/* Divider
 ========================================================================== */
.uk-nav > .uk-nav-divider {
  margin: 5px 0;
}
/* Default modifier
 ========================================================================== */
/*
 * Items
 */
.uk-nav-default > li > a {
  color: #000;
}
/* Hover + Focus */
.uk-nav-default > li > a:hover, .uk-nav-default > li > a:focus {
  color: #6e6f71;
}
/* Active */
.uk-nav-default > li.uk-active > a {
  color: #06a2a8;
}
/*
 * Header
 */
.uk-nav-default .uk-nav-header {
  color: #06a2a8;
}
/*
 * Divider
 */
.uk-nav-default .uk-nav-divider {
  border-top: 1px solid #ffffff;
}
/*
 * Sublists
 */
.uk-nav-default .uk-nav-sub a {
  color: #ffffff;
}
.uk-nav-default .uk-nav-sub a:hover, .uk-nav-default .uk-nav-sub a:focus {
  color: #6e6f71;
}
.uk-nav-default .uk-nav-sub li.uk-active > a {
  color: #06a2a8;
}
/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.uk-nav-primary > li > a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffffff;
}
/* Hover + Focus */
.uk-nav-primary > li > a:hover, .uk-nav-primary > li > a:focus {
  color: #6e6f71;
}
/* Active */
.uk-nav-primary > li.uk-active > a {
  color: #06a2a8;
}
/*
 * Header
 */
.uk-nav-primary .uk-nav-header {
  color: #06a2a8;
}
/*
 * Divider
 */
.uk-nav-primary .uk-nav-divider {
  border-top: 1px solid #ffffff;
}
/*
 * Sublists
 */
.uk-nav-primary .uk-nav-sub a {
  color: #ffffff;
}
.uk-nav-primary .uk-nav-sub a:hover, .uk-nav-primary .uk-nav-sub a:focus {
  color: #6e6f71;
}
.uk-nav-primary .uk-nav-sub li.uk-active > a {
  color: #06a2a8;
}
/* Alignment modifier
 ========================================================================== */
/*
 * 1. Center header
 * 2. Center items
 */
/* 1 */
.uk-nav-center {
  text-align: center;
}
/* 2 */
.uk-nav-center li > a {
  justify-content: center;
}
/* Sublists */
.uk-nav-center .uk-nav-sub, .uk-nav-center .uk-nav-sub ul {
  padding-left: 0;
}
/* Parent icon modifier  */
.uk-nav-center.uk-nav-parent-icon > .uk-parent > a::after {
  margin-left: 0;
}
/* Style modifier
 ========================================================================== */
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid #ffffff;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.uk-pagination {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: 0;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-pagination > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 0;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-pagination > * > * {
  /* 1 */
  display: block;
  /* 2 */
  padding: 5px 10px;
  color: #ffffff;
}
/* Hover + Focus */
.uk-pagination > * > :hover, .uk-pagination > * > :focus {
  color: #6e6f71;
  text-decoration: none;
}
/* Active */
.uk-pagination > .uk-active > * {
  color: #6e6f71;
}
/* Disabled */
.uk-pagination > .uk-disabled > * {
  color: #ffffff;
}
/* ========================================================================
   Component: Lightbox
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 * 7. Prevent cancellation of pointer events while dragging
 */
.uk-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: 12px;
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
  /* 7 */
  touch-action: pinch-zoom;
}
/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.uk-lightbox.uk-open {
  display: block;
  /* 2 */
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-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
 * 6. Suppress outline on focus
 */
.uk-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 */
.uk-lightbox-items > * > * {
  max-width: 100vw;
  max-height: 100vh;
}
/* 6 */
.uk-lightbox-items > :focus {
  outline: none;
}
.uk-lightbox-items > * > :not(iframe) {
  width: auto;
  height: auto;
}
.uk-lightbox-items > .uk-active {
  display: flex;
}
/* Toolbar
 ========================================================================== */
.uk-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}
.uk-lightbox-toolbar > * {
  color: rgba(255, 255, 255, 0.7);
}
/* Toolbar Icon (Close)
 ========================================================================== */
.uk-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}
/*
 * Hover
 */
.uk-lightbox-toolbar-icon:hover {
  color: #fff;
}
/* Button (Slidenav)
 ========================================================================== */
/*
 * 1. Center icon vertically and horizontally
 */
.uk-lightbox-button {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/* Hover + Focus */
.uk-lightbox-button:hover, .uk-lightbox-button:focus {
  color: #fff;
}
/* OnClick */
/* Caption
 ========================================================================== */
.uk-lightbox-caption:empty {
  display: none;
}
/* Iframe
 ========================================================================== */
.uk-lightbox-iframe {
  width: 80%;
  height: 80%;
}
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*="uk-child-width"] > * {
  box-sizing: border-box;
  width: 100%;
}
.uk-child-width-1-2 > * {
  width: 50%;
}
.uk-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}
.uk-child-width-1-4 > * {
  width: 25%;
}
.uk-child-width-1-5 > * {
  width: 20%;
}
.uk-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}
.uk-child-width-auto > * {
  width: auto;
}
/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.uk-child-width-expand > :not([class*="uk-width"]) {
  flex: 1;
  /* 1 */
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-child-width-1-1\@s > * {
    width: 100%;
  }
  .uk-child-width-1-2\@s > * {
    width: 50%;
  }
  .uk-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@s > * {
    width: 25%;
  }
  .uk-child-width-1-5\@s > * {
    width: 20%;
  }
  .uk-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@s > * {
    width: auto;
  }
  .uk-child-width-expand\@s > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-child-width-1-1\@m > * {
    width: 100%;
  }
  .uk-child-width-1-2\@m > * {
    width: 50%;
  }
  .uk-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@m > * {
    width: 25%;
  }
  .uk-child-width-1-5\@m > * {
    width: 20%;
  }
  .uk-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@m > * {
    width: auto;
  }
  .uk-child-width-expand\@m > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-child-width-1-1\@l > * {
    width: 100%;
  }
  .uk-child-width-1-2\@l > * {
    width: 50%;
  }
  .uk-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@l > * {
    width: 25%;
  }
  .uk-child-width-1-5\@l > * {
    width: 20%;
  }
  .uk-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@l > * {
    width: auto;
  }
  .uk-child-width-expand\@l > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-child-width-1-1\@xl > * {
    width: 100%;
  }
  .uk-child-width-1-2\@xl > * {
    width: 50%;
  }
  .uk-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@xl > * {
    width: 25%;
  }
  .uk-child-width-1-5\@xl > * {
    width: 20%;
  }
  .uk-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@xl > * {
    width: auto;
  }
  .uk-child-width-expand\@xl > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*="uk-width"] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}
/* Halves */
.uk-width-1-2 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3 {
  width: calc(100% * 1 / 3.001);
}
.uk-width-2-3 {
  width: calc(100% * 2 / 3.001);
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5 {
  width: 20%;
}
.uk-width-2-5 {
  width: 40%;
}
.uk-width-3-5 {
  width: 60%;
}
.uk-width-4-5 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: calc(100% * 1 / 6.001);
}
.uk-width-5-6 {
  width: calc(100% * 5 / 6.001);
}
/* Pixel */
.uk-width-small {
  width: 150px;
}
.uk-width-medium {
  width: 300px;
}
.uk-width-large {
  width: 450px;
}
.uk-width-xlarge {
  width: 600px;
}
.uk-width-2xlarge {
  width: 750px;
}
/* Auto */
.uk-width-auto {
  width: auto;
}
/* Expand */
.uk-width-expand {
  flex: 1;
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  /* Halves */
  /* Thirds */
  /* Quarters */
  /* Fifths */
  /* Sixths */
  /* Pixel */
  /* Auto */
  /* Expand */
  .uk-width-1-1\@s {
    width: 100%;
  }
  .uk-width-1-2\@s {
    width: 50%;
  }
  .uk-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }
  .uk-width-1-4\@s {
    width: 25%;
  }
  .uk-width-3-4\@s {
    width: 75%;
  }
  .uk-width-1-5\@s {
    width: 20%;
  }
  .uk-width-2-5\@s {
    width: 40%;
  }
  .uk-width-3-5\@s {
    width: 60%;
  }
  .uk-width-4-5\@s {
    width: 80%;
  }
  .uk-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }
  .uk-width-small\@s {
    width: 150px;
  }
  .uk-width-medium\@s {
    width: 300px;
  }
  .uk-width-large\@s {
    width: 450px;
  }
  .uk-width-xlarge\@s {
    width: 600px;
  }
  .uk-width-2xlarge\@s {
    width: 750px;
  }
  .uk-width-auto\@s {
    width: auto;
  }
  .uk-width-expand\@s {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  /* Halves */
  /* Thirds */
  /* Quarters */
  /* Fifths */
  /* Sixths */
  /* Pixel */
  /* Auto */
  /* Expand */
  .uk-width-1-1\@m {
    width: 100%;
  }
  .uk-width-1-2\@m {
    width: 50%;
  }
  .uk-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }
  .uk-width-1-4\@m {
    width: 25%;
  }
  .uk-width-3-4\@m {
    width: 75%;
  }
  .uk-width-1-5\@m {
    width: 20%;
  }
  .uk-width-2-5\@m {
    width: 40%;
  }
  .uk-width-3-5\@m {
    width: 60%;
  }
  .uk-width-4-5\@m {
    width: 80%;
  }
  .uk-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }
  .uk-width-small\@m {
    width: 150px;
  }
  .uk-width-medium\@m {
    width: 300px;
  }
  .uk-width-large\@m {
    width: 450px;
  }
  .uk-width-xlarge\@m {
    width: 600px;
  }
  .uk-width-2xlarge\@m {
    width: 750px;
  }
  .uk-width-auto\@m {
    width: auto;
  }
  .uk-width-expand\@m {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  /* Halves */
  /* Thirds */
  /* Quarters */
  /* Fifths */
  /* Sixths */
  /* Pixel */
  /* Auto */
  /* Expand */
  .uk-width-1-1\@l {
    width: 100%;
  }
  .uk-width-1-2\@l {
    width: 50%;
  }
  .uk-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }
  .uk-width-1-4\@l {
    width: 25%;
  }
  .uk-width-3-4\@l {
    width: 75%;
  }
  .uk-width-1-5\@l {
    width: 20%;
  }
  .uk-width-2-5\@l {
    width: 40%;
  }
  .uk-width-3-5\@l {
    width: 60%;
  }
  .uk-width-4-5\@l {
    width: 80%;
  }
  .uk-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }
  .uk-width-small\@l {
    width: 150px;
  }
  .uk-width-medium\@l {
    width: 300px;
  }
  .uk-width-large\@l {
    width: 450px;
  }
  .uk-width-xlarge\@l {
    width: 600px;
  }
  .uk-width-2xlarge\@l {
    width: 750px;
  }
  .uk-width-auto\@l {
    width: auto;
  }
  .uk-width-expand\@l {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  /* Halves */
  /* Thirds */
  /* Quarters */
  /* Fifths */
  /* Sixths */
  /* Pixel */
  /* Auto */
  /* Expand */
  .uk-width-1-1\@xl {
    width: 100%;
  }
  .uk-width-1-2\@xl {
    width: 50%;
  }
  .uk-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }
  .uk-width-1-4\@xl {
    width: 25%;
  }
  .uk-width-3-4\@xl {
    width: 75%;
  }
  .uk-width-1-5\@xl {
    width: 20%;
  }
  .uk-width-2-5\@xl {
    width: 40%;
  }
  .uk-width-3-5\@xl {
    width: 60%;
  }
  .uk-width-4-5\@xl {
    width: 80%;
  }
  .uk-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }
  .uk-width-small\@xl {
    width: 150px;
  }
  .uk-width-medium\@xl {
    width: 300px;
  }
  .uk-width-large\@xl {
    width: 450px;
  }
  .uk-width-xlarge\@xl {
    width: 600px;
  }
  .uk-width-2xlarge\@xl {
    width: 750px;
  }
  .uk-width-auto\@xl {
    width: auto;
  }
  .uk-width-expand\@xl {
    flex: 1;
    min-width: 1px;
  }
}
/* ========================================================================
   Component: Height
 ========================================================================== */
[class*="uk-height"] {
  box-sizing: border-box;
}
/*
 * Only works if parent element has a height set
 */
.uk-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  min-height: 100vh;
}
/*
 * Pixel
 * Useful for `overflow: auto`
 */
.uk-height-small {
  height: 150px;
}
.uk-height-medium {
  height: 300px;
}
.uk-height-large {
  height: 450px;
}
.uk-height-max-small {
  max-height: 150px;
}
.uk-height-max-medium {
  max-height: 300px;
}
.uk-height-max-large {
  max-height: 450px;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #06a2a8;
}
.uk-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff;
}
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}
.uk-text-default {
  font-size: 16px;
  line-height: 1.5;
}
/* Weight modifier
 ========================================================================== */
.uk-text-light {
  font-weight: 300;
}
.uk-text-normal {
  font-weight: 400;
}
.uk-text-bold {
  font-weight: 700;
}
.uk-text-lighter {
  font-weight: lighter;
}
.uk-text-bolder {
  font-weight: bolder;
}
/* Style modifier
 ========================================================================== */
.uk-text-italic {
  font-style: italic;
}
/* Transform modifier
 ========================================================================== */
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Decoration modifier
 ========================================================================== */
.uk-text-decoration-none {
  text-decoration: none !important;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #ffffff !important;
}
.uk-text-emphasis {
  color: #06a2a8 !important;
}
.uk-text-primary {
  color: #06a2a8 !important;
}
.uk-text-secondary {
  color: #6e6f71 !important;
}
.uk-text-success {
  color: #32d296 !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-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
 */
.uk-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: #06a2a8 !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #06a2a8;
    color: transparent !important;
  }
}
/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}
.uk-text-right {
  text-align: right !important;
}
.uk-text-center {
  text-align: center !important;
}
.uk-text-justify {
  text-align: justify !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-text-left\@s {
    text-align: left !important;
  }
  .uk-text-right\@s {
    text-align: right !important;
  }
  .uk-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-text-left\@m {
    text-align: left !important;
  }
  .uk-text-right\@m {
    text-align: right !important;
  }
  .uk-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-text-left\@l {
    text-align: left !important;
  }
  .uk-text-right\@l {
    text-align: right !important;
  }
  .uk-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-text-left\@xl {
    text-align: left !important;
  }
  .uk-text-right\@xl {
    text-align: right !important;
  }
  .uk-text-center\@xl {
    text-align: center !important;
  }
}
/*
 * Vertical
 */
.uk-text-top {
  vertical-align: top !important;
}
.uk-text-middle {
  vertical-align: middle !important;
}
.uk-text-bottom {
  vertical-align: bottom !important;
}
.uk-text-baseline {
  vertical-align: baseline !important;
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-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
 */
.uk-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 2 */
th.uk-text-truncate, td.uk-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
 */
.uk-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}
/* 3 */
th.uk-text-break, td.uk-text-break {
  word-break: break-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
 */
.uk-cover {
  /* 1 */
  max-width: none;
  /* 2 */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
iframe.uk-cover {
  pointer-events: none;
}
/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.uk-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.uk-background-default {
  background-color: #f1f1f1;
}
.uk-background-muted {
  background-color: #ffffff;
}
.uk-background-primary {
  background-color: #06a2a8;
}
.uk-background-secondary {
  background-color: #6e6f71;
}
/* Size
 ========================================================================== */
.uk-background-cover, .uk-background-contain, .uk-background-width-1-1, .uk-background-height-1-1 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.uk-background-cover {
  background-size: cover;
}
.uk-background-contain {
  background-size: contain;
}
.uk-background-width-1-1 {
  background-size: 100%;
}
.uk-background-height-1-1 {
  background-size: auto 100%;
}
/* Position
 ========================================================================== */
.uk-background-top-left {
  background-position: 0 0;
}
.uk-background-top-center {
  background-position: 50% 0;
}
.uk-background-top-right {
  background-position: 100% 0;
}
.uk-background-center-left {
  background-position: 0 50%;
}
.uk-background-center-center {
  background-position: 50% 50%;
}
.uk-background-center-right {
  background-position: 100% 50%;
}
.uk-background-bottom-left {
  background-position: 0 100%;
}
.uk-background-bottom-center {
  background-position: 50% 100%;
}
.uk-background-bottom-right {
  background-position: 100% 100%;
}
/* Repeat
 ========================================================================== */
.uk-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`
 */
.uk-background-fixed {
  background-attachment: fixed;
  /* 1 */
  backface-visibility: hidden;
}
/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .uk-background-fixed {
    background-attachment: scroll;
  }
}
/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-background-image\@s {
    background-image: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-background-image\@m {
    background-image: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-background-image\@l {
    background-image: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-background-image\@xl {
    background-image: none !important;
  }
}
/* Blend modes
 ========================================================================== */
.uk-background-blend-multiply {
  background-blend-mode: multiply;
}
.uk-background-blend-screen {
  background-blend-mode: screen;
}
.uk-background-blend-overlay {
  background-blend-mode: overlay;
}
.uk-background-blend-darken {
  background-blend-mode: darken;
}
.uk-background-blend-lighten {
  background-blend-mode: lighten;
}
.uk-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.uk-background-blend-color-burn {
  background-blend-mode: color-burn;
}
.uk-background-blend-hard-light {
  background-blend-mode: hard-light;
}
.uk-background-blend-soft-light {
  background-blend-mode: soft-light;
}
.uk-background-blend-difference {
  background-blend-mode: difference;
}
.uk-background-blend-exclusion {
  background-blend-mode: exclusion;
}
.uk-background-blend-hue {
  background-blend-mode: hue;
}
.uk-background-blend-saturation {
  background-blend-mode: saturation;
}
.uk-background-blend-color {
  background-blend-mode: color;
}
.uk-background-blend-luminosity {
  background-blend-mode: luminosity;
}
/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*="uk-align"] {
  display: block;
  margin-bottom: 30px;
}
* + [class*="uk-align"] {
  margin-top: 30px;
}
/*
 * Center
 */
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}
/*
 * Left/Right
 */
.uk-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}
.uk-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-align-left\@l {
    margin-top: 0;
    float: left;
  }
  .uk-align-right\@l {
    margin-top: 0;
    float: right;
  }
  .uk-align-left, .uk-align-left\@s, .uk-align-left\@m, .uk-align-left\@l {
    margin-right: 40px;
  }
  .uk-align-right, .uk-align-right\@s, .uk-align-right\@m, .uk-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }
  .uk-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}
/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 */
/* 1 */
.uk-svg, .uk-svg:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
  /* 2 */
  fill: currentcolor;
}
.uk-svg:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-svg {
  transform: translate(0, 0);
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.uk-panel {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}
/*
 * Remove margin from the last-child
 */
.uk-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.uk-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #ffffff;
  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 */
.uk-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.uk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*="uk-float-"] {
  max-width: 100%;
}
/* Overfow
 ========================================================================== */
.uk-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
 */
.uk-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uk-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Resize
 ========================================================================== */
.uk-resize {
  resize: both;
}
.uk-resize-vertical {
  resize: vertical;
}
/* Display
 ========================================================================== */
.uk-display-block {
  display: block !important;
}
.uk-display-inline {
  display: inline !important;
}
.uk-display-inline-block {
  display: inline-block !important;
}
/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force new layer without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*="uk-inline"] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}
.uk-inline-clip {
  /* 6 */
  overflow: hidden;
}
/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.uk-preserve-width, .uk-preserve-width canvas, .uk-preserve-width img, .uk-preserve-width svg, .uk-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width, .uk-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.uk-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
 */
.uk-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-pill {
  border-radius: 500px;
}
.uk-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.uk-inline-clip[class*="uk-border-"] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.uk-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*="uk-box-shadow-hover"] {
  transition: box-shadow 0.1s ease-in-out;
}
.uk-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Fix shadow being clipped in Safari if container is animated
 */
@supports (filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    z-index: 0;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-box-shadow-bottom::after {
    content: "";
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: -1;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
    /* 3 */
    will-change: filter;
  }
}
/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 * 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.
 */
.uk-dropcap::first-letter, .uk-dropcap > p:first-of-type::first-letter {
  /* 1 */
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
}
/* 2 */
@-moz-document url-prefix() {
  .uk-dropcap::first-letter, .uk-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* 3 */
@supports (-ms-ime-align: auto) {
  .uk-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.uk-logo {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #6e6f71;
  /* 1 */
  text-decoration: none;
}
/* Hover + Focus */
.uk-logo:hover, .uk-logo:focus {
  color: #6e6f71;
  outline: none;
  /* 1 */
  text-decoration: none;
}
.uk-logo-inverse {
  display: none;
}
/* Disabled State
 ========================================================================== */
.uk-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
 */
.uk-drag, .uk-drag * {
  /* 1 */
  cursor: move;
}
/* 2 */
.uk-drag iframe {
  pointer-events: none;
}
/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
/* Blend modes
 ========================================================================== */
.uk-blend-multiply {
  mix-blend-mode: multiply;
}
.uk-blend-screen {
  mix-blend-mode: screen;
}
.uk-blend-overlay {
  mix-blend-mode: overlay;
}
.uk-blend-darken {
  mix-blend-mode: darken;
}
.uk-blend-lighten {
  mix-blend-mode: lighten;
}
.uk-blend-color-dodge {
  mix-blend-mode: color-dodge;
}
.uk-blend-color-burn {
  mix-blend-mode: color-burn;
}
.uk-blend-hard-light {
  mix-blend-mode: hard-light;
}
.uk-blend-soft-light {
  mix-blend-mode: soft-light;
}
.uk-blend-difference {
  mix-blend-mode: difference;
}
.uk-blend-exclusion {
  mix-blend-mode: exclusion;
}
.uk-blend-hue {
  mix-blend-mode: hue;
}
.uk-blend-saturation {
  mix-blend-mode: saturation;
}
.uk-blend-color {
  mix-blend-mode: color;
}
.uk-blend-luminosity {
  mix-blend-mode: luminosity;
}
/* Transform
========================================================================== */
.uk-transform-center {
  transform: translate(-50%, -50%);
}
/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  transform-origin: 0 0;
}
.uk-transform-origin-top-center {
  transform-origin: 50% 0;
}
.uk-transform-origin-top-right {
  transform-origin: 100% 0;
}
.uk-transform-origin-center-left {
  transform-origin: 0 50%;
}
.uk-transform-origin-center-right {
  transform-origin: 100% 50%;
}
.uk-transform-origin-bottom-left {
  transform-origin: 0 100%;
}
.uk-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}
.uk-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: flex;
}
.uk-flex-inline {
  display: inline-flex;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.uk-flex::before, .uk-flex::after, .uk-flex-inline::before, .uk-flex-inline::after {
  display: none;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  justify-content: flex-start;
}
.uk-flex-center {
  justify-content: center;
}
.uk-flex-right {
  justify-content: flex-end;
}
.uk-flex-between {
  justify-content: space-between;
}
.uk-flex-around {
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-left\@s {
    justify-content: flex-start;
  }
  .uk-flex-center\@s {
    justify-content: center;
  }
  .uk-flex-right\@s {
    justify-content: flex-end;
  }
  .uk-flex-between\@s {
    justify-content: space-between;
  }
  .uk-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-left\@m {
    justify-content: flex-start;
  }
  .uk-flex-center\@m {
    justify-content: center;
  }
  .uk-flex-right\@m {
    justify-content: flex-end;
  }
  .uk-flex-between\@m {
    justify-content: space-between;
  }
  .uk-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-left\@l {
    justify-content: flex-start;
  }
  .uk-flex-center\@l {
    justify-content: center;
  }
  .uk-flex-right\@l {
    justify-content: flex-end;
  }
  .uk-flex-between\@l {
    justify-content: space-between;
  }
  .uk-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    justify-content: center;
  }
  .uk-flex-right\@xl {
    justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    justify-content: space-between;
  }
  .uk-flex-around\@xl {
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.uk-flex-stretch {
  align-items: stretch;
}
.uk-flex-top {
  align-items: flex-start;
}
.uk-flex-middle {
  align-items: center;
}
.uk-flex-bottom {
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.uk-flex-row {
  flex-direction: row;
}
.uk-flex-row-reverse {
  flex-direction: row-reverse;
}
.uk-flex-column {
  flex-direction: column;
}
.uk-flex-column-reverse {
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  flex-wrap: wrap;
}
.uk-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
 */
.uk-flex-wrap-stretch {
  align-content: stretch;
}
.uk-flex-wrap-top {
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  align-content: center;
}
.uk-flex-wrap-bottom {
  align-content: flex-end;
}
.uk-flex-wrap-between {
  align-content: space-between;
}
.uk-flex-wrap-around {
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  order: -1;
}
.uk-flex-last {
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-first\@s {
    order: -1;
  }
  .uk-flex-last\@s {
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-first\@m {
    order: -1;
  }
  .uk-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-first\@l {
    order: -1;
  }
  .uk-flex-last\@l {
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    order: -1;
  }
  .uk-flex-last\@xl {
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  flex: 1;
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.uk-margin {
  margin-bottom: 20px;
}
* + .uk-margin {
  margin-top: 20px !important;
}
.uk-margin-top {
  margin-top: 20px !important;
}
.uk-margin-bottom {
  margin-bottom: 20px !important;
}
.uk-margin-left {
  margin-left: 20px !important;
}
.uk-margin-right {
  margin-right: 20px !important;
}
/* Small
 ========================================================================== */
.uk-margin-small {
  margin-bottom: 10px;
}
* + .uk-margin-small {
  margin-top: 10px !important;
}
.uk-margin-small-top {
  margin-top: 10px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 10px !important;
}
.uk-margin-small-left {
  margin-left: 10px !important;
}
.uk-margin-small-right {
  margin-right: 10px !important;
}
/* Medium
 ========================================================================== */
.uk-margin-medium {
  margin-bottom: 40px;
}
* + .uk-margin-medium {
  margin-top: 40px !important;
}
.uk-margin-medium-top {
  margin-top: 40px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-medium-left {
  margin-left: 40px !important;
}
.uk-margin-medium-right {
  margin-right: 40px !important;
}
/* Large
 ========================================================================== */
.uk-margin-large {
  margin-bottom: 40px;
}
* + .uk-margin-large {
  margin-top: 40px !important;
}
.uk-margin-large-top {
  margin-top: 40px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-large-left {
  margin-left: 40px !important;
}
.uk-margin-large-right {
  margin-right: 40px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-large {
    margin-bottom: 70px;
  }
  * + .uk-margin-large {
    margin-top: 70px !important;
  }
  .uk-margin-large-top {
    margin-top: 70px !important;
  }
  .uk-margin-large-bottom {
    margin-bottom: 70px !important;
  }
  .uk-margin-large-left {
    margin-left: 70px !important;
  }
  .uk-margin-large-right {
    margin-right: 70px !important;
  }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
  margin-bottom: 70px;
}
* + .uk-margin-xlarge {
  margin-top: 70px !important;
}
.uk-margin-xlarge-top {
  margin-top: 70px !important;
}
.uk-margin-xlarge-bottom {
  margin-bottom: 70px !important;
}
.uk-margin-xlarge-left {
  margin-left: 70px !important;
}
.uk-margin-xlarge-right {
  margin-right: 70px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .uk-margin-xlarge {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* Auto
 ========================================================================== */
.uk-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.uk-margin-auto-top {
  margin-top: auto !important;
}
.uk-margin-auto-bottom {
  margin-bottom: auto !important;
}
.uk-margin-auto-left {
  margin-left: auto !important;
}
.uk-margin-auto-right {
  margin-right: auto !important;
}
.uk-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@s {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@s {
    margin-right: auto !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@m {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@m {
    margin-right: auto !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@l {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@l {
    margin-right: auto !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@xl {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}
/* Remove
 ========================================================================== */
.uk-margin-remove {
  margin: 0 !important;
}
.uk-margin-remove-top {
  margin-top: 0 !important;
}
.uk-margin-remove-bottom {
  margin-bottom: 0 !important;
}
.uk-margin-remove-left {
  margin-left: 0 !important;
}
.uk-margin-remove-right {
  margin-right: 0 !important;
}
.uk-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.uk-margin-remove-adjacent + *, .uk-margin-remove-first-child > :first-child {
  margin-top: 0 !important;
}
.uk-margin-remove-last-child > :last-child {
  margin-bottom: 0 !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-remove-left\@s {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-remove-left\@l {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-remove-left\@xl {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.uk-padding {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.uk-padding-small {
  padding: 15px;
}
/* Large
 ========================================================================== */
.uk-padding-large {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding-large {
    padding: 70px;
  }
}
/* Remove
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}
.uk-padding-remove-top {
  padding-top: 0 !important;
}
.uk-padding-remove-bottom {
  padding-bottom: 0 !important;
}
.uk-padding-remove-left {
  padding-left: 0 !important;
}
.uk-padding-remove-right {
  padding-right: 0 !important;
}
.uk-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.uk-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ========================================================================
   Component: Position
 ========================================================================== */
/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow if `max-width: 100%` is used inside position container.
 */
[class*="uk-position-top"], [class*="uk-position-bottom"], [class*="uk-position-left"], [class*="uk-position-right"], [class*="uk-position-center"] {
  position: absolute !important;
  /* 1 */
  max-width: 100%;
}
/* Edges
 ========================================================================== */
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}
.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}
.uk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}
.uk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}
/* Corners
 ========================================================================== */
.uk-position-top-left {
  top: 0;
  left: 0;
}
.uk-position-top-right {
  top: 0;
  right: 0;
}
.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}
.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 */
.uk-position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 1 */
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
/* Vertical */
[class*="uk-position-center-left"], [class*="uk-position-center-right"] {
  top: 50%;
  transform: translateY(-50%);
}
.uk-position-center-left {
  left: 0;
}
.uk-position-center-right {
  right: 0;
}
.uk-position-center-left-out {
  right: 100%;
  width: max-content;
}
.uk-position-center-right-out {
  left: 100%;
  width: max-content;
}
/* Horizontal */
.uk-position-top-center, .uk-position-bottom-center {
  left: 50%;
  transform: translateX(-50%);
  /* 1 */
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
.uk-position-top-center {
  top: 0;
}
.uk-position-bottom-center {
  bottom: 0;
}
/* Cover
 ========================================================================== */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Utility
 ========================================================================== */
.uk-position-relative {
  position: relative !important;
}
.uk-position-absolute {
  position: absolute !important;
}
.uk-position-fixed {
  position: fixed !important;
}
.uk-position-z-index {
  z-index: 1;
}
/* Margin modifier
 ========================================================================== */
/*
 * Small
 */
.uk-position-small {
  max-width: calc(100% - (15px * 2));
  margin: 15px;
}
.uk-position-small.uk-position-center {
  transform: translate(-50%, -50%) translate(-15px, -15px);
}
.uk-position-small[class*="uk-position-center-left"], .uk-position-small[class*="uk-position-center-right"] {
  transform: translateY(-50%) translateY(-15px);
}
.uk-position-small.uk-position-top-center, .uk-position-small.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-15px);
}
/*
 * Medium
 */
.uk-position-medium {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.uk-position-medium.uk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.uk-position-medium[class*="uk-position-center-left"], .uk-position-medium[class*="uk-position-center-right"] {
  transform: translateY(-50%) translateY(-30px);
}
.uk-position-medium.uk-position-top-center, .uk-position-medium.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/*
 * Large
 */
.uk-position-large {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.uk-position-large.uk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.uk-position-large[class*="uk-position-center-left"], .uk-position-large[class*="uk-position-center-right"] {
  transform: translateY(-50%) translateY(-30px);
}
.uk-position-large.uk-position-top-center, .uk-position-large.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-position-large {
    max-width: calc(100% - (50px * 2));
    margin: 50px;
  }
  .uk-position-large.uk-position-center {
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }
  .uk-position-large[class*="uk-position-center-left"], .uk-position-large[class*="uk-position-center-right"] {
    transform: translateY(-50%) translateY(-50px);
  }
  .uk-position-large.uk-position-top-center, .uk-position-large.uk-position-bottom-center {
    transform: translateX(-50%) translateX(-50px);
  }
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-transition-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.uk-transition-toggle:focus {
  outline: none;
}
/* Transitions
 ========================================================================== */
/*
 * The toggle is triggered on touch devices by two methods:
 * 1. Using `:focus` and tabindex
 * 2. Using `:hover` and a `touchstart` event listener registered on the document
 *    (Doesn't work on Surface touch devices)
 *
 * Note: Transitions don't work with `uk-postion-center-*` classes because they also use `transform`,
 *       therefore it's recommended to use an extra `div` for the transition.
 */
.uk-transition-fade, [class*="uk-transition-scale"], [class*="uk-transition-slide"] {
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}
/*
 * Fade
 */
.uk-transition-toggle:hover .uk-transition-fade, .uk-transition-toggle:focus .uk-transition-fade, .uk-transition-active.uk-active .uk-transition-fade {
  opacity: 1;
}
/*
 * Scale
 */
.uk-transition-scale-up {
  transform: scale(1, 1);
}
.uk-transition-scale-down {
  transform: scale(1.03, 1.03);
}
/* Show */
.uk-transition-toggle:hover .uk-transition-scale-up, .uk-transition-toggle:focus .uk-transition-scale-up, .uk-transition-active.uk-active .uk-transition-scale-up {
  opacity: 1;
  transform: scale(1.03, 1.03);
}
.uk-transition-toggle:hover .uk-transition-scale-down, .uk-transition-toggle:focus .uk-transition-scale-down, .uk-transition-active.uk-active .uk-transition-scale-down {
  opacity: 1;
  transform: scale(1, 1);
}
/*
 * Slide
 */
.uk-transition-slide-top {
  transform: translateY(-100%);
}
.uk-transition-slide-bottom {
  transform: translateY(100%);
}
.uk-transition-slide-left {
  transform: translateX(-100%);
}
.uk-transition-slide-right {
  transform: translateX(100%);
}
.uk-transition-slide-top-small {
  transform: translateY(-10px);
}
.uk-transition-slide-bottom-small {
  transform: translateY(10px);
}
.uk-transition-slide-left-small {
  transform: translateX(-10px);
}
.uk-transition-slide-right-small {
  transform: translateX(10px);
}
.uk-transition-slide-top-medium {
  transform: translateY(-50px);
}
.uk-transition-slide-bottom-medium {
  transform: translateY(50px);
}
.uk-transition-slide-left-medium {
  transform: translateX(-50px);
}
.uk-transition-slide-right-medium {
  transform: translateX(50px);
}
/* Show */
.uk-transition-toggle:hover [class*="uk-transition-slide"], .uk-transition-toggle:focus [class*="uk-transition-slide"], .uk-transition-active.uk-active [class*="uk-transition-slide"] {
  opacity: 1;
  transform: translate(0, 0);
}
/* Opacity modifier
 ========================================================================== */
.uk-transition-opaque {
  opacity: 1;
}
/* Duration modifiers
 ========================================================================== */
.uk-transition-slow {
  transition-duration: 0.7s;
}
/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden], .uk-hidden {
  display: none !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.uk-invisible {
  visibility: hidden !important;
}
/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * Hidden
 * 1. The toggle is triggered on touch devices using `:focus` and tabindex
 * 2. The target stays visible if any element within receives focus through keyboard
 *    Doesn't work in Edge, yet.
 * 3. Can't use `display: none` nor `visibility: hidden` because both are not focusable.
 *
 */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
  /* 3 */
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
/*
 * Invisible
 */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
  /* 3 */
  opacity: 0 !important;
}
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-visible-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.uk-visible-toggle:focus {
  outline: none;
}
/* 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) {
  .uk-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 */
.uk-hidden-notouch {
  display: none !important;
}
@media (pointer: coarse) {
  .uk-hidden-notouch {
    display: block !important;
  }
}
/* ========================================================================
   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;
  }
}
/*!
 * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "FontAwesome");
  font-weight: var(--fa-style, 900);
}
.fa, .fa-classic, .fa-sharp, .fas, .fa-solid, .far, .fa-regular, .fab, .fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas, .fa-classic, .fa-solid, .far, .fa-regular {
  font-family: "Font Awesome 6 Free";
}
.fab, .fa-brands {
  font-family: "Font Awesome 6 Brands";
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}
.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}
.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}
.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}
.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}
.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}
.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}
.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}
.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}
.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}
.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin-reverse {
  --fa-animation-direction: reverse;
}
.fa-pulse, .fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}
@media (prefers-reduced-motion: reduce) {
  .fa-beat, .fa-bounce, .fa-fade, .fa-beat-fade, .fa-flip, .fa-pulse, .fa-shake, .fa-spin, .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}
.fa-rotate-180 {
  transform: rotate(180deg);
}
.fa-rotate-270 {
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  transform: scale(1, -1);
}
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}
.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, none));
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: var(--fa-inverse, #fff);
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "0";
}
.fa-1::before {
  content: "1";
}
.fa-2::before {
  content: "2";
}
.fa-3::before {
  content: "3";
}
.fa-4::before {
  content: "4";
}
.fa-5::before {
  content: "5";
}
.fa-6::before {
  content: "6";
}
.fa-7::before {
  content: "7";
}
.fa-8::before {
  content: "8";
}
.fa-9::before {
  content: "9";
}
.fa-fill-drip::before {
  content: "";
}
.fa-arrows-to-circle::before {
  content: "";
}
.fa-circle-chevron-right::before {
  content: "";
}
.fa-chevron-circle-right::before {
  content: "";
}
.fa-at::before {
  content: "@";
}
.fa-trash-can::before {
  content: "";
}
.fa-trash-alt::before {
  content: "";
}
.fa-text-height::before {
  content: "";
}
.fa-user-xmark::before {
  content: "";
}
.fa-user-times::before {
  content: "";
}
.fa-stethoscope::before {
  content: "";
}
.fa-message::before {
  content: "";
}
.fa-comment-alt::before {
  content: "";
}
.fa-info::before {
  content: "";
}
.fa-down-left-and-up-right-to-center::before {
  content: "";
}
.fa-compress-alt::before {
  content: "";
}
.fa-explosion::before {
  content: "";
}
.fa-file-lines::before {
  content: "";
}
.fa-file-alt::before {
  content: "";
}
.fa-file-text::before {
  content: "";
}
.fa-wave-square::before {
  content: "";
}
.fa-ring::before {
  content: "";
}
.fa-building-un::before {
  content: "";
}
.fa-dice-three::before {
  content: "";
}
.fa-calendar-days::before {
  content: "";
}
.fa-calendar-alt::before {
  content: "";
}
.fa-anchor-circle-check::before {
  content: "";
}
.fa-building-circle-arrow-right::before {
  content: "";
}
.fa-volleyball::before {
  content: "";
}
.fa-volleyball-ball::before {
  content: "";
}
.fa-arrows-up-to-line::before {
  content: "";
}
.fa-sort-down::before {
  content: "";
}
.fa-sort-desc::before {
  content: "";
}
.fa-circle-minus::before {
  content: "";
}
.fa-minus-circle::before {
  content: "";
}
.fa-door-open::before {
  content: "";
}
.fa-right-from-bracket::before {
  content: "";
}
.fa-sign-out-alt::before {
  content: "";
}
.fa-atom::before {
  content: "";
}
.fa-soap::before {
  content: "";
}
.fa-icons::before {
  content: "";
}
.fa-heart-music-camera-bolt::before {
  content: "";
}
.fa-microphone-lines-slash::before {
  content: "";
}
.fa-microphone-alt-slash::before {
  content: "";
}
.fa-bridge-circle-check::before {
  content: "";
}
.fa-pump-medical::before {
  content: "";
}
.fa-fingerprint::before {
  content: "";
}
.fa-hand-point-right::before {
  content: "";
}
.fa-magnifying-glass-location::before {
  content: "";
}
.fa-search-location::before {
  content: "";
}
.fa-forward-step::before {
  content: "";
}
.fa-step-forward::before {
  content: "";
}
.fa-face-smile-beam::before {
  content: "";
}
.fa-smile-beam::before {
  content: "";
}
.fa-flag-checkered::before {
  content: "";
}
.fa-football::before {
  content: "";
}
.fa-football-ball::before {
  content: "";
}
.fa-school-circle-exclamation::before {
  content: "";
}
.fa-crop::before {
  content: "";
}
.fa-angles-down::before {
  content: "";
}
.fa-angle-double-down::before {
  content: "";
}
.fa-users-rectangle::before {
  content: "";
}
.fa-people-roof::before {
  content: "";
}
.fa-people-line::before {
  content: "";
}
.fa-beer-mug-empty::before {
  content: "";
}
.fa-beer::before {
  content: "";
}
.fa-diagram-predecessor::before {
  content: "";
}
.fa-arrow-up-long::before {
  content: "";
}
.fa-long-arrow-up::before {
  content: "";
}
.fa-fire-flame-simple::before {
  content: "";
}
.fa-burn::before {
  content: "";
}
.fa-person::before {
  content: "";
}
.fa-male::before {
  content: "";
}
.fa-laptop::before {
  content: "";
}
.fa-file-csv::before {
  content: "";
}
.fa-menorah::before {
  content: "";
}
.fa-truck-plane::before {
  content: "";
}
.fa-record-vinyl::before {
  content: "";
}
.fa-face-grin-stars::before {
  content: "";
}
.fa-grin-stars::before {
  content: "";
}
.fa-bong::before {
  content: "";
}
.fa-spaghetti-monster-flying::before {
  content: "";
}
.fa-pastafarianism::before {
  content: "";
}
.fa-arrow-down-up-across-line::before {
  content: "";
}
.fa-spoon::before {
  content: "";
}
.fa-utensil-spoon::before {
  content: "";
}
.fa-jar-wheat::before {
  content: "";
}
.fa-envelopes-bulk::before {
  content: "";
}
.fa-mail-bulk::before {
  content: "";
}
.fa-file-circle-exclamation::before {
  content: "";
}
.fa-circle-h::before {
  content: "";
}
.fa-hospital-symbol::before {
  content: "";
}
.fa-pager::before {
  content: "";
}
.fa-address-book::before {
  content: "";
}
.fa-contact-book::before {
  content: "";
}
.fa-strikethrough::before {
  content: "";
}
.fa-k::before {
  content: "K";
}
.fa-landmark-flag::before {
  content: "";
}
.fa-pencil::before {
  content: "";
}
.fa-pencil-alt::before {
  content: "";
}
.fa-backward::before {
  content: "";
}
.fa-caret-right::before {
  content: "";
}
.fa-comments::before {
  content: "";
}
.fa-paste::before {
  content: "";
}
.fa-file-clipboard::before {
  content: "";
}
.fa-code-pull-request::before {
  content: "";
}
.fa-clipboard-list::before {
  content: "";
}
.fa-truck-ramp-box::before {
  content: "";
}
.fa-truck-loading::before {
  content: "";
}
.fa-user-check::before {
  content: "";
}
.fa-vial-virus::before {
  content: "";
}
.fa-sheet-plastic::before {
  content: "";
}
.fa-blog::before {
  content: "";
}
.fa-user-ninja::before {
  content: "";
}
.fa-person-arrow-up-from-line::before {
  content: "";
}
.fa-scroll-torah::before {
  content: "";
}
.fa-torah::before {
  content: "";
}
.fa-broom-ball::before {
  content: "";
}
.fa-quidditch::before {
  content: "";
}
.fa-quidditch-broom-ball::before {
  content: "";
}
.fa-toggle-off::before {
  content: "";
}
.fa-box-archive::before {
  content: "";
}
.fa-archive::before {
  content: "";
}
.fa-person-drowning::before {
  content: "";
}
.fa-arrow-down-9-1::before {
  content: "";
}
.fa-sort-numeric-desc::before {
  content: "";
}
.fa-sort-numeric-down-alt::before {
  content: "";
}
.fa-face-grin-tongue-squint::before {
  content: "";
}
.fa-grin-tongue-squint::before {
  content: "";
}
.fa-spray-can::before {
  content: "";
}
.fa-truck-monster::before {
  content: "";
}
.fa-w::before {
  content: "W";
}
.fa-earth-africa::before {
  content: "";
}
.fa-globe-africa::before {
  content: "";
}
.fa-rainbow::before {
  content: "";
}
.fa-circle-notch::before {
  content: "";
}
.fa-tablet-screen-button::before {
  content: "";
}
.fa-tablet-alt::before {
  content: "";
}
.fa-paw::before {
  content: "";
}
.fa-cloud::before {
  content: "";
}
.fa-trowel-bricks::before {
  content: "";
}
.fa-face-flushed::before {
  content: "";
}
.fa-flushed::before {
  content: "";
}
.fa-hospital-user::before {
  content: "";
}
.fa-tent-arrow-left-right::before {
  content: "";
}
.fa-gavel::before {
  content: "";
}
.fa-legal::before {
  content: "";
}
.fa-binoculars::before {
  content: "";
}
.fa-microphone-slash::before {
  content: "";
}
.fa-box-tissue::before {
  content: "";
}
.fa-motorcycle::before {
  content: "";
}
.fa-bell-concierge::before {
  content: "";
}
.fa-concierge-bell::before {
  content: "";
}
.fa-pen-ruler::before {
  content: "";
}
.fa-pencil-ruler::before {
  content: "";
}
.fa-people-arrows::before {
  content: "";
}
.fa-people-arrows-left-right::before {
  content: "";
}
.fa-mars-and-venus-burst::before {
  content: "";
}
.fa-square-caret-right::before {
  content: "";
}
.fa-caret-square-right::before {
  content: "";
}
.fa-scissors::before {
  content: "";
}
.fa-cut::before {
  content: "";
}
.fa-sun-plant-wilt::before {
  content: "";
}
.fa-toilets-portable::before {
  content: "";
}
.fa-hockey-puck::before {
  content: "";
}
.fa-table::before {
  content: "";
}
.fa-magnifying-glass-arrow-right::before {
  content: "";
}
.fa-tachograph-digital::before {
  content: "";
}
.fa-digital-tachograph::before {
  content: "";
}
.fa-users-slash::before {
  content: "";
}
.fa-clover::before {
  content: "";
}
.fa-reply::before {
  content: "";
}
.fa-mail-reply::before {
  content: "";
}
.fa-star-and-crescent::before {
  content: "";
}
.fa-house-fire::before {
  content: "";
}
.fa-square-minus::before {
  content: "";
}
.fa-minus-square::before {
  content: "";
}
.fa-helicopter::before {
  content: "";
}
.fa-compass::before {
  content: "";
}
.fa-square-caret-down::before {
  content: "";
}
.fa-caret-square-down::before {
  content: "";
}
.fa-file-circle-question::before {
  content: "";
}
.fa-laptop-code::before {
  content: "";
}
.fa-swatchbook::before {
  content: "";
}
.fa-prescription-bottle::before {
  content: "";
}
.fa-bars::before {
  content: "";
}
.fa-navicon::before {
  content: "";
}
.fa-people-group::before {
  content: "";
}
.fa-hourglass-end::before {
  content: "";
}
.fa-hourglass-3::before {
  content: "";
}
.fa-heart-crack::before {
  content: "";
}
.fa-heart-broken::before {
  content: "";
}
.fa-square-up-right::before {
  content: "";
}
.fa-external-link-square-alt::before {
  content: "";
}
.fa-face-kiss-beam::before {
  content: "";
}
.fa-kiss-beam::before {
  content: "";
}
.fa-film::before {
  content: "";
}
.fa-ruler-horizontal::before {
  content: "";
}
.fa-people-robbery::before {
  content: "";
}
.fa-lightbulb::before {
  content: "";
}
.fa-caret-left::before {
  content: "";
}
.fa-circle-exclamation::before {
  content: "";
}
.fa-exclamation-circle::before {
  content: "";
}
.fa-school-circle-xmark::before {
  content: "";
}
.fa-arrow-right-from-bracket::before {
  content: "";
}
.fa-sign-out::before {
  content: "";
}
.fa-circle-chevron-down::before {
  content: "";
}
.fa-chevron-circle-down::before {
  content: "";
}
.fa-unlock-keyhole::before {
  content: "";
}
.fa-unlock-alt::before {
  content: "";
}
.fa-cloud-showers-heavy::before {
  content: "";
}
.fa-headphones-simple::before {
  content: "";
}
.fa-headphones-alt::before {
  content: "";
}
.fa-sitemap::before {
  content: "";
}
.fa-circle-dollar-to-slot::before {
  content: "";
}
.fa-donate::before {
  content: "";
}
.fa-memory::before {
  content: "";
}
.fa-road-spikes::before {
  content: "";
}
.fa-fire-burner::before {
  content: "";
}
.fa-flag::before {
  content: "";
}
.fa-hanukiah::before {
  content: "";
}
.fa-feather::before {
  content: "";
}
.fa-volume-low::before {
  content: "";
}
.fa-volume-down::before {
  content: "";
}
.fa-comment-slash::before {
  content: "";
}
.fa-cloud-sun-rain::before {
  content: "";
}
.fa-compress::before {
  content: "";
}
.fa-wheat-awn::before {
  content: "";
}
.fa-wheat-alt::before {
  content: "";
}
.fa-ankh::before {
  content: "";
}
.fa-hands-holding-child::before {
  content: "";
}
.fa-asterisk::before {
  content: "*";
}
.fa-square-check::before {
  content: "";
}
.fa-check-square::before {
  content: "";
}
.fa-peseta-sign::before {
  content: "";
}
.fa-heading::before {
  content: "";
}
.fa-header::before {
  content: "";
}
.fa-ghost::before {
  content: "";
}
.fa-list::before {
  content: "";
}
.fa-list-squares::before {
  content: "";
}
.fa-square-phone-flip::before {
  content: "";
}
.fa-phone-square-alt::before {
  content: "";
}
.fa-cart-plus::before {
  content: "";
}
.fa-gamepad::before {
  content: "";
}
.fa-circle-dot::before {
  content: "";
}
.fa-dot-circle::before {
  content: "";
}
.fa-face-dizzy::before {
  content: "";
}
.fa-dizzy::before {
  content: "";
}
.fa-egg::before {
  content: "";
}
.fa-house-medical-circle-xmark::before {
  content: "";
}
.fa-campground::before {
  content: "";
}
.fa-folder-plus::before {
  content: "";
}
.fa-futbol::before {
  content: "";
}
.fa-futbol-ball::before {
  content: "";
}
.fa-soccer-ball::before {
  content: "";
}
.fa-paintbrush::before {
  content: "";
}
.fa-paint-brush::before {
  content: "";
}
.fa-lock::before {
  content: "";
}
.fa-gas-pump::before {
  content: "";
}
.fa-hot-tub-person::before {
  content: "";
}
.fa-hot-tub::before {
  content: "";
}
.fa-map-location::before {
  content: "";
}
.fa-map-marked::before {
  content: "";
}
.fa-house-flood-water::before {
  content: "";
}
.fa-tree::before {
  content: "";
}
.fa-bridge-lock::before {
  content: "";
}
.fa-sack-dollar::before {
  content: "";
}
.fa-pen-to-square::before {
  content: "";
}
.fa-edit::before {
  content: "";
}
.fa-car-side::before {
  content: "";
}
.fa-share-nodes::before {
  content: "";
}
.fa-share-alt::before {
  content: "";
}
.fa-heart-circle-minus::before {
  content: "";
}
.fa-hourglass-half::before {
  content: "";
}
.fa-hourglass-2::before {
  content: "";
}
.fa-microscope::before {
  content: "";
}
.fa-sink::before {
  content: "";
}
.fa-bag-shopping::before {
  content: "";
}
.fa-shopping-bag::before {
  content: "";
}
.fa-arrow-down-z-a::before {
  content: "";
}
.fa-sort-alpha-desc::before {
  content: "";
}
.fa-sort-alpha-down-alt::before {
  content: "";
}
.fa-mitten::before {
  content: "";
}
.fa-person-rays::before {
  content: "";
}
.fa-users::before {
  content: "";
}
.fa-eye-slash::before {
  content: "";
}
.fa-flask-vial::before {
  content: "";
}
.fa-hand::before {
  content: "";
}
.fa-hand-paper::before {
  content: "";
}
.fa-om::before {
  content: "";
}
.fa-worm::before {
  content: "";
}
.fa-house-circle-xmark::before {
  content: "";
}
.fa-plug::before {
  content: "";
}
.fa-chevron-up::before {
  content: "";
}
.fa-hand-spock::before {
  content: "";
}
.fa-stopwatch::before {
  content: "";
}
.fa-face-kiss::before {
  content: "";
}
.fa-kiss::before {
  content: "";
}
.fa-bridge-circle-xmark::before {
  content: "";
}
.fa-face-grin-tongue::before {
  content: "";
}
.fa-grin-tongue::before {
  content: "";
}
.fa-chess-bishop::before {
  content: "";
}
.fa-face-grin-wink::before {
  content: "";
}
.fa-grin-wink::before {
  content: "";
}
.fa-ear-deaf::before {
  content: "";
}
.fa-deaf::before {
  content: "";
}
.fa-deafness::before {
  content: "";
}
.fa-hard-of-hearing::before {
  content: "";
}
.fa-road-circle-check::before {
  content: "";
}
.fa-dice-five::before {
  content: "";
}
.fa-square-rss::before {
  content: "";
}
.fa-rss-square::before {
  content: "";
}
.fa-land-mine-on::before {
  content: "";
}
.fa-i-cursor::before {
  content: "";
}
.fa-stamp::before {
  content: "";
}
.fa-stairs::before {
  content: "";
}
.fa-i::before {
  content: "I";
}
.fa-hryvnia-sign::before {
  content: "";
}
.fa-hryvnia::before {
  content: "";
}
.fa-pills::before {
  content: "";
}
.fa-face-grin-wide::before {
  content: "";
}
.fa-grin-alt::before {
  content: "";
}
.fa-tooth::before {
  content: "";
}
.fa-v::before {
  content: "V";
}
.fa-bangladeshi-taka-sign::before {
  content: "";
}
.fa-bicycle::before {
  content: "";
}
.fa-staff-snake::before {
  content: "";
}
.fa-rod-asclepius::before {
  content: "";
}
.fa-rod-snake::before {
  content: "";
}
.fa-staff-aesculapius::before {
  content: "";
}
.fa-head-side-cough-slash::before {
  content: "";
}
.fa-truck-medical::before {
  content: "";
}
.fa-ambulance::before {
  content: "";
}
.fa-wheat-awn-circle-exclamation::before {
  content: "";
}
.fa-snowman::before {
  content: "";
}
.fa-mortar-pestle::before {
  content: "";
}
.fa-road-barrier::before {
  content: "";
}
.fa-school::before {
  content: "";
}
.fa-igloo::before {
  content: "";
}
.fa-joint::before {
  content: "";
}
.fa-angle-right::before {
  content: "";
}
.fa-horse::before {
  content: "";
}
.fa-q::before {
  content: "Q";
}
.fa-g::before {
  content: "G";
}
.fa-notes-medical::before {
  content: "";
}
.fa-temperature-half::before {
  content: "";
}
.fa-temperature-2::before {
  content: "";
}
.fa-thermometer-2::before {
  content: "";
}
.fa-thermometer-half::before {
  content: "";
}
.fa-dong-sign::before {
  content: "";
}
.fa-capsules::before {
  content: "";
}
.fa-poo-storm::before {
  content: "";
}
.fa-poo-bolt::before {
  content: "";
}
.fa-face-frown-open::before {
  content: "";
}
.fa-frown-open::before {
  content: "";
}
.fa-hand-point-up::before {
  content: "";
}
.fa-money-bill::before {
  content: "";
}
.fa-bookmark::before {
  content: "";
}
.fa-align-justify::before {
  content: "";
}
.fa-umbrella-beach::before {
  content: "";
}
.fa-helmet-un::before {
  content: "";
}
.fa-bullseye::before {
  content: "";
}
.fa-bacon::before {
  content: "";
}
.fa-hand-point-down::before {
  content: "";
}
.fa-arrow-up-from-bracket::before {
  content: "";
}
.fa-folder::before {
  content: "";
}
.fa-folder-blank::before {
  content: "";
}
.fa-file-waveform::before {
  content: "";
}
.fa-file-medical-alt::before {
  content: "";
}
.fa-radiation::before {
  content: "";
}
.fa-chart-simple::before {
  content: "";
}
.fa-mars-stroke::before {
  content: "";
}
.fa-vial::before {
  content: "";
}
.fa-gauge::before {
  content: "";
}
.fa-dashboard::before {
  content: "";
}
.fa-gauge-med::before {
  content: "";
}
.fa-tachometer-alt-average::before {
  content: "";
}
.fa-wand-magic-sparkles::before {
  content: "";
}
.fa-magic-wand-sparkles::before {
  content: "";
}
.fa-e::before {
  content: "E";
}
.fa-pen-clip::before {
  content: "";
}
.fa-pen-alt::before {
  content: "";
}
.fa-bridge-circle-exclamation::before {
  content: "";
}
.fa-user::before {
  content: "";
}
.fa-school-circle-check::before {
  content: "";
}
.fa-dumpster::before {
  content: "";
}
.fa-van-shuttle::before {
  content: "";
}
.fa-shuttle-van::before {
  content: "";
}
.fa-building-user::before {
  content: "";
}
.fa-square-caret-left::before {
  content: "";
}
.fa-caret-square-left::before {
  content: "";
}
.fa-highlighter::before {
  content: "";
}
.fa-key::before {
  content: "";
}
.fa-bullhorn::before {
  content: "";
}
.fa-globe::before {
  content: "";
}
.fa-synagogue::before {
  content: "";
}
.fa-person-half-dress::before {
  content: "";
}
.fa-road-bridge::before {
  content: "";
}
.fa-location-arrow::before {
  content: "";
}
.fa-c::before {
  content: "C";
}
.fa-tablet-button::before {
  content: "";
}
.fa-building-lock::before {
  content: "";
}
.fa-pizza-slice::before {
  content: "";
}
.fa-money-bill-wave::before {
  content: "";
}
.fa-chart-area::before {
  content: "";
}
.fa-area-chart::before {
  content: "";
}
.fa-house-flag::before {
  content: "";
}
.fa-person-circle-minus::before {
  content: "";
}
.fa-ban::before {
  content: "";
}
.fa-cancel::before {
  content: "";
}
.fa-camera-rotate::before {
  content: "";
}
.fa-spray-can-sparkles::before {
  content: "";
}
.fa-air-freshener::before {
  content: "";
}
.fa-star::before {
  content: "";
}
.fa-repeat::before {
  content: "";
}
.fa-cross::before {
  content: "";
}
.fa-box::before {
  content: "";
}
.fa-venus-mars::before {
  content: "";
}
.fa-arrow-pointer::before {
  content: "";
}
.fa-mouse-pointer::before {
  content: "";
}
.fa-maximize::before {
  content: "";
}
.fa-expand-arrows-alt::before {
  content: "";
}
.fa-charging-station::before {
  content: "";
}
.fa-shapes::before {
  content: "";
}
.fa-triangle-circle-square::before {
  content: "";
}
.fa-shuffle::before {
  content: "";
}
.fa-random::before {
  content: "";
}
.fa-person-running::before {
  content: "";
}
.fa-running::before {
  content: "";
}
.fa-mobile-retro::before {
  content: "";
}
.fa-grip-lines-vertical::before {
  content: "";
}
.fa-spider::before {
  content: "";
}
.fa-hands-bound::before {
  content: "";
}
.fa-file-invoice-dollar::before {
  content: "";
}
.fa-plane-circle-exclamation::before {
  content: "";
}
.fa-x-ray::before {
  content: "";
}
.fa-spell-check::before {
  content: "";
}
.fa-slash::before {
  content: "";
}
.fa-computer-mouse::before {
  content: "";
}
.fa-mouse::before {
  content: "";
}
.fa-arrow-right-to-bracket::before {
  content: "";
}
.fa-sign-in::before {
  content: "";
}
.fa-shop-slash::before {
  content: "";
}
.fa-store-alt-slash::before {
  content: "";
}
.fa-server::before {
  content: "";
}
.fa-virus-covid-slash::before {
  content: "";
}
.fa-shop-lock::before {
  content: "";
}
.fa-hourglass-start::before {
  content: "";
}
.fa-hourglass-1::before {
  content: "";
}
.fa-blender-phone::before {
  content: "";
}
.fa-building-wheat::before {
  content: "";
}
.fa-person-breastfeeding::before {
  content: "";
}
.fa-right-to-bracket::before {
  content: "";
}
.fa-sign-in-alt::before {
  content: "";
}
.fa-venus::before {
  content: "";
}
.fa-passport::before {
  content: "";
}
.fa-heart-pulse::before {
  content: "";
}
.fa-heartbeat::before {
  content: "";
}
.fa-people-carry-box::before {
  content: "";
}
.fa-people-carry::before {
  content: "";
}
.fa-temperature-high::before {
  content: "";
}
.fa-microchip::before {
  content: "";
}
.fa-crown::before {
  content: "";
}
.fa-weight-hanging::before {
  content: "";
}
.fa-xmarks-lines::before {
  content: "";
}
.fa-file-prescription::before {
  content: "";
}
.fa-weight-scale::before {
  content: "";
}
.fa-weight::before {
  content: "";
}
.fa-user-group::before {
  content: "";
}
.fa-user-friends::before {
  content: "";
}
.fa-arrow-up-a-z::before {
  content: "";
}
.fa-sort-alpha-up::before {
  content: "";
}
.fa-chess-knight::before {
  content: "";
}
.fa-face-laugh-squint::before {
  content: "";
}
.fa-laugh-squint::before {
  content: "";
}
.fa-wheelchair::before {
  content: "";
}
.fa-circle-arrow-up::before {
  content: "";
}
.fa-arrow-circle-up::before {
  content: "";
}
.fa-toggle-on::before {
  content: "";
}
.fa-person-walking::before {
  content: "";
}
.fa-walking::before {
  content: "";
}
.fa-l::before {
  content: "L";
}
.fa-fire::before {
  content: "";
}
.fa-bed-pulse::before {
  content: "";
}
.fa-procedures::before {
  content: "";
}
.fa-shuttle-space::before {
  content: "";
}
.fa-space-shuttle::before {
  content: "";
}
.fa-face-laugh::before {
  content: "";
}
.fa-laugh::before {
  content: "";
}
.fa-folder-open::before {
  content: "";
}
.fa-heart-circle-plus::before {
  content: "";
}
.fa-code-fork::before {
  content: "";
}
.fa-city::before {
  content: "";
}
.fa-microphone-lines::before {
  content: "";
}
.fa-microphone-alt::before {
  content: "";
}
.fa-pepper-hot::before {
  content: "";
}
.fa-unlock::before {
  content: "";
}
.fa-colon-sign::before {
  content: "";
}
.fa-headset::before {
  content: "";
}
.fa-store-slash::before {
  content: "";
}
.fa-road-circle-xmark::before {
  content: "";
}
.fa-user-minus::before {
  content: "";
}
.fa-mars-stroke-up::before {
  content: "";
}
.fa-mars-stroke-v::before {
  content: "";
}
.fa-champagne-glasses::before {
  content: "";
}
.fa-glass-cheers::before {
  content: "";
}
.fa-clipboard::before {
  content: "";
}
.fa-house-circle-exclamation::before {
  content: "";
}
.fa-file-arrow-up::before {
  content: "";
}
.fa-file-upload::before {
  content: "";
}
.fa-wifi::before {
  content: "";
}
.fa-wifi-3::before {
  content: "";
}
.fa-wifi-strong::before {
  content: "";
}
.fa-bath::before {
  content: "";
}
.fa-bathtub::before {
  content: "";
}
.fa-underline::before {
  content: "";
}
.fa-user-pen::before {
  content: "";
}
.fa-user-edit::before {
  content: "";
}
.fa-signature::before {
  content: "";
}
.fa-stroopwafel::before {
  content: "";
}
.fa-bold::before {
  content: "";
}
.fa-anchor-lock::before {
  content: "";
}
.fa-building-ngo::before {
  content: "";
}
.fa-manat-sign::before {
  content: "";
}
.fa-not-equal::before {
  content: "";
}
.fa-border-top-left::before {
  content: "";
}
.fa-border-style::before {
  content: "";
}
.fa-map-location-dot::before {
  content: "";
}
.fa-map-marked-alt::before {
  content: "";
}
.fa-jedi::before {
  content: "";
}
.fa-square-poll-vertical::before {
  content: "";
}
.fa-poll::before {
  content: "";
}
.fa-mug-hot::before {
  content: "";
}
.fa-car-battery::before {
  content: "";
}
.fa-battery-car::before {
  content: "";
}
.fa-gift::before {
  content: "";
}
.fa-dice-two::before {
  content: "";
}
.fa-chess-queen::before {
  content: "";
}
.fa-glasses::before {
  content: "";
}
.fa-chess-board::before {
  content: "";
}
.fa-building-circle-check::before {
  content: "";
}
.fa-person-chalkboard::before {
  content: "";
}
.fa-mars-stroke-right::before {
  content: "";
}
.fa-mars-stroke-h::before {
  content: "";
}
.fa-hand-back-fist::before {
  content: "";
}
.fa-hand-rock::before {
  content: "";
}
.fa-square-caret-up::before {
  content: "";
}
.fa-caret-square-up::before {
  content: "";
}
.fa-cloud-showers-water::before {
  content: "";
}
.fa-chart-bar::before {
  content: "";
}
.fa-bar-chart::before {
  content: "";
}
.fa-hands-bubbles::before {
  content: "";
}
.fa-hands-wash::before {
  content: "";
}
.fa-less-than-equal::before {
  content: "";
}
.fa-train::before {
  content: "";
}
.fa-eye-low-vision::before {
  content: "";
}
.fa-low-vision::before {
  content: "";
}
.fa-crow::before {
  content: "";
}
.fa-sailboat::before {
  content: "";
}
.fa-window-restore::before {
  content: "";
}
.fa-square-plus::before {
  content: "";
}
.fa-plus-square::before {
  content: "";
}
.fa-torii-gate::before {
  content: "";
}
.fa-frog::before {
  content: "";
}
.fa-bucket::before {
  content: "";
}
.fa-image::before {
  content: "";
}
.fa-microphone::before {
  content: "";
}
.fa-cow::before {
  content: "";
}
.fa-caret-up::before {
  content: "";
}
.fa-screwdriver::before {
  content: "";
}
.fa-folder-closed::before {
  content: "";
}
.fa-house-tsunami::before {
  content: "";
}
.fa-square-nfi::before {
  content: "";
}
.fa-arrow-up-from-ground-water::before {
  content: "";
}
.fa-martini-glass::before {
  content: "";
}
.fa-glass-martini-alt::before {
  content: "";
}
.fa-rotate-left::before {
  content: "";
}
.fa-rotate-back::before {
  content: "";
}
.fa-rotate-backward::before {
  content: "";
}
.fa-undo-alt::before {
  content: "";
}
.fa-table-columns::before {
  content: "";
}
.fa-columns::before {
  content: "";
}
.fa-lemon::before {
  content: "";
}
.fa-head-side-mask::before {
  content: "";
}
.fa-handshake::before {
  content: "";
}
.fa-gem::before {
  content: "";
}
.fa-dolly::before {
  content: "";
}
.fa-dolly-box::before {
  content: "";
}
.fa-smoking::before {
  content: "";
}
.fa-minimize::before {
  content: "";
}
.fa-compress-arrows-alt::before {
  content: "";
}
.fa-monument::before {
  content: "";
}
.fa-snowplow::before {
  content: "";
}
.fa-angles-right::before {
  content: "";
}
.fa-angle-double-right::before {
  content: "";
}
.fa-cannabis::before {
  content: "";
}
.fa-circle-play::before {
  content: "";
}
.fa-play-circle::before {
  content: "";
}
.fa-tablets::before {
  content: "";
}
.fa-ethernet::before {
  content: "";
}
.fa-euro-sign::before {
  content: "";
}
.fa-eur::before {
  content: "";
}
.fa-euro::before {
  content: "";
}
.fa-chair::before {
  content: "";
}
.fa-circle-check::before {
  content: "";
}
.fa-check-circle::before {
  content: "";
}
.fa-circle-stop::before {
  content: "";
}
.fa-stop-circle::before {
  content: "";
}
.fa-compass-drafting::before {
  content: "";
}
.fa-drafting-compass::before {
  content: "";
}
.fa-plate-wheat::before {
  content: "";
}
.fa-icicles::before {
  content: "";
}
.fa-person-shelter::before {
  content: "";
}
.fa-neuter::before {
  content: "";
}
.fa-id-badge::before {
  content: "";
}
.fa-marker::before {
  content: "";
}
.fa-face-laugh-beam::before {
  content: "";
}
.fa-laugh-beam::before {
  content: "";
}
.fa-helicopter-symbol::before {
  content: "";
}
.fa-universal-access::before {
  content: "";
}
.fa-circle-chevron-up::before {
  content: "";
}
.fa-chevron-circle-up::before {
  content: "";
}
.fa-lari-sign::before {
  content: "";
}
.fa-volcano::before {
  content: "";
}
.fa-person-walking-dashed-line-arrow-right::before {
  content: "";
}
.fa-sterling-sign::before {
  content: "";
}
.fa-gbp::before {
  content: "";
}
.fa-pound-sign::before {
  content: "";
}
.fa-viruses::before {
  content: "";
}
.fa-square-person-confined::before {
  content: "";
}
.fa-user-tie::before {
  content: "";
}
.fa-arrow-down-long::before {
  content: "";
}
.fa-long-arrow-down::before {
  content: "";
}
.fa-tent-arrow-down-to-line::before {
  content: "";
}
.fa-certificate::before {
  content: "";
}
.fa-reply-all::before {
  content: "";
}
.fa-mail-reply-all::before {
  content: "";
}
.fa-suitcase::before {
  content: "";
}
.fa-person-skating::before {
  content: "";
}
.fa-skating::before {
  content: "";
}
.fa-filter-circle-dollar::before {
  content: "";
}
.fa-funnel-dollar::before {
  content: "";
}
.fa-camera-retro::before {
  content: "";
}
.fa-circle-arrow-down::before {
  content: "";
}
.fa-arrow-circle-down::before {
  content: "";
}
.fa-file-import::before {
  content: "";
}
.fa-arrow-right-to-file::before {
  content: "";
}
.fa-square-arrow-up-right::before {
  content: "";
}
.fa-external-link-square::before {
  content: "";
}
.fa-box-open::before {
  content: "";
}
.fa-scroll::before {
  content: "";
}
.fa-spa::before {
  content: "";
}
.fa-location-pin-lock::before {
  content: "";
}
.fa-pause::before {
  content: "";
}
.fa-hill-avalanche::before {
  content: "";
}
.fa-temperature-empty::before {
  content: "";
}
.fa-temperature-0::before {
  content: "";
}
.fa-thermometer-0::before {
  content: "";
}
.fa-thermometer-empty::before {
  content: "";
}
.fa-bomb::before {
  content: "";
}
.fa-registered::before {
  content: "";
}
.fa-address-card::before {
  content: "";
}
.fa-contact-card::before {
  content: "";
}
.fa-vcard::before {
  content: "";
}
.fa-scale-unbalanced-flip::before {
  content: "";
}
.fa-balance-scale-right::before {
  content: "";
}
.fa-subscript::before {
  content: "";
}
.fa-diamond-turn-right::before {
  content: "";
}
.fa-directions::before {
  content: "";
}
.fa-burst::before {
  content: "";
}
.fa-house-laptop::before {
  content: "";
}
.fa-laptop-house::before {
  content: "";
}
.fa-face-tired::before {
  content: "";
}
.fa-tired::before {
  content: "";
}
.fa-money-bills::before {
  content: "";
}
.fa-smog::before {
  content: "";
}
.fa-crutch::before {
  content: "";
}
.fa-cloud-arrow-up::before {
  content: "";
}
.fa-cloud-upload::before {
  content: "";
}
.fa-cloud-upload-alt::before {
  content: "";
}
.fa-palette::before {
  content: "";
}
.fa-arrows-turn-right::before {
  content: "";
}
.fa-vest::before {
  content: "";
}
.fa-ferry::before {
  content: "";
}
.fa-arrows-down-to-people::before {
  content: "";
}
.fa-seedling::before {
  content: "";
}
.fa-sprout::before {
  content: "";
}
.fa-left-right::before {
  content: "";
}
.fa-arrows-alt-h::before {
  content: "";
}
.fa-boxes-packing::before {
  content: "";
}
.fa-circle-arrow-left::before {
  content: "";
}
.fa-arrow-circle-left::before {
  content: "";
}
.fa-group-arrows-rotate::before {
  content: "";
}
.fa-bowl-food::before {
  content: "";
}
.fa-candy-cane::before {
  content: "";
}
.fa-arrow-down-wide-short::before {
  content: "";
}
.fa-sort-amount-asc::before {
  content: "";
}
.fa-sort-amount-down::before {
  content: "";
}
.fa-cloud-bolt::before {
  content: "";
}
.fa-thunderstorm::before {
  content: "";
}
.fa-text-slash::before {
  content: "";
}
.fa-remove-format::before {
  content: "";
}
.fa-face-smile-wink::before {
  content: "";
}
.fa-smile-wink::before {
  content: "";
}
.fa-file-word::before {
  content: "";
}
.fa-file-powerpoint::before {
  content: "";
}
.fa-arrows-left-right::before {
  content: "";
}
.fa-arrows-h::before {
  content: "";
}
.fa-house-lock::before {
  content: "";
}
.fa-cloud-arrow-down::before {
  content: "";
}
.fa-cloud-download::before {
  content: "";
}
.fa-cloud-download-alt::before {
  content: "";
}
.fa-children::before {
  content: "";
}
.fa-chalkboard::before {
  content: "";
}
.fa-blackboard::before {
  content: "";
}
.fa-user-large-slash::before {
  content: "";
}
.fa-user-alt-slash::before {
  content: "";
}
.fa-envelope-open::before {
  content: "";
}
.fa-handshake-simple-slash::before {
  content: "";
}
.fa-handshake-alt-slash::before {
  content: "";
}
.fa-mattress-pillow::before {
  content: "";
}
.fa-guarani-sign::before {
  content: "";
}
.fa-arrows-rotate::before {
  content: "";
}
.fa-refresh::before {
  content: "";
}
.fa-sync::before {
  content: "";
}
.fa-fire-extinguisher::before {
  content: "";
}
.fa-cruzeiro-sign::before {
  content: "";
}
.fa-greater-than-equal::before {
  content: "";
}
.fa-shield-halved::before {
  content: "";
}
.fa-shield-alt::before {
  content: "";
}
.fa-book-atlas::before {
  content: "";
}
.fa-atlas::before {
  content: "";
}
.fa-virus::before {
  content: "";
}
.fa-envelope-circle-check::before {
  content: "";
}
.fa-layer-group::before {
  content: "";
}
.fa-arrows-to-dot::before {
  content: "";
}
.fa-archway::before {
  content: "";
}
.fa-heart-circle-check::before {
  content: "";
}
.fa-house-chimney-crack::before {
  content: "";
}
.fa-house-damage::before {
  content: "";
}
.fa-file-zipper::before {
  content: "";
}
.fa-file-archive::before {
  content: "";
}
.fa-square::before {
  content: "";
}
.fa-martini-glass-empty::before {
  content: "";
}
.fa-glass-martini::before {
  content: "";
}
.fa-couch::before {
  content: "";
}
.fa-cedi-sign::before {
  content: "";
}
.fa-italic::before {
  content: "";
}
.fa-church::before {
  content: "";
}
.fa-comments-dollar::before {
  content: "";
}
.fa-democrat::before {
  content: "";
}
.fa-z::before {
  content: "Z";
}
.fa-person-skiing::before {
  content: "";
}
.fa-skiing::before {
  content: "";
}
.fa-road-lock::before {
  content: "";
}
.fa-a::before {
  content: "A";
}
.fa-temperature-arrow-down::before {
  content: "";
}
.fa-temperature-down::before {
  content: "";
}
.fa-feather-pointed::before {
  content: "";
}
.fa-feather-alt::before {
  content: "";
}
.fa-p::before {
  content: "P";
}
.fa-snowflake::before {
  content: "";
}
.fa-newspaper::before {
  content: "";
}
.fa-rectangle-ad::before {
  content: "";
}
.fa-ad::before {
  content: "";
}
.fa-circle-arrow-right::before {
  content: "";
}
.fa-arrow-circle-right::before {
  content: "";
}
.fa-filter-circle-xmark::before {
  content: "";
}
.fa-locust::before {
  content: "";
}
.fa-sort::before {
  content: "";
}
.fa-unsorted::before {
  content: "";
}
.fa-list-ol::before {
  content: "";
}
.fa-list-1-2::before {
  content: "";
}
.fa-list-numeric::before {
  content: "";
}
.fa-person-dress-burst::before {
  content: "";
}
.fa-money-check-dollar::before {
  content: "";
}
.fa-money-check-alt::before {
  content: "";
}
.fa-vector-square::before {
  content: "";
}
.fa-bread-slice::before {
  content: "";
}
.fa-language::before {
  content: "";
}
.fa-face-kiss-wink-heart::before {
  content: "";
}
.fa-kiss-wink-heart::before {
  content: "";
}
.fa-filter::before {
  content: "";
}
.fa-question::before {
  content: "?";
}
.fa-file-signature::before {
  content: "";
}
.fa-up-down-left-right::before {
  content: "";
}
.fa-arrows-alt::before {
  content: "";
}
.fa-house-chimney-user::before {
  content: "";
}
.fa-hand-holding-heart::before {
  content: "";
}
.fa-puzzle-piece::before {
  content: "";
}
.fa-money-check::before {
  content: "";
}
.fa-star-half-stroke::before {
  content: "";
}
.fa-star-half-alt::before {
  content: "";
}
.fa-code::before {
  content: "";
}
.fa-whiskey-glass::before {
  content: "";
}
.fa-glass-whiskey::before {
  content: "";
}
.fa-building-circle-exclamation::before {
  content: "";
}
.fa-magnifying-glass-chart::before {
  content: "";
}
.fa-arrow-up-right-from-square::before {
  content: "";
}
.fa-external-link::before {
  content: "";
}
.fa-cubes-stacked::before {
  content: "";
}
.fa-won-sign::before {
  content: "";
}
.fa-krw::before {
  content: "";
}
.fa-won::before {
  content: "";
}
.fa-virus-covid::before {
  content: "";
}
.fa-austral-sign::before {
  content: "";
}
.fa-f::before {
  content: "F";
}
.fa-leaf::before {
  content: "";
}
.fa-road::before {
  content: "";
}
.fa-taxi::before {
  content: "";
}
.fa-cab::before {
  content: "";
}
.fa-person-circle-plus::before {
  content: "";
}
.fa-chart-pie::before {
  content: "";
}
.fa-pie-chart::before {
  content: "";
}
.fa-bolt-lightning::before {
  content: "";
}
.fa-sack-xmark::before {
  content: "";
}
.fa-file-excel::before {
  content: "";
}
.fa-file-contract::before {
  content: "";
}
.fa-fish-fins::before {
  content: "";
}
.fa-building-flag::before {
  content: "";
}
.fa-face-grin-beam::before {
  content: "";
}
.fa-grin-beam::before {
  content: "";
}
.fa-object-ungroup::before {
  content: "";
}
.fa-poop::before {
  content: "";
}
.fa-location-pin::before {
  content: "";
}
.fa-map-marker::before {
  content: "";
}
.fa-kaaba::before {
  content: "";
}
.fa-toilet-paper::before {
  content: "";
}
.fa-helmet-safety::before {
  content: "";
}
.fa-hard-hat::before {
  content: "";
}
.fa-hat-hard::before {
  content: "";
}
.fa-eject::before {
  content: "";
}
.fa-circle-right::before {
  content: "";
}
.fa-arrow-alt-circle-right::before {
  content: "";
}
.fa-plane-circle-check::before {
  content: "";
}
.fa-face-rolling-eyes::before {
  content: "";
}
.fa-meh-rolling-eyes::before {
  content: "";
}
.fa-object-group::before {
  content: "";
}
.fa-chart-line::before {
  content: "";
}
.fa-line-chart::before {
  content: "";
}
.fa-mask-ventilator::before {
  content: "";
}
.fa-arrow-right::before {
  content: "";
}
.fa-signs-post::before {
  content: "";
}
.fa-map-signs::before {
  content: "";
}
.fa-cash-register::before {
  content: "";
}
.fa-person-circle-question::before {
  content: "";
}
.fa-h::before {
  content: "H";
}
.fa-tarp::before {
  content: "";
}
.fa-screwdriver-wrench::before {
  content: "";
}
.fa-tools::before {
  content: "";
}
.fa-arrows-to-eye::before {
  content: "";
}
.fa-plug-circle-bolt::before {
  content: "";
}
.fa-heart::before {
  content: "";
}
.fa-mars-and-venus::before {
  content: "";
}
.fa-house-user::before {
  content: "";
}
.fa-home-user::before {
  content: "";
}
.fa-dumpster-fire::before {
  content: "";
}
.fa-house-crack::before {
  content: "";
}
.fa-martini-glass-citrus::before {
  content: "";
}
.fa-cocktail::before {
  content: "";
}
.fa-face-surprise::before {
  content: "";
}
.fa-surprise::before {
  content: "";
}
.fa-bottle-water::before {
  content: "";
}
.fa-circle-pause::before {
  content: "";
}
.fa-pause-circle::before {
  content: "";
}
.fa-toilet-paper-slash::before {
  content: "";
}
.fa-apple-whole::before {
  content: "";
}
.fa-apple-alt::before {
  content: "";
}
.fa-kitchen-set::before {
  content: "";
}
.fa-r::before {
  content: "R";
}
.fa-temperature-quarter::before {
  content: "";
}
.fa-temperature-1::before {
  content: "";
}
.fa-thermometer-1::before {
  content: "";
}
.fa-thermometer-quarter::before {
  content: "";
}
.fa-cube::before {
  content: "";
}
.fa-bitcoin-sign::before {
  content: "";
}
.fa-shield-dog::before {
  content: "";
}
.fa-solar-panel::before {
  content: "";
}
.fa-lock-open::before {
  content: "";
}
.fa-elevator::before {
  content: "";
}
.fa-money-bill-transfer::before {
  content: "";
}
.fa-money-bill-trend-up::before {
  content: "";
}
.fa-house-flood-water-circle-arrow-right::before {
  content: "";
}
.fa-square-poll-horizontal::before {
  content: "";
}
.fa-poll-h::before {
  content: "";
}
.fa-circle::before {
  content: "";
}
.fa-backward-fast::before {
  content: "";
}
.fa-fast-backward::before {
  content: "";
}
.fa-recycle::before {
  content: "";
}
.fa-user-astronaut::before {
  content: "";
}
.fa-plane-slash::before {
  content: "";
}
.fa-trademark::before {
  content: "";
}
.fa-basketball::before {
  content: "";
}
.fa-basketball-ball::before {
  content: "";
}
.fa-satellite-dish::before {
  content: "";
}
.fa-circle-up::before {
  content: "";
}
.fa-arrow-alt-circle-up::before {
  content: "";
}
.fa-mobile-screen-button::before {
  content: "";
}
.fa-mobile-alt::before {
  content: "";
}
.fa-volume-high::before {
  content: "";
}
.fa-volume-up::before {
  content: "";
}
.fa-users-rays::before {
  content: "";
}
.fa-wallet::before {
  content: "";
}
.fa-clipboard-check::before {
  content: "";
}
.fa-file-audio::before {
  content: "";
}
.fa-burger::before {
  content: "";
}
.fa-hamburger::before {
  content: "";
}
.fa-wrench::before {
  content: "";
}
.fa-bugs::before {
  content: "";
}
.fa-rupee-sign::before {
  content: "";
}
.fa-rupee::before {
  content: "";
}
.fa-file-image::before {
  content: "";
}
.fa-circle-question::before {
  content: "";
}
.fa-question-circle::before {
  content: "";
}
.fa-plane-departure::before {
  content: "";
}
.fa-handshake-slash::before {
  content: "";
}
.fa-book-bookmark::before {
  content: "";
}
.fa-code-branch::before {
  content: "";
}
.fa-hat-cowboy::before {
  content: "";
}
.fa-bridge::before {
  content: "";
}
.fa-phone-flip::before {
  content: "";
}
.fa-phone-alt::before {
  content: "";
}
.fa-truck-front::before {
  content: "";
}
.fa-cat::before {
  content: "";
}
.fa-anchor-circle-exclamation::before {
  content: "";
}
.fa-truck-field::before {
  content: "";
}
.fa-route::before {
  content: "";
}
.fa-clipboard-question::before {
  content: "";
}
.fa-panorama::before {
  content: "";
}
.fa-comment-medical::before {
  content: "";
}
.fa-teeth-open::before {
  content: "";
}
.fa-file-circle-minus::before {
  content: "";
}
.fa-tags::before {
  content: "";
}
.fa-wine-glass::before {
  content: "";
}
.fa-forward-fast::before {
  content: "";
}
.fa-fast-forward::before {
  content: "";
}
.fa-face-meh-blank::before {
  content: "";
}
.fa-meh-blank::before {
  content: "";
}
.fa-square-parking::before {
  content: "";
}
.fa-parking::before {
  content: "";
}
.fa-house-signal::before {
  content: "";
}
.fa-bars-progress::before {
  content: "";
}
.fa-tasks-alt::before {
  content: "";
}
.fa-faucet-drip::before {
  content: "";
}
.fa-cart-flatbed::before {
  content: "";
}
.fa-dolly-flatbed::before {
  content: "";
}
.fa-ban-smoking::before {
  content: "";
}
.fa-smoking-ban::before {
  content: "";
}
.fa-terminal::before {
  content: "";
}
.fa-mobile-button::before {
  content: "";
}
.fa-house-medical-flag::before {
  content: "";
}
.fa-basket-shopping::before {
  content: "";
}
.fa-shopping-basket::before {
  content: "";
}
.fa-tape::before {
  content: "";
}
.fa-bus-simple::before {
  content: "";
}
.fa-bus-alt::before {
  content: "";
}
.fa-eye::before {
  content: "";
}
.fa-face-sad-cry::before {
  content: "";
}
.fa-sad-cry::before {
  content: "";
}
.fa-audio-description::before {
  content: "";
}
.fa-person-military-to-person::before {
  content: "";
}
.fa-file-shield::before {
  content: "";
}
.fa-user-slash::before {
  content: "";
}
.fa-pen::before {
  content: "";
}
.fa-tower-observation::before {
  content: "";
}
.fa-file-code::before {
  content: "";
}
.fa-signal::before {
  content: "";
}
.fa-signal-5::before {
  content: "";
}
.fa-signal-perfect::before {
  content: "";
}
.fa-bus::before {
  content: "";
}
.fa-heart-circle-xmark::before {
  content: "";
}
.fa-house-chimney::before {
  content: "";
}
.fa-home-lg::before {
  content: "";
}
.fa-window-maximize::before {
  content: "";
}
.fa-face-frown::before {
  content: "";
}
.fa-frown::before {
  content: "";
}
.fa-prescription::before {
  content: "";
}
.fa-shop::before {
  content: "";
}
.fa-store-alt::before {
  content: "";
}
.fa-floppy-disk::before {
  content: "";
}
.fa-save::before {
  content: "";
}
.fa-vihara::before {
  content: "";
}
.fa-scale-unbalanced::before {
  content: "";
}
.fa-balance-scale-left::before {
  content: "";
}
.fa-sort-up::before {
  content: "";
}
.fa-sort-asc::before {
  content: "";
}
.fa-comment-dots::before {
  content: "";
}
.fa-commenting::before {
  content: "";
}
.fa-plant-wilt::before {
  content: "";
}
.fa-diamond::before {
  content: "";
}
.fa-face-grin-squint::before {
  content: "";
}
.fa-grin-squint::before {
  content: "";
}
.fa-hand-holding-dollar::before {
  content: "";
}
.fa-hand-holding-usd::before {
  content: "";
}
.fa-bacterium::before {
  content: "";
}
.fa-hand-pointer::before {
  content: "";
}
.fa-drum-steelpan::before {
  content: "";
}
.fa-hand-scissors::before {
  content: "";
}
.fa-hands-praying::before {
  content: "";
}
.fa-praying-hands::before {
  content: "";
}
.fa-arrow-rotate-right::before {
  content: "";
}
.fa-arrow-right-rotate::before {
  content: "";
}
.fa-arrow-rotate-forward::before {
  content: "";
}
.fa-redo::before {
  content: "";
}
.fa-biohazard::before {
  content: "";
}
.fa-location-crosshairs::before {
  content: "";
}
.fa-location::before {
  content: "";
}
.fa-mars-double::before {
  content: "";
}
.fa-child-dress::before {
  content: "";
}
.fa-users-between-lines::before {
  content: "";
}
.fa-lungs-virus::before {
  content: "";
}
.fa-face-grin-tears::before {
  content: "";
}
.fa-grin-tears::before {
  content: "";
}
.fa-phone::before {
  content: "";
}
.fa-calendar-xmark::before {
  content: "";
}
.fa-calendar-times::before {
  content: "";
}
.fa-child-reaching::before {
  content: "";
}
.fa-head-side-virus::before {
  content: "";
}
.fa-user-gear::before {
  content: "";
}
.fa-user-cog::before {
  content: "";
}
.fa-arrow-up-1-9::before {
  content: "";
}
.fa-sort-numeric-up::before {
  content: "";
}
.fa-door-closed::before {
  content: "";
}
.fa-shield-virus::before {
  content: "";
}
.fa-dice-six::before {
  content: "";
}
.fa-mosquito-net::before {
  content: "";
}
.fa-bridge-water::before {
  content: "";
}
.fa-person-booth::before {
  content: "";
}
.fa-text-width::before {
  content: "";
}
.fa-hat-wizard::before {
  content: "";
}
.fa-pen-fancy::before {
  content: "";
}
.fa-person-digging::before {
  content: "";
}
.fa-digging::before {
  content: "";
}
.fa-trash::before {
  content: "";
}
.fa-gauge-simple::before {
  content: "";
}
.fa-gauge-simple-med::before {
  content: "";
}
.fa-tachometer-average::before {
  content: "";
}
.fa-book-medical::before {
  content: "";
}
.fa-poo::before {
  content: "";
}
.fa-quote-right::before {
  content: "";
}
.fa-quote-right-alt::before {
  content: "";
}
.fa-shirt::before {
  content: "";
}
.fa-t-shirt::before {
  content: "";
}
.fa-tshirt::before {
  content: "";
}
.fa-cubes::before {
  content: "";
}
.fa-divide::before {
  content: "";
}
.fa-tenge-sign::before {
  content: "";
}
.fa-tenge::before {
  content: "";
}
.fa-headphones::before {
  content: "";
}
.fa-hands-holding::before {
  content: "";
}
.fa-hands-clapping::before {
  content: "";
}
.fa-republican::before {
  content: "";
}
.fa-arrow-left::before {
  content: "";
}
.fa-person-circle-xmark::before {
  content: "";
}
.fa-ruler::before {
  content: "";
}
.fa-align-left::before {
  content: "";
}
.fa-dice-d6::before {
  content: "";
}
.fa-restroom::before {
  content: "";
}
.fa-j::before {
  content: "J";
}
.fa-users-viewfinder::before {
  content: "";
}
.fa-file-video::before {
  content: "";
}
.fa-up-right-from-square::before {
  content: "";
}
.fa-external-link-alt::before {
  content: "";
}
.fa-table-cells::before {
  content: "";
}
.fa-th::before {
  content: "";
}
.fa-file-pdf::before {
  content: "";
}
.fa-book-bible::before {
  content: "";
}
.fa-bible::before {
  content: "";
}
.fa-o::before {
  content: "O";
}
.fa-suitcase-medical::before {
  content: "";
}
.fa-medkit::before {
  content: "";
}
.fa-user-secret::before {
  content: "";
}
.fa-otter::before {
  content: "";
}
.fa-person-dress::before {
  content: "";
}
.fa-female::before {
  content: "";
}
.fa-comment-dollar::before {
  content: "";
}
.fa-business-time::before {
  content: "";
}
.fa-briefcase-clock::before {
  content: "";
}
.fa-table-cells-large::before {
  content: "";
}
.fa-th-large::before {
  content: "";
}
.fa-book-tanakh::before {
  content: "";
}
.fa-tanakh::before {
  content: "";
}
.fa-phone-volume::before {
  content: "";
}
.fa-volume-control-phone::before {
  content: "";
}
.fa-hat-cowboy-side::before {
  content: "";
}
.fa-clipboard-user::before {
  content: "";
}
.fa-child::before {
  content: "";
}
.fa-lira-sign::before {
  content: "";
}
.fa-satellite::before {
  content: "";
}
.fa-plane-lock::before {
  content: "";
}
.fa-tag::before {
  content: "";
}
.fa-comment::before {
  content: "";
}
.fa-cake-candles::before {
  content: "";
}
.fa-birthday-cake::before {
  content: "";
}
.fa-cake::before {
  content: "";
}
.fa-envelope::before {
  content: "";
}
.fa-angles-up::before {
  content: "";
}
.fa-angle-double-up::before {
  content: "";
}
.fa-paperclip::before {
  content: "";
}
.fa-arrow-right-to-city::before {
  content: "";
}
.fa-ribbon::before {
  content: "";
}
.fa-lungs::before {
  content: "";
}
.fa-arrow-up-9-1::before {
  content: "";
}
.fa-sort-numeric-up-alt::before {
  content: "";
}
.fa-litecoin-sign::before {
  content: "";
}
.fa-border-none::before {
  content: "";
}
.fa-circle-nodes::before {
  content: "";
}
.fa-parachute-box::before {
  content: "";
}
.fa-indent::before {
  content: "";
}
.fa-truck-field-un::before {
  content: "";
}
.fa-hourglass::before {
  content: "";
}
.fa-hourglass-empty::before {
  content: "";
}
.fa-mountain::before {
  content: "";
}
.fa-user-doctor::before {
  content: "";
}
.fa-user-md::before {
  content: "";
}
.fa-circle-info::before {
  content: "";
}
.fa-info-circle::before {
  content: "";
}
.fa-cloud-meatball::before {
  content: "";
}
.fa-camera::before {
  content: "";
}
.fa-camera-alt::before {
  content: "";
}
.fa-square-virus::before {
  content: "";
}
.fa-meteor::before {
  content: "";
}
.fa-car-on::before {
  content: "";
}
.fa-sleigh::before {
  content: "";
}
.fa-arrow-down-1-9::before {
  content: "";
}
.fa-sort-numeric-asc::before {
  content: "";
}
.fa-sort-numeric-down::before {
  content: "";
}
.fa-hand-holding-droplet::before {
  content: "";
}
.fa-hand-holding-water::before {
  content: "";
}
.fa-water::before {
  content: "";
}
.fa-calendar-check::before {
  content: "";
}
.fa-braille::before {
  content: "";
}
.fa-prescription-bottle-medical::before {
  content: "";
}
.fa-prescription-bottle-alt::before {
  content: "";
}
.fa-landmark::before {
  content: "";
}
.fa-truck::before {
  content: "";
}
.fa-crosshairs::before {
  content: "";
}
.fa-person-cane::before {
  content: "";
}
.fa-tent::before {
  content: "";
}
.fa-vest-patches::before {
  content: "";
}
.fa-check-double::before {
  content: "";
}
.fa-arrow-down-a-z::before {
  content: "";
}
.fa-sort-alpha-asc::before {
  content: "";
}
.fa-sort-alpha-down::before {
  content: "";
}
.fa-money-bill-wheat::before {
  content: "";
}
.fa-cookie::before {
  content: "";
}
.fa-arrow-rotate-left::before {
  content: "";
}
.fa-arrow-left-rotate::before {
  content: "";
}
.fa-arrow-rotate-back::before {
  content: "";
}
.fa-arrow-rotate-backward::before {
  content: "";
}
.fa-undo::before {
  content: "";
}
.fa-hard-drive::before {
  content: "";
}
.fa-hdd::before {
  content: "";
}
.fa-face-grin-squint-tears::before {
  content: "";
}
.fa-grin-squint-tears::before {
  content: "";
}
.fa-dumbbell::before {
  content: "";
}
.fa-rectangle-list::before {
  content: "";
}
.fa-list-alt::before {
  content: "";
}
.fa-tarp-droplet::before {
  content: "";
}
.fa-house-medical-circle-check::before {
  content: "";
}
.fa-person-skiing-nordic::before {
  content: "";
}
.fa-skiing-nordic::before {
  content: "";
}
.fa-calendar-plus::before {
  content: "";
}
.fa-plane-arrival::before {
  content: "";
}
.fa-circle-left::before {
  content: "";
}
.fa-arrow-alt-circle-left::before {
  content: "";
}
.fa-train-subway::before {
  content: "";
}
.fa-subway::before {
  content: "";
}
.fa-chart-gantt::before {
  content: "";
}
.fa-indian-rupee-sign::before {
  content: "";
}
.fa-indian-rupee::before {
  content: "";
}
.fa-inr::before {
  content: "";
}
.fa-crop-simple::before {
  content: "";
}
.fa-crop-alt::before {
  content: "";
}
.fa-money-bill-1::before {
  content: "";
}
.fa-money-bill-alt::before {
  content: "";
}
.fa-left-long::before {
  content: "";
}
.fa-long-arrow-alt-left::before {
  content: "";
}
.fa-dna::before {
  content: "";
}
.fa-virus-slash::before {
  content: "";
}
.fa-minus::before {
  content: "";
}
.fa-subtract::before {
  content: "";
}
.fa-chess::before {
  content: "";
}
.fa-arrow-left-long::before {
  content: "";
}
.fa-long-arrow-left::before {
  content: "";
}
.fa-plug-circle-check::before {
  content: "";
}
.fa-street-view::before {
  content: "";
}
.fa-franc-sign::before {
  content: "";
}
.fa-volume-off::before {
  content: "";
}
.fa-hands-asl-interpreting::before {
  content: "";
}
.fa-american-sign-language-interpreting::before {
  content: "";
}
.fa-asl-interpreting::before {
  content: "";
}
.fa-hands-american-sign-language-interpreting::before {
  content: "";
}
.fa-gear::before {
  content: "";
}
.fa-cog::before {
  content: "";
}
.fa-droplet-slash::before {
  content: "";
}
.fa-tint-slash::before {
  content: "";
}
.fa-mosque::before {
  content: "";
}
.fa-mosquito::before {
  content: "";
}
.fa-star-of-david::before {
  content: "";
}
.fa-person-military-rifle::before {
  content: "";
}
.fa-cart-shopping::before {
  content: "";
}
.fa-shopping-cart::before {
  content: "";
}
.fa-vials::before {
  content: "";
}
.fa-plug-circle-plus::before {
  content: "";
}
.fa-place-of-worship::before {
  content: "";
}
.fa-grip-vertical::before {
  content: "";
}
.fa-arrow-turn-up::before {
  content: "";
}
.fa-level-up::before {
  content: "";
}
.fa-u::before {
  content: "U";
}
.fa-square-root-variable::before {
  content: "";
}
.fa-square-root-alt::before {
  content: "";
}
.fa-clock::before {
  content: "";
}
.fa-clock-four::before {
  content: "";
}
.fa-backward-step::before {
  content: "";
}
.fa-step-backward::before {
  content: "";
}
.fa-pallet::before {
  content: "";
}
.fa-faucet::before {
  content: "";
}
.fa-baseball-bat-ball::before {
  content: "";
}
.fa-s::before {
  content: "S";
}
.fa-timeline::before {
  content: "";
}
.fa-keyboard::before {
  content: "";
}
.fa-caret-down::before {
  content: "";
}
.fa-house-chimney-medical::before {
  content: "";
}
.fa-clinic-medical::before {
  content: "";
}
.fa-temperature-three-quarters::before {
  content: "";
}
.fa-temperature-3::before {
  content: "";
}
.fa-thermometer-3::before {
  content: "";
}
.fa-thermometer-three-quarters::before {
  content: "";
}
.fa-mobile-screen::before {
  content: "";
}
.fa-mobile-android-alt::before {
  content: "";
}
.fa-plane-up::before {
  content: "";
}
.fa-piggy-bank::before {
  content: "";
}
.fa-battery-half::before {
  content: "";
}
.fa-battery-3::before {
  content: "";
}
.fa-mountain-city::before {
  content: "";
}
.fa-coins::before {
  content: "";
}
.fa-khanda::before {
  content: "";
}
.fa-sliders::before {
  content: "";
}
.fa-sliders-h::before {
  content: "";
}
.fa-folder-tree::before {
  content: "";
}
.fa-network-wired::before {
  content: "";
}
.fa-map-pin::before {
  content: "";
}
.fa-hamsa::before {
  content: "";
}
.fa-cent-sign::before {
  content: "";
}
.fa-flask::before {
  content: "";
}
.fa-person-pregnant::before {
  content: "";
}
.fa-wand-sparkles::before {
  content: "";
}
.fa-ellipsis-vertical::before {
  content: "";
}
.fa-ellipsis-v::before {
  content: "";
}
.fa-ticket::before {
  content: "";
}
.fa-power-off::before {
  content: "";
}
.fa-right-long::before {
  content: "";
}
.fa-long-arrow-alt-right::before {
  content: "";
}
.fa-flag-usa::before {
  content: "";
}
.fa-laptop-file::before {
  content: "";
}
.fa-tty::before {
  content: "";
}
.fa-teletype::before {
  content: "";
}
.fa-diagram-next::before {
  content: "";
}
.fa-person-rifle::before {
  content: "";
}
.fa-house-medical-circle-exclamation::before {
  content: "";
}
.fa-closed-captioning::before {
  content: "";
}
.fa-person-hiking::before {
  content: "";
}
.fa-hiking::before {
  content: "";
}
.fa-venus-double::before {
  content: "";
}
.fa-images::before {
  content: "";
}
.fa-calculator::before {
  content: "";
}
.fa-people-pulling::before {
  content: "";
}
.fa-n::before {
  content: "N";
}
.fa-cable-car::before {
  content: "";
}
.fa-tram::before {
  content: "";
}
.fa-cloud-rain::before {
  content: "";
}
.fa-building-circle-xmark::before {
  content: "";
}
.fa-ship::before {
  content: "";
}
.fa-arrows-down-to-line::before {
  content: "";
}
.fa-download::before {
  content: "";
}
.fa-face-grin::before {
  content: "";
}
.fa-grin::before {
  content: "";
}
.fa-delete-left::before {
  content: "";
}
.fa-backspace::before {
  content: "";
}
.fa-eye-dropper::before {
  content: "";
}
.fa-eye-dropper-empty::before {
  content: "";
}
.fa-eyedropper::before {
  content: "";
}
.fa-file-circle-check::before {
  content: "";
}
.fa-forward::before {
  content: "";
}
.fa-mobile::before {
  content: "";
}
.fa-mobile-android::before {
  content: "";
}
.fa-mobile-phone::before {
  content: "";
}
.fa-face-meh::before {
  content: "";
}
.fa-meh::before {
  content: "";
}
.fa-align-center::before {
  content: "";
}
.fa-book-skull::before {
  content: "";
}
.fa-book-dead::before {
  content: "";
}
.fa-id-card::before {
  content: "";
}
.fa-drivers-license::before {
  content: "";
}
.fa-outdent::before {
  content: "";
}
.fa-dedent::before {
  content: "";
}
.fa-heart-circle-exclamation::before {
  content: "";
}
.fa-house::before {
  content: "";
}
.fa-home::before {
  content: "";
}
.fa-home-alt::before {
  content: "";
}
.fa-home-lg-alt::before {
  content: "";
}
.fa-calendar-week::before {
  content: "";
}
.fa-laptop-medical::before {
  content: "";
}
.fa-b::before {
  content: "B";
}
.fa-file-medical::before {
  content: "";
}
.fa-dice-one::before {
  content: "";
}
.fa-kiwi-bird::before {
  content: "";
}
.fa-arrow-right-arrow-left::before {
  content: "";
}
.fa-exchange::before {
  content: "";
}
.fa-rotate-right::before {
  content: "";
}
.fa-redo-alt::before {
  content: "";
}
.fa-rotate-forward::before {
  content: "";
}
.fa-utensils::before {
  content: "";
}
.fa-cutlery::before {
  content: "";
}
.fa-arrow-up-wide-short::before {
  content: "";
}
.fa-sort-amount-up::before {
  content: "";
}
.fa-mill-sign::before {
  content: "";
}
.fa-bowl-rice::before {
  content: "";
}
.fa-skull::before {
  content: "";
}
.fa-tower-broadcast::before {
  content: "";
}
.fa-broadcast-tower::before {
  content: "";
}
.fa-truck-pickup::before {
  content: "";
}
.fa-up-long::before {
  content: "";
}
.fa-long-arrow-alt-up::before {
  content: "";
}
.fa-stop::before {
  content: "";
}
.fa-code-merge::before {
  content: "";
}
.fa-upload::before {
  content: "";
}
.fa-hurricane::before {
  content: "";
}
.fa-mound::before {
  content: "";
}
.fa-toilet-portable::before {
  content: "";
}
.fa-compact-disc::before {
  content: "";
}
.fa-file-arrow-down::before {
  content: "";
}
.fa-file-download::before {
  content: "";
}
.fa-caravan::before {
  content: "";
}
.fa-shield-cat::before {
  content: "";
}
.fa-bolt::before {
  content: "";
}
.fa-zap::before {
  content: "";
}
.fa-glass-water::before {
  content: "";
}
.fa-oil-well::before {
  content: "";
}
.fa-vault::before {
  content: "";
}
.fa-mars::before {
  content: "";
}
.fa-toilet::before {
  content: "";
}
.fa-plane-circle-xmark::before {
  content: "";
}
.fa-yen-sign::before {
  content: "";
}
.fa-cny::before {
  content: "";
}
.fa-jpy::before {
  content: "";
}
.fa-rmb::before {
  content: "";
}
.fa-yen::before {
  content: "";
}
.fa-ruble-sign::before {
  content: "";
}
.fa-rouble::before {
  content: "";
}
.fa-rub::before {
  content: "";
}
.fa-ruble::before {
  content: "";
}
.fa-sun::before {
  content: "";
}
.fa-guitar::before {
  content: "";
}
.fa-face-laugh-wink::before {
  content: "";
}
.fa-laugh-wink::before {
  content: "";
}
.fa-horse-head::before {
  content: "";
}
.fa-bore-hole::before {
  content: "";
}
.fa-industry::before {
  content: "";
}
.fa-circle-down::before {
  content: "";
}
.fa-arrow-alt-circle-down::before {
  content: "";
}
.fa-arrows-turn-to-dots::before {
  content: "";
}
.fa-florin-sign::before {
  content: "";
}
.fa-arrow-down-short-wide::before {
  content: "";
}
.fa-sort-amount-desc::before {
  content: "";
}
.fa-sort-amount-down-alt::before {
  content: "";
}
.fa-less-than::before {
  content: "<";
}
.fa-angle-down::before {
  content: "";
}
.fa-car-tunnel::before {
  content: "";
}
.fa-head-side-cough::before {
  content: "";
}
.fa-grip-lines::before {
  content: "";
}
.fa-thumbs-down::before {
  content: "";
}
.fa-user-lock::before {
  content: "";
}
.fa-arrow-right-long::before {
  content: "";
}
.fa-long-arrow-right::before {
  content: "";
}
.fa-anchor-circle-xmark::before {
  content: "";
}
.fa-ellipsis::before {
  content: "";
}
.fa-ellipsis-h::before {
  content: "";
}
.fa-chess-pawn::before {
  content: "";
}
.fa-kit-medical::before {
  content: "";
}
.fa-first-aid::before {
  content: "";
}
.fa-person-through-window::before {
  content: "";
}
.fa-toolbox::before {
  content: "";
}
.fa-hands-holding-circle::before {
  content: "";
}
.fa-bug::before {
  content: "";
}
.fa-credit-card::before {
  content: "";
}
.fa-credit-card-alt::before {
  content: "";
}
.fa-car::before {
  content: "";
}
.fa-automobile::before {
  content: "";
}
.fa-hand-holding-hand::before {
  content: "";
}
.fa-book-open-reader::before {
  content: "";
}
.fa-book-reader::before {
  content: "";
}
.fa-mountain-sun::before {
  content: "";
}
.fa-arrows-left-right-to-line::before {
  content: "";
}
.fa-dice-d20::before {
  content: "";
}
.fa-truck-droplet::before {
  content: "";
}
.fa-file-circle-xmark::before {
  content: "";
}
.fa-temperature-arrow-up::before {
  content: "";
}
.fa-temperature-up::before {
  content: "";
}
.fa-medal::before {
  content: "";
}
.fa-bed::before {
  content: "";
}
.fa-square-h::before {
  content: "";
}
.fa-h-square::before {
  content: "";
}
.fa-podcast::before {
  content: "";
}
.fa-temperature-full::before {
  content: "";
}
.fa-temperature-4::before {
  content: "";
}
.fa-thermometer-4::before {
  content: "";
}
.fa-thermometer-full::before {
  content: "";
}
.fa-bell::before {
  content: "";
}
.fa-superscript::before {
  content: "";
}
.fa-plug-circle-xmark::before {
  content: "";
}
.fa-star-of-life::before {
  content: "";
}
.fa-phone-slash::before {
  content: "";
}
.fa-paint-roller::before {
  content: "";
}
.fa-handshake-angle::before {
  content: "";
}
.fa-hands-helping::before {
  content: "";
}
.fa-location-dot::before {
  content: "";
}
.fa-map-marker-alt::before {
  content: "";
}
.fa-file::before {
  content: "";
}
.fa-greater-than::before {
  content: ">";
}
.fa-person-swimming::before {
  content: "";
}
.fa-swimmer::before {
  content: "";
}
.fa-arrow-down::before {
  content: "";
}
.fa-droplet::before {
  content: "";
}
.fa-tint::before {
  content: "";
}
.fa-eraser::before {
  content: "";
}
.fa-earth-americas::before {
  content: "";
}
.fa-earth::before {
  content: "";
}
.fa-earth-america::before {
  content: "";
}
.fa-globe-americas::before {
  content: "";
}
.fa-person-burst::before {
  content: "";
}
.fa-dove::before {
  content: "";
}
.fa-battery-empty::before {
  content: "";
}
.fa-battery-0::before {
  content: "";
}
.fa-socks::before {
  content: "";
}
.fa-inbox::before {
  content: "";
}
.fa-section::before {
  content: "";
}
.fa-gauge-high::before {
  content: "";
}
.fa-tachometer-alt::before {
  content: "";
}
.fa-tachometer-alt-fast::before {
  content: "";
}
.fa-envelope-open-text::before {
  content: "";
}
.fa-hospital::before {
  content: "";
}
.fa-hospital-alt::before {
  content: "";
}
.fa-hospital-wide::before {
  content: "";
}
.fa-wine-bottle::before {
  content: "";
}
.fa-chess-rook::before {
  content: "";
}
.fa-bars-staggered::before {
  content: "";
}
.fa-reorder::before {
  content: "";
}
.fa-stream::before {
  content: "";
}
.fa-dharmachakra::before {
  content: "";
}
.fa-hotdog::before {
  content: "";
}
.fa-person-walking-with-cane::before {
  content: "";
}
.fa-blind::before {
  content: "";
}
.fa-drum::before {
  content: "";
}
.fa-ice-cream::before {
  content: "";
}
.fa-heart-circle-bolt::before {
  content: "";
}
.fa-fax::before {
  content: "";
}
.fa-paragraph::before {
  content: "";
}
.fa-check-to-slot::before {
  content: "";
}
.fa-vote-yea::before {
  content: "";
}
.fa-star-half::before {
  content: "";
}
.fa-boxes-stacked::before {
  content: "";
}
.fa-boxes::before {
  content: "";
}
.fa-boxes-alt::before {
  content: "";
}
.fa-link::before {
  content: "";
}
.fa-chain::before {
  content: "";
}
.fa-ear-listen::before {
  content: "";
}
.fa-assistive-listening-systems::before {
  content: "";
}
.fa-tree-city::before {
  content: "";
}
.fa-play::before {
  content: "";
}
.fa-font::before {
  content: "";
}
.fa-rupiah-sign::before {
  content: "";
}
.fa-magnifying-glass::before {
  content: "";
}
.fa-search::before {
  content: "";
}
.fa-table-tennis-paddle-ball::before {
  content: "";
}
.fa-ping-pong-paddle-ball::before {
  content: "";
}
.fa-table-tennis::before {
  content: "";
}
.fa-person-dots-from-line::before {
  content: "";
}
.fa-diagnoses::before {
  content: "";
}
.fa-trash-can-arrow-up::before {
  content: "";
}
.fa-trash-restore-alt::before {
  content: "";
}
.fa-naira-sign::before {
  content: "";
}
.fa-cart-arrow-down::before {
  content: "";
}
.fa-walkie-talkie::before {
  content: "";
}
.fa-file-pen::before {
  content: "";
}
.fa-file-edit::before {
  content: "";
}
.fa-receipt::before {
  content: "";
}
.fa-square-pen::before {
  content: "";
}
.fa-pen-square::before {
  content: "";
}
.fa-pencil-square::before {
  content: "";
}
.fa-suitcase-rolling::before {
  content: "";
}
.fa-person-circle-exclamation::before {
  content: "";
}
.fa-chevron-down::before {
  content: "";
}
.fa-battery-full::before {
  content: "";
}
.fa-battery::before {
  content: "";
}
.fa-battery-5::before {
  content: "";
}
.fa-skull-crossbones::before {
  content: "";
}
.fa-code-compare::before {
  content: "";
}
.fa-list-ul::before {
  content: "";
}
.fa-list-dots::before {
  content: "";
}
.fa-school-lock::before {
  content: "";
}
.fa-tower-cell::before {
  content: "";
}
.fa-down-long::before {
  content: "";
}
.fa-long-arrow-alt-down::before {
  content: "";
}
.fa-ranking-star::before {
  content: "";
}
.fa-chess-king::before {
  content: "";
}
.fa-person-harassing::before {
  content: "";
}
.fa-brazilian-real-sign::before {
  content: "";
}
.fa-landmark-dome::before {
  content: "";
}
.fa-landmark-alt::before {
  content: "";
}
.fa-arrow-up::before {
  content: "";
}
.fa-tv::before {
  content: "";
}
.fa-television::before {
  content: "";
}
.fa-tv-alt::before {
  content: "";
}
.fa-shrimp::before {
  content: "";
}
.fa-list-check::before {
  content: "";
}
.fa-tasks::before {
  content: "";
}
.fa-jug-detergent::before {
  content: "";
}
.fa-circle-user::before {
  content: "";
}
.fa-user-circle::before {
  content: "";
}
.fa-user-shield::before {
  content: "";
}
.fa-wind::before {
  content: "";
}
.fa-car-burst::before {
  content: "";
}
.fa-car-crash::before {
  content: "";
}
.fa-y::before {
  content: "Y";
}
.fa-person-snowboarding::before {
  content: "";
}
.fa-snowboarding::before {
  content: "";
}
.fa-truck-fast::before {
  content: "";
}
.fa-shipping-fast::before {
  content: "";
}
.fa-fish::before {
  content: "";
}
.fa-user-graduate::before {
  content: "";
}
.fa-circle-half-stroke::before {
  content: "";
}
.fa-adjust::before {
  content: "";
}
.fa-clapperboard::before {
  content: "";
}
.fa-circle-radiation::before {
  content: "";
}
.fa-radiation-alt::before {
  content: "";
}
.fa-baseball::before {
  content: "";
}
.fa-baseball-ball::before {
  content: "";
}
.fa-jet-fighter-up::before {
  content: "";
}
.fa-diagram-project::before {
  content: "";
}
.fa-project-diagram::before {
  content: "";
}
.fa-copy::before {
  content: "";
}
.fa-volume-xmark::before {
  content: "";
}
.fa-volume-mute::before {
  content: "";
}
.fa-volume-times::before {
  content: "";
}
.fa-hand-sparkles::before {
  content: "";
}
.fa-grip::before {
  content: "";
}
.fa-grip-horizontal::before {
  content: "";
}
.fa-share-from-square::before {
  content: "";
}
.fa-share-square::before {
  content: "";
}
.fa-child-combatant::before {
  content: "";
}
.fa-child-rifle::before {
  content: "";
}
.fa-gun::before {
  content: "";
}
.fa-square-phone::before {
  content: "";
}
.fa-phone-square::before {
  content: "";
}
.fa-plus::before {
  content: "+";
}
.fa-add::before {
  content: "+";
}
.fa-expand::before {
  content: "";
}
.fa-computer::before {
  content: "";
}
.fa-xmark::before {
  content: "";
}
.fa-close::before {
  content: "";
}
.fa-multiply::before {
  content: "";
}
.fa-remove::before {
  content: "";
}
.fa-times::before {
  content: "";
}
.fa-arrows-up-down-left-right::before {
  content: "";
}
.fa-arrows::before {
  content: "";
}
.fa-chalkboard-user::before {
  content: "";
}
.fa-chalkboard-teacher::before {
  content: "";
}
.fa-peso-sign::before {
  content: "";
}
.fa-building-shield::before {
  content: "";
}
.fa-baby::before {
  content: "";
}
.fa-users-line::before {
  content: "";
}
.fa-quote-left::before {
  content: "";
}
.fa-quote-left-alt::before {
  content: "";
}
.fa-tractor::before {
  content: "";
}
.fa-trash-arrow-up::before {
  content: "";
}
.fa-trash-restore::before {
  content: "";
}
.fa-arrow-down-up-lock::before {
  content: "";
}
.fa-lines-leaning::before {
  content: "";
}
.fa-ruler-combined::before {
  content: "";
}
.fa-copyright::before {
  content: "";
}
.fa-equals::before {
  content: "=";
}
.fa-blender::before {
  content: "";
}
.fa-teeth::before {
  content: "";
}
.fa-shekel-sign::before {
  content: "";
}
.fa-ils::before {
  content: "";
}
.fa-shekel::before {
  content: "";
}
.fa-sheqel::before {
  content: "";
}
.fa-sheqel-sign::before {
  content: "";
}
.fa-map::before {
  content: "";
}
.fa-rocket::before {
  content: "";
}
.fa-photo-film::before {
  content: "";
}
.fa-photo-video::before {
  content: "";
}
.fa-folder-minus::before {
  content: "";
}
.fa-store::before {
  content: "";
}
.fa-arrow-trend-up::before {
  content: "";
}
.fa-plug-circle-minus::before {
  content: "";
}
.fa-sign-hanging::before {
  content: "";
}
.fa-sign::before {
  content: "";
}
.fa-bezier-curve::before {
  content: "";
}
.fa-bell-slash::before {
  content: "";
}
.fa-tablet::before {
  content: "";
}
.fa-tablet-android::before {
  content: "";
}
.fa-school-flag::before {
  content: "";
}
.fa-fill::before {
  content: "";
}
.fa-angle-up::before {
  content: "";
}
.fa-drumstick-bite::before {
  content: "";
}
.fa-holly-berry::before {
  content: "";
}
.fa-chevron-left::before {
  content: "";
}
.fa-bacteria::before {
  content: "";
}
.fa-hand-lizard::before {
  content: "";
}
.fa-notdef::before {
  content: "";
}
.fa-disease::before {
  content: "";
}
.fa-briefcase-medical::before {
  content: "";
}
.fa-genderless::before {
  content: "";
}
.fa-chevron-right::before {
  content: "";
}
.fa-retweet::before {
  content: "";
}
.fa-car-rear::before {
  content: "";
}
.fa-car-alt::before {
  content: "";
}
.fa-pump-soap::before {
  content: "";
}
.fa-video-slash::before {
  content: "";
}
.fa-battery-quarter::before {
  content: "";
}
.fa-battery-2::before {
  content: "";
}
.fa-radio::before {
  content: "";
}
.fa-baby-carriage::before {
  content: "";
}
.fa-carriage-baby::before {
  content: "";
}
.fa-traffic-light::before {
  content: "";
}
.fa-thermometer::before {
  content: "";
}
.fa-vr-cardboard::before {
  content: "";
}
.fa-hand-middle-finger::before {
  content: "";
}
.fa-percent::before {
  content: "%";
}
.fa-percentage::before {
  content: "%";
}
.fa-truck-moving::before {
  content: "";
}
.fa-glass-water-droplet::before {
  content: "";
}
.fa-display::before {
  content: "";
}
.fa-face-smile::before {
  content: "";
}
.fa-smile::before {
  content: "";
}
.fa-thumbtack::before {
  content: "";
}
.fa-thumb-tack::before {
  content: "";
}
.fa-trophy::before {
  content: "";
}
.fa-person-praying::before {
  content: "";
}
.fa-pray::before {
  content: "";
}
.fa-hammer::before {
  content: "";
}
.fa-hand-peace::before {
  content: "";
}
.fa-rotate::before {
  content: "";
}
.fa-sync-alt::before {
  content: "";
}
.fa-spinner::before {
  content: "";
}
.fa-robot::before {
  content: "";
}
.fa-peace::before {
  content: "";
}
.fa-gears::before {
  content: "";
}
.fa-cogs::before {
  content: "";
}
.fa-warehouse::before {
  content: "";
}
.fa-arrow-up-right-dots::before {
  content: "";
}
.fa-splotch::before {
  content: "";
}
.fa-face-grin-hearts::before {
  content: "";
}
.fa-grin-hearts::before {
  content: "";
}
.fa-dice-four::before {
  content: "";
}
.fa-sim-card::before {
  content: "";
}
.fa-transgender::before {
  content: "";
}
.fa-transgender-alt::before {
  content: "";
}
.fa-mercury::before {
  content: "";
}
.fa-arrow-turn-down::before {
  content: "";
}
.fa-level-down::before {
  content: "";
}
.fa-person-falling-burst::before {
  content: "";
}
.fa-award::before {
  content: "";
}
.fa-ticket-simple::before {
  content: "";
}
.fa-ticket-alt::before {
  content: "";
}
.fa-building::before {
  content: "";
}
.fa-angles-left::before {
  content: "";
}
.fa-angle-double-left::before {
  content: "";
}
.fa-qrcode::before {
  content: "";
}
.fa-clock-rotate-left::before {
  content: "";
}
.fa-history::before {
  content: "";
}
.fa-face-grin-beam-sweat::before {
  content: "";
}
.fa-grin-beam-sweat::before {
  content: "";
}
.fa-file-export::before {
  content: "";
}
.fa-arrow-right-from-file::before {
  content: "";
}
.fa-shield::before {
  content: "";
}
.fa-shield-blank::before {
  content: "";
}
.fa-arrow-up-short-wide::before {
  content: "";
}
.fa-sort-amount-up-alt::before {
  content: "";
}
.fa-house-medical::before {
  content: "";
}
.fa-golf-ball-tee::before {
  content: "";
}
.fa-golf-ball::before {
  content: "";
}
.fa-circle-chevron-left::before {
  content: "";
}
.fa-chevron-circle-left::before {
  content: "";
}
.fa-house-chimney-window::before {
  content: "";
}
.fa-pen-nib::before {
  content: "";
}
.fa-tent-arrow-turn-left::before {
  content: "";
}
.fa-tents::before {
  content: "";
}
.fa-wand-magic::before {
  content: "";
}
.fa-magic::before {
  content: "";
}
.fa-dog::before {
  content: "";
}
.fa-carrot::before {
  content: "";
}
.fa-moon::before {
  content: "";
}
.fa-wine-glass-empty::before {
  content: "";
}
.fa-wine-glass-alt::before {
  content: "";
}
.fa-cheese::before {
  content: "";
}
.fa-yin-yang::before {
  content: "";
}
.fa-music::before {
  content: "";
}
.fa-code-commit::before {
  content: "";
}
.fa-temperature-low::before {
  content: "";
}
.fa-person-biking::before {
  content: "";
}
.fa-biking::before {
  content: "";
}
.fa-broom::before {
  content: "";
}
.fa-shield-heart::before {
  content: "";
}
.fa-gopuram::before {
  content: "";
}
.fa-earth-oceania::before {
  content: "";
}
.fa-globe-oceania::before {
  content: "";
}
.fa-square-xmark::before {
  content: "";
}
.fa-times-square::before {
  content: "";
}
.fa-xmark-square::before {
  content: "";
}
.fa-hashtag::before {
  content: "#";
}
.fa-up-right-and-down-left-from-center::before {
  content: "";
}
.fa-expand-alt::before {
  content: "";
}
.fa-oil-can::before {
  content: "";
}
.fa-t::before {
  content: "T";
}
.fa-hippo::before {
  content: "";
}
.fa-chart-column::before {
  content: "";
}
.fa-infinity::before {
  content: "";
}
.fa-vial-circle-check::before {
  content: "";
}
.fa-person-arrow-down-to-line::before {
  content: "";
}
.fa-voicemail::before {
  content: "";
}
.fa-fan::before {
  content: "";
}
.fa-person-walking-luggage::before {
  content: "";
}
.fa-up-down::before {
  content: "";
}
.fa-arrows-alt-v::before {
  content: "";
}
.fa-cloud-moon-rain::before {
  content: "";
}
.fa-calendar::before {
  content: "";
}
.fa-trailer::before {
  content: "";
}
.fa-bahai::before {
  content: "";
}
.fa-haykal::before {
  content: "";
}
.fa-sd-card::before {
  content: "";
}
.fa-dragon::before {
  content: "";
}
.fa-shoe-prints::before {
  content: "";
}
.fa-circle-plus::before {
  content: "";
}
.fa-plus-circle::before {
  content: "";
}
.fa-face-grin-tongue-wink::before {
  content: "";
}
.fa-grin-tongue-wink::before {
  content: "";
}
.fa-hand-holding::before {
  content: "";
}
.fa-plug-circle-exclamation::before {
  content: "";
}
.fa-link-slash::before {
  content: "";
}
.fa-chain-broken::before {
  content: "";
}
.fa-chain-slash::before {
  content: "";
}
.fa-unlink::before {
  content: "";
}
.fa-clone::before {
  content: "";
}
.fa-person-walking-arrow-loop-left::before {
  content: "";
}
.fa-arrow-up-z-a::before {
  content: "";
}
.fa-sort-alpha-up-alt::before {
  content: "";
}
.fa-fire-flame-curved::before {
  content: "";
}
.fa-fire-alt::before {
  content: "";
}
.fa-tornado::before {
  content: "";
}
.fa-file-circle-plus::before {
  content: "";
}
.fa-book-quran::before {
  content: "";
}
.fa-quran::before {
  content: "";
}
.fa-anchor::before {
  content: "";
}
.fa-border-all::before {
  content: "";
}
.fa-face-angry::before {
  content: "";
}
.fa-angry::before {
  content: "";
}
.fa-cookie-bite::before {
  content: "";
}
.fa-arrow-trend-down::before {
  content: "";
}
.fa-rss::before {
  content: "";
}
.fa-feed::before {
  content: "";
}
.fa-draw-polygon::before {
  content: "";
}
.fa-scale-balanced::before {
  content: "";
}
.fa-balance-scale::before {
  content: "";
}
.fa-gauge-simple-high::before {
  content: "";
}
.fa-tachometer::before {
  content: "";
}
.fa-tachometer-fast::before {
  content: "";
}
.fa-shower::before {
  content: "";
}
.fa-desktop::before {
  content: "";
}
.fa-desktop-alt::before {
  content: "";
}
.fa-m::before {
  content: "M";
}
.fa-table-list::before {
  content: "";
}
.fa-th-list::before {
  content: "";
}
.fa-comment-sms::before {
  content: "";
}
.fa-sms::before {
  content: "";
}
.fa-book::before {
  content: "";
}
.fa-user-plus::before {
  content: "";
}
.fa-check::before {
  content: "";
}
.fa-battery-three-quarters::before {
  content: "";
}
.fa-battery-4::before {
  content: "";
}
.fa-house-circle-check::before {
  content: "";
}
.fa-angle-left::before {
  content: "";
}
.fa-diagram-successor::before {
  content: "";
}
.fa-truck-arrow-right::before {
  content: "";
}
.fa-arrows-split-up-and-left::before {
  content: "";
}
.fa-hand-fist::before {
  content: "";
}
.fa-fist-raised::before {
  content: "";
}
.fa-cloud-moon::before {
  content: "";
}
.fa-briefcase::before {
  content: "";
}
.fa-person-falling::before {
  content: "";
}
.fa-image-portrait::before {
  content: "";
}
.fa-portrait::before {
  content: "";
}
.fa-user-tag::before {
  content: "";
}
.fa-rug::before {
  content: "";
}
.fa-earth-europe::before {
  content: "";
}
.fa-globe-europe::before {
  content: "";
}
.fa-cart-flatbed-suitcase::before {
  content: "";
}
.fa-luggage-cart::before {
  content: "";
}
.fa-rectangle-xmark::before {
  content: "";
}
.fa-rectangle-times::before {
  content: "";
}
.fa-times-rectangle::before {
  content: "";
}
.fa-window-close::before {
  content: "";
}
.fa-baht-sign::before {
  content: "";
}
.fa-book-open::before {
  content: "";
}
.fa-book-journal-whills::before {
  content: "";
}
.fa-journal-whills::before {
  content: "";
}
.fa-handcuffs::before {
  content: "";
}
.fa-triangle-exclamation::before {
  content: "";
}
.fa-exclamation-triangle::before {
  content: "";
}
.fa-warning::before {
  content: "";
}
.fa-database::before {
  content: "";
}
.fa-share::before {
  content: "";
}
.fa-mail-forward::before {
  content: "";
}
.fa-bottle-droplet::before {
  content: "";
}
.fa-mask-face::before {
  content: "";
}
.fa-hill-rockslide::before {
  content: "";
}
.fa-right-left::before {
  content: "";
}
.fa-exchange-alt::before {
  content: "";
}
.fa-paper-plane::before {
  content: "";
}
.fa-road-circle-exclamation::before {
  content: "";
}
.fa-dungeon::before {
  content: "";
}
.fa-align-right::before {
  content: "";
}
.fa-money-bill-1-wave::before {
  content: "";
}
.fa-money-bill-wave-alt::before {
  content: "";
}
.fa-life-ring::before {
  content: "";
}
.fa-hands::before {
  content: "";
}
.fa-sign-language::before {
  content: "";
}
.fa-signing::before {
  content: "";
}
.fa-calendar-day::before {
  content: "";
}
.fa-water-ladder::before {
  content: "";
}
.fa-ladder-water::before {
  content: "";
}
.fa-swimming-pool::before {
  content: "";
}
.fa-arrows-up-down::before {
  content: "";
}
.fa-arrows-v::before {
  content: "";
}
.fa-face-grimace::before {
  content: "";
}
.fa-grimace::before {
  content: "";
}
.fa-wheelchair-move::before {
  content: "";
}
.fa-wheelchair-alt::before {
  content: "";
}
.fa-turn-down::before {
  content: "";
}
.fa-level-down-alt::before {
  content: "";
}
.fa-person-walking-arrow-right::before {
  content: "";
}
.fa-square-envelope::before {
  content: "";
}
.fa-envelope-square::before {
  content: "";
}
.fa-dice::before {
  content: "";
}
.fa-bowling-ball::before {
  content: "";
}
.fa-brain::before {
  content: "";
}
.fa-bandage::before {
  content: "";
}
.fa-band-aid::before {
  content: "";
}
.fa-calendar-minus::before {
  content: "";
}
.fa-circle-xmark::before {
  content: "";
}
.fa-times-circle::before {
  content: "";
}
.fa-xmark-circle::before {
  content: "";
}
.fa-gifts::before {
  content: "";
}
.fa-hotel::before {
  content: "";
}
.fa-earth-asia::before {
  content: "";
}
.fa-globe-asia::before {
  content: "";
}
.fa-id-card-clip::before {
  content: "";
}
.fa-id-card-alt::before {
  content: "";
}
.fa-magnifying-glass-plus::before {
  content: "";
}
.fa-search-plus::before {
  content: "";
}
.fa-thumbs-up::before {
  content: "";
}
.fa-user-clock::before {
  content: "";
}
.fa-hand-dots::before {
  content: "";
}
.fa-allergies::before {
  content: "";
}
.fa-file-invoice::before {
  content: "";
}
.fa-window-minimize::before {
  content: "";
}
.fa-mug-saucer::before {
  content: "";
}
.fa-coffee::before {
  content: "";
}
.fa-brush::before {
  content: "";
}
.fa-mask::before {
  content: "";
}
.fa-magnifying-glass-minus::before {
  content: "";
}
.fa-search-minus::before {
  content: "";
}
.fa-ruler-vertical::before {
  content: "";
}
.fa-user-large::before {
  content: "";
}
.fa-user-alt::before {
  content: "";
}
.fa-train-tram::before {
  content: "";
}
.fa-user-nurse::before {
  content: "";
}
.fa-syringe::before {
  content: "";
}
.fa-cloud-sun::before {
  content: "";
}
.fa-stopwatch-20::before {
  content: "";
}
.fa-square-full::before {
  content: "";
}
.fa-magnet::before {
  content: "";
}
.fa-jar::before {
  content: "";
}
.fa-note-sticky::before {
  content: "";
}
.fa-sticky-note::before {
  content: "";
}
.fa-bug-slash::before {
  content: "";
}
.fa-arrow-up-from-water-pump::before {
  content: "";
}
.fa-bone::before {
  content: "";
}
.fa-user-injured::before {
  content: "";
}
.fa-face-sad-tear::before {
  content: "";
}
.fa-sad-tear::before {
  content: "";
}
.fa-plane::before {
  content: "";
}
.fa-tent-arrows-down::before {
  content: "";
}
.fa-exclamation::before {
  content: "!";
}
.fa-arrows-spin::before {
  content: "";
}
.fa-print::before {
  content: "";
}
.fa-turkish-lira-sign::before {
  content: "";
}
.fa-try::before {
  content: "";
}
.fa-turkish-lira::before {
  content: "";
}
.fa-dollar-sign::before {
  content: "$";
}
.fa-dollar::before {
  content: "$";
}
.fa-usd::before {
  content: "$";
}
.fa-x::before {
  content: "X";
}
.fa-magnifying-glass-dollar::before {
  content: "";
}
.fa-search-dollar::before {
  content: "";
}
.fa-users-gear::before {
  content: "";
}
.fa-users-cog::before {
  content: "";
}
.fa-person-military-pointing::before {
  content: "";
}
.fa-building-columns::before {
  content: "";
}
.fa-bank::before {
  content: "";
}
.fa-institution::before {
  content: "";
}
.fa-museum::before {
  content: "";
}
.fa-university::before {
  content: "";
}
.fa-umbrella::before {
  content: "";
}
.fa-trowel::before {
  content: "";
}
.fa-d::before {
  content: "D";
}
.fa-stapler::before {
  content: "";
}
.fa-masks-theater::before {
  content: "";
}
.fa-theater-masks::before {
  content: "";
}
.fa-kip-sign::before {
  content: "";
}
.fa-hand-point-left::before {
  content: "";
}
.fa-handshake-simple::before {
  content: "";
}
.fa-handshake-alt::before {
  content: "";
}
.fa-jet-fighter::before {
  content: "";
}
.fa-fighter-jet::before {
  content: "";
}
.fa-square-share-nodes::before {
  content: "";
}
.fa-share-alt-square::before {
  content: "";
}
.fa-barcode::before {
  content: "";
}
.fa-plus-minus::before {
  content: "";
}
.fa-video::before {
  content: "";
}
.fa-video-camera::before {
  content: "";
}
.fa-graduation-cap::before {
  content: "";
}
.fa-mortar-board::before {
  content: "";
}
.fa-hand-holding-medical::before {
  content: "";
}
.fa-person-circle-check::before {
  content: "";
}
.fa-turn-up::before {
  content: "";
}
.fa-level-up-alt::before {
  content: "";
}
.sr-only, .fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:not(:focus), .fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-display: "swap";
  src: url("../assets/fontawesome/6.5.1/webfonts/fa-regular-400.woff2") format("woff2"), url("../assets/fontawesome/6.5.1/webfonts/fa-regular-400.ttf") format("truetype");
}
.far, .fa-regular {
  font-weight: normal;
  font-family: "FontAwesome";
}
@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: bold;
  font-display: "swap";
  src: url("../assets/fontawesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2"), url("../assets/fontawesome/6.5.1/webfonts/fa-solid-900.ttf") format("truetype");
}
.fas, .fa-solid {
  font-weight: bold;
  font-family: "FontAwesome";
}
:root {
  --contrastcolor: #FFFFFF;
}
.ttc-button {
  text-transform: uppercase;
  position: relative;
}
.ttc-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 2px;
}
.ttc-button {
  border: 1px solid black;
  padding: 10px 20px;
  display: inline-block;
}
.big-clicker {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.no-flow {
  overflow: hidden;
}
.auto-margin-h {
  margin-left: auto;
  margin-right: auto;
}
.invisible {
  visibility: hidden;
}
[uk-slider-item] {
  font-family: FontAwesome;
  height: 72px;
  width: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  border: 2px solid black;
  overflow: hidden;
  position: relative;
}
[uk-slider-item]:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: black;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
[uk-slider-item]:after {
  content: "";
  transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: center left;
  color: black;
}
[uk-slider-item][uk-slider-item="next"]:after {
  content: "";
}
[uk-slider-item]:hover:after {
  color: white;
  transform: scaleX(1.1);
}
[uk-slider-item]:hover:before {
  transform: translateX(0%);
}
.ttc-reverse-wrap {
  flex-wrap: wrap-reverse;
}
@media (min-width: 782px) {
  .ttc-reverse-wrap {
    flex-wrap: nowrap;
  }
}
h1.has-primary-colour-color, h2.has-primary-colour-color, h3.has-primary-colour-color, h4.has-primary-colour-color, h5.has-primary-colour-color, h6.has-primary-colour-color, .has-primary-colour-color {
  color: var(--contrast-2) !important;
}
h1.has-secondary-colour-color, h2.has-secondary-colour-color, h3.has-secondary-colour-color, h4.has-secondary-colour-color, h5.has-secondary-colour-color, h6.has-secondary-colour-color, .has-secondary-colour-color {
  color: var(--accent) !important;
}
h1.has-tertiary-colour-color, h2.has-tertiary-colour-color, h3.has-tertiary-colour-color, h4.has-tertiary-colour-color, h5.has-tertiary-colour-color, h6.has-tertiary-colour-color, .has-tertiary-colour-color, .has-third-colour-color {
  color: var(--base) !important;
}
h1.has-fourth-colour-color, h2.has-fourth-colour-color, h3.has-fourth-colour-color, h4.has-fourth-colour-color, h5.has-fourth-colour-color, h6.has-fourth-colour-color, .has-fourth-colour-color {
  color: var(--fourthcolour) !important;
}
.has-primary-colour-background-color {
  background-color: var(--contrast-2);
}
.has-secondary-colour-background-color {
  background-color: var(--accent);
}
.has-tertiary-colour-background-color {
  background-color: var(--base);
}
.has-fourth-colour-background-color {
  background-color: var(--fourthcolour);
}
h1.has-ttc-white-color, h2.has-ttc-white-color, h3.has-ttc-white-color, h4.has-ttc-white-color, h5.has-ttc-white-color, h6.has-ttc-white-color-colour-color, .has-ttc-white-color {
  color: #FFF !important;
}
.uk-contrast {
  color: var(--contrastcolor);
}
.uk-contrast h1, .uk-contrast h2, .uk-contrast h3, .uk-contrast h4, .uk-contrast h5, .uk-contrast h6, .uk-contrast p {
  color: var(--contrastcolor);
}
table.wp-block-advgb-table tbody tr {
  vertical-align: top;
}
table thead, table tbody, table tfoot {
  display: table-header-group;
  table-layout: inherit;
  width: 100%;
}
@keyframes loading-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.editor-styles-wrapper mark {
  background-color: transparent;
}
.editor-styles-wrapper p.is-style-no-bottom-margin, p.is-style-no-bottom-margin {
  margin-bottom: 0;
}
.editor-styles-wrapper p.is-style-width-1-2, p.is-style-width-1-2, .editor-styles-wrapper p.is-style-width-3-4, p.is-style-width-3-4, .editor-styles-wrapper p.is-style-width-2-3, p.is-style-width-2-3 {
  margin-left: auto;
  margin-right: auto;
}
.editor-styles-wrapper p.is-style-width-1-2, p.is-style-width-1-2 {
  width: 50%;
}
.editor-styles-wrapper p.is-style-width-3-4, p.is-style-width-3-4 {
  width: 75%;
}
.editor-styles-wrapper p.is-style-width-2-3, p.is-style-width-2-3 {
  width: 66%;
}
.editor-styles-wrapper p.is-style-phone-alt:before, p.is-style-phone-alt:before {
  background-image: url(https://mydox.canberra.host/wp-content/uploads/2021/11/Asset-3.svg);
  background-size: 20px 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
  margin-right: 10px;
}
.wp-block-columns.is-style-small-width {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-columns.is-style-shiftup {
  transform: translateY(-170px);
  position: relative;
  z-index: 1;
  margin-bottom: -170px !important;
}
.wp-block-columns.is-style-shiftup .ttc-card .wp-block-image.is-style-icon {
  margin-top: -50%;
}
.wp-block-columns.is-style-3-column-card > .wp-block-column {
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  padding: 50px 30px;
}
.wp-block-columns.is-style-3-column-card > .wp-block-column h2 {
  color: var(--accent);
  margin-bottom: 0;
  line-height: 1.5;
}
.wp-block-columns.is-style-3-column-card > .wp-block-column ul li {
  font-size: 18px;
  margin-bottom: 0.5em;
  padding-left: 20px;
}
.wp-block-columns.is-style-imageleftwithtextright {
  max-width: 1360px;
  margin: 0 auto;
}
.wp-block-columns.is-style-imageleftwithtextright > .wp-block-column + .is-vertically-aligned-center {
  padding: 0 0 0 100px;
}
.wp-block-columns.is-style-imageleftwithtextright > .wp-block-column h2 {
  color: var(--accent);
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 50px;
}
.wp-block-columns.is-style-imageleftwithtextright > .wp-block-column h2:last-of-type {
  margin-bottom: 0.5em;
}
.wp-block-columns.is-style-imageleftwithtextright > .wp-block-column p {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 22px;
}
.wp-block-columns.is-style-imageleftwithtextright > .wp-block-column ul li {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 22px;
  padding-left: 20px;
}
.wp-block-columns.is-style-imageleftwithtextright > .wp-block-column ul {
  padding: 0 0 0 20px;
  margin: 0;
}
.wp-block-columns.is-style-imageleftwithtextright > .wp-block-column:nth-child(2) .wp-block-image img {
  box-shadow: 30px 30px var(--accent);
  border-radius: 5px;
}
.wp-block-columns.is-style-imagerightwithtextleft {
  max-width: 1360px;
  margin: 0 auto;
}
.wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column:first-child {
  padding: 0 50px;
}
.wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column h2 {
  color: var(--accent);
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 50px;
}
.wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column h2:last-of-type {
  margin-bottom: 0.5em;
}
.wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column p {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 22px;
}
.wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column + .wp-block-column .wp-block-image img {
  box-shadow: 30px 30px var(--accent);
  border-radius: 5px;
}
.wp-block-columns.is-style-hasvideo {
  max-width: 1400px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.02);
  border-radius: 5px;
}
.wp-block-columns.is-style-hasvideo > .wp-block-column:not(:first-child) {
  padding: 0px 50px;
}
.wp-block-columns.is-style-hasvideo > .wp-block-column:not(:first-child) h2 {
  color: var(--accent);
  margin-bottom: 0;
  font-size: 50px;
}
.wp-block-columns.is-style-hasvideo > .wp-block-column:not(:first-child) h2:last-of-type {
  margin-bottom: 1em;
}
.wp-block-columns.is-style-hasvideo > .wp-block-column:not(:first-child) p {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 28px;
  color: #999999;
}
.wp-block-columns.is-style-hasvideo > .wp-block-column:not(:first-child) p:last-of-type {
  margin-bottom: 1em;
}
.wp-block-columns.is-style-hasvideo > .wp-block-column:not(:first-child) .wp-block-button__link {
  font-size: 25px;
  color: #626465;
  font-weight: 700;
}
.wp-block-columns.is-style-small-gutter {
  gap: 1em;
}
.wp-block-columns.is-style-large-gutter {
  column-gap: 5em;
}
.wp-block-columns.is-style-no-gutter {
  gap: 0;
}
.wp-block-columns.is-style-huge-gutter {
  gap: 8em;
}
.wp-block-columns.ttcrepeater + .ttcrepeater.wp-block-columns {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 20px;
}
.wp-block-column.is-style-padding-small {
  padding: 20px;
}
.wp-block-column.is-style-padding {
  padding: 40px;
}
.wp-block-column.is-style-padding-large {
  padding: 80px;
}
.entry-content > div.wp-block-spacer, .block-library-spacer__resize-container, div[data-type="core/spacer"].wp-block-spacer {
  margin-bottom: 0 !important;
}
div[data-type="core/spacer"] .components-resizable-box__container {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}
.wp-block-image.is-style-rounded-shadow > img {
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.02);
}
.wp-block-image.is-style-box-shadow > img {
  box-shadow: -30px -30px var(--accent);
  border-radius: 5px;
}
.wp-block-image.is-style-icon {
  padding: 12px;
  background-color: var(--accent);
  border-radius: 5px;
  display: inline-block;
}
.wp-block-image.is-style-scroll-image {
  max-height: 70vh;
  overflow: scroll;
}
.wp-block-post-featured-image.is-style-scroll-image {
  max-height: 70vh;
  overflow: scroll;
}
.wp-block-group.is-style-shift-up .wp-block-group__inner-container {
  transform: translateY(0);
}
.wp-block-group.is-style-tableofcontents .wp-block-group__inner-container {
  margin: 0;
}
.wp-block-group.is-style-banner {
  color: white;
}
.wp-block-group.is-style-banner .wp-block-group__inner-container {
  max-width: 1500px;
}
.wp-block-group.is-style-banner h2, .wp-block-group.is-style-banner h3, .wp-block-group.is-style-banner p {
  color: white;
}
.wp-block-group.is-style-banner h2 {
  font-size: 88px;
}
.wp-block-group.is-style-banner h3 {
  font-size: 44px;
}
.wp-block-group.is-style-banner p {
  font-size: 24px;
}
.wp-block-group.is-style-banner .wp-block-group__inner-container {
  padding: 0 20px;
}
.wp-block-group.is-style-dashboard .wp-block-group__inner-container {
  padding: 0;
}
.wp-block-group.is-style-card {
  background-color: var(--base-3);
  padding: 25px 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.wp-block-group.is-style-card hr.is-style-wide {
  margin-left: -40px !important;
  margin-right: -40px !important;
  max-width: inherit;
}
.wp-block-gallery.is-style-rounded-shadow-v-align {
  background: #FFF;
  padding: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.wp-block-gallery.is-style-rounded-shadow-v-align .blocks-gallery-grid {
  padding-top: 20px;
}
.wp-block-gallery.is-style-rounded-shadow-v-align .blocks-gallery-grid .blocks-gallery-item {
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  margin-right: 0;
}
.wp-block-gallery.is-style-rounded-shadow-v-align .blocks-gallery-grid img {
  transition: filter, -webkit-filter 0.3s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.wp-block-gallery.is-style-rounded-shadow-v-align .blocks-gallery-grid img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.wp-block-gallery figure.wp-block-image img {
  max-width: 100%;
}
.wp-block-button.is-style-blank .wp-block-button__link {
  background: none;
  border: none;
  border-radius: 0;
  color: black;
  padding-left: 0;
}
.wp-block-button.is-style-blank .wp-block-button__link:hover {
  background: none;
  color: #15adc3;
}
.wp-block-button.is-style-blank .wp-block-button__link:after {
  content: "";
  color: var(--accent);
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 22px;
  margin-left: 10px;
  font-weight: 100;
}
.wp-block-button.is-style-addsite .wp-block-button__link {
  background: #6e6f71;
  border: none;
  border-radius: 5px;
  color: white;
  position: relative;
  padding: 5px 20px 5px 10px;
  font-size: 15px;
}
.wp-block-button.is-style-addsite .wp-block-button__link:hover {
  background: #06a2a8;
  color: white;
}
.wp-block-button.is-style-addsite .wp-block-button__link:after {
  display: block;
  position: absolute;
  right: 5px;
  top: 0;
  content: "";
  color: inherit;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 1em;
  line-height: 32px;
}
.editor-styles-wrapper h1.is-style-repeater-heading, .editor-styles-wrapper h2.is-style-repeater-heading, .editor-styles-wrapper h3.is-style-repeater-heading, .editor-styles-wrapper h4.is-style-repeater-heading, .editor-styles-wrapper h5.is-style-repeater-heading, .editor-styles-wrapper h6.is-style-repeater-heading {
  margin-bottom: 0;
  padding: 0 10px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5;
  background-color: var(--contrast-2);
}
h1.is-style-repeater-heading, h2.is-style-repeater-heading, h3.is-style-repeater-heading, h4.is-style-repeater-heading, h5.is-style-repeater-heading, h6.is-style-repeater-heading {
  margin-bottom: 0;
  padding: 0 10px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5;
  background-color: var(--contrast-2);
}
.wp-block-advgb-table td {
  padding: 10px 10px;
}
.wp-block-advgb-table.is-style-mobile-has-info td {
  padding: 10px 10px;
}
.wp-block-advgb-summary {
  padding-left: 0;
}
.wp-block-advgb-summary li {
  list-style: inside;
}
.wp-block-advgb-summary li a {
  color: var(--accent);
  text-decoration: none;
}
.wp-block-advgb-summary li.toc-level-1 {
  list-style: none;
  font-weight: bold !important;
}
.wp-block-advgb-summary li.toc-level-2 {
  padding-left: 10px;
  list-style-type: disc;
}
.wp-block-advgb-summary li.toc-level-3 {
  padding-left: 25px;
  list-style-type: circle;
  font-size: 0.9em;
}
.wp-block-advgb-summary li.toc-level-4 {
  padding-left: 35px;
  list-style-type: square;
  font-size: 0.9em;
}
.player .vp-title {
  display: none;
}
.has-light-background-color {
  color: var(--lightbackground);
}
.wp-block-query .wp-block-post-template > li.wp-block-post {
  width: inherit;
}
.wp-block-post-template.is-style-cards > li {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.wp-block-post-template.is-style-cards > li > figure.wp-block-post-featured-image {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: -20px -20px 20px -20px;
}
.wp-block-post-template.is-style-cards > li > .wp-block-cover {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: -20px -20px 20px -20px;
}
.wp-block-post-template.is-style-cards > li:after {
  background-color: var(--base-3);
  padding: 25px 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.wp-block-post-template.is-style-cards > li:after hr.is-style-wide {
  margin-left: -40px !important;
  margin-right: -40px !important;
  max-width: inherit;
}
.wp-block-post-template.is-style-cards > li .wp-block-post-title a {
  color: inherit;
  text-decoration: none;
}
.wp-block-post-template.is-style-cards > li .post-term-holder {
  margin-top: 0;
}
.wp-block-post-template.is-style-cards > li .post-term-holder .wp-block-post-terms {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}
.wp-block-post-template.is-style-cards > li .post-term-holder .wp-block-post-terms > a {
  white-space: nowrap;
}
.has-secondary-background-colour-background-color {
  background-color: var(--secondarybackgroundcolour);
}
.has-primary-colour-background-color {
  background-color: var(--contrast-2);
}
.has-primary-colour-background-color button, .has-primary-colour-background-color input[type="submit"] {
  background-color: var(--accent);
}
.has-primary-colour-background-color button:hover, .has-primary-colour-background-color input[type="submit"]:hover {
  background-color: var(--lightbackground);
  color: var(--accent);
}
.has-secondary-colour-background-color {
  background-color: var(--accent);
}
.has-secondary-colour-background-color.wp-block-cover-image h1:not(.has-text-color), .has-secondary-colour-background-color h2:not(.has-text-color), .has-secondary-colour-background-color h3:not(.has-text-color), .has-secondary-colour-background-color h4:not(.has-text-color), .has-secondary-colour-background-color h5:not(.has-text-color) {
  color: var(--contrast-2);
}
.has-ttc-white-color {
  color: #FFF;
}
.has-ttc-white-colorh1, .has-ttc-white-colorh2, .has-ttc-white-colorh3, .has-ttc-white-colorh4, .has-ttc-white-colorh5, .has-ttc-white-colorh6 {
  color: #FFF;
}
.has-ttc-black-color {
  color: #000;
}
.has-ttc-black-colorh1, .has-ttc-black-colorh2, .has-ttc-black-colorh3, .has-ttc-black-colorh4, .has-ttc-black-colorh5, .has-ttc-black-colorh6 {
  color: #000;
}
.has-third-colour-background-color {
  background-color: var(--thirdcolour);
}
.has-fourth-colour-background-color {
  background-color: var(--fourthcolour);
}
.has-ttc-white-background-color {
  background-color: #FFF;
  color: var(--defaulttextcolour);
}
.has-ttc-white-background-color h1:not(.has-text-color), .has-ttc-white-background-color h2:not(.has-text-color), .has-ttc-white-background-color h3:not(.has-text-color), .has-ttc-white-background-color h4:not(.has-text-color), .has-ttc-white-background-color h5:not(.has-text-color), .has-ttc-white-background-color p:not(.has-text-color) {
  color: var(--defaulttextcolour);
}
.has-ttc-black-background-color {
  background-color: #000;
}
.has-light-background-background-color {
  background-color: var(--lightbackground);
}
.has-light-background-background-color.wp-block-cover-image h1:not(.has-text-color), .has-light-background-background-color h2:not(.has-text-color), .has-light-background-background-color h3:not(.has-text-color), .has-light-background-background-color h4:not(.has-text-color), .has-light-background-background-color h5:not(.has-text-color) {
  color: var(--contrast-2);
}
.has-dark-background-background-color {
  background-color: var(--darkbackground);
}
.has-dark-background-background-color h1:not(.has-text-color), .has-dark-background-background-color h2:not(.has-text-color), .has-dark-background-background-color h3:not(.has-text-color), .has-dark-background-background-color h4:not(.has-text-color), .has-dark-background-background-color h5:not(.has-text-color) {
  color: var(--contrast-2);
}
.has-primary-colour-background-color {
  color: #FFF;
  background-color: var(--darkbackground);
}
.has-primary-colour-background-color h1:not(.has-text-color), .has-primary-colour-background-color h2:not(.has-text-color), .has-primary-colour-background-color h3:not(.has-text-color), .has-primary-colour-background-color h4:not(.has-text-color), .has-primary-colour-background-color h5:not(.has-text-color) {
  color: #FFF;
}
.has-fourth-colour-background-color {
  background-color: var(--fourthcolour);
}
.has-fourth-colour-background-color.wp-block-cover-image h1:not(.has-text-color), .has-fourth-colour-background-color h2:not(.has-text-color), .has-fourth-colour-background-color h3:not(.has-text-color), .has-fourth-colour-background-color h4:not(.has-text-color), .has-fourth-colour-background-color h5:not(.has-text-color), .has-fourth-colour-background-color p:not(.has-text-color) {
  color: #FFF;
}
.has-fourth-colour-background-color.wp-block-cover-image h1 a, .has-fourth-colour-background-color h2 a, .has-fourth-colour-background-color h3 a, .has-fourth-colour-background-color h4 a, .has-fourth-colour-background-color h5 a, .has-fourth-colour-background-color p a {
  color: #FFF;
}
.has-fourth-colour-background-color.wp-block-cover-image h1 a:visited, .has-fourth-colour-background-color h2 a:visited, .has-fourth-colour-background-color h3 a:visited, .has-fourth-colour-background-color h4 a:visited, .has-fourth-colour-background-color h5 a:visited, .has-fourth-colour-background-color p a:visited {
  color: #FFF;
}
.has-ttc-white-color h1:not(.has-text-color), .has-ttc-white-color h2:not(.has-text-color), .has-ttc-white-color h3:not(.has-text-color), .has-ttc-white-color h4:not(.has-text-color), .has-ttc-white-color h5:not(.has-text-color), .has-ttc-white-color p:not(.has-text-color) {
  color: #FFF;
}
.has-ttc-black-color h1:not(.has-text-color), .has-ttc-black-color h2:not(.has-text-color), .has-ttc-black-color h3:not(.has-text-color), .has-ttc-black-color h4:not(.has-text-color), .has-ttc-black-color h5:not(.has-text-color), .has-ttc-black-color p:not(.has-text-color) {
  color: #000;
}
.has-mydox-teal-to-blue-gradient-background {
  background: linear-gradient(135deg, #06a2a8 0%, #02a6a8 25%, #1984aa 80%, #1984aa 100%);
}
svg .secondarycolour {
  fill: #06a2a8;
}
.wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link {
  border-radius: 20px;
  position: relative;
  padding: 13px 30px;
}
.wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link:after {
  display: inline-block;
  content: "";
  color: inherit;
  font-family: "FontAwesome";
  margin-left: 5px;
  font-weight: 100;
}
.virtual-page.virtual-login-page #site-navigation {
  background-color: var(--darkbackground);
}
.virtual-page.virtual-login-page #site-navigation .main-nav ul li a, .virtual-page.virtual-login-page #site-navigation .menu-toggle, .virtual-page.virtual-login-page #site-navigation .main-navigation .menu-bar-items {
  color: var(--lightbackground);
}
.virtual-page.virtual-login-page .site-content {
  padding-bottom: 0;
}
.nav-float-left .header-widget {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.breadcrumbs {
  padding: 0 20px 10px 0;
}
.client-header-logo img {
  filter: grayscale(1);
}
body #block-12 {
  display: none;
}
#content button {
  line-height: 28px;
  padding: 0 7px;
  margin-bottom: 5px;
}
#content .wp-block-column:not(:first-child) {
  margin-left: 0;
}
#content #modal-example {
  z-index: 1030;
}
#content #modal-pdf {
  z-index: 1030;
}
#content #modal-pdf .uk-modal-body {
  overflow-y: scroll;
  min-height: 300px !important;
}
#content table tr td, #content table tr th {
  padding: 10px 10px;
}
#content table.wp-block-advgb-table tbody tr td label {
  padding: 0;
  margin-bottom: 5px;
  font-weight: 700;
}
#content table.wp-block-advgb-table tbody tr.row td {
  border-bottom: 1px solid var(--contrast-3);
}
#content table.wp-block-advgb-table tbody tr.row td label.fieldValue {
  display: none;
}
#content table.wp-block-advgb-table tbody tr.row.active-car-row td {
  border-top: 3px solid red;
  border-bottom: 3px solid red;
}
#content table.wp-block-advgb-table tbody tr.row.active-car-row td:first-child {
  border-left: 3px solid red;
}
#content table.wp-block-advgb-table tbody tr.row.active-car-row td:last-child {
  border-right: 3px solid red;
}
#content .ttc-posts2 .ttc-card .card-information svg {
  height: auto;
  min-width: 18px;
  width: 20px;
  max-height: 23px;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-contrast-color {
  fill: var(--contrast) !important;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-contrast-2-color {
  fill: var(--contrast-2) !important;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-contrast-3-color {
  fill: var(--contrast-3) !important;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-contrast-4-color {
  fill: var(--contrast-4) !important;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-base-color {
  fill: var(--base) !important;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-base-2-color {
  fill: var(--base-2) !important;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-base-3-color {
  fill: var(--base-3) !important;
}
#content .ttc-posts2 .ttc-card .card-information svg .has-accent-color {
  fill: var(--accent) !important;
}
#content .uk-card.uk-card-body {
  border-radius: 5px;
}
#content .sites-archive {
  margin-bottom: 10px;
  border-radius: 5px;
  width: 100%;
}
#content .staff-wrapper {
  /*.ttc-cards, .ttc-cards2, .ttc-expandcards, .ttc-expandcards2, .ttc-cardsdownload{

    > div > .uk-card{
      margin-bottom:10px;
    }

    .uk-card{
      border-radius: 5px;
      &.uk-card-small{
        padding-bottom: 0;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0,0,0,.08)
      }

      div.toggle-child{

        //background-color: rgba(0, 0, 0, 0.1);
        margin-left: -12px;
        margin-right: -12px;
        padding: 0 0 0 15px;
        border-bottom-width: 0px;
        border-bottom-style: solid;
        border-bottom-color: rgba(0, 0, 0, 0.25);
        max-width: inherit;
        width: 100%;
        flex-grow: 1;

        > div > .uk-first-column{
          padding-left:0;
        }

        .uk-card{
          background: transparent;
          border-bottom: 0px solid rgba(0,0,0,0.1);
        }

        .ttc-cards > div > .uk-card{
          margin-bottom:0px;
          border-top: 10px solid $global-background;
          border-left: 20px solid $global-background;
        }

      }

    }
    .ttc-card{
      justify-content: space-between;
      flex-wrap: nowrap;
      align-items: center;
      svg{
        @include cardSVG;
      }
      .card-information{
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        max-width: 75%;
        overflow: hidden;
        text-overflow: ellipsis;


        &:hover{
          background-color:#FFF;
          overflow: visible;
          z-index: 2;
        }


        h3.is-margin-hidemobile{
          margin-bottom: 2.5em;
        }
        .toggle-child{
          display:inline-block; color: $global-color; vertical-align: middle; cursor: pointer;
          i{
            vertical-align: top;
            line-height: 22px;
            width: 22px;
            background: $global-emphasis-color;
            text-align: center;
            color: $global-muted-color;
            border-radius: 50%;
            transition: transform 0.2s;
          }
          &.uk-active{
            i{transform: rotate(180deg);}
          }
          &:hover{
            text-decoration: none;
          }
        }
        svg{
          float:left; margin-right:10px;
        }
        p{
          overflow: hidden;
          margin-bottom:10px; margin-right:15px;
          display:inline-block;
        }
        p.has-green{
          color: #15adc3;
        }
      }

      .file-checkbox{
        font-size:15px;
        display: inline-block;
        margin-bottom:10px;
        > *{
          vertical-align: middle;
        }
        .name-wrapper{
          overflow: hidden;
          display: block;
          cursor:pointer;
          word-break: break-word;
        }
      }

      input[type="checkbox"]{
        display: inline-block;
        float:left;
        height: 20px;
        width:20px;
        margin-right:10px;
        margin-top:0;
      }


      .card-actions{

        button, .button{
          @include base-button;
          &.caret{
            @include button-caret-after;

          }

          & +.button{margin-left:5px;}
        }
        white-space: nowrap;
        li{
          button{
            background-color: transparent;
            color: #6e6f71;
            svg{
              margin-right:14px;
            }

          }
          &:hover{
            background-color:#bbbcbd;
          }
          a{
            @include base-button;
            svg{
              margin-right:14px;
            }
          }
        }

        .QRLinks{
          display: flex;
          flex-wrap: wrap;
          margin-bottom:5px;
          padding:0 7px;

          li{

            &.QRTitle{
              flex: 1 1 100%;
              pointer-events: none;

              svg{ margin-right:14px; }

            }

            &.QRLink{
              flex: 1 1 50%;

              a{
                text-align: center;
                display: block;
                padding: 0 5px;
              }

            }

            a{margin-bottom:0;}

          }
        }

      }

      &.ttc-terms-nested{
        flex-flow: row wrap;
        justify-content: space-between;
        > .ttc-cards,
        .ttc-files{
          flex-basis: 100%;
        }

      }

      &.ttc-file, &.ttc-attachment{

        @include actionboxes();

      }

      &.ttc-file-download > a{
        transition: background-color 0.2s;
        &:hover{
          background-color:rgba(0,0,0,0.1);

        }
      }

    }

  }*/
  gap: 10px;
}
#content .staff-wrapper .ttc-cards .ttc-card .card-actions.staff-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  white-space: normal;
  flex: 1 1 100%;
  gap: 10px;
}
#content .staff-wrapper .ttc-cards .ttc-card .card-actions.staff-actions > button, #content .staff-wrapper .ttc-cards .ttc-card .card-actions.staff-actions > span, #content .staff-wrapper .ttc-cards .ttc-card .card-actions.staff-actions > a {
  flex: 1 0 40%;
  margin: 0;
}
#content .ttc-form {
  position: relative;
  padding-bottom: 0px;
  flex-grow: 1;
  width: 100%;
}
#content .ttc-form .not-valid {
  border: 1px solid red;
}
#content .ttc-form select {
  width: 49%;
}
#content .ttc-form button::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#content .ttc-form button:disabled {
  background: #6e6f71;
}
#content .ttc-form select {
  padding-top: 8px;
  padding-bottom: 9px;
}
#content .ttc-form .bulk-actions {
  display: flex;
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  bottom: -43px;
  position: fixed;
  flex-direction: row;
  justify-content: flex-start;
  left: 20px;
  right: 20px;
  z-index: -30;
}
#content .ttc-form .bulk-actions button + button {
  margin-left: 10px;
}
#content .ttc-form .bulk-actions.show-bulk {
  z-index: 30;
  visibility: visible;
  bottom: 40px;
  opacity: 1;
}
#content #stickyStopper {
  position: fixed;
  bottom: 10px;
  left: 0;
  height: 0;
}
#content .built-class {
  position: absolute;
  top: -9px;
  right: -4px;
}
#content .built-class i {
  font-size: 30px;
}
#content .built-class i.fa-check-circle {
  color: #06a2a8;
}
#content .built-class i.fa-user-times {
  color: #06a2a8;
}
#content i.fa-user-plus {
  color: #06a2a8;
  font-size: 100px;
}
#content .bulk-modal-button {
  margin-bottom: 10px;
  margin-left: 0px;
  padding: 0 20px 0 7px;
  line-height: 1.9em;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  background-color: #06a2a8;
  color: #fff;
  border: none;
  border-radius: 5px;
}
#content .bulk-modal-button.caret:after {
  display: block;
  position: absolute;
  right: 5px;
  top: 0;
  content: "";
  color: inherit;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 1.4em;
}
#content .site-team .bulk-modal-button {
  white-space: nowrap;
}
.selectize-dropdown .selectize-dropdown-content .optgroup-header {
  font-weight: bold;
}
.selectize-dropdown .selectize-dropdown-content .option {
  padding-left: 10px;
}
button.add-input-group.loading:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-weight: 900;
  content: "";
  animation: loading-rotate 1s linear infinite;
}
.repeater.has-inputs .row > .column {
  padding-left: 0;
}
.repeater.has-inputs .row > td, .repeater.has-inputs .row > .column {
  transition: padding-left 0.2s ease-out;
}
.repeater.has-inputs .row.ui-sortable-helper {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: unset;
  align-content: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.repeater.has-inputs .row.ui-sortable-helper > * {
  flex: 1 1 20%;
  padding: 0 15px 0 0;
  align-self: center;
}
.repeater.has-inputs .row.ui-sortable-helper > * canvas {
  background-color: #FFF;
}
.repeater.has-inputs .row:hover > td.column:first-child {
  padding-left: 20px !important;
}
.repeater.has-inputs .row:hover > .column:first-child {
  padding-left: 10px !important;
}
.repeater.has-inputs .row:hover .sortable-controls {
  opacity: 1;
  z-index: 500;
}
.repeater .sortable-controls {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  overflow: visible;
  transition: all 0.2s ease-in-out;
  background: #F7F7F7;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translate(-5px, -50%);
  color: #6e6f71;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 5px;
}
.repeater .sortable-controls .sortable-up, .repeater .sortable-controls .sortable-handle, .repeater .sortable-controls .sortable-down, .repeater .sortable-controls .sortable-add, .repeater .sortable-controls .sortable-remove {
  padding: 3px 5px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.repeater .sortable-controls .sortable-up:after, .repeater .sortable-controls .sortable-handle:after, .repeater .sortable-controls .sortable-down:after, .repeater .sortable-controls .sortable-add:after, .repeater .sortable-controls .sortable-remove:after {
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 10px;
  content: "";
}
.repeater .sortable-controls .sortable-up:hover, .repeater .sortable-controls .sortable-handle:hover, .repeater .sortable-controls .sortable-down:hover, .repeater .sortable-controls .sortable-add:hover, .repeater .sortable-controls .sortable-remove:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.repeater .sortable-controls .sortable-up {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.repeater .sortable-controls .sortable-handle {
  cursor: grab;
}
.repeater .sortable-controls .sortable-handle:after {
  content: "";
}
.repeater .sortable-controls .sortable-down {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.repeater .sortable-controls .sortable-down:after {
  content: "";
}
.repeater .sortable-controls .sortable-add {
  margin-top: 2px;
}
.repeater .sortable-controls .sortable-add:after {
  content: "";
}
.repeater .sortable-controls .sortable-remove {
  margin-top: 2px;
}
.repeater .sortable-controls .sortable-remove:after {
  content: "";
}
.repeater .add-button-row {
  text-align: right;
}
.repeater .add-button-row.top {
  text-align: left;
}
.repeater .add-button-row button.add-input-group.loading:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-weight: 900;
  content: "";
  animation: loading-rotate 1s linear infinite;
}
.repeater.row > .column > .fieldWrapper {
  margin-bottom: 0;
}
.repeater .row > .column > .fieldWrapper {
  margin-bottom: 0;
  margin-bottom: 0;
}
.repeater .row > .column > .fieldWrapper label.fieldInput {
  display: block;
  font-weight: bold;
  margin-bottom: 3px;
}
@media (max-width: 781px) {
  div.repeater > .row > .column > .fieldWrapper.basis-third, div.repeater > .row > .column > .fieldWrapper.basis-quarter {
    flex-basis: 50% !important;
  }
}
@media (max-width: 600px) {
  div.repeater > .row > .column > .fieldWrapper.basis-half, div.repeater > .row > .column > .fieldWrapper.basis-third, div.repeater > .row > .column > .fieldWrapper.basis-quarter {
    flex-basis: 100% !important;
  }
}
div.repeater.is-style-flex-3-cols > .row > .column > .fieldWrapper {
  flex-basis: 33%;
}
@media (max-width: 781px) {
  div.repeater.is-style-flex-3-cols > .row > .column > .fieldWrapper {
    flex-basis: 50%;
  }
}
@media (max-width: 600px) {
  div.repeater.is-style-flex-3-cols > .row > .column > .fieldWrapper {
    flex-basis: 100%;
  }
}
figure.advgb-table {
  position: relative;
  padding-bottom: 20px;
}
figure.advgb-table table tr {
  display: table-row;
}
figure.advgb-table table tr.row {
  padding: 0;
}
figure.advgb-table table tr.row > td {
  display: table-cell;
}
figure.advgb-table table tr.row > td.column > .fieldWrapper label.fieldInput {
  display: none;
}
figure.advgb-table .requiredField {
  color: red;
  margin: 0;
  position: absolute;
}
figure.advgb-table .ttccheckbox .requiredField {
  margin-left: 40px;
  z-index: 0;
}
figure.advgb-table .ttccheckbox .requiredField + .ttccheckbox {
  position: relative;
  z-index: 1;
}
.simple-box-shadow {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.uk-card-primary {
  background-color: #06a2a8;
}
.ttc-offset-small-right {
  margin-right: -20px !important;
}
.ttc-offset-small-right > h1, .ttc-offset-small-right > h2, .ttc-offset-small-right > h3, .ttc-offset-small-right > h4, .ttc-offset-small-right > h5, .ttc-offset-small-right > p {
  padding-right: 20px;
}
.ttc-offset-small-left {
  margin-left: -20px !important;
}
#ttcdynModal {
  z-index: 1020;
  position: absolute;
  bottom: 0;
  pointer-events: none;
  display: none;
}
#ttcdynModal.uk-open {
  pointer-events: auto;
  display: block;
}
#ttcdynModal .uk-modal-close.slider-button {
  position: absolute;
  top: -20px;
  right: -20px;
}
.ttc-built-by {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  transition: all 0.2s;
  width: 40px;
  word-break: keep-all;
  white-space: nowrap;
  text-indent: -180px;
}
.ttc-built-by svg {
  transition: all 0.6s;
  transform: translateY(2px);
  opacity: 1;
}
.ttc-built-by:hover {
  width: inherit;
  text-indent: 0;
}
.ttc-built-by:hover svg {
  transform: translateY(-100%);
  opacity: 0;
}
.page-header .page-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
}
.entry-header .entry-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
}
article.sites h1.entry-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
}
body.post-type-archive-sites .page-header .page-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
}
body.post-type-archive-sites article.sites h2.entry-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
}
body.post-type-archive-sites article.sites h5 {
  font-size: 12px;
}
body.post-type-archive-sites article.sites .uk-list li a {
  font-size: 12px;
}
body.post-type-archive-sites article.sites .entry-summary {
  font-size: 12px;
}
.loginpage figure svg.site-logo {
  width: 100%;
  margin: 20px 0;
}
.loginpage .has-primary-colour-background-color svg.site-logo .logo-dark {
  fill: var(--contrast-2) !important;
}
#loginform, .loginform {
  max-width: 600px;
  margin: 0 auto;
}
#loginform label, .loginform label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--accent);
}
#loginform input, .loginform input {
  width: 100%;
  padding: 20px;
}
#loginform > a, .loginform > a {
  color: var(--contrast-2);
  display: inline-block;
  width: 100%;
}
#loginform > a .login-remember, .loginform > a .login-remember {
  color: var(--contrast-2);
  text-align: center;
  margin-top: 30px;
}
.loginform button.lp-button {
  color: var(--contrast-2);
  background-color: transparent;
  display: inline-block;
  width: 100%;
}
.wp-block-cover .wp-block-cover__inner-container {
  max-width: 1360px;
}
body .custom-menu-class {
  display: none;
}
#sticky-navigation {
  display: none !important;
}
body.home {
  background-color: white;
}
body.home .wp-block-separator {
  border-top: 0 solid;
  border-bottom: 1px solid;
}
body.home .header-widget {
  margin-left: 0;
}

body.home .inside-header {
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 20px !important;
}
body.home .inside-header #sticky-navigation .inside-navigation .custom-search, body.home .inside-header #sticky-navigation .inside-navigation .search-form, body.home .inside-header #sticky-navigation .inside-navigation .search-item {
  display: none;
}
body.home .gform_wrapper .gform_heading {
  margin-bottom: 1.5em;
  width: 80%;
}
body.home .gform_wrapper .gform_heading .gform_title {
  margin-bottom: 0;
  line-height: 1.5;
}
body.home .gform_wrapper .gform_description {
  font-size: 25px;
}
body.home .gform_wrapper #gform_submit_button_2 {
  border-radius: 5px;
}
body.home .gform_wrapper .gform_body .gfield {
  position: relative;
}
body.home .gform_wrapper .gform_body .gfield_label {
  height: 0;
  overflow: hidden;
  display: grid;
}
body.home .gform_wrapper .gform_body .gfield_required {
  position: absolute;
  left: 5px;
  bottom: 5px;
}
body.home .gform_wrapper .gform_body .gfield input {
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}
body.home .gform_wrapper .gform_body .gfield input::-webkit-input-placeholder {
  font-size: 18px;
}
body.home .main-navigation .inside-navigation {
  justify-content: space-around;
}
body.home .site-footer {
  display: none;
}
body.home .breadcrumbs {
  display: none;
}
body.home #masthead.site-header {
  background-color: var(--accent);
  margin-bottom: 0;
}
body.home #masthead.site-header .site-logo {
  position: absolute;
  fill: #FFF;
}
body.home #masthead.site-header .site-logo polygon, body.home #masthead.site-header .site-logo path {
  fill: #FFF !important;
}
body.home #masthead.site-header #primary-menu ul li a {
  color: white;
  line-height: 40px;
}
body.home #masthead.site-header #primary-menu ul li a:hover {
  color: var(--contrastcolor);
}
body.home #sticky-navigation {
  display: block !important;
}
body.home #sticky-navigation .inside-navigation {
  background-color: var(--accent);
  justify-content: space-evenly;
}
body.home #generate-slideout-menu {
  background-color: var(--accent);
}
body.home #generate-slideout-menu .inside-navigation .main-nav ul li a {
  line-height: 110px;
  color: white;
}
body.home .custom-menu-class {
  display: block;
}
body.home .site-header a:hover {
  color: #ffffff;
}
body mark {
  background-color: transparent;
}
#masthead.site-header {
  margin-bottom: 40px;
}
.one-container .site-content {
  padding: 0;
  display: inline;
}
div.custom-menu-class ul {
  margin: 20px 0px 20px 0px;
  list-style: none none;
  text-align: right;
  display: inline-block;
}
div.custom-menu-class li {
  padding: 10px 20px;
  display: inline-block;
}
div.custom-menu-class .appbutton {
  border: 1px solid white;
  border-radius: 25px;
}
div.custom-menu-class a {
  color: #ffffff;
}
div.custom-menu-class .loginbutton a {
  background-color: white;
  border-radius: 25px;
  color: var(--accent);
  margin-left: 10px;
  padding: 10px 50px;
}
div.custom-menu-class .loginbutton a:hover {
  color: white;
  background-color: transparent;
  border-radius: 25px;
  border: 1px solid white;
  padding: 9px 49px;
}
.inside-header {
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 20px;
}
#mute {
  z-index: 1;
  position: absolute;
  right: 46.7%;
  bottom: 0;
  color: white;
  background: var(--darkbackground);
  font-weight: 700;
  border-radius: 5px;
}
input, select option, textarea {
  border-radius: 5px;
}
input:disabled, input:read-only, select option:disabled, select option:read-only, textarea:disabled, textarea:read-only {
  background-color: #f8f8f8;
  color: #999;
  border-color: #e5e5e5;
}
.uk-lightbox {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.15s linear;
  touch-action: pinch-zoom;
}
.block-editor__container img {
  max-width: none;
  height: auto;
}
.postid-18425 form div.row {
  align-items: end;
}
.tax-register_tax .ttc-form .submitbutton {
  display: flex;
  bottom: 80px;
  position: fixed;
  flex-direction: row;
  justify-content: flex-start;
  right: 10px;
  background: #06A2A8;
  color: white;
  padding: 5px 10px;
  z-index: 3;
}
form#form-new-post {
  border-radius: 5px;
}
form#form-new-post.failedValidation .not-valid {
  border: 1px solid red;
}
form#form-new-post .background-white {
  background-color: white;
  padding: 10px;
}
form#form-new-post .wp-block-columns {
  flex-wrap: nowrap;
}
form#form-new-post .is-style-stripes {
  margin-bottom: 1.75em;
}
form#form-new-post .is-style-stripes > div.row {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--contrast-3);
  border-top-width: 0;
}
form#form-new-post .is-style-stripes > div.row:nth-child(2n+1) {
  background-color: var(--base);
}
form#form-new-post .is-style-stripes > tbody > tr {
  margin-top: 0;
  margin-bottom: 0;
}
form#form-new-post .is-style-stripes > tbody > tr:nth-child(2n+1) {
  background-color: var(--base);
}
form#form-new-post .is-style-stripes > tbody > tr td, form#form-new-post .is-style-stripes > tbody > tr th {
  border-bottom: 1px solid var(--contrast-3);
  border-top-width: 0;
  border-left-width: 0 !important;
  border-right-width: 0 !important;
}
form#form-new-post .is-style-striped-repeater > div.row {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--contrast-3);
  border-top-width: 0;
}
form#form-new-post .is-style-striped-repeater > div.row:nth-child(2n+1) {
  background-color: var(--base);
}
form#form-new-post .repeater.is-style-striped-repeater > div.row {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
form#form-new-post table {
  border: none;
}
form#form-new-post table tbody tr {
  position: relative;
}
form#form-new-post table tbody tr td > .fieldWrapper {
  display: inline-block;
}
form#form-new-post table.is-style-stripes {
  border-collapse: separate !important;
  border-spacing: 0;
}
form#form-new-post table.repeater tbody tr td > .fieldWrapper {
  width: 100%;
}
form#form-new-post table.repeater tbody tr td > .fieldWrapper > label {
  display: none;
  font-weight: 700;
}
form#form-new-post table.advgb-table-frontend {
  border-collapse: separate;
  border-spacing: 0;
}
form#form-new-post table.advgb-table-frontend thead tr th {
  color: var(--contrast-2);
  border: 1px solid var(--base-2);
  text-align: left;
  padding: 10px;
}
form#form-new-post div.repeater div.row {
  border-bottom: 1px solid var(--contrast-3);
  border-top-width: 0;
  margin-top: 20px;
  padding-top: 20px;
  flex-direction: row;
  display: flex;
  transition: background-color 0.2s, padding 0.2s;
  flex-wrap: wrap;
  position: relative;
}
form#form-new-post div.repeater div.row:first-child {
  margin-top: 0px;
  padding-top: 0px;
}
form#form-new-post div.repeater div.row > .column > .fieldWrapper.is-style-bold {
  font-weight: bold;
}
form#form-new-post div.repeater div.row > .column > .fieldWrapper.basis-full {
  flex-basis: 100% !important;
}
form#form-new-post div.repeater div.row > .column > .fieldWrapper.basis-half {
  flex-basis: 50% !important;
}
form#form-new-post div.repeater div.row > .column > .fieldWrapper.basis-third {
  flex-basis: 33% !important;
}
form#form-new-post div.repeater div.row > .column > .fieldWrapper.basis-quarter {
  flex-basis: 25% !important;
}
form#form-new-post div.repeater div.row > .column > .fieldWrapper.basis-auto {
  flex-basis: auto !important;
}
form#form-new-post div.repeater div.row .column label.fieldValue {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  margin-top: 0;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper {
  padding: 10px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper > p {
  margin-bottom: 5px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttccheckbox > input {
  margin-left: 20px;
  height: 30px;
  width: 30px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttccheckbox > input:first-child {
  margin-left: 0;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttccheckbox > label {
  padding-left: 10px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttcinputlabel {
  margin-bottom: 5px;
  font-weight: bold;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttcradio .option {
  margin-left: 20px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttcradio .option:first-child {
  margin-left: 0;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttcradio .option img {
  height: 30px;
  width: 30px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper .ttcradio .option span {
  padding-left: 10px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper.ttchr {
  padding: 0;
  margin: 10px;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch1, form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch2, form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch3, form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch4, form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch5 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.7em;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch1 {
  font-size: 1.4em;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch2 {
  font-size: 1.3em;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch3 {
  font-size: 1.2em;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch4 {
  font-size: 1.1em;
}
form#form-new-post div.repeater div.row .column > .fieldWrapper.ttch5 {
  font-size: 1em;
}
form#form-new-post div.repeater.is-style-flex-row > .row > .column, form#form-new-post div.repeater.is-style-flex-3-cols > .row > .column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-items: stretch;
}
form#form-new-post div.repeater.is-style-flex-row > .row > .column > .fieldWrapper, form#form-new-post div.repeater.is-style-flex-3-cols > .row > .column > .fieldWrapper {
  flex: 1 1 auto;
}
form#form-new-post div.repeater.is-style-flex-3-cols > .row > .column > .fieldWrapper {
  flex-basis: 30%;
  flex-grow: 0;
}
form#form-new-post .alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
  width: auto;
}
form#form-new-post table tbody tr td.warning {
  color: #886c00;
}
form#form-new-post table tbody tr td.error {
  color: #ff0000;
}
form#form-new-post table tbody tr td.good {
  color: #089800;
}
form#form-new-post .datetext.warning {
  color: #886c00;
}
form#form-new-post .datetext.warning input {
  color: #886c00;
}
form#form-new-post .datetext.error {
  color: #ff0000;
}
form#form-new-post .datetext.error input {
  color: #ff0000;
}
form#form-new-post .datetext.good {
  color: #089800;
}
form#form-new-post .datetext.good input {
  color: #089800;
}
form#form-new-post .file-upload-name {
  background: #585858;
  padding: 0.5rem;
  color: white;
}
form#form-new-post .requiredField {
  color: red;
  margin: 0;
}
form#form-new-post .requiredFieldRepeater {
  color: red;
  margin: 0;
  position: absolute;
}
form#form-new-post .fieldWrapper .ttcinput.has-text-align-left {
  align-items: flex-start;
}
form#form-new-post .fieldWrapper .ttcinput.has-text-align-right {
  align-items: flex-end;
}
form#form-new-post .fieldWrapper label.option-label {
  font-weight: inherit;
}
form#form-new-post .ttcradio .ttccheckbox {
  align-items: flex-start;
}
form#form-new-post .ttcradio.has-text-align-left {
  align-items: flex-start;
}
form#form-new-post .ttcradio.has-text-align-right {
  align-items: flex-end;
}
form#form-new-post .ttcselect .requiredField {
  right: 2px;
  z-index: 0;
}
form#form-new-post .ttccheckbox {
  display: inline-block;
}
form#form-new-post .ttccheckbox .option {
  display: block;
}
form#form-new-post .ttccheckbox .option .optionlabel {
  margin-left: 5px;
}
form#form-new-post .ttccheckbox .requiredField {
  margin-left: 40px;
  z-index: 0;
}
form#form-new-post .ttccheckbox .requiredField + .ttccheckbox {
  position: relative;
  z-index: 1;
}
form#form-new-post .ttccheckbox .ttcradioboxchoice {
  display: flex;
  gap: 0.38em;
  margin-left: 10px;
}
form#form-new-post .ttccheckbox .ttcradioboxchoice > input {
  height: 30px;
  width: 30px;
}
form#form-new-post .ttccheckbox .ttcradioboxchoice > label {
  padding-left: 5px;
}
form#form-new-post .ttccheckbox.has-text-align-left {
  align-items: flex-start;
}
form#form-new-post .ttccheckbox.has-text-align-right {
  align-items: flex-end;
}
form#form-new-post .ttccanvas canvas {
  background-color: #FFF;
  border: 1px dotted grey;
  border-radius: 5px;
}
form#form-new-post .field.radio-group .choice label {
  padding-left: 10px;
}
form#form-new-post button {
  margin-bottom: 10px;
  margin-left: 0px;
  padding: 0 20px 0 7px;
  line-height: 1.9em;
  position: relative;
  border-radius: 5px;
}
form#form-new-post button.caret:after {
  display: block;
  position: absolute;
  right: 5px;
  top: 0;
  content: "";
  color: inherit;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 1.4em;
}
form#form-new-post button.toDelete {
  background-color: #641515;
}
form#form-new-post * + .uk-placeholder {
  margin-top: 0;
  border-radius: 5px;
}
form#form-new-post * + .uk-placeholder.js-upload.disabled {
  cursor: not-allowed;
  position: relative;
}
form#form-new-post * + .uk-placeholder.js-upload.disabled .uploadDisabled {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
}
form#form-new-post * + .uk-placeholder.js-upload.disabled .uploadDisabled:hover {
  background-color: rgba(100, 21, 21, 0.7);
}
form#form-new-post .submitbutton {
  display: flex;
  bottom: 80px;
  position: fixed;
  flex-direction: row;
  justify-content: flex-start;
  right: 10px;
  z-index: 3;
}
form#form-new-post .submitbutton > button, form#form-new-post .submitbutton > a {
  background-color: var(--accent);
  color: var(--base);
  padding: 10px;
  border-radius: 5px 0 0 5px;
  line-height: 30px;
  margin-bottom: 10px;
}
form#form-new-post .submitbutton > button + button, form#form-new-post .submitbutton > a + button {
  border-radius: 0 5px 5px 0;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--contrast-3);
}
form#form-new-post .submitbutton > button svg, form#form-new-post .submitbutton > a svg {
  display: none;
}
form#form-new-post .submitnav li > a, form#form-new-post .submitnav li button {
  width: 100%;
  background: transparent;
  color: var(--contrast);
  text-align: left;
  border-radius: 0;
  padding: 5px;
  transition: background-color 0.3s ease-in-out;
}
form#form-new-post .submitnav li > a:hover, form#form-new-post .submitnav li button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
form#form-new-post .submitnav li > a svg, form#form-new-post .submitnav li button svg {
  height: 23px;
  width: auto;
}
form#form-new-post .submitnav .button {
  width: 100%;
  padding: 5px;
}
form#form-new-post .submitnav .hrefbutton {
  color: white;
  background: #6e6f71;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 5px;
  font-size: 15px;
}
form#form-new-post .submitbuttoncard {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 30px;
  margin-bottom: 30px;
}
form#form-new-post .submitbuttoncard button {
  margin-bottom: 0;
  margin-left: 0px;
  padding: 10px 20px;
  line-height: 1.9em;
  position: relative;
  border-radius: 0px;
  flex-grow: 2;
}
form#form-new-post .submitbuttoncard button + button {
  margin-left: 10px;
}
form#form-new-post select, form#form-new-post input[type=text], form#form-new-post input[type=date], form#form-new-post input[type=number] {
  width: 100%;
  height: 40px;
}
form#form-new-post input[type=checkbox] {
  width: 30px;
  height: 30px;
}
form#form-new-post table td.repeater-field-wrapper {
  padding: 0;
}
form#form-new-post .has-ttc-light-grey-background-color {
  background-color: #F4F4F4;
}
.upcoming-report {
  position: relative;
  padding-bottom: 25px;
}
.upcoming-report .pageActions {
  display: flex;
  top: 5px;
  position: absolute;
  right: 0px;
  z-index: 3;
}
.upcoming-report .pageActions .submitbutton {
  flex-direction: row;
  justify-content: flex-start;
  background: #06A2A8;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}
.upcoming-report .pageActions .submitbutton:hover {
  color: white;
  text-decoration: underline;
}
.upcoming-report table tbody tr td.warning {
  color: #886c00;
}
.upcoming-report table tbody tr td.error {
  color: #ff0000;
}
.upcoming-report table tbody tr td.good {
  color: #089800;
}
.upcoming-report .datetext.warning {
  color: #886c00;
}
.upcoming-report .datetext.warning input {
  color: #886c00;
}
.upcoming-report .datetext.error {
  color: #ff0000;
}
.upcoming-report .datetext.error input {
  color: #ff0000;
}
.upcoming-report .datetext.good {
  color: #089800;
}
.upcoming-report .datetext.good input {
  color: #089800;
}
.cardsWrapper .cardWrapper {
  padding: 12px;
  margin-top: 10px;
}
.cardsWrapper .cardWrapper:first-child {
  margin-top: 0;
}
.cardsWrapper .cardWrapper .childToggle {
  display: flex;
  flex-wrap: wrap !important;
}
.cardsWrapper .cardWrapper .childToggle .card-information {
  align-self: start;
}
.cardsWrapper .cardWrapper .childToggle .card-information a {
  color: var(--accent);
}
.cardsWrapper .cardWrapper .childToggle .card-information a:visited {
  color: var(--accent);
}
.cardsWrapper .cardWrapper .childToggle .card-information a:hover {
  color: var(--contrast-2);
}
.cardsWrapper .cardWrapper .childToggle .toggleItem {
  width: 100%;
  padding-bottom: 12px;
}
.postid-18409 form .field.checkbox-group {
  float: none;
  text-align: center;
}
#main .rightsidebar {
  border-radius: 5px;
  margin-top: -50px;
  margin-bottom: 30px;
}
#main .ttc-expandcards .ttc-card .card-information {
  margin-bottom: 10px;
}
#main .ttc-expandcards .ttc-card .card-information p {
  overflow: hidden;
  margin-bottom: 0;
  margin-right: 0;
  display: inline-block;
  width: 70px;
  text-align: center;
}
#main .ttc-expandcards2 .ttc-card .card-information {
  margin-bottom: 10px;
}
#main .ttc-expandcards2 .ttc-card .card-information p {
  overflow: hidden;
  margin-bottom: 0;
  margin-right: 0;
  display: inline-block;
  text-align: center;
}
#main .ttc-posts .ttc-bigcard-pie svg {
  height: auto;
  min-width: 23px;
  width: 23px;
  max-height: 23px;
}
.picturecolumns > .wp-block-column {
  display: flex;
  justify-content: space-between;
  flex-grow: 2;
  flex-flow: column;
  gap: 15px;
}
.picturecolumns > .wp-block-column > .uk-grid-small {
  max-height: 100%;
  height: 100%;
  margin: 0;
}
.picturecolumns > .wp-block-column > .uk-grid-small > .uk-first-column, .picturecolumns > .wp-block-column > .uk-grid-small > div {
  height: 100%;
  padding: 0;
}
.picturecolumns > .wp-block-column > .uk-grid-small > .uk-first-column > .uk-card, .picturecolumns > .wp-block-column > .uk-grid-small > div > .uk-card {
  height: 100%;
  margin: 0 !important;
}
.picturecolumns > .wp-block-column > .uk-grid-small > .uk-first-column > .uk-card .chart-container, .picturecolumns > .wp-block-column > .uk-grid-small > div > .uk-card .chart-container {
  width: auto;
}
.picturecolumns > .wp-block-column > .uk-grid-small > .uk-first-column > .uk-card .chart-container canvas, .picturecolumns > .wp-block-column > .uk-grid-small > div > .uk-card .chart-container canvas {
  height: auto !important;
  min-width: 190px;
}
.picturecolumns .uk-card-title {
  color: #6e6f71;
}
#main .documentsopen {
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 30px;
}
.ttc-bigcard-simple, .ttc-bigcard-upload {
  display: flex;
  align-items: center;
  background: white;
  width: 100%;
}
.ttc-bigcard-simple svg, .ttc-bigcard-upload svg {
  height: auto;
  min-width: 46px;
  width: 46px;
  max-height: 46px;
}
.ttc-bigcard-simple .titles, .ttc-bigcard-upload .titles {
  display: flex;
  width: 60%;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}
.ttc-bigcard-simple .titles .dashboardnum, .ttc-bigcard-upload .titles .dashboardnum {
  display: flex;
  text-align: center;
  width: 400px;
}
.ttc-bigcard-simple .titles .dashboardnum .firstnum, .ttc-bigcard-upload .titles .dashboardnum .firstnum {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
}
.ttc-bigcard-simple .titles .dashboardnum .secondnum, .ttc-bigcard-upload .titles .dashboardnum .secondnum {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
}
.ttc-bigcard-simple .titles .dashboardnum p.num, .ttc-bigcard-upload .titles .dashboardnum p.num {
  font-size: 30px;
  margin-bottom: 0;
  font-weight: bold;
}
.ttc-bigcard-simple .titles .dashboardnum p.desc, .ttc-bigcard-upload .titles .dashboardnum p.desc {
  font-size: 10px;
  margin-bottom: 0;
}
.ttc-bigcard-doughnut svg {
  height: auto;
  min-width: 30px;
  width: 30px;
  max-height: 30px;
}
.maincolumns .sitescolumns {
  margin-bottom: 0;
  flex-wrap: nowrap;
}
.ttc-bigcard-doughnut .previous-icon-container {
  position: absolute;
  right: 0;
  bottom: 1%;
}
.ttc-bigcard-pie .previous-icon-container {
  position: absolute;
  right: 2%;
  bottom: 5%;
}
#main .rightsidebar .ttc-navigation {
  margin-bottom: 20px;
}
#main button {
  background: var(--contrast-2);
  border: none;
  border-radius: 5px;
  color: var(--base-3);
  position: relative;
  padding: 0 7px 0 7px;
  line-height: 1.9em;
  margin-bottom: 0;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) inset;
  transition-property: background-color, box-shadow, border;
  transition-duration: 110ms;
  transition-timing-function: ease-in;
}
#main button.card-button:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
#main button:hover {
  background: var(--accent);
  color: white;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.8) inset;
}
#main button.link {
  box-shadow: none;
  background-color: inherit;
  color: inherit;
}
#main button.caret {
  padding-right: 20px;
}
#main button.caret:after {
  display: flex;
  align-items: center;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  content: "";
  color: inherit;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 1em;
}
#main button.ellipsis {
  padding-right: 20px;
}
#main button.ellipsis:after {
  display: flex;
  align-items: center;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  content: "";
  color: inherit;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 1em;
}
#main > .ttc-cards > .uk-card > .toggler:before {
  display: none;
}
#main .ttc-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  flex: 1 1 60%;
  max-width: 100%;
  align-items: flex-start;
}
#main .ttc-cards > .uk-card > .toggler:before {
  display: none;
}
#main .ttc-cards.row {
  align-items: flex-start;
  gap: 30px 10px;
  justify-content: space-between;
}
#main .ttc-cards.row > div {
  flex: 1 0 50%;
}
#main .ttc-cards .uk-card {
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1 1 100%;
  width: 100%;
  padding: 12px;
  display: flex;
  gap: 12px;
  border-left: 1px solid var(--contrast-3);
  align-items: center;
  transition-property: background-color, box-shadow, border;
  transition-duration: 110ms;
  transition-timing-function: ease-in;
}
#main .ttc-cards .uk-card p {
  margin: 0;
}
#main .ttc-cards .uk-card.card-button:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
#main .ttc-cards .uk-card.uk-card-small {
  padding-top: 5px;
  padding-bottom: 5px;
  min-height: 52px;
}
#main .ttc-cards .uk-card.error {
  color: #ae0000;
  border-left: 2px solid #ae0000;
  box-shadow: 0 5px 15px rgba(174, 0, 0, 0.2);
}
#main .ttc-cards .uk-card:hover {
  border-left-color: var(--base);
}
#main .ttc-cards .toggler {
  flex-basis: 15px;
  margin-left: -12px;
  font-size: 0.8em;
  display: inline-block;
  max-width: inherit;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.05) inset;
  cursor: pointer;
  width: 15px;
  line-height: 15px;
  border-radius: 3px;
  background: var(--base-2);
  color: var(--contrast-3);
  text-align: center;
  transition: transform 0.2s;
  transition-property: background-color, box-shadow, color;
  transition-duration: 110ms;
  transition-timing-function: ease-in;
}
#main .ttc-cards .toggler:hover {
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
}
#main .ttc-cards .toggler:before {
  display: block;
  width: 12px;
  height: 1px;
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--contrast-3);
}
#main .ttc-cards .toggler.uk-active {
  color: var(--accent);
}
#main .ttc-cards .toggler.uk-active i {
  transform: rotate(180deg);
}
#main .ttc-cards .toggler:hover {
  color: var(--accent);
  text-decoration: none;
}
#main .ttc-cards .toggle-child {
  flex: 1 0 100%;
  max-width: 100%;
  display: flex;
}
#main .ttc-cards .dropdown-toggle {
  margin: 0;
  background: #06a2a8;
  color: #fff;
  border-radius: 0 5px 5px 0;
  display: flex;
  width: 40px;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  box-shadow: none;
}
#main .ttc-cards.ttc-navigation {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px 0;
  align-items: stretch;
}
#main .ttc-cards.ttc-navigation .dropzone {
  flex-direction: row;
  flex-wrap: wrap;
}
#main .ttc-cards.ttc-navigation > .uk-card:first-child {
  flex-basis: 90%;
  overflow: hidden;
}
#main .ttc-cards.ttc-navigation > .uk-dropdown {
  padding: 10px;
  border-radius: 0 0 5px 5px;
  background-color: var(--base-2);
  max-height: 80vh;
  overflow: scroll;
}
#main .ttc-cards.ttc-navigation > .uk-dropdown > .ttc-cards > .uk-card > .toggler:before {
  display: none;
}
#main .ttc-cards.ttc-navigation > .uk-dropdown > .uk-card:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
#main .ttc-cards.ttc-navigation .card-information {
  flex: 1 1 auto;
}
#main .ttc-cards.ttc-navigation .card-information p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#main .ttc-cards.ttc-navigation .card-information .empty-message {
  margin-bottom: 13px;
  margin-top: 3px;
}
#main .ttc-cards.ttc-navigation + .ttc-navigation {
  margin-top: 20px;
}
#main .ttc-cards.ttc-navigation .file-upload-wrapper {
  flex-basis: 100%;
}
#main .ttc-cards.ttc-navigation .file-upload-wrapper .upload-information .allowed-files {
  display: none;
}
#main .ttc-cards .ttc-card {
  align-items: center;
  flex: 1 1 66%;
  gap: 0 10px;
  width: 66%;
}
#main .ttc-cards svg {
  height: auto;
  min-width: 18px;
  width: 20px;
  max-height: 23px;
}
#main .ttc-cards svg .has-contrast-color {
  fill: var(--contrast) !important;
}
#main .ttc-cards svg .has-contrast-2-color {
  fill: var(--contrast-2) !important;
}
#main .ttc-cards svg .has-contrast-3-color {
  fill: var(--contrast-3) !important;
}
#main .ttc-cards svg .has-contrast-4-color {
  fill: var(--contrast-4) !important;
}
#main .ttc-cards svg .has-base-color {
  fill: var(--base) !important;
}
#main .ttc-cards svg .has-base-2-color {
  fill: var(--base-2) !important;
}
#main .ttc-cards svg .has-base-3-color {
  fill: var(--base-3) !important;
}
#main .ttc-cards svg .has-accent-color {
  fill: var(--accent) !important;
}
#main .ttc-cards .card-information {
  overflow: hidden;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}
#main .ttc-cards .card-information p, #main .ttc-cards .card-information h1, #main .ttc-cards .card-information h2, #main .ttc-cards .card-information h3, #main .ttc-cards .card-information h4, #main .ttc-cards .card-information h5 {
  margin: 0;
  line-height: initial;
}
#main .ttc-cards .card-information svg {
  margin-right: 7px;
}
#main .ttc-cards .card-information .ttc-card-information {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  text-align: left;
  flex: 1 1 100%;
  overflow: hidden;
}
#main .ttc-cards .card-information .ttc-card-information .toggle-child {
  margin-left: 7px;
}
#main .ttc-cards .card-information .ttc-card-information .ttc-sub-card-information {
  white-space: nowrap;
  display: inline-block;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.7em;
}
#main .ttc-cards .card-title a {
  color: inherit;
}
#main .ttc-cards .card-actions {
  display: flex;
  flex: 1 1 auto;
  white-space: nowrap;
  justify-content: end;
}
#main .ttc-cards .card-actions .action-placeholder {
  white-space: break-spaces;
  margin-bottom: 0;
  font-size: 0.8em;
}
#main .ttc-cards .card-actions .links {
  display: flex;
  flex-direction: row;
  gap: 0 5px;
  flex-wrap: nowrap;
}
#main .ttc-cards .card-actions .links a {
  border-radius: 3px;
  padding: 5px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) inset;
  transition-property: background-color, box-shadow, border;
  transition-duration: 110ms;
  transition-timing-function: ease-in;
}
#main .ttc-cards .card-actions .links a.card-button:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
#main .ttc-cards .card-actions .links a svg {
  pointer-events: none;
}
#main .ttc-cards .card-actions .links a svg * {
  transition: fill 0.3s ease-in-out;
}
#main .ttc-cards .card-actions .links a:hover {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) inset;
  background-color: var(--base-2);
}
#main .ttc-cards .card-actions .links a:hover svg * {
  fill: var(--accent) !important;
}
#main .ttc-cards .card-actions .links a .link-text {
  display: none;
}
#main .ttc-cards .card-actions .uk-dropdown {
  padding-left: 0;
  padding-right: 0;
  border-radius: 5px;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg {
  height: auto;
  min-width: 18px;
  width: 20px;
  max-height: 23px;
  margin-right: 14px;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-contrast-color {
  fill: var(--contrast) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-contrast-2-color {
  fill: var(--contrast-2) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-contrast-3-color {
  fill: var(--contrast-3) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-contrast-4-color {
  fill: var(--contrast-4) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-base-color {
  fill: var(--base) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-base-2-color {
  fill: var(--base-2) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-base-3-color {
  fill: var(--base-3) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg .has-accent-color {
  fill: var(--accent) !important;
}
#main .ttc-cards .card-actions .uk-dropdown ul svg * {
  transition: all 0.7s;
}
#main .ttc-cards .card-actions .uk-dropdown ul li a, #main .ttc-cards .card-actions .uk-dropdown ul li button {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 0;
  background-color: transparent;
  margin-left: 0;
  margin-right: 0;
  color: var(--contrast-2);
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 5px;
  transition: all 0.4s;
}
#main .ttc-cards .card-actions .uk-dropdown ul li a:hover, #main .ttc-cards .card-actions .uk-dropdown ul li button:hover {
  background-color: #bbbcbd;
}
#main .ttc-cards .card-actions .uk-dropdown ul li a:hover svg *, #main .ttc-cards .card-actions .uk-dropdown ul li button:hover svg * {
  fill: #06a2a8;
}
#main .ttc-cards .card-actions .uk-dropdown ul .QRLinks {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  padding: 0 16px;
}
#main .ttc-cards .card-actions .uk-dropdown ul .QRLinks svg {
  width: 18px;
}
#main .ttc-cards .card-actions .uk-dropdown ul .QRLinks li.QRTitle {
  flex: 1 1 100%;
  pointer-events: none;
  margin-bottom: 2px;
}
#main .ttc-cards .card-actions .uk-dropdown ul .QRLinks li.QRTitle svg {
  margin-right: 14px;
}
#main .ttc-cards .card-actions .uk-dropdown ul .QRLinks li.QRLink {
  flex: 1 1 50%;
}
#main .ttc-cards .card-actions .uk-dropdown ul .QRLinks li.QRLink a {
  text-align: center;
  display: block;
  padding: 0 5px;
}
#main .ttc-cards .card-actions .uk-dropdown ul .QRLinks li a {
  margin-bottom: 0;
}
#main .ttc-cards .count-box-wrapper {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
  height: 50px;
}
#main .ttc-cards .count-box-wrapper .count-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 33.33%;
  border-left: 1px solid var(--base);
}
#main .ttc-cards .count-box-wrapper .count-box:first-child {
  border-left: 0;
}
#main .ttc-cards .count-box-wrapper hr {
  height: 30px;
}
#main .ttc-cards .count-box-wrapper p {
  overflow: hidden;
  margin-bottom: 0;
  margin-right: 0;
  display: block;
  text-align: center;
}
#main .ttc-cards .chart-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}
#main .ttc-cards .chart-wrapper .chart-container {
  max-width: 190px;
}
#main .ttc-cards .chart-wrapper .chart-container canvas {
  height: auto !important;
  min-width: 190px;
}
#main .ttc-cards .chart-wrapper .legend-container {
  width: 100%;
}
#main .ttc-cards .file-previews .card-information {
  position: relative;
  padding-left: 45px;
}
#main .ttc-cards .file-previews .img-preview {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  object-position: top;
  object-fit: cover;
  border-radius: 3px 0 0;
  height: 100%;
  overflow: hidden;
}
#main .ttc-cards .file-previews .file-upload-delete .link-text {
  display: none;
}
#main .ttc-cards .delete-img-preview {
  max-height: 50px;
  border-radius: 3px;
  max-width: 80px;
}
#main .QRLinks {
  list-style: none;
  margin: 0;
}
#main .file-upload-wrapper {
  flex-basis: 33%;
  min-width: 300px;
}
#main .file-upload-wrapper .dropzone {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-items: center;
  border: 1px dashed var(--contrast-2);
  border-radius: 3px;
  text-align: center;
  background-color: var(--base);
  gap: 5px;
  line-height: 1.1em;
  font-size: 0.9em;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) inset;
  padding: 5px;
  transition-property: background-color, box-shadow, border;
  transition-duration: 110ms;
  transition-timing-function: ease-in;
}
#main .file-upload-wrapper .dropzone > svg {
  margin: 0 auto;
}
#main .file-upload-wrapper .dropzone.disabled {
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  cursor: not-allowed;
}
#main .file-upload-wrapper .dropzone.card-button:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
#main .file-upload-wrapper .dropzone:hover {
  background-color: var(--base-3);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}
#main .file-upload-wrapper .dropzone p {
  margin: 0 5px;
}
#main .file-upload-wrapper .dropzone strong {
  color: var(--accent);
}
#main .datetext.warning {
  color: #886c00;
}
#main .datetext.warning input {
  color: #886c00;
}
#main .datetext.error {
  color: #ff0000;
}
#main .datetext.error input {
  color: #ff0000;
}
#main .datetext.good {
  color: #089800;
}
#main .datetext.good input {
  color: #089800;
}
#main .ttc-cards .ttc-user-simple .card-actions .uk-dropdown ul li .sub_button {
  background-color: transparent;
  margin-left: 0;
  margin-right: 0;
  color: var(--contrast-2);
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 5px;
  transition: all 0.4s;
}
.ttc-bigcard-pie .pie-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 6%;
  margin-bottom: 5.5%;
  margin-left: auto;
  margin-right: auto;
  max-width: 190px;
}
.ttc-bigcard-pie .number-container {
  margin-top: 10px;
}
#w {
  width: 90%;
  height: 241px;
}
em {
  color: inherit;
}
.has-ttc-red-color {
  color: #FF0000;
}
.has-ttc-red-background-color, p.has-ttc-red-background-color h1.has-ttc-red-background-color, h2.has-ttc-red-background-color, h3.has-ttc-red-background-color, h4.has-ttc-red-background-color, h5.has-ttc-red-background-color, div.has-ttc-red-background-color, span.has-ttc-red-background-color {
  background-color: #FF0000;
  color: #F4F4F4;
}
.has-ttc-light-grey-color {
  color: #F4F4F4;
}
form.acf-form input[readonly] {
  cursor: not-allowed;
  background-color: transparent;
  border: none;
  padding: 0;
}
form.acf-form input[readonly][name="acf[_post_title]"] {
  font-size: 20px;
}
form.acf-form .acf-form-submit .acf-button {
  color: var(--contrast-2);
  background-color: #06a2a8;
}
#modal-pdf #submission {
  max-height: 500px;
}
#modal-pdf #submission div.ttc-card {
  background: white;
  border-bottom: 0px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  border-radius: 5px;
}
.main-navigation .main-nav ul li:hover > a {
  border-radius: 5px;
}
@keyframes slide-from-left {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(154px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bg-contrast {
  0% {
    background: var(--base-3);
    color: var(--contrast-2);
  }
  50% {
    background-color: var(--contrast-2);
    color: var(--base-3);
  }
  100% {
    background: var(--base-3);
    color: var(--contrast-2);
  }
}
.list-card-search .search-toggle {
  padding: 4px;
  background: var(--base-3);
  color: var(--contrast-2);
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  line-height: 16px;
  font-size: 14px;
}
.list-card-search .search-toggle .fa-search {
  line-height: 20px;
  padding: 7px 10px;
  background: var(--accent);
  color: var(--base-3);
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
}
.list-card-search .search-toggle .search-text {
  display: inline-block;
  padding: 0px 10px;
  margin: 0 0 0 0;
  border-radius: 0 5px 5px 0px;
  vertical-align: middle;
  line-height: 15px;
}
.list-card-search .search-toggle .search-text .additional-helper {
  display: block;
  font-size: 10px;
}
.list-card-search .search-wrapper {
  width: 600px;
  max-width: 90vw;
  margin-top: 80px;
  max-height: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease-out;
  transform: translateY(60px);
}
.list-card-search .search-wrapper .close {
  color: var(--base-3);
  font-size: 18px;
}
.list-card-search .search-background {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: -5;
}
.list-card-search .search-input-wrapper {
  display: flex;
  flex-direction: row;
  background: var(--base-3);
  padding: 10px 15px;
  height: auto;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.1);
}
.list-card-search .search-input-wrapper label {
  display: none;
}
.list-card-search .search-input-wrapper #search-global {
  flex: 1 1 75%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 10px;
}
.list-card-search #search-result-dropdown {
  min-height: 250px;
  max-height: calc(100vh - 210px);
  overflow: scroll;
  display: flex;
  flex-direction: column;
  background: var(--base);
  padding: 0px 15px;
  border-radius: 0 0px 5px 5px;
}
.list-card-search #search-result-dropdown .uk-dropdown {
  padding-left: 0;
  padding-right: 0;
  border-radius: 5px;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg {
  height: auto;
  min-width: 18px;
  width: 20px;
  max-height: 23px;
  margin-right: 14px;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-contrast-color {
  fill: var(--contrast) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-contrast-2-color {
  fill: var(--contrast-2) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-contrast-3-color {
  fill: var(--contrast-3) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-contrast-4-color {
  fill: var(--contrast-4) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-base-color {
  fill: var(--base) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-base-2-color {
  fill: var(--base-2) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-base-3-color {
  fill: var(--base-3) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg .has-accent-color {
  fill: var(--accent) !important;
}
.list-card-search #search-result-dropdown .uk-dropdown ul svg * {
  transition: all 0.7s;
}
.list-card-search #search-result-dropdown .uk-dropdown ul li a, .list-card-search #search-result-dropdown .uk-dropdown ul li button {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 0;
  background-color: transparent;
  margin-left: 0;
  margin-right: 0;
  color: var(--contrast-2);
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 5px;
  transition: all 0.4s;
}
.list-card-search #search-result-dropdown .uk-dropdown ul li a:hover, .list-card-search #search-result-dropdown .uk-dropdown ul li button:hover {
  background-color: #bbbcbd;
}
.list-card-search #search-result-dropdown .uk-dropdown ul li a:hover svg *, .list-card-search #search-result-dropdown .uk-dropdown ul li button:hover svg * {
  fill: #06a2a8;
}
.list-card-search #search-result-dropdown .uk-dropdown ul .QRLinks {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  padding: 0 16px;
}
.list-card-search #search-result-dropdown .uk-dropdown ul .QRLinks svg {
  width: 18px;
}
.list-card-search #search-result-dropdown .uk-dropdown ul .QRLinks li.QRTitle {
  flex: 1 1 100%;
  pointer-events: none;
  margin-bottom: 2px;
}
.list-card-search #search-result-dropdown .uk-dropdown ul .QRLinks li.QRTitle svg {
  margin-right: 14px;
}
.list-card-search #search-result-dropdown .uk-dropdown ul .QRLinks li.QRLink {
  flex: 1 1 50%;
}
.list-card-search #search-result-dropdown .uk-dropdown ul .QRLinks li.QRLink a {
  text-align: center;
  display: block;
  padding: 0 5px;
}
.list-card-search #search-result-dropdown .uk-dropdown ul .QRLinks li a {
  margin-bottom: 0;
}
.list-card-search #search-result-dropdown > .uk-card {
  padding: 5px;
  margin: 10px 0 0 0;
}
.list-card-search #search-result-dropdown > .uk-card .ttc-card {
  align-items: center;
}
.list-card-search #search-result-dropdown > .uk-card svg {
  max-height: 15px;
  max-width: 15px;
}
.list-card-search #search-result-dropdown > .uk-card .card-information {
  flex: 1 1 60%;
}
.list-card-search #search-result-dropdown > .uk-card form button[name="action"] {
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.list-card-search #search-result-dropdown > .uk-card .ttc-file {
  display: flex;
  flex-direction: row;
}
.list-card-search #search-result-dropdown > .uk-card .ttc-file .card-information {
  flex: 1 0 60%;
}
.list-card-search #search-result-dropdown > .uk-card .ttc-file .card-actions button {
  margin-bottom: 0;
}
.list-card-search #search-result-dropdown > .uk-card .ttc-file .file-checkbox input {
  display: none;
}
body.search-active .list-card-search .search-background {
  opacity: 1;
  z-index: 200;
  background: rgba(0, 0, 0, 0.2);
}
body.search-active .list-card-search .search-wrapper {
  transform: translateY(0px);
}
@media (max-width: 1920px) {

  #mute {
    right: 45.7%;
  }
}
@media (max-width: 1400px) {
  .site-main {
    margin: 0 20px !important;
  }
}
@media (max-width: 1367px) {

}
@media (max-width: 1200px) {
  .ttc-bigcard-pie .pie-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 15%;
    margin-bottom: 15%;
  }
  #w {
    width: 90%;
    height: 200px;
  }
  .wp-block-columns.is-style-large-gutter {
    column-gap: 2em;
  }
  body.page-template-landing-page .entry-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1180px) {
  #main .ttc-cards .ttc-card .card-information {
    max-width: inherit;
    flex-grow: 1;
  }
  .wp-block-list {
    padding-left: 20px;
  }
  .wp-block-list > li {
    margin-bottom: 5px;
  }
}
@media (max-width: 1138px) {

}
@media (max-width: 1060px) {
  .wp-block-query .columns-3.wp-block-post-template-is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #ttcModal .wp-block-media-text.is-style-small-rotate-90 .wp-block-media-text__media {
    transform: rotate(90deg);
  }
  #ttcModal .wp-block-columns {
    flex-direction: column;
  }
}
@media (max-width: 959px) {
  body.page-template-landing-page .wp-block-group.is-style-card {
    padding: 15px 25px;
  }
  body.page-template-landing-page .entry-content > .wp-block-spacer {
    max-height: 50px;
  }
  body.page-template-landing-page h2 {
    font-size: 2.2em;
  }
  body.page-template-landing-page h2 {
    font-size: 2em;
  }
  body.page-template-landing-page h3 {
    font-size: 1.5em;
  }
  body.page-template-landing-page h4 {
    font-size: 1.5em;
  }
}
@media (max-width: 781px) {
  .wp-block-media-text.is-style-small-rotate-90 .wp-block-media-text__media {
    transform: rotate(90deg);
  }
}
@media (min-width: 769px) {
  .custom-search, .searchicon {
    display: none;
  }
  .ttc-bigcard-upload, .ttc-bigcard-simple {
    justify-content: space-around;
  }
}
@media (max-width: 768px) {
  body {
    padding-bottom: 81px;
  }
  .is-margin-hidemobile {
    margin-bottom: 5px !important;
  }
  h3.is-style-hide-small {
    font-size: 16px;
  }
  .ttc-cover-iframe {
    min-height: 180px !important;
  }

  .ttc-user-simple .user-title {
    display: flex;
    flex-direction: column;
  }
  .ttc-user-simple .user-title .user-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ttc-user-simple .card-actions {
    flex-wrap: wrap;
  }
  .inside-header {
    padding-left: 20px;
    padding-right: 5px;
    padding-top: 20px;
  }
  .breadcrumbs {
    padding: 10px 10px 0 10px;
  }
  .wp-block-image {
    margin: 0;
  }
  body.page-id-25332 {
    padding-bottom: 0;
  }
  body.page-id-25332 #mute {
    right: 26.2%;
    bottom: 5%;
  }
  body.page-id-25332 #block-12 {
    display: flex;
    align-items: center;
    margin-left: 5px;
  }
  body.page-id-25332 #block-12 .block-12-style {
    margin-left: 0;
    font-size: 10px;
    color: white;
  }
  body.page-id-25332 .wp-block-columns.is-style-imagerightwithtextleft {
    flex-direction: column-reverse;
  }
  body.page-id-25332 .wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column:first-child {
    padding: 0 20px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column:first-child h2 {
    font-size: 24px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column:first-child p {
    font-size: 16px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column:first-child ul li {
    font-size: 16px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imagerightwithtextleft > .wp-block-column:first-child .has-text-align-right {
    text-align: left;
  }
  body.page-id-25332 .wp-block-columns.is-style-imagerightwithtextleft .wp-block-column > .wp-block-image {
    padding: 0 50px 0 20px;
    margin-bottom: 40px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright > .wp-block-column:first-child {
    padding: 0 10px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .wp-block-column > .wp-block-image {
    padding: 0 10px 0 40px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .wp-block-column + .is-vertically-aligned-center {
    padding: 0 20px 0 20px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .wp-block-column {
    margin-top: 1em;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .wp-block-column h2 {
    font-size: 24px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .wp-block-column p {
    font-size: 16px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .wp-block-column ul li {
    font-size: 16px;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .has-text-align-right {
    text-align: left;
  }
  body.page-id-25332 .wp-block-columns.is-style-imageleftwithtextright .wp-block-column ul {
    padding: 0 50px !important;
  }
  body.page-id-25332 .main-nav {
    display: block;
  }
  body.page-id-25332 #primary-menu {
    display: none;
  }
  body.page-id-25332 .is-style-banner h2 {
    font-size: 40px;
  }
  body.page-id-25332 .is-style-banner h3 {
    font-size: 20px;
  }
  body.page-id-25332 .is-style-banner p {
    font-size: 16px;
  }
  body.page-id-25332 .has-inline-mobile-toggle .inside-header {
    flex-direction: row;
    text-align: left;
    flex-wrap: nowrap;
  }
  body.page-id-25332 .menu-toggle {
    color: #ffffff;
  }
  body.page-id-25332 #mobile-menu-control-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
  }
  body.page-id-25332 #mobile-menu-control-wrapper .menu-bar-items {
    color: var(--base-3);
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up .wp-block-group__inner-container {
    transform: translateY(-20px);
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up .is-style-hasvideo {
    flex-direction: column-reverse;
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up .is-style-hasvideo .wp-block-column > .wp-block-cover {
    height: 100%;
    min-height: 0 !important;
    padding: 20% 0;
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up .is-style-hasvideo > .wp-block-column:not(:first-child) {
    padding: 0;
    text-align: center;
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up .is-style-hasvideo > .wp-block-column:not(:first-child) .wp-block-buttons {
    justify-content: space-around;
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up .is-style-hasvideo > .wp-block-column:not(:first-child) .wp-block-buttons .wp-block-button__link {
    font-size: 16px;
    padding: 0;
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up .is-style-hasvideo > .wp-block-column:not(:first-child) .wp-block-buttons .wp-block-button__link:after {
    font-size: 16px;
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up h2 {
    font-size: 24px !important;
  }
  body.page-id-25332 .wp-block-group.is-style-shift-up p {
    font-size: 16px !important;
  }
  body.page-id-25332 .is-style-3-column-card ul {
    margin: 0;
    padding: 0 20px;
  }
  body.page-id-25332 .is-style-3-column-card ul li {
    font-size: 16px !important;
    padding-left: 10px !important;
  }
  body.page-id-25332 .gform_wrapper .gform_description {
    font-size: 16px;
  }
  .custom-search {
    width: 100%;
    float: right;
  }
  .custom-search input[type="submit"] {
    background-color: inherit;
    border-radius: 0 5px 5px 0;
  }
  .custom-search input[type="text"] {
    border: 0;
    height: 70px;
    width: 100%;
    border-radius: 5px 0 0 5px;
  }
  .custom-search .searchform {
    width: 100%;
    text-align: center;
    background-color: #06a2a8;
    border-top: 1px solid #6e6f71;
    display: flex;
    justify-content: space-evenly;
  }
  #main .wp-block-columns .wp-block-column {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .site-main .wp-block-group__inner-container {
    padding: 20px;
  }
  .singleclientdocuments form .wp-block-columns, .singlesitedocuments form .wp-block-columns, .singletemplatedocuments form .wp-block-columns, .singlesubmission form .wp-block-columns {
    flex-wrap: wrap;
  }
  #modalbox p {
    padding: 20px;
  }
  #modalbox .uk-modal-header {
    padding: 15px 20px;
  }
  #mobile-menu-control-wrapper {
    display: none;
  }
  #masthead .header-widget {
    margin-top: 0;
    max-height: 60px;
    justify-content: center;
    margin-left: 0;
  }
  #site-navigation {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #site-navigation .inside-navigation {
    width: 100%;
    flex-grow: 1;
  }
  #site-navigation .inside-navigation .menu-toggle {
    display: none;
  }
  #site-navigation .inside-navigation #primary-menu {
    flex-grow: 1;
    background-color: #636566;
  }
  #site-navigation .inside-navigation #primary-menu ul {
    display: block;
    white-space: nowrap;
    overflow-x: scroll;
    width: 100%;
    max-width: inherit;
  }
  #site-navigation .inside-navigation #primary-menu ul li {
    width: 33%;
    text-align: center;
    display: inline-block;
  }
  #site-navigation .inside-navigation #primary-menu ul li a {
    border-right: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    margin-bottom: 0px;
    padding-top: 10px;
  }
  #site-navigation .inside-navigation #primary-menu ul li a:hover {
    background-color: inherit;
  }
  #site-navigation .inside-navigation #primary-menu ul li a:before {
    display: block;
    height: 30px;
    content: "";
    width: 30px;
    margin: 0px auto 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
  }
  #site-navigation .inside-navigation #primary-menu ul li.stafficon a, #site-navigation .inside-navigation #primary-menu ul li.homeicon a, #site-navigation .inside-navigation #primary-menu ul li.siteicon a, #site-navigation .inside-navigation #primary-menu ul li.downloadicon a, #site-navigation .inside-navigation #primary-menu ul li.editicon a, #site-navigation .inside-navigation #primary-menu ul li.emailicon a, #site-navigation .inside-navigation #primary-menu ul li.foldericon a, #site-navigation .inside-navigation #primary-menu ul li.rmetickicon a, #site-navigation .inside-navigation #primary-menu ul li.searchicon a, #site-navigation .inside-navigation #primary-menu ul li.templateicon a, #site-navigation .inside-navigation #primary-menu ul li.trashicon a, #site-navigation .inside-navigation #primary-menu ul li.usersicon a, #site-navigation .inside-navigation #primary-menu ul li.clientsicon a {
    position: relative;
    display: block;
  }
  #site-navigation .inside-navigation #primary-menu ul li.stafficon a:before {
    background-image: url("../assets/svg/staff.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.siteicon a:before {
    background-image: url("../assets/svg/site.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.homeicon a:before {
    background-image: url("../assets/svg/home.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.downloadicon a:before {
    background-image: url("../assets/svg/download.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.emailicon a:before {
    background-image: url("../assets/svg/email.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.foldericon a:before {
    background-image: url("../assets/svg/folder.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.rmetickicon a:before {
    background-image: url("../assets/svg/rmeTick.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.searchicon a:before {
    background-image: url("../assets/svg/search.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.templateicon a:before {
    background-image: url("../assets/svg/template.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.trashicon a:before {
    background-image: url("../assets/svg/trash.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.usersicon a:before {
    background-image: url("../assets/svg/users.svg");
  }
  #site-navigation .inside-navigation #primary-menu ul li.clientsicon a:before {
    background-image: url("../assets/svg/clients.svg");
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select, textarea, input {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  #main .rightsidebar {
    margin-top: 0;
    padding: 0;
    margin-bottom: 30px;
  }
  .ttc-bigcard-simple, .ttc-bigcard-upload {
    padding: 12px;
  }
  .ttc-bigcard-simple .titles, .ttc-bigcard-upload .titles {
    width: 90%;
  }
  .ttc-bigcard-simple .titles .dashboardnum, .ttc-bigcard-upload .titles .dashboardnum {
    width: 100%;
  }
  .ttc-bigcard-simple .titles .dashboardnum p.num, .ttc-bigcard-upload .titles .dashboardnum p.num {
    font-size: 1.5em;
  }
  .uk-open > .uk-modal-dialog {
    opacity: 1;
    transform: translateY(80px);
  }
  p.has-background {
    padding: 0.25em 1.375em;
  }
  #modal-pdf #submission {
    max-height: 350px;
  }
  #modal-pdf #submission .ttc-modal-size {
    overflow-y: scroll;
    height: 350px;
  }
  figure.advgb-table {
    max-width: 100%;
    overflow: auto;
    display: block;
  }
  figure.advgb-table table {
    margin: 0;
  }
  figure.advgb-table table.repeater .label {
    display: none;
  }
  figure.advgb-table table.repeater .sortable-controls {
    transform: translate(-50%, -50%);
  }
  figure.advgb-table table.repeater tbody td label {
    display: block !important;
    padding: 10px;
  }
  figure.advgb-table table.repeater tr.pseudo-header {
    display: none;
  }
  figure.advgb-table table.is-style-mobile-has-info {
    table-layout: auto !important;
    width: 1380px;
    max-width: initial;
  }
  figure.advgb-table table.is-style-mobile-has-info img, figure.advgb-table table.is-style-mobile-has-info canvas {
    max-width: none;
  }
  figure.advgb-table table.is-style-padding tbody td {
    display: block;
    width: auto !important;
  }
  figure.advgb-table table.is-style-padding tbody td:before {
    content: attr(data-th);
    text-align: center;
  }
  figure.advgb-table table.is-style-padding canvas {
    max-width: none;
  }
  figure.advgb-table table.is-style-padding .formeo-row {
    flex-direction: column;
  }
  figure.advgb-table table.is-style-padding .formeo-row .column {
    width: 100% !important;
    display: flex;
  }
  figure.advgb-table table.is-style-padding .formeo-row .column:before {
    content: attr(data-th);
    display: block;
    text-align: center;
  }
  .content-area main > form > div .formeo-row-wrap {
    display: inline-block;
    width: 100%;
  }
  .content-area main > form > div .formeo-row-wrap .formeo-row {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    padding-top: 10px;
    display: block;
  }
  .content-area main > form > div .formeo-row-wrap .formeo-row:first-child {
    border: none;
    margin-top: 0;
    padding-top: 0px;
  }
  .content-area main > form > div .formeo-row-wrap .formeo-row .column {
    display: block;
    width: inherit !important;
    padding: 0 !important;
  }
  .content-area main > form > div .formeo-row-wrap .formeo-row .column .fieldWrapper.ttcinput > label {
    display: block;
  }
  .content-area main > form > div .formeo-row-wrap .formeo-row .column .fieldWrapper.ttcinput.ttcdate > input {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .content-area main > form > div .formeo-row-wrap .formeo-row .column .fieldWrapper.ttcinput.ttcdate > label {
    display: block;
  }
  .content-area main > form > div .formeo-row-wrap .formeo-row .column .fieldWrapper.ttcinput.ttcdate ::placeholder {
    content: "dd/mm/yyy";
  }
  .ttc-posts2 {
    margin-left: -15px;
  }
  .wp-block-columns.is-not-stacked-on-mobile {
    flex-wrap: nowrap;
  }
  .ttc-card .pie-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 5%;
    margin-bottom: 5%;
  }
  .site-dashboard {
    display: flex;
  }
  .site-dashboard .ttc-posts2 {
    margin-top: 0;
    margin-left: -15px;
    flex-basis: 0;
    flex-grow: 1;
  }
  .site-dashboard .ttc-posts {
    margin-top: 0;
    margin-left: 0;
    flex-basis: 0;
    flex-grow: 1;
  }
  .site-dashboard .ttc-card .pie-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 8%;
    margin-bottom: 8%;
  }
  #main .wp-block-column:not(:first-child) {
    margin-left: 0;
  }
  #main .ttc-cards .ttc-card {
    flex-direction: row;
  }
  #main .ttc-cards .ttc-card .card-actions {
    margin-top: 0px;
    align-items: flex-start;
    flex-grow: 0;
    justify-content: flex-end;
    display: flex;
    flex-wrap: nowrap;
  }
  #main .ttc-cards .ttc-card .card-information {
    flex-grow: 0;
    max-width: inherit;
  }
  #main .ttc-cards .ttc-card .card-information input[type="checkbox"] {
    padding-right: 5px;
  }
  #main .ttc-cards .ttc-card.ttc-terms-nested .card-information {
    flex-grow: 1;
    width: 100%;
  }
  #main .ttc-cards .ttc-card.ttc-terms-nested .card-information .toggle-child {
    width: 100%;
    position: relative;
    padding-right: 25px;
    display: flex;
    flex-direction: row;
  }
  #main .ttc-cards .ttc-card.ttc-terms-nested .card-information .toggle-child i {
    position: absolute;
    right: 0;
  }
  #main .ttc-form.clientdocuments #modal-example select, #main .ttc-form.clientdocuments #modal-example input, #main .ttc-form.clientdocuments #modal-example textarea {
    width: 100%;
    margin-bottom: 10px;
  }
  #main .ttc-form .bulk-actions {
    justify-content: space-between;
    left: 10px;
    right: 10px;
  }
  #main .ttc-form .bulk-actions.show-bulk {
    bottom: 90px;
  }
  body.single-sites #main .picturecolumns .wp-block-column, body.page-id-206 #main .picturecolumns .wp-block-column {
    margin-bottom: 0;
  }
  body.single-sites #main .picturecolumns .wp-block-column h1, body.page-id-206 #main .picturecolumns .wp-block-column h1 {
    font-size: 12px;
    font-weight: 700;
  }
  .wp-block-query.is-style-slider.tab-slider {
    flex-direction: column !important;
  }
  .wp-block-query.is-style-slider.tab-slider > ul.slider-tab-nav {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 0 !important;
    padding-bottom: 10px !important;
    border-radius: 10px 10px 0 0 !important;
    overflow: hidden;
    margin: 0 10px -10px 10px !important;
  }
  .wp-block-query.is-style-slider.tab-slider > ul.slider-tab-nav > li {
    display: flex;
    flex: 1 1 20%;
  }
  .wp-block-query.is-style-slider.tab-slider > ul.slider-tab-nav > li a {
    padding: 10px !important;
    text-align: center;
  }
  #ttcModal .wp-block-post-template-is-layout-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}
