@charset "UTF-8";

/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

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

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

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

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

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

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

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

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

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

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

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

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


strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

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

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

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

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

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

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

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

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

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

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

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

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

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

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

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

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

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

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

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


dl,
h1,
h2,
h3,
hr,
p {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}


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

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -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"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

table {
  border-collapse: collapse;
}

h1,
h2,
h3 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */


code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
iframe {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-opacity: 1;
  border-color: rgba(228, 228, 231, var(--tw-border-opacity));
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

.visible{
  visibility: visible;
}

.invisible{
  visibility: hidden;
}

.static{
  position: static;
}

.relative{
  position: relative;
}

.z-10{
  z-index: 10;
}

.z-30{
  z-index: 30;
}

.order-1{
  order: 1;
}

.order-2{
  order: 2;
}

.col-span-1{
  grid-column: span 1 / span 1;
}

.col-span-3{
  grid-column: span 3 / span 3;
}

.row-start-1{
  grid-row-start: 1;
}

.float-right{
  float: right;
}

.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.-mx-8{
  margin-left: -2rem;
  margin-right: -2rem;
}

.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-12{
  margin-top: 3rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.mr-8{
  margin-right: 2rem;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.mb-10{
  margin-bottom: 2.5rem;
}

.mb-16{
  margin-bottom: 4rem;
}

.mb-20{
  margin-bottom: 5rem;
}

.mb-24{
  margin-bottom: 6rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.contents{
  display: contents;
}

.hidden{
  display: none;
}

.h-1{
  height: 0.25rem;
}

.h-20{
  height: 5rem;
}

.h-56{
  height: 14rem;
}

.h-full{
  height: 100%;
}

.w-8{
  width: 2rem;
}

.w-12{
  width: 3rem;
}

.w-24{
  width: 6rem;
}

.w-auto{
  width: auto;
}

.w-1\/2{
  width: 50%;
}

.w-1\/3{
  width: 33.333333%;
}

.w-full{
  width: 100%;
}

.w-fit-content{
  width: -moz-fit-content;
  width: fit-content;
}

@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse{
  50%{
    opacity: .5;
  }
}

@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.resize{
  resize: both;
}

.auto-rows-max{
  grid-auto-rows: max-content;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flex-row{
  flex-direction: row;
}

.flex-col{
  flex-direction: column;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-end{
  align-items: flex-end;
}

.items-center{
  align-items: center;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.gap-2{
  gap: 0.5rem;
}

.gap-4{
  gap: 1rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-8{
  gap: 2rem;
}

.gap-y-3{
  row-gap: 0.75rem;
}

.overflow-y-hidden{
  overflow-y: hidden;
}

.overflow-y-scroll{
  overflow-y: scroll;
}

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.border{
  border-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-b-2{
  border-bottom-width: 2px;
}

.border-b-4{
  border-bottom-width: 4px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgba(212, 212, 216, var(--tw-border-opacity));
}

.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgba(161, 161, 170, var(--tw-border-opacity));
}

.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}

.border-rally-green{
  --tw-border-opacity: 1;
  border-color: rgba(122, 194, 79, var(--tw-border-opacity));
}

.border-dark-green{
  --tw-border-opacity: 1;
  border-color: rgba(93, 114, 91, var(--tw-border-opacity));
}

.border-dark-grey{
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.border-light-grey{
  --tw-border-opacity: 1;
  border-color: rgba(208, 208, 208, var(--tw-border-opacity));
}

.border-mint-green{
  --tw-border-opacity: 1;
  border-color: rgba(229, 232, 228, var(--tw-border-opacity));
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgba(244, 244, 245, var(--tw-bg-opacity));
}

.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgba(228, 228, 231, var(--tw-bg-opacity));
}

.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgba(212, 212, 216, var(--tw-bg-opacity));
}

.bg-red-200{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}

.bg-green-200{
  --tw-bg-opacity: 1;
  background-color: rgba(187, 247, 208, var(--tw-bg-opacity));
}

.bg-rally-green{
  --tw-bg-opacity: 1;
  background-color: rgba(122, 194, 79, var(--tw-bg-opacity));
}

.bg-dark-grey{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-lighter-grey{
  --tw-bg-opacity: 1;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity));
}

.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:bg-dark-grey:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-cover{
  background-size: cover;
}

.bg-bottom{
  background-position: bottom;
}

.bg-center{
  background-position: center;
}

.bg-no-repeat{
  background-repeat: no-repeat;
}

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.p-6{
  padding: 1.5rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-16{
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-6{
  padding-top: 1.5rem;
}

.pt-10{
  padding-top: 2.5rem;
}

.pr-2{
  padding-right: 0.5rem;
}

.pb-1{
  padding-bottom: 0.25rem;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pl-2{
  padding-left: 0.5rem;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.font-special{
  font-family: Oswald, sans-serif;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-thin{
  font-weight: 100;
}

.font-normal{
  font-weight: 400;
}

.font-semibold{
  font-weight: 600;
}

.font-bold{
  font-weight: 700;
}

.uppercase{
  text-transform: uppercase;
}

.italic{
  font-style: italic;
}

.leading-loose{
  line-height: 2;
}

.text-black{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-red-500{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.text-rally-green{
  --tw-text-opacity: 1;
  color: rgba(122, 194, 79, var(--tw-text-opacity));
}

.text-dark-grey{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-light-grey{
  --tw-text-opacity: 1;
  color: rgba(208, 208, 208, var(--tw-text-opacity));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:text-rally-green:hover{
  --tw-text-opacity: 1;
  color: rgba(122, 194, 79, var(--tw-text-opacity));
}

.hover\:text-dark-grey:hover{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.underline{
  text-decoration: underline;
}

.hover\:no-underline:hover{
  text-decoration: none;
}

.hover\:opacity-75:hover{
  opacity: 0.75;
}

.hover\:opacity-90:hover{
  opacity: 0.9;
}

*, ::before, ::after{
  --tw-shadow: 0 0 #0000;
}

*, ::before, ::after{
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.filter{
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition-colors{
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-500{
  transition-duration: 500ms;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */


.fas,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

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

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-align-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-file-excel:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-instagram-square:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-pencil-alt:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-users:before {
  content: "";
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
  font-family: "Font Awesome 5 Free";

  font-style: normal;

  font-weight: 400;

  font-display: block;

  src: url("/webfonts/fa-regular-400.eot");

  src: url("/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/webfonts/fa-regular-400.woff2") format("woff2"), url("/webfonts/fa-regular-400.woff") format("woff"), url("/webfonts/fa-regular-400.ttf") format("truetype"), url("/webfonts/fa-regular-400.svg#fontawesome") format("svg");
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
  font-family: "Font Awesome 5 Brands";

  font-style: normal;

  font-weight: 400;

  font-display: block;

  src: url("/webfonts/fa-brands-400.eot");

  src: url("/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/webfonts/fa-brands-400.woff2") format("woff2"), url("/webfonts/fa-brands-400.woff") format("woff"), url("/webfonts/fa-brands-400.ttf") format("truetype"), url("/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
  font-family: "Font Awesome 5 Free";

  font-style: normal;

  font-weight: 900;

  font-display: block;

  src: url("/webfonts/fa-solid-900.eot");

  src: url("/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/webfonts/fa-solid-900.woff2") format("woff2"), url("/webfonts/fa-solid-900.woff") format("woff"), url("/webfonts/fa-solid-900.ttf") format("truetype"), url("/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}


.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/** Alerts **/

.alert {
  border-left-width: 4px;
  padding: 1rem;
}

.alert--success {
  --tw-border-opacity: 1;
  border-color: rgba(20, 184, 166, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(204, 251, 241, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(19, 78, 74, var(--tw-text-opacity));
}

.alert--info {
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}

.alert--warning {
  --tw-border-opacity: 1;
  border-color: rgba(249, 115, 22, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 237, 213, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(194, 65, 12, var(--tw-text-opacity));
}

.alert--error {
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-text-opacity));
}

input[type=text]:not(.reset), input[type=email]:not(.reset), input[type=phone]:not(.reset), input[type=color]:not(.reset), input[type=password]:not(.reset), select:not(.reset), textarea:not(.reset){
  width: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(212, 212, 216, var(--tw-border-opacity));
  padding: 0.5rem;
}

.button {
  border-radius: 0.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 500ms;
}

.button--green {
  --tw-bg-opacity: 1;
  background-color: rgba(122, 194, 79, var(--tw-bg-opacity));
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.button--green:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(122, 194, 79, var(--tw-text-opacity));
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.v-toast--fade-out {
  animation-name: fadeOut;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.v-toast--fade-in-down {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.v-toast--fade-in-up {
  animation-name: fadeInUp;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 150ms ease-out;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.v-toast {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  overflow: hidden;
  z-index: 1052;
  pointer-events: none;
}

.v-toast__item {
  display: inline-flex;
  align-items: center;
  animation-duration: 150ms;
  margin: 0.5em 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  border-radius: 0.25em;
  pointer-events: auto;
  opacity: 0.92;
  color: #fff;
  min-height: 3em;
  cursor: pointer;
}

.v-toast__item--success {
  background-color: #28a745;
}

.v-toast__item--info {
  background-color: #17a2b8;
}

.v-toast__item--warning {
  background-color: #ffc107;
}

.v-toast__item--error {
  background-color: #dc3545;
}

.v-toast__item--default {
  background-color: #343a40;
}

.v-toast__item.v-toast__item--top, .v-toast__item.v-toast__item--bottom {
  align-self: center;
}

.v-toast__item.v-toast__item--top-right, .v-toast__item.v-toast__item--bottom-right {
  align-self: flex-end;
}

.v-toast__item.v-toast__item--top-left, .v-toast__item.v-toast__item--bottom-left {
  align-self: flex-start;
}

.v-toast__text {
  margin: 0;
  padding: 0.5em 1em;
  word-break: break-word;
}

.v-toast__icon {
  display: none;
}

.v-toast.v-toast--top {
  flex-direction: column;
}

.v-toast.v-toast--bottom {
  flex-direction: column-reverse;
}

.v-toast.v-toast--custom-parent {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .v-toast {
    padding: 0;
    position: fixed !important;
  }
}

/* Start - Oswald */

@font-face {
  font-family: "Oswald";

  src: url("/webfonts/oswald/Oswald-ExtraLight.eot");

  src: local("Oswald ExtraLight"), local("Oswald-ExtraLight"), url("/webfonts/oswald/Oswald-ExtraLight.eot?#iefix") format("embedded-opentype"), url("/webfonts/oswald/Oswald-ExtraLight.woff2") format("woff2"), url("/webfonts/oswald/Oswald-ExtraLight.woff") format("woff"), url("/webfonts/oswald/Oswald-ExtraLight.ttf") format("truetype"), url("/webfonts/oswald/Oswald-ExtraLight.svg#Oswald-ExtraLight") format("svg");

  font-weight: 200;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Oswald";

  src: url("/webfonts/oswald/Oswald-Light.eot");

  src: local("Oswald Light"), local("Oswald-Light"), url("/webfonts/oswald/Oswald-Light.eot?#iefix") format("embedded-opentype"), url("/webfonts/oswald/Oswald-Light.woff2") format("woff2"), url("/webfonts/oswald/Oswald-Light.woff") format("woff"), url("/webfonts/oswald/Oswald-Light.ttf") format("truetype"), url("/webfonts/oswald/Oswald-Light.svg#Oswald-Light") format("svg");

  font-weight: 300;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Oswald";

  src: url("/webfonts/oswald/Oswald-Regular.eot");

  src: local("Oswald Regular"), local("Oswald-Regular"), url("/webfonts/oswald/Oswald-Regular.eot?#iefix") format("embedded-opentype"), url("/webfonts/oswald/Oswald-Regular.woff2") format("woff2"), url("/webfonts/oswald/Oswald-Regular.woff") format("woff"), url("/webfonts/oswald/Oswald-Regular.ttf") format("truetype"), url("/webfonts/oswald/Oswald-Regular.svg#Oswald-Regular") format("svg");

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Oswald";

  src: url("/webfonts/oswald/Oswald-Medium.eot");

  src: local("Oswald Medium"), local("Oswald-Medium"), url("/webfonts/oswald/Oswald-Medium.eot?#iefix") format("embedded-opentype"), url("/webfonts/oswald/Oswald-Medium.woff2") format("woff2"), url("/webfonts/oswald/Oswald-Medium.woff") format("woff"), url("/webfonts/oswald/Oswald-Medium.ttf") format("truetype"), url("/webfonts/oswald/Oswald-Medium.svg#Oswald-Medium") format("svg");

  font-weight: 500;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Oswald";

  src: url("/webfonts/oswald/Oswald-Bold.eot");

  src: local("Oswald Bold"), local("Oswald-Bold"), url("/webfonts/oswald/Oswald-Bold.eot?#iefix") format("embedded-opentype"), url("/webfonts/oswald/Oswald-Bold.woff2") format("woff2"), url("/webfonts/oswald/Oswald-Bold.woff") format("woff"), url("/webfonts/oswald/Oswald-Bold.ttf") format("truetype"), url("/webfonts/oswald/Oswald-Bold.svg#Oswald-Bold") format("svg");

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Oswald";

  src: url("/webfonts/oswald/Oswald-SemiBold.eot");

  src: local("Oswald SemiBold"), local("Oswald-SemiBold"), url("/webfonts/oswald/Oswald-SemiBold.eot?#iefix") format("embedded-opentype"), url("/webfonts/oswald/Oswald-SemiBold.woff2") format("woff2"), url("/webfonts/oswald/Oswald-SemiBold.woff") format("woff"), url("/webfonts/oswald/Oswald-SemiBold.ttf") format("truetype"), url("/webfonts/oswald/Oswald-SemiBold.svg#Oswald-SemiBold") format("svg");

  font-weight: 600;

  font-style: normal;

  font-display: swap;
}

/* END - Oswald */

/* Start - Roboto */

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-Light.eot");

  src: local("Roboto Light"), local("Roboto-Light"), url("/webfonts/roboto/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-Light.woff2") format("woff2"), url("/webfonts/roboto/Roboto-Light.woff") format("woff"), url("/webfonts/roboto/Roboto-Light.ttf") format("truetype"), url("/webfonts/roboto/Roboto-Light.svg#Roboto-Light") format("svg");

  font-weight: 300;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-LightItalic.eot");

  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url("/webfonts/roboto/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("/webfonts/roboto/Roboto-LightItalic.woff") format("woff"), url("/webfonts/roboto/Roboto-LightItalic.ttf") format("truetype"), url("/webfonts/roboto/Roboto-LightItalic.svg#Roboto-LightItalic") format("svg");

  font-weight: 300;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-MediumItalic.eot");

  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url("/webfonts/roboto/Roboto-MediumItalic.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("/webfonts/roboto/Roboto-MediumItalic.woff") format("woff"), url("/webfonts/roboto/Roboto-MediumItalic.ttf") format("truetype"), url("/webfonts/roboto/Roboto-MediumItalic.svg#Roboto-MediumItalic") format("svg");

  font-weight: 500;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-Italic.eot");

  src: local("Roboto Italic"), local("Roboto-Italic"), url("/webfonts/roboto/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-Italic.woff2") format("woff2"), url("/webfonts/roboto/Roboto-Italic.woff") format("woff"), url("/webfonts/roboto/Roboto-Italic.ttf") format("truetype"), url("/webfonts/roboto/Roboto-Italic.svg#Roboto-Italic") format("svg");

  font-weight: normal;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-BoldItalic.eot");

  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("/webfonts/roboto/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("/webfonts/roboto/Roboto-BoldItalic.woff") format("woff"), url("/webfonts/roboto/Roboto-BoldItalic.ttf") format("truetype"), url("/webfonts/roboto/Roboto-BoldItalic.svg#Roboto-BoldItalic") format("svg");

  font-weight: bold;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-Black.eot");

  src: local("Roboto Black"), local("Roboto-Black"), url("/webfonts/roboto/Roboto-Black.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-Black.woff2") format("woff2"), url("/webfonts/roboto/Roboto-Black.woff") format("woff"), url("/webfonts/roboto/Roboto-Black.ttf") format("truetype"), url("/webfonts/roboto/Roboto-Black.svg#Roboto-Black") format("svg");

  font-weight: 900;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-Bold.eot");

  src: local("Roboto Bold"), local("Roboto-Bold"), url("/webfonts/roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-Bold.woff2") format("woff2"), url("/webfonts/roboto/Roboto-Bold.woff") format("woff"), url("/webfonts/roboto/Roboto-Bold.ttf") format("truetype"), url("/webfonts/roboto/Roboto-Bold.svg#Roboto-Bold") format("svg");

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-BlackItalic.eot");

  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url("/webfonts/roboto/Roboto-BlackItalic.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("/webfonts/roboto/Roboto-BlackItalic.woff") format("woff"), url("/webfonts/roboto/Roboto-BlackItalic.ttf") format("truetype"), url("/webfonts/roboto/Roboto-BlackItalic.svg#Roboto-BlackItalic") format("svg");

  font-weight: 900;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-Medium.eot");

  src: local("Roboto Medium"), local("Roboto-Medium"), url("/webfonts/roboto/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-Medium.woff2") format("woff2"), url("/webfonts/roboto/Roboto-Medium.woff") format("woff"), url("/webfonts/roboto/Roboto-Medium.ttf") format("truetype"), url("/webfonts/roboto/Roboto-Medium.svg#Roboto-Medium") format("svg");

  font-weight: 500;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-Thin.eot");

  src: local("Roboto Thin"), local("Roboto-Thin"), url("/webfonts/roboto/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-Thin.woff2") format("woff2"), url("/webfonts/roboto/Roboto-Thin.woff") format("woff"), url("/webfonts/roboto/Roboto-Thin.ttf") format("truetype"), url("/webfonts/roboto/Roboto-Thin.svg#Roboto-Thin") format("svg");

  font-weight: 100;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-ThinItalic.eot");

  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url("/webfonts/roboto/Roboto-ThinItalic.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("/webfonts/roboto/Roboto-ThinItalic.woff") format("woff"), url("/webfonts/roboto/Roboto-ThinItalic.ttf") format("truetype"), url("/webfonts/roboto/Roboto-ThinItalic.svg#Roboto-ThinItalic") format("svg");

  font-weight: 100;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: "Roboto";

  src: url("/webfonts/roboto/Roboto-Regular.eot");

  src: local("Roboto"), local("Roboto-Regular"), url("/webfonts/roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("/webfonts/roboto/Roboto-Regular.woff2") format("woff2"), url("/webfonts/roboto/Roboto-Regular.woff") format("woff"), url("/webfonts/roboto/Roboto-Regular.ttf") format("truetype"), url("/webfonts/roboto/Roboto-Regular.svg#Roboto-Regular") format("svg");

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}

/* END - Roboto */

.header_background_helper {
  position: absolute;
  z-index: 10;
  display: none;
  width: 100%;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .header_background_helper {
    display: flex;
  }
}

.header_background_helper .logo {
  display: flex;
  width: 50%;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header_background_helper .logo img {
  visibility: hidden;
  width: 12rem;
}

.header_background_helper .menu {
  display: flex;
  width: 50%;
  flex-direction: column;
}

.header_background_helper .menu .grey_bar {
  display: flex;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.header_background_helper .menu .green_bar {
  display: flex;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(122, 194, 79, var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.header_wrapper {
  position: relative;
  z-index: 20;
}

@media (min-width: 1280px) {
  .header_wrapper {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 640px){
    .header_wrapper{
      max-width: 640px;
    }
  }

  @media (min-width: 768px){
    .header_wrapper{
      max-width: 768px;
    }
  }

  @media (min-width: 1024px){
    .header_wrapper{
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px){
    .header_wrapper{
      max-width: 1280px;
    }
  }
}

.header_wrapper--inner {
  display: flex;
  flex-wrap: wrap;
}

.header_wrapper .logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 1024px) {
  .header_wrapper .logo {
    width: 20%;
    justify-content: flex-start;
    padding-left: 1rem;
  }
}

@media (min-width: 1280px) {
  .header_wrapper .logo {
    padding-left: 0px;
  }
}

.header_wrapper .logo img {
  width: 12rem;
}

.header_wrapper .menu_wrapper_desktop {
  display: none;
  width: 100%;
  flex-direction: column;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .header_wrapper .menu_wrapper_desktop {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header_wrapper .menu_wrapper_desktop {
    width: 80%;
  }
}

.header_wrapper .menu_wrapper_desktop .grey_bar {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .header_wrapper .menu_wrapper_desktop .grey_bar {
    flex-direction: row;
  }
}

@media (min-width: 1280px) {
  .header_wrapper .menu_wrapper_desktop .grey_bar {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.header_wrapper .menu_wrapper_desktop .grey_bar a {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 500ms;
}

.header_wrapper .menu_wrapper_desktop .grey_bar a:not(:last-child) {
  margin-right: 3rem;
}

.header_wrapper .menu_wrapper_desktop .grey_bar a:hover {
  --tw-text-opacity: 1;
  color: rgba(122, 194, 79, var(--tw-text-opacity));
}

.header_wrapper .menu_wrapper_desktop .green_bar {
  display: flex;
  height: 100%;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  --tw-bg-opacity: 1;
  background-color: rgba(122, 194, 79, var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 1280px) {
  .header_wrapper .menu_wrapper_desktop .green_bar {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.header_wrapper .menu_wrapper_desktop .green_bar .menu_link {
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 500ms;
}

.header_wrapper .menu_wrapper_desktop .green_bar .menu_link:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .header_wrapper .menu_wrapper_desktop .green_bar .menu_link {
    width: 16.666667%;
  }
}

@media (min-width: 768px) {
  .header_wrapper .menu_wrapper_desktop .green_bar .menu_link:not(.last) {
    border-right-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
    --tw-border-opacity: 0.25;
  }
}

.header_wrapper .menu_wrapper_desktop .green_bar .menu_button {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 500ms;
}

@media (min-width: 768px){
  .header_wrapper .menu_wrapper_desktop .green_bar .menu_button{
    width: 16.666667%;
  }
}

.header_wrapper .menu_wrapper_desktop .green_bar .menu_button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(122, 194, 79, var(--tw-text-opacity));
}

.header_wrapper .menu_wrapper_mobile {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 500ms;
}

@media (min-width: 768px) {
  .header_wrapper .menu_wrapper_mobile {
    display: none;
  }
}

.header_wrapper .menu_wrapper_mobile:hover {
  --tw-text-opacity: 1;
  color: rgba(122, 194, 79, var(--tw-text-opacity));
}

.header_wrapper .menu_wrapper_mobile .menu__opened {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.header_wrapper .menu_wrapper_mobile .menu__opened .close_menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.header_wrapper .menu_wrapper_mobile .menu__opened .mobile_menu {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  --tw-bg-opacity: 1;
  background-color: rgba(122, 194, 79, var(--tw-bg-opacity));
  padding-top: 1rem;
  font-family: Oswald, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.header_wrapper .menu_wrapper_mobile .menu__opened .mobile_menu--wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.header_wrapper .menu_wrapper_mobile .menu__opened .mobile_menu--wrapper .mobile_menu_link:not(.last) {
  padding-bottom: 1rem;
}

.header_wrapper .menu_wrapper_mobile .menu__opened .mobile_menu .menu_button {
  position: sticky;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 500ms;
}

.header_wrapper .menu_wrapper_mobile .menu__opened .mobile_menu .menu_button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(122, 194, 79, var(--tw-text-opacity));
}

.homepage .fullscreen_banner, .content-page .fullscreen_banner, .news .fullscreen_banner {
  height: 70vh;
}

@media (max-width: 426px) {
  .homepage .fullscreen_banner, .content-page .fullscreen_banner, .news .fullscreen_banner {
    height: -moz-fit-content;
    height: fit-content;
  }
}

.homepage .fullscreen_banner:after, .content-page .fullscreen_banner:after, .news .fullscreen_banner:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 20;
  display: block;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.4;
}

@media (max-width: 1024px) {
  .sponsor {
    min-height: 150px;
  }
}

.terms h1, .privacy h1 {
  margin-bottom: 2rem;
  font-family: Oswald, sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.terms h2, .privacy h2 {
  margin-bottom: 1rem;
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.terms ul, .privacy ul {
  margin-bottom: 1rem;
  list-style-position: inside;
  list-style-type: disc;
}

.terms p, .privacy p {
  margin-bottom: 1rem;
}

[v-cloak] {
  display: none;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  --tw-bg-opacity: 1;
  background-color: rgba(122, 194, 79, var(--tw-bg-opacity));
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-container input:checked ~ .checkmark {
  background-color: #FFFFFF;
}

.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
  border: 1px solid #D0D0D0;
}

.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.18rem;
  top: 0.15rem;
  width: 18.5px;
  height: 18.5px;
  background-color: #687D66;
}

.radio-container:hover input:not(:checked) ~ .checkmark {
  background-color: #E5E8E4;
}

.required-error {
  border: 1px solid #f56565 !important;
  color: #f56565 !important;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 300ms;
}

.required-error::-moz-placeholder {
  color: #f56565 !important;
  -moz-transition-property: all;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 300ms;
}

.required-error::placeholder {
  color: #f56565 !important;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 300ms;
}

.register-input:focus, .register-input:active {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

@media (min-width: 768px){
  .md\:flex{
    display: flex;
  }

  .md\:max-w-xs{
    max-width: 20rem;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .lg\:order-1{
    order: 1;
  }

  .lg\:order-2{
    order: 2;
  }

  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:w-1\/3{
    width: 33.333333%;
  }

  .lg\:w-2\/3{
    width: 66.666667%;
  }

  .lg\:w-1\/4{
    width: 25%;
  }

  .lg\:w-4\/5{
    width: 80%;
  }

  .lg\:max-w-lg{
    max-width: 32rem;
  }

  .lg\:max-w-xl{
    max-width: 36rem;
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:gap-20{
    gap: 5rem;
  }

  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1280px){
  .xl\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
}
