/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled=true],
[aria-disabled=true] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
template {
  display: none;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Thin";
  src: url("../../fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Thin.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-ThinItalic";
  src: url("../../fonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-ThinItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Light";
  src: url("../../fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Light.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-LightItalic";
  src: url("../../fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../../fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Regular.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-RegularItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-RegularItalic";
  src: url("../../fonts/roboto/Roboto-RegularItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-RegularItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("../../fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Medium.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-MediumItalic";
  src: url("../../fonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../../fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Bold.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-BoldItalic";
  src: url("../../fonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-Black.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Black";
  src: url("../../fonts/roboto/Roboto-Black.woff2") format("woff2"), url("../../fonts/roboto/Roboto-Black.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-BlackItalic";
  src: url("../../fonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../../fonts/roboto/Roboto-BlackItalic.woff") format("woff");
}
:root, :host {
  --fa-font-solid: normal 900 1em/1 'Font Awesome 7 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 7 Free';
  --fa-font-light: normal 300 1em/1 'Font Awesome 7 Pro';
  --fa-font-thin: normal 100 1em/1 'Font Awesome 7 Pro';
  --fa-font-duotone: normal 900 1em/1 'Font Awesome 7 Duotone';
  --fa-font-duotone-regular: normal 400 1em/1 'Font Awesome 7 Duotone';
  --fa-font-duotone-light: normal 300 1em/1 'Font Awesome 7 Duotone';
  --fa-font-duotone-thin: normal 100 1em/1 'Font Awesome 7 Duotone';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 7 Brands';
  --fa-font-sharp-solid: normal 900 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-regular: normal 400 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-light: normal 300 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-thin: normal 100 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-duotone-solid: normal 900 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-sharp-duotone-regular: normal 400 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-sharp-duotone-light: normal 300 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-sharp-duotone-thin: normal 100 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-slab-regular: normal 400 1em/1 'Font Awesome 7 Slab';
  --fa-font-slab-press-regular: normal 400 1em/1 'Font Awesome 7 Slab Press';
  --fa-font-whiteboard-semibold: normal 600 1em/1 'Font Awesome 7 Whiteboard';
  --fa-font-thumbprint-light: normal 300 1em/1 'Font Awesome 7 Thumbprint';
  --fa-font-notdog-solid: normal 900 1em/1 'Font Awesome 7 Notdog';
  --fa-font-notdog-duo-solid: normal 900 1em/1 'Font Awesome 7 Notdog Duo';
  --fa-font-etch-solid: normal 900 1em/1 'Font Awesome 7 Etch';
  --fa-font-graphite-thin: normal 100 1em/1 'Font Awesome 7 Graphite';
  --fa-font-jelly-regular: normal 400 1em/1 'Font Awesome 7 Jelly';
  --fa-font-jelly-fill-regular: normal 400 1em/1 'Font Awesome 7 Jelly Fill';
  --fa-font-jelly-duo-regular: normal 400 1em/1 'Font Awesome 7 Jelly Duo';
  --fa-font-chisel-regular: normal 400 1em/1 'Font Awesome 7 Chisel';
  --fa-font-utility-semibold: normal 600 1em/1 'Font Awesome 7 Utility';
  --fa-font-utility-duo-semibold: normal 600 1em/1 'Font Awesome 7 Utility Duo';
  --fa-font-utility-fill-semibold: normal 600 1em/1 'Font Awesome 7 Utility Fill';
}

.svg-inline--fa {
  box-sizing: content-box;
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
  width: var(--fa-width, 1.25em);
}

.svg-inline--fa.fa-2xs {
  vertical-align: 0.1em;
}

.svg-inline--fa.fa-xs {
  vertical-align: 0em;
}

.svg-inline--fa.fa-sm {
  vertical-align: -0.0714285714em;
}

.svg-inline--fa.fa-lg {
  vertical-align: -0.2em;
}

.svg-inline--fa.fa-xl {
  vertical-align: -0.25em;
}

.svg-inline--fa.fa-2xl {
  vertical-align: -0.3125em;
}

.svg-inline--fa.fa-pull-left,
.svg-inline--fa .fa-pull-start {
  float: inline-start;
  margin-inline-end: var(--fa-pull-margin, 0.3em);
}

.svg-inline--fa.fa-pull-right,
.svg-inline--fa .fa-pull-end {
  float: inline-end;
  margin-inline-start: var(--fa-pull-margin, 0.3em);
}

.svg-inline--fa.fa-li {
  width: var(--fa-li-width, 2em);
  inset-inline-start: calc(-1 * var(--fa-li-width, 2em));
  inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */
}

.fa-layers-counter, .fa-layers-text {
  display: inline-block;
  position: absolute;
  text-align: center;
}

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: var(--fa-width, 1.25em);
}

.fa-layers .svg-inline--fa {
  inset: 0;
  margin: auto;
  position: absolute;
  transform-origin: center center;
}

.fa-layers-text {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.fa-layers-counter {
  background-color: var(--fa-counter-background-color, #ff253a);
  border-radius: var(--fa-counter-border-radius, 1em);
  box-sizing: border-box;
  color: var(--fa-inverse, #fff);
  line-height: var(--fa-counter-line-height, 1);
  max-width: var(--fa-counter-max-width, 5em);
  min-width: var(--fa-counter-min-width, 1.5em);
  overflow: hidden;
  padding: var(--fa-counter-padding, 0.25em 0.5em);
  right: var(--fa-right, 0);
  text-overflow: ellipsis;
  top: var(--fa-top, 0);
  transform: scale(var(--fa-counter-scale, 0.25));
  transform-origin: top right;
}

.fa-layers-bottom-right {
  bottom: var(--fa-bottom, 0);
  right: var(--fa-right, 0);
  top: auto;
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: bottom right;
}

.fa-layers-bottom-left {
  bottom: var(--fa-bottom, 0);
  left: var(--fa-left, 0);
  right: auto;
  top: auto;
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: bottom left;
}

.fa-layers-top-right {
  top: var(--fa-top, 0);
  right: var(--fa-right, 0);
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: top right;
}

.fa-layers-top-left {
  left: var(--fa-left, 0);
  right: auto;
  top: var(--fa-top, 0);
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: top left;
}

.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; /* converts a 10px size into an em-based value that's relative to the scale's 16px base */
  line-height: 0.1em; /* sets the line-height of the icon back to that of it's parent */
  vertical-align: 0.225em; /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-xs {
  font-size: 0.75em; /* converts a 12px size into an em-based value that's relative to the scale's 16px base */
  line-height: 0.0833333333em; /* sets the line-height of the icon back to that of it's parent */
  vertical-align: 0.125em; /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-sm {
  font-size: 0.875em; /* converts a 14px size into an em-based value that's relative to the scale's 16px base */
  line-height: 0.0714285714em; /* sets the line-height of the icon back to that of it's parent */
  vertical-align: 0.0535714286em; /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-lg {
  font-size: 1.25em; /* converts a 20px size into an em-based value that's relative to the scale's 16px base */
  line-height: 0.05em; /* sets the line-height of the icon back to that of it's parent */
  vertical-align: -0.075em; /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-xl {
  font-size: 1.5em; /* converts a 24px size into an em-based value that's relative to the scale's 16px base */
  line-height: 0.0416666667em; /* sets the line-height of the icon back to that of it's parent */
  vertical-align: -0.125em; /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-2xl {
  font-size: 2em; /* converts a 32px size into an em-based value that's relative to the scale's 16px base */
  line-height: 0.03125em; /* sets the line-height of the icon back to that of it's parent */
  vertical-align: -0.1875em; /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-width-auto {
  --fa-width: auto;
}

.fa-fw,
.fa-width-fixed {
  --fa-width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-inline-start: var(--fa-li-margin, 2.5em);
  padding-inline-start: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  inset-inline-start: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

/* Heads Up: Bordered Icons will not be supported in the future!
  - This feature will be deprecated in the next major release of Font Awesome (v8)!
  - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.
*/
/* Notes:
* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)
* --@{v.$css-prefix}-border-padding =
  ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment)
  ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)
*/
.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.0625em);
  box-sizing: var(--fa-border-box-sizing, content-box);
  padding: var(--fa-border-padding, 0.1875em 0.25em);
}

.fa-pull-left,
.fa-pull-start {
  float: inline-start;
  margin-inline-end: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right,
.fa-pull-end {
  float: inline-end;
  margin-inline-start: 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: none !important;
    transition: none !important;
  }
}
@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, 0));
}

.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
  fill: black;
}

.svg-inline--fa.fa-inverse {
  fill: var(--fa-inverse, #fff);
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

.svg-inline--fa.fa-stack-1x {
  --fa-width: 1.25em;
  height: 1em;
  width: var(--fa-width);
}

.svg-inline--fa.fa-stack-2x {
  --fa-width: 2.5em;
  height: 2em;
  width: var(--fa-width);
}

.fa-stack-1x,
.fa-stack-2x {
  inset: 0;
  margin: auto;
  position: absolute;
  z-index: var(--fa-stack-z-index, auto);
}

:root {
  --bg-color: #f4f4f4;
  --accent-color: #279536;
  --accent-color-lite: #024c11;
  --text-color: #333;
  --text-color-lite: #555;
  --text-color-invert: #eee;
  --link-color: var(--text-color);
  --link-color-hover: var(--accent-color);
  --link-color-invert: var(--text-color-invert);
  --background-size: cover;
  --background-position: center top no-repeat;
  --nav-height: 5rem;
  --nav-height-full: 24rem;
  --footer-nav-height: 3rem;
}
@media (width >= 768px) {
  :root {
    --background-position: center center no-repeat;
    --nav-height: 7rem;
  }
  :root header nav {
    flex-flow: row;
    justify-content: center;
    column-gap: 3rem;
  }
  :root header nav .nav-bar {
    width: auto;
  }
  :root header nav .nav-bar a.logo img {
    width: 12rem;
  }
  :root header nav ul.menu,
  :root header nav ul.phones,
  :root header nav ul.socials {
    display: flex;
  }
  :root header nav #btn-open-menu,
  :root header nav #btn-close-menu {
    display: none !important;
  }
  :root main article .w-container {
    column-gap: 2rem;
  }
  :root main article h2 {
    width: 100%;
    margin-top: 5rem;
  }
  :root main article div.box {
    max-width: 25rem;
  }
  :root main div.leader.extend .search-result .search-result-header .two-lines {
    align-items: initial !important;
  }
  :root main div.leader.extend .search-result details ul.full-route li div.city-point {
    flex-flow: row;
    column-gap: 0.5rem;
  }
  :root footer nav {
    column-gap: 4rem;
  }
  :root footer nav ul.phones {
    column-gap: 2rem;
  }
  :root footer nav ul.phones li a {
    font-size: 1.2rem;
  }
  :root footer nav ul.socials {
    column-gap: 0.5rem;
  }
  :root footer nav ul.socials li {
    font-size: 2rem;
  }
}

body {
  display: flex;
  flex-flow: column nowrap;
  font-family: "Roboto", sans-serif;
  background: url("/images/bg3.jpg") var(--background-position);
  background-size: var(--background-size);
  background-attachment: fixed;
  color: var(--text-color);
}

header {
  position: relative;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  background: #f6f6f5;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  padding: 0.5rem 1.5rem;
  width: 100%;
  z-index: 100;
}
header nav .nav-bar {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
}
header nav .nav-bar a.logo {
  display: flex;
}
header nav .nav-bar a.logo img {
  width: 8rem;
}
header nav .nav-bar #btn-open-menu,
header nav .nav-bar #btn-close-menu {
  font-size: 2rem;
  display: block;
}
header nav .nav-bar #btn-close-menu {
  display: none;
}
header nav ul.menu {
  display: none;
  margin: 2rem 0;
  font-size: 1.3rem;
  column-gap: 1.2rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
header nav ul.menu li {
  color: var(--link-color);
}
header nav ul.menu li:hover {
  color: var(--link-color-hover);
}
header nav ul.menu li a {
  text-decoration: none;
  color: inherit;
}
header nav ul.phones {
  display: none;
  flex-flow: column;
  justify-content: center;
  row-gap: 0.8rem;
}
header nav ul.phones li {
  color: var(--link-color-hover);
}
header nav ul.phones li a {
  text-decoration: none;
  text-wrap-mode: nowrap;
  color: inherit;
  font-weight: 700;
  font-size: 1.2rem;
}
header nav ul.socials {
  display: none;
  flex-flow: row;
  align-items: center;
  column-gap: 0.8rem;
}
header nav ul.socials li {
  font-size: 2.8rem;
}
header nav ul.socials li.whatsapp {
  color: #8de475;
}
header nav ul.socials li.telegram {
  color: #24a1de;
}
header nav ul.socials li.max-messenger {
  color: #834bdc;
}
header nav ul.socials li a {
  color: inherit;
}
header nav.shown {
  height: var(--nav-height-full);
  flex-flow: column;
  padding-bottom: 2rem;
}
header nav.shown ul.menu,
header nav.shown ul.phones,
header nav.shown ul.socials {
  display: flex;
}
header nav.shown #btn-open-menu {
  display: none;
}
header nav.shown #btn-close-menu {
  display: block;
}

main {
  display: flex;
  flex-flow: column nowrap;
  flex-grow: 1;
}
main div.leader {
  display: flex;
  height: 60vh;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1rem;
}
main div.leader form {
  position: relative;
  display: flex;
  row-gap: 2rem;
  box-sizing: border-box;
  flex-flow: column;
  width: 40rem;
  background: rgba(238, 238, 238, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  padding: 2rem;
}
main div.leader form label {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  column-gap: 3rem;
}
main div.leader form label span {
  width: 100%;
  text-transform: uppercase;
  font-weight: 300;
}
main div.leader form label input {
  width: 100%;
  font-size: 1.5rem;
  background: none;
  border-bottom: 2px #aaa solid;
  color: var(--text-color);
  font-weight: 300;
}
main div.leader form label input::-webkit-datetime-edit {
  color: #777;
}
main div.leader form button {
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  background: var(--accent-color);
  color: var(--text-color-invert);
  text-transform: uppercase;
  user-select: none;
}
main div.leader form button[disabled] {
  pointer-events: none;
  touch-action: none;
  filter: contrast(0.2) brightness(1.5);
}
main div.leader.collapse {
  height: auto;
}
main div.leader.extend {
  height: initial;
  flex-flow: column;
  row-gap: 1rem;
}
main div.leader.extend .search-result {
  position: relative;
  display: flex;
  row-gap: 2rem;
  box-sizing: border-box;
  flex-flow: column;
  width: 100%;
  max-width: 40rem;
  background: rgba(238, 238, 238, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  padding: 2rem;
}
main div.leader.extend .search-result .search-result-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  column-gap: 1rem;
  row-gap: 1rem;
}
main div.leader.extend .search-result .search-result-header label {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  flex-grow: 1;
  column-gap: 3rem;
}
main div.leader.extend .search-result .search-result-header label span {
  width: 100%;
  text-transform: uppercase;
  font-weight: 300;
}
main div.leader.extend .search-result .search-result-header label select {
  width: 100%;
  font-size: 1.5rem;
  background: none;
  border-bottom: 2px #aaa solid;
  color: var(--text-color);
  font-weight: 300;
}
main div.leader.extend .search-result .search-result-header label select::-webkit-datetime-edit {
  color: #777;
}
main div.leader.extend .search-result .search-result-header .two-lines {
  display: flex;
  flex-flow: column;
}
main div.leader.extend .search-result .search-result-header .two-lines.start-city {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-color);
}
main div.leader.extend .search-result .search-result-header .two-lines.end-city {
  font-size: 1.5rem;
  font-weight: 400;
  align-items: flex-end;
  color: var(--accent-color);
}
main div.leader.extend .search-result .search-result-header .two-lines.kpp-point {
  font-size: 1.5rem;
  font-weight: 300;
}
main div.leader.extend .search-result .search-result-header .two-lines.duration {
  font-size: 1.5rem;
  font-weight: 300;
}
main div.leader.extend .search-result .search-result-header .two-lines.schedule {
  font-size: 1.5rem;
  font-weight: 300;
  align-items: flex-end;
}
main div.leader.extend .search-result .search-result-header .two-lines.bustype {
  font-size: 1.5rem;
  font-weight: 300;
}
main div.leader.extend .search-result .search-result-header .two-lines.price {
  font-size: 1.5rem;
  font-weight: 400;
  align-items: flex-end;
  color: var(--accent-color);
}
main div.leader.extend .search-result .search-result-header .two-lines span.mini {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-color-lite);
}
main div.leader.extend .search-result details summary {
  user-select: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 300;
}
main div.leader.extend .search-result details:open summary {
  padding-bottom: 1rem;
}
main div.leader.extend .search-result details ul.full-route {
  display: flex;
  flex-flow: column;
  row-gap: 1rem;
  border-left: 0.2rem solid #777;
  margin-left: 0.45rem;
}
main div.leader.extend .search-result details ul.full-route li {
  display: flex;
  flex-flow: row;
}
main div.leader.extend .search-result details ul.full-route li div.time {
  margin-right: 1rem;
}
main div.leader.extend .search-result details ul.full-route li div.city-point {
  display: flex;
  flex-flow: column;
}
main div.leader.extend .search-result details ul.full-route li::before {
  display: block;
  width: 1rem;
  height: 1rem;
  margin: 0.2rem 0.75rem 0 -0.55rem;
  border-radius: 0.5rem;
  border: 0.1rem solid #ddd;
  outline: 0.1rem solid #777;
  background: #ddd;
  content: "";
}
main div.leader.extend .search-result details ul.full-route li.subroute::before {
  filter: brightness(1.5);
  background: #444;
  border: 0.1rem solid #999;
}
main div.leader.extend .search-result details ul.full-route li.subroute.active::before {
  background: var(--accent-color);
}
main div.leader.extend .search-result button {
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  background: var(--accent-color);
  color: var(--text-color-invert);
  text-transform: uppercase;
  user-select: none;
}
main article {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  background: #fff;
}
main article .w-container {
  padding: 1rem;
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main article h2 {
  font-size: 1.7rem;
  display: block;
  text-align: center;
  margin: 1.5rem 0;
}
main article div.box {
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  margin: 1rem 0;
  padding: 2rem 1rem 2rem;
  border: solid 1px #f3f3f3;
  border-radius: 1rem;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
}
main article div.box h3 {
  font-size: 1.4rem;
}
main article div.box p {
  text-align: center;
  font-style: italic;
  color: #555;
  margin-top: 1rem;
}
main article img {
  display: flex;
  margin: 1rem auto;
}
main article p {
  margin-bottom: 1rem;
  width: 100%;
}
main article p a {
  color: var(--link-color-hover);
}
main article ul {
  width: 100%;
  list-style: disc;
  margin-left: 2rem;
}

footer {
  position: sticky;
  bottom: -20rem;
  z-index: 10;
}
footer nav {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  column-gap: 0.6rem;
  height: var(--footer-nav-height);
  padding: 0.5rem 0.5rem;
  background: var(--accent-color);
}
footer nav ul.phones {
  display: flex;
  flex-flow: row;
  column-gap: 0.4rem;
}
footer nav ul.phones li {
  color: var(--link-color-invert);
}
footer nav ul.phones li a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: 0.8rem;
}
footer nav ul.socials {
  display: flex;
  flex-flow: row;
  align-items: center;
  column-gap: 0.4rem;
}
footer nav ul.socials li {
  font-size: 1.2rem;
}
footer nav ul.socials li.whatsapp {
  color: #fff;
}
footer nav ul.socials li.telegram {
  color: #fff;
}
footer nav ul.socials li.max-messenger {
  color: #fff;
}
footer nav ul.socials li a {
  color: inherit;
}
footer nav {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
}
footer div.info-block {
  position: relative;
  padding: 1rem;
  box-sizing: border-box;
  height: 20rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(0, var(--accent-color-lite), var(--accent-color));
  z-index: -1;
}
footer div.info-block span {
  color: var(--text-color-invert);
  font-size: 0.9rem;
}
footer div.info-block .additional-links {
  display: flex;
  flex-flow: column;
  align-items: center;
}
footer div.info-block .additional-links a {
  color: var(--link-color-invert);
}
footer div.info-block img.logo {
  height: 4rem;
  filter: contrast(0) brightness(0) invert(0.95);
}

div.overlay {
  position: fixed;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  pointer-events: auto;
  touch-action: none;
}
div.overlay.hidden {
  display: none;
}
div.overlay form#orderForm {
  pointer-events: auto;
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-flow: column;
  row-gap: 1rem;
  max-width: 40rem;
  margin: 2rem;
  background: #eeeeee;
  border-radius: 1rem;
  padding: 2rem;
  min-height: 20rem;
}
div.overlay form#orderForm label {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 1rem;
}
div.overlay form#orderForm label span {
  width: 100%;
  text-transform: uppercase;
  font-weight: 300;
}
div.overlay form#orderForm label i {
  width: auto;
  text-transform: uppercase;
  font-weight: 400;
}
div.overlay form#orderForm label input {
  width: 100%;
  font-size: 1.2rem;
  background: none;
  border-bottom: 2px #aaa solid;
  color: var(--text-color);
  font-weight: 300;
}
div.overlay form#orderForm label input::-webkit-datetime-edit {
  color: #777;
}
div.overlay form#orderForm label input.read-only {
  display: block;
  font-size: 1rem;
  border: none;
  text-transform: uppercase;
  font-weight: 400;
}
div.overlay form#orderForm span {
  color: var(--text-color);
}
div.overlay form#orderForm span input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
}
div.overlay form#orderForm span a {
  color: inherit;
}
div.overlay form#orderForm button {
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  background: var(--accent-color);
  color: var(--text-color-invert);
  text-transform: uppercase;
  user-select: none;
}
div.overlay form#orderForm button[id] {
  position: absolute;
  background: transparent;
  color: var(--text-color);
  right: 0;
  top: 0;
  font-size: 1.5rem;
}
div.overlay form#orderForm button[disabled] {
  pointer-events: none;
  touch-action: none;
  filter: contrast(0.2) brightness(1.5);
}

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