/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */

.toastify {
    padding: 12px 20px;
    color: #ffffff;
    display: inline-block;
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
    background: linear-gradient(135deg, #73a5ff, #5477f5);
    position: fixed;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    max-width: calc(50% - 20px);
    z-index: 2147483647;
}

.toastify.on {
    opacity: 1;
}

.toast-close {
    background: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    opacity: 0.4;
    padding: 0 5px;
}

.toastify-right {
    right: 15px;
}

.toastify-left {
    left: 15px;
}

.toastify-top {
    top: -150px;
}

.toastify-bottom {
    bottom: -150px;
}

.toastify-rounded {
    border-radius: 25px;
}

.toastify-avatar {
    width: 1.5em;
    height: 1.5em;
    margin: -7px 5px;
    border-radius: 2px;
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
    max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
    .toastify-right, .toastify-left {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}

@charset "UTF-8";
/*
 |--------------------------------------------------------------------------
 | TailwindCSS Directives
 |--------------------------------------------------------------------------
 |
 | Import TailwindCSS directives and swipe out at build-time with all of
 | the styles it generates based on your configured design system.
 |
 | Please check this link for more details:
 | https://tailwindcss.com/docs/installation#include-tailwind-in-your-css
 |
 */
/*
 ! 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.
*/
abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}
/**
Add the correct font weight in Edge and Safari.
*/
b,
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,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}
/**
Add the correct font size in all browsers.
*/
small {
	font-size: 80%;
}
/**
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: -0.25em;
}
sup {
	top: -0.5em;
}
/*
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,
optgroup,
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.
*/
::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
	outline: 1px dotted ButtonText;
}
/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
	box-shadow: none;
}
/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
	padding: 0;
}
/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
	vertical-align: baseline;
}
/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-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.
*/
::-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 Chrome and Safari.
*/
summary {
	display: list-item;
}
/**
 * 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.
 */
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
button {
  background-color: transparent;
  background-image: none;
}
fieldset {
  margin: 0;
  padding: 0;
}
ol,
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: #cbd5e0;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #cbd5e0;
}
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.
 */
:-moz-focusring {
	outline: auto;
}
table {
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  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,
optgroup,
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.
 */
pre,
code,
kbd,
samp {
  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,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  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,
video {
  max-width: 100%;
  height: auto;
}
/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */
[hidden] {
  display: none;
}
*, ::before, ::after{
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	--tw-border-opacity: 1;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity));
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--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;
	--tw-shadow: 0 0 #0000;
	--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,/*!*/ /*!*/);
	--tw-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);
}
.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: 1168px){
	.container{
		max-width: 1168px;
	}
}
.accordion .accordion-item{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.accordion .accordion-item:not(:last-child){
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(237, 242, 247, var(--tw-border-opacity));
}
.dark .accordion .accordion-item:not(:last-child){
	--tw-border-opacity: 1;
	border-color: rgba(63, 72, 101, var(--tw-border-opacity));
}
.accordion .accordion-item:first-child{
	margin-top: -1rem;
}
.accordion .accordion-item:last-child{
	margin-bottom: -1rem;
}
.accordion .accordion-item .accordion-header .accordion-button{
	width: 100%;
	text-align: left;
	font-weight: 500;
}
.accordion .accordion-item .accordion-header .accordion-button:focus{
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed){
	--tw-text-opacity: 1;
	color: rgba(28, 63, 170, var(--tw-text-opacity));
}
.dark .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed){
	--tw-text-opacity: 1;
	color: rgba(49, 96, 216, var(--tw-text-opacity));
}
.accordion .accordion-collapse{
	margin-top: 0.75rem;
	line-height: 1.625;
	--tw-text-opacity: 1;
	color: rgba(74, 85, 104, var(--tw-text-opacity));
}
.dark .accordion .accordion-collapse{
	--tw-text-opacity: 1;
	color: rgba(113, 128, 150, var(--tw-text-opacity));
}
.accordion .accordion-collapse.collapse:not(.show){
	display: none;
}
.accordion.accordion-boxed .accordion-item{
	margin-top: 0.75rem;
	border-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(237, 242, 247, var(--tw-border-opacity));
	padding: 1rem;
}
.dark .accordion.accordion-boxed .accordion-item{
	--tw-border-opacity: 1;
	border-color: rgba(63, 72, 101, var(--tw-border-opacity));
}
.accordion.accordion-boxed .accordion-item:first-child{
	margin-top: 0px;
}
.accordion.accordion-boxed .accordion-item:last-child{
	margin-bottom: 0px;
}
.alert{
	position: relative;
	border-radius: 0.375rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.alert:not(.show){
	display: none;
}
.alert.alert-dismissible{
	padding-left: 1.25rem;
	padding-right: 4rem;
}
.alert .btn-close{
	position: absolute;
	right: 0px;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 0.5rem;
	display: inline-flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	border-width: 1px;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	font-weight: 500;
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	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, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 200ms;
}
.alert .btn-close:hover:not(:disabled){
	--tw-border-opacity: 0.9;
	--tw-bg-opacity: 0.9;
}
.alert .btn-close:focus{
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.alert .btn-close:not(button){
	text-align: center;
}
.alert .btn-close:disabled{
	cursor: not-allowed;
	opacity: 0.7;
}
.alert .btn-close{
	border-width: 0px;
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.alert .btn-close:focus{
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.alert-danger{
	--tw-bg-opacity: 1;
	background-color: rgba(211, 41, 41, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.alert-dark{
	--tw-bg-opacity: 1;
	background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .alert-dark{
	--tw-bg-opacity: 1;
	background-color: rgba(43, 51, 72, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(203, 213, 224, var(--tw-text-opacity));
}
.btn{
	display: inline-flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	border-width: 1px;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	font-weight: 500;
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	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, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 200ms;
}
.btn:hover:not(:disabled){
	--tw-border-opacity: 0.9;
	--tw-bg-opacity: 0.9;
}
.btn:focus{
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.btn:not(button){
	text-align: center;
}
.btn:disabled{
	cursor: not-allowed;
	opacity: 0.7;
}
.btn-sm{
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	font-size: 0.75rem;
	line-height: 1rem;
}
.btn-primary{
	--tw-border-opacity: 1;
	border-color: rgba(28, 63, 170, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .btn-primary{
	--tw-border-opacity: 1;
	border-color: rgba(28, 63, 170, var(--tw-border-opacity));
}
.btn-success{
	--tw-border-opacity: 1;
	border-color: rgba(145, 199, 20, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(145, 199, 20, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .btn-success{
	--tw-border-opacity: 1;
	border-color: rgba(145, 199, 20, var(--tw-border-opacity));
}
.btn-danger{
	--tw-border-opacity: 1;
	border-color: rgba(211, 41, 41, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(211, 41, 41, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .btn-danger{
	--tw-border-opacity: 1;
	border-color: rgba(211, 41, 41, var(--tw-border-opacity));
}
.dropdown-menu {
    z-index: 9999;
    inset: 0px auto auto 0px;
    transform: translate3d(-10000px, 0px, 0px);
    transition: visibility 0s ease-in-out 0.2s, opacity 0.2s 0s;
    visibility: hidden;
    position: absolute;
    opacity: 0;
  }
.dropdown-menu.show {
    transition: visibility 0s ease-in-out 0s, opacity 0.2s 0s;
    visibility: visible;
    opacity: 1;
  }
.dropdown-menu.show > .dropdown-menu__content{
	margin-top: 0.25rem;
}
.dropdown-menu.show > .dropdown-menu__content .tab-content .tab-pane{
	visibility: visible;
}
.dropdown-menu .dropdown-menu__content {
    transition: margin-top 0.2s;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0901960784);
    margin-top: 1.25rem;
    width: 100%;
  }
.dropdown-menu .dropdown-menu__content .tab-content .tab-pane{
	visibility: hidden;
}
.file .file__icon{
	position: relative;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.file .file__icon.file__icon--empty-directory {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='786' height='786' viewBox='0 0 786 786'%3E%3Cdefs%3E%3ClinearGradient id='linear-gradient' x1='0.5' x2='0.5' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%238a97ac'/%3E%3Cstop offset='1' stop-color='%235d6c83'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Group_2' data-name='Group 2' transform='translate(-567 -93)'%3E%3Crect id='Rectangle_4' data-name='Rectangle 4' width='418' height='681' rx='40' transform='translate(896 109)' fill='%2395a5b9'/%3E%3Crect id='Rectangle_3' data-name='Rectangle 3' width='433' height='681' rx='40' transform='translate(606 93)' fill='%23a0aec0'/%3E%3Crect id='Rectangle_2' data-name='Rectangle 2' width='786' height='721' rx='40' transform='translate(567 158)' fill='url(%23linear-gradient)'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
.file .file__icon.file__icon--directory {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='786' height='786' viewBox='0 0 786 786'%3E%3Cdefs%3E%3ClinearGradient id='linear-gradient' x1='0.5' x2='0.5' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%238a97ac'/%3E%3Cstop offset='1' stop-color='%235d6c83'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Group_3' data-name='Group 3' transform='translate(-567 -93)'%3E%3Crect id='Rectangle_4' data-name='Rectangle 4' width='418' height='681' rx='40' transform='translate(896 109)' fill='%2395a5b9'/%3E%3Crect id='Rectangle_3' data-name='Rectangle 3' width='433' height='681' rx='40' transform='translate(606 93)' fill='%23a0aec0'/%3E%3Crect id='Rectangle_2' data-name='Rectangle 2' width='742' height='734' rx='40' transform='translate(590 145)' fill='%23bec8d9'/%3E%3Crect id='Rectangle_5' data-name='Rectangle 5' width='786' height='692' rx='40' transform='translate(567 187)' fill='url(%23linear-gradient)'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
.file .file__icon.file__icon--file {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='628.027' height='786.012' viewBox='0 0 628.027 786.012'%3E%3Cdefs%3E%3ClinearGradient id='linear-gradient' x1='0.5' x2='0.5' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%238a97ac'/%3E%3Cstop offset='1' stop-color='%235d6c83'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(-646 -92.988)'%3E%3Cpath id='Union_2' data-name='Union 2' d='M40,786A40,40,0,0,1,0,746V40A40,40,0,0,1,40,0H501V103h29v24h98V746a40,40,0,0,1-40,40Z' transform='translate(646 93)' fill='url(%23linear-gradient)'/%3E%3Cpath id='Intersection_2' data-name='Intersection 2' d='M.409,162.042l.058-109.9c31.605,29.739,125.37,125.377,125.37,125.377l-109.976.049A20.025,20.025,0,0,1,.409,162.042Z' transform='translate(1147 42)' fill='%23bec8d9' stroke='%23bec8d9' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
.file .file__icon.file__icon--image .file__icon--image__preview{
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
}
.file .file__icon.file__icon--image .file__icon--image__preview img{
	border-radius: 0.375rem;
}
.file .file__icon .file__icon__file-name{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.file .file__icon:before {
    content: "";
    padding-top: 100%;
    display: block;
    width: 100%;
  }
.form-check{
	display: flex;
	align-items: center;
}
.form-check-label{
	margin-left: 0.5rem;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	--tw-text-opacity: 1;
	color: rgba(74, 85, 104, var(--tw-text-opacity));
}
.dark .form-check-label{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.form-check-switch {
    width: 38px;
    height: 24px;
    padding: 1px;
    position: relative;
    margin-left: 0px;
    margin-top: 0px;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(226, 232, 240, var(--tw-border-opacity));
    background-image: none;
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
.dark .form-check-switch{
	--tw-border-opacity: 1;
	border-color: rgba(63, 72, 101, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(63, 72, 101, var(--tw-bg-opacity));
}
.form-check-switch:disabled:not(:checked){
	cursor: not-allowed;
	--tw-bg-opacity: 1;
	background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
}
.dark .form-check-switch:disabled:not(:checked){
	--tw-bg-opacity: 1;
	background-color: rgba(35, 42, 59, var(--tw-bg-opacity));
}
.form-check-switch:disabled:checked{
	cursor: not-allowed;
	opacity: 0.7;
}
.form-check-switch:before {
    content: "";
    width: 22px;
    height: 22px;
    transition: all 0.2s ease-in-out;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 9999px;
  }
.dark .form-check-switch:before{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
.form-check-switch:checked{
	--tw-border-opacity: 1;
	border-color: rgba(28, 63, 170, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
}
.dark .form-check-switch:checked{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 96, 216, var(--tw-bg-opacity));
}
.form-check-switch:checked::before {
    margin-left: 13px;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }
.form-control{
	width: 100%;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border-radius: 0.375rem;
	border-width: 1px;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.form-control::-moz-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-placeholder-opacity));
}
.form-control::placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-placeholder-opacity));
}
.form-control{
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.dark .form-control{
	border-color: transparent;
	--tw-bg-opacity: 1;
	background-color: rgba(35, 42, 59, var(--tw-bg-opacity));
}
.form-control:focus{
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.form-control:disabled, .form-control[readonly]{
	cursor: not-allowed;
	--tw-bg-opacity: 1;
	background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
}
.dark .form-control:disabled, .dark .form-control[readonly]{
	border-color: transparent;
	--tw-bg-opacity: 1;
	background-color: rgba(35, 42, 59, var(--tw-bg-opacity));
}
.form-inline{
	display: flex;
	align-items: center;
}
@media (max-width: 639px) {
    .form-inline{
		display: block;
	}
  }
.form-inline .form-label{
	margin-bottom: 0px;
	margin-right: 1.25rem;
	text-align: right;
}
@media (max-width: 639px) {
    .form-inline .form-label{
		margin-bottom: 0.5rem;
	}
    .form-inline .form-label{
		margin-right: 0px;
	}
    .form-inline .form-label{
		text-align: left;
	}
  }
.form-inline .form-control{
	flex: 1 1 0%;
}
.form-label{
	margin-bottom: 0.5rem;
	display: inline-block;
}
.dark .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(255 255 255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  }
.dark .form-select.form-select-dark {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(74 85 104)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  }
.image-fit{
	position: relative;
}
.image-fit > img{
	position: absolute;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.input-group > .input-group-text, .input-group > .form-control{
	border-radius: 0px;
}
.input-group > .input-group-text:not(:first-child),
.input-group > .form-control:not(:first-child) {
    border-left-color: transparent;
  }
.input-group > .input-group-text:first-child, .input-group > .form-control:first-child{
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}
.input-group > .input-group-text:last-child, .input-group > .form-control:last-child{
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}
.input-group > .form-control{
	z-index: 10;
}
* > .intro-x:nth-child(1) {
    z-index: 49;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
  }
* > .-intro-x:nth-child(1) {
    z-index: 49;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
  }
* > .intro-y:nth-child(1) {
    z-index: 49;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
  }
* > .intro-x:nth-child(2) {
    z-index: 48;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
  }
* > .-intro-x:nth-child(2) {
    z-index: 48;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
  }
* > .intro-y:nth-child(2) {
    z-index: 48;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
  }
* > .intro-x:nth-child(3) {
    z-index: 47;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
  }
* > .-intro-x:nth-child(3) {
    z-index: 47;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
  }
* > .intro-y:nth-child(3) {
    z-index: 47;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
  }
* > .intro-x:nth-child(4) {
    z-index: 46;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
  }
* > .-intro-x:nth-child(4) {
    z-index: 46;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
  }
* > .intro-y:nth-child(4) {
    z-index: 46;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
  }
* > .intro-x:nth-child(5) {
    z-index: 45;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
  }
* > .-intro-x:nth-child(5) {
    z-index: 45;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
  }
* > .intro-y:nth-child(5) {
    z-index: 45;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
  }
* > .intro-x:nth-child(6) {
    z-index: 44;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
  }
* > .-intro-x:nth-child(6) {
    z-index: 44;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
  }
* > .intro-y:nth-child(6) {
    z-index: 44;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
  }
* > .intro-x:nth-child(7) {
    z-index: 43;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
  }
* > .-intro-x:nth-child(7) {
    z-index: 43;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
  }
* > .intro-y:nth-child(7) {
    z-index: 43;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
  }
* > .intro-x:nth-child(8) {
    z-index: 42;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
  }
* > .-intro-x:nth-child(8) {
    z-index: 42;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
  }
* > .intro-y:nth-child(8) {
    z-index: 42;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
  }
* > .intro-x:nth-child(9) {
    z-index: 41;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
  }
* > .-intro-x:nth-child(9) {
    z-index: 41;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
  }
* > .intro-y:nth-child(9) {
    z-index: 41;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
  }
* > .intro-x:nth-child(10) {
    z-index: 40;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
* > .-intro-x:nth-child(10) {
    z-index: 40;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
* > .intro-y:nth-child(10) {
    z-index: 40;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
* > .intro-x:nth-child(11) {
    z-index: 39;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.1s;
  }
* > .-intro-x:nth-child(11) {
    z-index: 39;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.1s;
  }
* > .intro-y:nth-child(11) {
    z-index: 39;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.1s;
  }
* > .intro-x:nth-child(12) {
    z-index: 38;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
  }
* > .-intro-x:nth-child(12) {
    z-index: 38;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
  }
* > .intro-y:nth-child(12) {
    z-index: 38;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
  }
* > .intro-x:nth-child(13) {
    z-index: 37;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.3s;
  }
* > .-intro-x:nth-child(13) {
    z-index: 37;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.3s;
  }
* > .intro-y:nth-child(13) {
    z-index: 37;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.3s;
  }
* > .intro-x:nth-child(14) {
    z-index: 36;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.4s;
  }
* > .-intro-x:nth-child(14) {
    z-index: 36;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.4s;
  }
* > .intro-y:nth-child(14) {
    z-index: 36;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.4s;
  }
* > .intro-x:nth-child(15) {
    z-index: 35;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
  }
* > .-intro-x:nth-child(15) {
    z-index: 35;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
  }
* > .intro-y:nth-child(15) {
    z-index: 35;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
  }
* > .intro-x:nth-child(16) {
    z-index: 34;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.6s;
  }
* > .-intro-x:nth-child(16) {
    z-index: 34;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.6s;
  }
* > .intro-y:nth-child(16) {
    z-index: 34;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.6s;
  }
* > .intro-x:nth-child(17) {
    z-index: 33;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.7s;
  }
* > .-intro-x:nth-child(17) {
    z-index: 33;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.7s;
  }
* > .intro-y:nth-child(17) {
    z-index: 33;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.7s;
  }
* > .intro-x:nth-child(18) {
    z-index: 32;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
  }
* > .-intro-x:nth-child(18) {
    z-index: 32;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
  }
* > .intro-y:nth-child(18) {
    z-index: 32;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
  }
* > .intro-x:nth-child(19) {
    z-index: 31;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
  }
* > .-intro-x:nth-child(19) {
    z-index: 31;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
  }
* > .intro-y:nth-child(19) {
    z-index: 31;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
  }
* > .intro-x:nth-child(20) {
    z-index: 30;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
  }
* > .-intro-x:nth-child(20) {
    z-index: 30;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
  }
* > .intro-y:nth-child(20) {
    z-index: 30;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
  }
* > .intro-x:nth-child(21) {
    z-index: 29;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.1s;
  }
* > .-intro-x:nth-child(21) {
    z-index: 29;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.1s;
  }
* > .intro-y:nth-child(21) {
    z-index: 29;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.1s;
  }
* > .intro-x:nth-child(22) {
    z-index: 28;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.2s;
  }
* > .-intro-x:nth-child(22) {
    z-index: 28;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.2s;
  }
* > .intro-y:nth-child(22) {
    z-index: 28;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.2s;
  }
* > .intro-x:nth-child(23) {
    z-index: 27;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.3s;
  }
* > .-intro-x:nth-child(23) {
    z-index: 27;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.3s;
  }
* > .intro-y:nth-child(23) {
    z-index: 27;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.3s;
  }
* > .intro-x:nth-child(24) {
    z-index: 26;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
  }
* > .-intro-x:nth-child(24) {
    z-index: 26;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
  }
* > .intro-y:nth-child(24) {
    z-index: 26;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
  }
* > .intro-x:nth-child(25) {
    z-index: 25;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.5s;
  }
* > .-intro-x:nth-child(25) {
    z-index: 25;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.5s;
  }
* > .intro-y:nth-child(25) {
    z-index: 25;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.5s;
  }
* > .intro-x:nth-child(26) {
    z-index: 24;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.6s;
  }
* > .-intro-x:nth-child(26) {
    z-index: 24;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.6s;
  }
* > .intro-y:nth-child(26) {
    z-index: 24;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.6s;
  }
* > .intro-x:nth-child(27) {
    z-index: 23;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.7s;
  }
* > .-intro-x:nth-child(27) {
    z-index: 23;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.7s;
  }
* > .intro-y:nth-child(27) {
    z-index: 23;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.7s;
  }
* > .intro-x:nth-child(28) {
    z-index: 22;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.8s;
  }
* > .-intro-x:nth-child(28) {
    z-index: 22;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.8s;
  }
* > .intro-y:nth-child(28) {
    z-index: 22;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.8s;
  }
* > .intro-x:nth-child(29) {
    z-index: 21;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.9s;
  }
* > .-intro-x:nth-child(29) {
    z-index: 21;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.9s;
  }
* > .intro-y:nth-child(29) {
    z-index: 21;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 2.9s;
  }
* > .intro-x:nth-child(30) {
    z-index: 20;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3s;
  }
* > .-intro-x:nth-child(30) {
    z-index: 20;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3s;
  }
* > .intro-y:nth-child(30) {
    z-index: 20;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3s;
  }
* > .intro-x:nth-child(31) {
    z-index: 19;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.1s;
  }
* > .-intro-x:nth-child(31) {
    z-index: 19;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.1s;
  }
* > .intro-y:nth-child(31) {
    z-index: 19;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.1s;
  }
* > .intro-x:nth-child(32) {
    z-index: 18;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.2s;
  }
* > .-intro-x:nth-child(32) {
    z-index: 18;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.2s;
  }
* > .intro-y:nth-child(32) {
    z-index: 18;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.2s;
  }
* > .intro-x:nth-child(33) {
    z-index: 17;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.3s;
  }
* > .-intro-x:nth-child(33) {
    z-index: 17;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.3s;
  }
* > .intro-y:nth-child(33) {
    z-index: 17;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.3s;
  }
* > .intro-x:nth-child(34) {
    z-index: 16;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.4s;
  }
* > .-intro-x:nth-child(34) {
    z-index: 16;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.4s;
  }
* > .intro-y:nth-child(34) {
    z-index: 16;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.4s;
  }
* > .intro-x:nth-child(35) {
    z-index: 15;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
  }
* > .-intro-x:nth-child(35) {
    z-index: 15;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
  }
* > .intro-y:nth-child(35) {
    z-index: 15;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
  }
* > .intro-x:nth-child(36) {
    z-index: 14;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.6s;
  }
* > .-intro-x:nth-child(36) {
    z-index: 14;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.6s;
  }
* > .intro-y:nth-child(36) {
    z-index: 14;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.6s;
  }
* > .intro-x:nth-child(37) {
    z-index: 13;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.7s;
  }
* > .-intro-x:nth-child(37) {
    z-index: 13;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.7s;
  }
* > .intro-y:nth-child(37) {
    z-index: 13;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.7s;
  }
* > .intro-x:nth-child(38) {
    z-index: 12;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.8s;
  }
* > .-intro-x:nth-child(38) {
    z-index: 12;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.8s;
  }
* > .intro-y:nth-child(38) {
    z-index: 12;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.8s;
  }
* > .intro-x:nth-child(39) {
    z-index: 11;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.9s;
  }
* > .-intro-x:nth-child(39) {
    z-index: 11;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.9s;
  }
* > .intro-y:nth-child(39) {
    z-index: 11;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 3.9s;
  }
* > .intro-x:nth-child(40) {
    z-index: 10;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4s;
  }
* > .-intro-x:nth-child(40) {
    z-index: 10;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4s;
  }
* > .intro-y:nth-child(40) {
    z-index: 10;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4s;
  }
* > .intro-x:nth-child(41) {
    z-index: 9;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.1s;
  }
* > .-intro-x:nth-child(41) {
    z-index: 9;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.1s;
  }
* > .intro-y:nth-child(41) {
    z-index: 9;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.1s;
  }
* > .intro-x:nth-child(42) {
    z-index: 8;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.2s;
  }
* > .-intro-x:nth-child(42) {
    z-index: 8;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.2s;
  }
* > .intro-y:nth-child(42) {
    z-index: 8;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.2s;
  }
* > .intro-x:nth-child(43) {
    z-index: 7;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.3s;
  }
* > .-intro-x:nth-child(43) {
    z-index: 7;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.3s;
  }
* > .intro-y:nth-child(43) {
    z-index: 7;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.3s;
  }
* > .intro-x:nth-child(44) {
    z-index: 6;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.4s;
  }
* > .-intro-x:nth-child(44) {
    z-index: 6;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.4s;
  }
* > .intro-y:nth-child(44) {
    z-index: 6;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.4s;
  }
* > .intro-x:nth-child(45) {
    z-index: 5;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.5s;
  }
* > .-intro-x:nth-child(45) {
    z-index: 5;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.5s;
  }
* > .intro-y:nth-child(45) {
    z-index: 5;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.5s;
  }
* > .intro-x:nth-child(46) {
    z-index: 4;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.6s;
  }
* > .-intro-x:nth-child(46) {
    z-index: 4;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.6s;
  }
* > .intro-y:nth-child(46) {
    z-index: 4;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.6s;
  }
* > .intro-x:nth-child(47) {
    z-index: 3;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.7s;
  }
* > .-intro-x:nth-child(47) {
    z-index: 3;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.7s;
  }
* > .intro-y:nth-child(47) {
    z-index: 3;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.7s;
  }
* > .intro-x:nth-child(48) {
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.8s;
  }
* > .-intro-x:nth-child(48) {
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.8s;
  }
* > .intro-y:nth-child(48) {
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.8s;
  }
* > .intro-x:nth-child(49) {
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.9s;
  }
* > .-intro-x:nth-child(49) {
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.9s;
  }
* > .intro-y:nth-child(49) {
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 4.9s;
  }
* > .intro-x:nth-child(50) {
    z-index: 0;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 5s;
  }
* > .-intro-x:nth-child(50) {
    z-index: 0;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 5s;
  }
* > .intro-y:nth-child(50) {
    z-index: 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: 0.4s intro-y-animation ease-in-out 0.33333s;
    animation-fill-mode: forwards;
    animation-delay: 5s;
  }
@keyframes intro-x-animation {
    100%{
		opacity: 1;
	}
    100% {
      transform: translateX(0px);
    }
  }
@keyframes intro-y-animation {
    100%{
		opacity: 1;
	}
    100% {
      transform: translateY(0px);
    }
  }
.modal {
    margin-top: -10000px;
    margin-left: -10000px;
    background: rgba(0, 0, 0, 0.6509803922);
    transition: visibility 0s linear 0.2s, opacity 0.2s 0s;
    visibility: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100vh;
    width: 100vw;
    opacity: 0;
  }
.modal.modal-overlap {
    background: rgba(0, 0, 0, 0.6509803922);
  }
.modal.modal-static .modal-content {
    animation: modal-static-backdrop 0.3s infinite;
    animation-direction: alternate;
  }
.modal.show {
    transition: visibility 0s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
    visibility: visible;
    opacity: 1;
  }
.modal.show > .modal-dialog{
	margin-top: 4rem;
}
.modal .modal-dialog {
    width: 90%;
    transition: margin-top 0.4s;
    margin-left: auto;
    margin-right: auto;
    margin-top: -4rem;
    margin-bottom: 4rem;
  }
@media (min-width: 640px) {
    .modal .modal-dialog {
      width: 460px;
    }
    .modal .modal-dialog.modal-sm {
      width: 300px;
    }
    .modal .modal-dialog.modal-lg {
      width: 600px;
    }
    .modal .modal-dialog.modal-xl {
      width: 600px;
    }
  }
@media (min-width: 1024px) {
    .modal .modal-dialog.modal-xl {
      width: 900px;
    }
  }
.modal .modal-dialog .modal-content{
	position: relative;
}
.modal .modal-dialog .modal-content > [data-dismiss=modal]{
	position: absolute;
	right: 0px;
	top: 0px;
	margin-top: 0.75rem;
	margin-right: 0.75rem;
}
.modal.modal-slide-over{
	overflow-x: hidden;
}
.modal.modal-slide-over.modal-static .modal-content{
	animation: none;
}
.modal.modal-slide-over.show {
    transition: visibility 0s ease-in-out 0s, opacity 0.6s ease-in-out 0s;
    visibility: visible;
    opacity: 1;
  }
.modal.modal-slide-over.show > .modal-dialog{
	margin-right: 0px;
}
@media (max-width: 639px) {
    .modal.modal-slide-over.show > .modal-dialog .modal-content > [data-dismiss=modal]{
		margin-left: -2.5rem;
	}
  }
.modal.modal-slide-over .modal-dialog {
    margin-right: -100%;
    transition: margin-right 0.6s;
    margin-top: 0px;
    margin-bottom: 0px;
  }
.modal.modal-slide-over .modal-dialog .modal-content{
	min-height: 100vh;
	border-radius: 0px;
}
.modal.modal-slide-over .modal-dialog .modal-content > [data-dismiss=modal]{
	position: absolute;
	top: 0px;
	left: 0px;
	right: auto;
	margin-top: 1rem;
	margin-left: -3rem;
}
@keyframes modal-static-backdrop {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.05);
    }
  }
.pagination{
	margin-right: auto;
	display: flex;
}
@media (max-width: 639px) {
    .pagination{
		margin-right: 0px;
	}
    .pagination{
		width: 100%;
	}
    .pagination li{
		flex: 1 1 0%;
	}
    .pagination li:nth-child(1) .pagination__link, .pagination li:nth-child(2) .pagination__link, .pagination li:nth-child(3) .pagination__link, .pagination li:nth-child(7) .pagination__link, .pagination li:nth-child(8) .pagination__link, .pagination li:nth-child(9) .pagination__link{
		padding-left: 0.25rem;
		padding-right: 0.25rem;
	}
  }
.pagination li .pagination__link {
    min-width: 40px;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border-width: 1px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-weight: 500;
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    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, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    transition-duration: 200ms;
  }
.pagination li .pagination__link:hover:not(:disabled){
	--tw-border-opacity: 0.9;
	--tw-bg-opacity: 0.9;
}
.pagination li .pagination__link:focus{
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.pagination li .pagination__link:not(button){
	text-align: center;
}
.pagination li .pagination__link:disabled{
	cursor: not-allowed;
	opacity: 0.7;
}
.pagination li .pagination__link{
	border-color: transparent;
	font-weight: 400;
	--tw-text-opacity: 1;
	color: rgba(45, 55, 72, var(--tw-text-opacity));
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.dark .pagination li .pagination__link{
	--tw-text-opacity: 1;
	color: rgba(226, 232, 240, var(--tw-text-opacity));
}
@media (max-width: 639px) {
    .pagination li .pagination__link{
		margin-right: 0px;
	}
    .pagination li .pagination__link{
		min-width: 0px;
	}
  }
.pagination li .pagination__link.pagination__link--active{
	font-weight: 500;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0431372549);
    position: relative;
    border-radius: 0.375rem;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.dark .pagination li .pagination__link.pagination__link--active{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
}
.progress{
	height: 0.5rem;
	width: 100%;
	border-radius: 9999px;
	--tw-bg-opacity: 1;
	background-color: rgba(203, 213, 224, var(--tw-bg-opacity));
}
.dark .progress{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
.nav{
	display: flex;
}
.nav.nav-tabs .active{
	border-bottom-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(28, 63, 170, var(--tw-border-opacity));
	font-weight: 500;
}
.tab-content .tab-pane {
    top: -9999px;
    left: -9999px;
    transition: visibility 0s linear 0.6s, opacity 0.6s 0s;
    visibility: hidden;
    position: absolute;
    opacity: 0;
  }
.tab-content .tab-pane.active {
    transition: visibility 0s linear 0s, opacity 0.6s 0s;
    visibility: visible;
    position: static;
    opacity: 1;
  }
.table{
	width: 100%;
	text-align: left;
}
.table th{
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-weight: 500;
}
.table td{
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.table.table--sm th{
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.table.table--sm td{
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
@keyframes type-animation {
    50%{
		opacity: 1;
	}
  }
.zoom-in{
	transform: var(--tw-transform);
	cursor: pointer;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 300ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.zoom-in:hover{
	--tw-scale-x: 1.05;
	--tw-scale-y: 1.05;
	transform: var(--tw-transform);
	--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);
}
.box {
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0431372549);
    position: relative;
    border-radius: 0.375rem;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }
.dark .box{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
}
.visible{
	visibility: visible;
}
.static{
	position: static;
}
.fixed{
	position: fixed;
}
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.right-5{
	right: 1.25rem;
}
.top-5{
	top: 1.25rem;
}
.left-0{
	left: 0px;
}
.right-0{
	right: 0px;
}
.top-0{
	top: 0px;
}
.z-50{
	z-index: 50;
}
.z-0{
	z-index: 0;
}
.col-span-12{
	grid-column: span 12 / span 12;
}
.col-span-10{
	grid-column: span 10 / span 10;
}
.col-span-8{
	grid-column: span 8 / span 8;
}
.col-span-2{
	grid-column: span 2 / span 2;
}
.col-span-6{
	grid-column: span 6 / span 6;
}
.col-span-4{
	grid-column: span 4 / span 4;
}
.col-span-3{
	grid-column: span 3 / span 3;
}
.my-auto{
	margin-top: auto;
	margin-bottom: auto;
}
.my-10{
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}
.mx-auto{
	margin-left: auto;
	margin-right: auto;
}
.my-6{
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.my-5{
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}
.mb-2{
	margin-bottom: 0.5rem;
}
.ml-3{
	margin-left: 0.75rem;
}
.-mt-16{
	margin-top: -4rem;
}
.mt-10{
	margin-top: 2.5rem;
}
.mt-5{
	margin-top: 1.25rem;
}
.mt-2{
	margin-top: 0.5rem;
}
.mt-8{
	margin-top: 2rem;
}
.mb-3{
	margin-bottom: 0.75rem;
}
.mr-2{
	margin-right: 0.5rem;
}
.mt-3{
	margin-top: 0.75rem;
}
.ml-2{
	margin-left: 0.5rem;
}
.mb-5{
	margin-bottom: 1.25rem;
}
.-ml-px{
	margin-left: -1px;
}
.mr-auto{
	margin-right: auto;
}
.-mt-3{
	margin-top: -0.75rem;
}
.ml-1{
	margin-left: 0.25rem;
}
.mr-3{
	margin-right: 0.75rem;
}
.mr-5{
	margin-right: 1.25rem;
}
.block{
	display: block;
}
.inline-block{
	display: inline-block;
}
.inline{
	display: inline;
}
.flex{
	display: flex;
}
.inline-flex{
	display: inline-flex;
}
.table{
	display: table;
}
.table-row-group{
	display: table-row-group;
}
.table-row{
	display: table-row;
}
.grid{
	display: grid;
}
.contents{
	display: contents;
}
.list-item{
	display: list-item;
}
.hidden{
	display: none;
}
.h-1{
	height: 0.25rem;
}
.h-screen{
	height: 100vh;
}
.h-5{
	height: 1.25rem;
}
.h-4{
	height: 1rem;
}
.h-6{
	height: 1.5rem;
}
.h-3{
	height: 0.75rem;
}
.h-full{
	height: 100%;
}
.h-10{
	height: 2.5rem;
}
.h-52{
	height: 13rem;
}
.h-40{
	height: 10rem;
}
.h-8{
	height: 2rem;
}
.h-2{
	height: 0.5rem;
}
.min-h-screen{
	min-height: 100vh;
}
.w-full{
	width: 100%;
}
.w-14{
	width: 3.5rem;
}
.w-1\/2{
	width: 50%;
}
.w-5{
	width: 1.25rem;
}
.w-5\/6{
	width: 83.333333%;
}
.w-4{
	width: 1rem;
}
.w-6{
	width: 1.5rem;
}
.w-3{
	width: 0.75rem;
}
.w-1\/3{
	width: 33.333333%;
}
.w-2\/3{
	width: 66.666667%;
}
.w-10{
	width: 2.5rem;
}
.w-8{
	width: 2rem;
}
.w-64{
	width: 16rem;
}
.w-2{
	width: 0.5rem;
}
.flex-1{
	flex: 1 1 0%;
}
.flex-shrink-0{
	flex-shrink: 0;
}
.flex-grow{
	flex-grow: 1;
}
.border-collapse{
	border-collapse: collapse;
}
.rotate-180{
	--tw-rotate: 180deg;
	transform: var(--tw-transform);
}
.transform{
	transform: var(--tw-transform);
}
@keyframes pulse{
	50%{
		opacity: .5;
	}
}
.animate-pulse{
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-pointer{
	cursor: pointer;
}
.cursor-default{
	cursor: default;
}
.resize{
	resize: both;
}
.grid-cols-2{
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-12{
	grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-1{
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-10{
	grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-5{
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-4{
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-6{
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
.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-3{
	gap: 0.75rem;
}
.gap-5{
	gap: 1.25rem;
}
.overflow-auto{
	overflow: auto;
}
.overflow-hidden{
	overflow: hidden;
}
.overflow-x-auto{
	overflow-x: auto;
}
.overflow-y-auto{
	overflow-y: auto;
}
.overflow-y-hidden{
	overflow-y: hidden;
}
.truncate{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.whitespace-nowrap{
	white-space: nowrap;
}
.break-all{
	word-break: break-all;
}
.rounded-xl{
	border-radius: 0.75rem;
}
.rounded-lg{
	border-radius: 0.5rem;
}
.rounded-md{
	border-radius: 0.375rem;
}
.rounded{
	border-radius: 0.25rem;
}
.rounded-full{
	border-radius: 9999px;
}
.rounded-r-none{
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}
.rounded-l-none{
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}
.rounded-l-md{
	border-top-left-radius: 0.375rem;
	border-bottom-left-radius: 0.375rem;
}
.rounded-r-md{
	border-top-right-radius: 0.375rem;
	border-bottom-right-radius: 0.375rem;
}
.border{
	border-width: 1px;
}
.border-2{
	border-width: 2px;
}
.border-b{
	border-bottom-width: 1px;
}
.border-t{
	border-top-width: 1px;
}
.border-r{
	border-right-width: 1px;
}
.border-dashed{
	border-style: dashed;
}
.border-gray-300{
	--tw-border-opacity: 1;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity));
}
.border-gray-500{
	--tw-border-opacity: 1;
	border-color: rgba(160, 174, 192, var(--tw-border-opacity));
}
.border-theme-6{
	--tw-border-opacity: 1;
	border-color: rgba(211, 41, 41, var(--tw-border-opacity));
}
.border-gray-200{
	--tw-border-opacity: 1;
	border-color: rgba(237, 242, 247, var(--tw-border-opacity));
}
.border-theme-29{
	--tw-border-opacity: 1;
	border-color: rgba(40, 78, 178, var(--tw-border-opacity));
}
.border-transparent{
	border-color: transparent;
}
.border-gray-100{
	--tw-border-opacity: 1;
	border-color: rgba(247, 250, 252, var(--tw-border-opacity));
}
.border-theme-27{
	--tw-border-opacity: 1;
	border-color: rgba(32, 63, 173, var(--tw-border-opacity));
}
.bg-gray-200{
	--tw-bg-opacity: 1;
	background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
}
.bg-green-200{
	--tw-bg-opacity: 1;
	background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
}
.bg-blue-200{
	--tw-bg-opacity: 1;
	background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}
.bg-red-200{
	--tw-bg-opacity: 1;
	background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}
.bg-gray-300{
	--tw-bg-opacity: 1;
	background-color: rgba(226, 232, 240, var(--tw-bg-opacity));
}
.bg-green-300{
	--tw-bg-opacity: 1;
	background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
}
.bg-blue-300{
	--tw-bg-opacity: 1;
	background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
}
.bg-red-300{
	--tw-bg-opacity: 1;
	background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}
.bg-gray-500{
	--tw-bg-opacity: 1;
	background-color: rgba(160, 174, 192, var(--tw-bg-opacity));
}
.bg-green-500{
	--tw-bg-opacity: 1;
	background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}
.bg-blue-500{
	--tw-bg-opacity: 1;
	background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}
.bg-red-500{
	--tw-bg-opacity: 1;
	background-color: rgba(239, 68, 68, 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(247, 250, 252, var(--tw-bg-opacity));
}
.bg-purple-900{
	--tw-bg-opacity: 1;
	background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
}
.bg-yellow-500{
	--tw-bg-opacity: 1;
	background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
}
.bg-purple-500{
	--tw-bg-opacity: 1;
	background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
}
.bg-red-600{
	--tw-bg-opacity: 1;
	background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}
.bg-green-600{
	--tw-bg-opacity: 1;
	background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}
.bg-theme-26{
	--tw-bg-opacity: 1;
	background-color: rgba(21, 50, 154, var(--tw-bg-opacity));
}
.bg-theme-1{
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
}
.p-2{
	padding: 0.5rem;
}
.p-3{
	padding: 0.75rem;
}
.p-5{
	padding: 1.25rem;
}
.p-4{
	padding: 1rem;
}
.py-3{
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.px-4{
	padding-left: 1rem;
	padding-right: 1rem;
}
.py-5{
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}
.px-5{
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.py-8{
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.py-2{
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.py-1{
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.px-2{
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.px-3{
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.py-0\.5{
	padding-top: 0.125rem;
	padding-bottom: 0.125rem;
}
.py-0{
	padding-top: 0px;
	padding-bottom: 0px;
}
.pt-5{
	padding-top: 1.25rem;
}
.pl-5{
	padding-left: 1.25rem;
}
.pt-4{
	padding-top: 1rem;
}
.pt-2{
	padding-top: 0.5rem;
}
.text-left{
	text-align: left;
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}
.text-lg{
	font-size: 1.125rem;
	line-height: 1.75rem;
}
.text-4xl{
	font-size: 2.25rem;
	line-height: 2.5rem;
}
.text-2xl{
	font-size: 1.5rem;
	line-height: 2rem;
}
.text-sm{
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.text-base{
	font-size: 1rem;
	line-height: 1.5rem;
}
.text-xs{
	font-size: 0.75rem;
	line-height: 1rem;
}
.text-xl{
	font-size: 1.25rem;
	line-height: 1.75rem;
}
.font-bold{
	font-weight: 700;
}
.font-medium{
	font-weight: 500;
}
.uppercase{
	text-transform: uppercase;
}
.lowercase{
	text-transform: lowercase;
}
.italic{
	font-style: italic;
}
.leading-tight{
	line-height: 1.25;
}
.leading-5{
	line-height: 1.25rem;
}
.text-gray-700{
	--tw-text-opacity: 1;
	color: rgba(74, 85, 104, var(--tw-text-opacity));
}
.text-white{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-gray-500{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.text-theme-6{
	--tw-text-opacity: 1;
	color: rgba(211, 41, 41, var(--tw-text-opacity));
}
.text-gray-600{
	--tw-text-opacity: 1;
	color: rgba(113, 128, 150, var(--tw-text-opacity));
}
.text-theme-1{
	--tw-text-opacity: 1;
	color: rgba(28, 63, 170, var(--tw-text-opacity));
}
.text-theme-28{
	--tw-text-opacity: 1;
	color: rgba(187, 200, 253, var(--tw-text-opacity));
}
.underline{
	text-decoration: underline;
}
.placeholder-theme-13::-moz-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(127, 158, 185, var(--tw-placeholder-opacity));
}
.placeholder-theme-13::placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(127, 158, 185, var(--tw-placeholder-opacity));
}
.opacity-0{
	opacity: 0;
}
.shadow{
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
	--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ring-gray-300{
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity));
}
.blur{
	--tw-blur: blur(8px);
	filter: var(--tw-filter);
}
.filter{
	filter: var(--tw-filter);
}
.transition{
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition-all{
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.duration-150{
	transition-duration: 150ms;
}
.duration-300{
	transition-duration: 300ms;
}
.ease-in-out{
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-in{
	transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-out{
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/*
 |--------------------------------------------------------------------------
 | Fonts
 |--------------------------------------------------------------------------
 |
 | Import all fonts used in the template, the font configuration can be
 | seen in "tailwind.config.js".
 |
 | Please check this link for more details:
 | https://tailwindcss.com/docs/theme
 |
 */
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrEz0dL-vwnYh2eg.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrEzQdL-vwnYh2eg.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrEzwdL-vwnYh2eg.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrEzMdL-vwnYh2eg.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrEz8dL-vwnYh2eg.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrEz4dL-vwnYh2eg.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrEzAdL-vwnYg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc3CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc-CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc2CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc5CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc1CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc0CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc6CsTYl4BO.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xFIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xMIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xEIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xLIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xHIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xGIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xIIzIXKMny.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc3CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc-CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc2CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc5CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc1CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc0CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ACc6CsTYl4BO.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBic3CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBic-CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBic2CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBic5CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBic1CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBic0CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBic6CsTYl4BO.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBCc3CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBCc-CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBCc2CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBCc5CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBCc1CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBCc0CsTYl4BOQ3o.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBCc6CsTYl4BO.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxFIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxMIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxEIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxLIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxHIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxGIzIXKMnyrYk.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxIIzIXKMny.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCRc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fABc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCBc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fChc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4AMP6lQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCRc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fABc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCBc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fChc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc4AMP6lQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCRc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfABc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCBc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCRc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfABc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCBc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfBxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCxc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfChc4AMP6lbBP.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Roboto Black"), local("Roboto-Black"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfBBc4AMP6lQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*
 |--------------------------------------------------------------------------
 | Breakpoints
 |--------------------------------------------------------------------------
 |
 | Provide custom breakpoints for responsive layouts.
 |
 | Default values:
 | xs: 0, sm: 640px, md: 768px, lg: 1024px, xl: 1280px, 2xl: 1536px, xxl: 1600px
 |
 */
/*
 |--------------------------------------------------------------------------
 | Mixins
 |--------------------------------------------------------------------------
 |
 | Import helper mixins.
 |
 */
/*
 |--------------------------------------------------------------------------
 | 3rd Party Libraries
 |--------------------------------------------------------------------------
 |
 | Import 3rd party library CSS/SASS files.
 |
 */
.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

.tippy-box[data-theme~=light] {
  color: #26323d;
  box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
  background-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=top] > .tippy-arrow:before {
  border-top-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=bottom] > .tippy-arrow:before {
  border-bottom-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=left] > .tippy-arrow:before {
  border-left-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=right] > .tippy-arrow:before {
  border-right-color: #fff;
}

.tippy-box[data-theme~=light] > .tippy-backdrop {
  background-color: #fff;
}

.tippy-box[data-theme~=light] > .tippy-svg-arrow {
  fill: #fff;
}

.tippy-box[data-placement^=top] > .tippy-svg-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-svg-arrow:after, .tippy-box[data-placement^=top] > .tippy-svg-arrow > svg {
  top: 16px;
  transform: rotate(180deg);
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow > svg {
  bottom: 16px;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow:after, .tippy-box[data-placement^=left] > .tippy-svg-arrow > svg {
  transform: rotate(90deg);
  top: calc(50% - 3px);
  left: 11px;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow:after, .tippy-box[data-placement^=right] > .tippy-svg-arrow > svg {
  transform: rotate(-90deg);
  top: calc(50% - 3px);
  right: 11px;
}

.tippy-svg-arrow {
  width: 16px;
  height: 16px;
  fill: #333;
  text-align: initial;
}

.tippy-svg-arrow, .tippy-svg-arrow > svg {
  position: absolute;
}

.tippy-box[data-animation=shift-away][data-state=hidden] {
  opacity: 0;
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top] {
  transform: translateY(10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom] {
  transform: translateY(-10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left] {
  transform: translateX(10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right] {
  transform: translateX(-10px);
}

/*
 |  tail.select - The vanilla solution to make your HTML select fields AWESOME!
 |  @file       ./css/default/tail.select-light.css
 |  @author     SamBrishes <sam@pytes.net>
 |  @version    0.5.15 - Beta
 |
 |  @website    https://github.com/pytesNET/tail.select
 |  @license    X11 / MIT License
 |  @copyright  Copyright © 2014 - 2019 SamBrishes, pytesNET <info@pytes.net>
 */
/* @start GENERAL */
.tail-select, .tail-select *, .tail-select *:before, .tail-select *:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.tail-select, .tail-select * {
  outline: none;
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.tail-select {
  width: 250px;
  margin: 1px;
  padding: 0;
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  font-family: inherit;
}

.tail-select mark {
  color: white;
  background-color: #DC4650;
}

.tail-select button {
  outline: none;
}

.tail-select button.tail-all, .tail-select button.tail-none {
  height: auto;
  margin: 0 2px;
  padding: 2px 6px;
  display: inline-block;
  font-size: 10px;
  line-height: 14px;
  text-shadow: none;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: top;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 3px;
  box-shadow: none;
  -webkit-box-shadow: none;
  transition: color 142ms linear, border 142ms linear, background 142ms linear;
  -webkit-transition: color 142ms linear, border 142ms linear, background 142ms linear;
}

.tail-select button.tail-all {
  color: rgba(48, 52, 56, 0.5);
  border-color: rgba(48, 52, 56, 0.5);
  background-color: transparent;
}

.tail-select button.tail-all:hover {
  color: #62C462;
  border-color: #62C462;
  background-color: transparent;
}

.tail-select button.tail-none {
  color: rgba(48, 52, 56, 0.5);
  border-color: rgba(48, 52, 56, 0.5);
  background-color: transparent;
}

.tail-select button.tail-none:hover {
  color: #EE5F5B;
  border-color: #EE5F5B;
  background-color: transparent;
}

.tail-select.disabled button.tail-all {
  color: rgba(48, 52, 56, 0.25);
  border-color: rgba(48, 52, 56, 0.25);
  background-color: transparent;
}

.tail-select.disabled button.tail-none {
  color: rgba(48, 52, 56, 0.25);
  border-color: rgba(48, 52, 56, 0.25);
  background-color: transparent;
}

.tail-select input[type=text] {
  color: #303438;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 10px 15px;
  display: inline-block;
  outline: 0;
  font-size: 12px;
  line-height: 20px;
  vertical-align: middle;
  background-color: transparent;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.tail-select input[type=text]:hover {
  color: #303438;
  border-color: transparent;
  background-color: transparent;
}

.tail-select input[type=text]:focus {
  color: #3C82E6;
  border-color: transparent;
  background-color: transparent;
}

.tail-select.disabled input[type=text] {
  color: rgba(48, 52, 56, 0.75);
  border-color: transparent;
  background-color: transparent;
}

.tail-select-container {
  margin: 0;
  padding: 3px;
  text-align: left;
  border-radius: 3px;
}

.tail-select-container .select-handle {
  width: auto;
  color: #303438;
  cursor: pointer;
  margin: 1px;
  padding: 0.2em 0.6em 0.3em;
  display: inline-block;
  position: relative;
  font-size: 11.844px;
  text-align: left;
  font-weight: bold;
  line-height: 16px;
  text-shadow: none;
  vertical-align: top;
  background-color: #d9d9d9;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  border-radius: 3px;
  transition: background 142ms linear;
  -webkit-transition: background 142ms linear;
}

.tail-select-container .select-handle:hover {
  color: #303438;
  background-color: #DC4650;
}

.tail-select-container.select-label .select-handle {
  margin: 5px 3px;
}

/* @end GENERAL */
/* @start LABEL */
.tail-select .select-label {
  cursor: pointer;
  color: rgba(48, 52, 56, 0.85);
  width: 100%;
  margin: 0;
  padding: 5px 30px 5px 10px;
  display: block;
  z-index: 27;
  position: relative;
  text-align: left;
  background-color: white;
  border-width: 0px;
  border-style: solid;
  border-color: #d9d9d9;
  border-radius: 3px;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1), 0 0 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1), 0 0 1px 1px rgba(0, 0, 0, 0.25);
  transition: background 142ms linear, box-shadow 142ms linear;
  -webkit-transition: background 142ms linear, box-shadow 142ms linear;
}

.tail-select .select-label:after {
  top: 15px;
  right: 12px;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  z-index: 25;
  content: "";
  opacity: 0.5;
  display: inline-block;
  position: absolute;
  border-top: 5px dashed;
  border-top: 5px solid\9 ;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  text-shadow: none;
  transition: opacity 142ms linear, transform 142ms linear;
  -webkit-transition: opacity 142ms linear, transform 142ms linear;
}

.tail-select .select-label .label-count, .tail-select .select-label .label-inner {
  width: auto;
  margin: 0;
  text-align: left;
  vertical-align: top;
}

.tail-select .select-label .label-count {
  float: left;
  color: rgba(48, 52, 56, 0.85);
  margin: 0 5px 0 0;
  padding: 0 7px 0 0;
  display: inline-block;
  font-size: 11.844px;
  font-weight: bold;
  text-shadow: none;
  white-space: nowrap;
  vertical-align: top;
  border-width: 0px 1px 0 0;
  border-style: solid;
  border-color: #d9d9d9;
  border-radius: 0px;
}

.tail-select .select-label .label-inner {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tail-select:hover .select-label, .tail-select.idle .select-label,
.tail-select.active .select-label {
  z-index: 25;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1), 0 0 1px 1px #3C82E6;
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1), 0 0 1px 1px #3C82E6;
}

.tail-select:hover .select-label:after, .tail-select.idle .select-label:after,
.tail-select.active .select-label:after {
  opacity: 0.85;
}

.tail-select:hover .select-label .label-count, .tail-select.idle .select-label .label-count,
.tail-select.active .select-label .label-count, .tail-select:hover .select-label .label-inner,
.tail-select.idle .select-label .label-inner, .tail-select.active .select-label .label-inner {
  opacity: 1;
}

.tail-select.active .select-label {
  z-index: 27;
}

.tail-select.active .select-label:after {
  opacity: 0.85;
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.tail-select.disabled .select-label {
  cursor: not-allowed;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* @end LABEL */
/* @start DROPDOWN */
.tail-select .select-dropdown {
  top: 100%;
  left: 0;
  color: #303438;
  width: 100%;
  min-height: 35px;
  margin: -1px 0 0 0;
  padding: 0;
  z-index: 30;
  display: none;
  overflow: hidden;
  position: absolute;
  background-color: white;
  border-width: 0px;
  border-style: solid;
  border-color: #d9d9d9;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1), 0 0 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1), 0 0 1px 1px rgba(0, 0, 0, 0.25);
}

.tail-select .select-dropdown .dropdown-search {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #d9d9d9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.tail-select .select-dropdown .dropdown-inner {
  width: 100%;
  margin: 0;
  padding: 1px 0;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

.tail-select .select-dropdown .dropdown-empty {
  margin: 0;
  padding: 16px 0;
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
}

.tail-select .select-dropdown .dropdown-action {
  top: 3px;
  right: 15px;
  width: auto;
  margin: 0;
  padding: 7px 0;
  z-index: 35;
  display: inline-block;
  position: absolute;
  text-align: center;
}

.tail-select .select-dropdown ul, .tail-select .select-dropdown ul li {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
  vertical-align: top;
}

.tail-select .select-dropdown ul li {
  color: #303438;
  padding: 5px 10px 5px 35px;
  font-size: 12px;
  text-align: left;
  line-height: 18px;
  font-weight: normal;
}

.tail-select .select-dropdown ul li:first-of-type {
  margin-top: 7px;
}

.tail-select .select-dropdown ul li:last-of-type {
  margin-bottom: 7px;
}

.tail-select .select-dropdown ul li.optgroup-title {
  color: rgba(48, 52, 56, 0.7);
  cursor: default;
  margin: 9px 0 0 0;
  padding-left: 10px;
  font-size: 14px;
  text-shadow: none;
}

.tail-select .select-dropdown ul li.optgroup-title button {
  float: right;
  margin-top: -2px;
  opacity: 0;
}

.tail-select .select-dropdown ul:hover li button {
  opacity: 1;
}

.tail-select .select-dropdown ul li.dropdown-option {
  cursor: pointer;
  color: #303438;
}

.tail-select .select-dropdown ul li.dropdown-option:before {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  z-index: 21;
  display: inline-block;
  content: "";
  opacity: 0;
  position: absolute;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center center;
  transition: opacity 50ms linear;
  -webkit-transition: opacity 50ms linear;
}

.tail-select .select-dropdown ul li.dropdown-option .option-description {
  color: rgba(48, 52, 56, 0.85);
  width: auto;
  margin: 0;
  padding: 0;
  display: block;
  font-size: 10px;
  text-align: left;
  line-height: 14px;
  vertical-align: top;
}

.tail-select .select-dropdown ul li.dropdown-option:hover,
.tail-select .select-dropdown ul li.dropdown-option.hover {
  color: #303438;
}

.tail-select .select-dropdown ul li.dropdown-option:hover .option-description,
.tail-select .select-dropdown ul li.dropdown-option.hover .option-description {
  color: #303438;
}

.tail-select.open-top .select-dropdown {
  top: auto;
  bottom: 100%;
  margin: 0 0 -1px 0;
  border-radius: 3px 3px 0 0;
}

.tail-select.hide-selected .select-dropdown ul li.selected,
.tail-select.hide-disabled .select-dropdown ul li.disabled {
  display: none;
}

/* State & Icons :: Single */
.tail-select .select-dropdown ul li.dropdown-option:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%22%20height%3D%2216%22%20viewBox%3D%220%200%2012%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M12%205l-8%208-4-4%201.5-1.5L4%2010l6.5-6.5L12%205z%22/%3E%3C/svg%3E");
}

.tail-select .select-dropdown ul li.dropdown-option:hover:before,
.tail-select .select-dropdown ul li.dropdown-option.hover:before {
  opacity: 0.5;
}

.tail-select .select-dropdown ul li.dropdown-option.selected {
  color: #3C82E6;
  background-color: white;
}

.tail-select .select-dropdown ul li.dropdown-option.selected:before {
  opacity: 0.85;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%22%20height%3D%2216%22%20viewBox%3D%220%200%2012%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M12%205l-8%208-4-4%201.5-1.5L4%2010l6.5-6.5L12%205z%22/%3E%3C/svg%3E");
}

.tail-select .select-dropdown ul li.dropdown-option.selected .option-description {
  color: #3C82E6;
}

.tail-select.deselect .select-dropdown ul li.dropdown-option.selected:hover:before,
.tail-select.deselect .select-dropdown ul li.dropdown-option.selected.hover:before {
  opacity: 0.85;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%22%20height%3D%2216%22%20viewBox%3D%220%200%2012%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M7.48%208l3.75%203.75-1.48%201.48L6%209.48l-3.75%203.75-1.48-1.48L4.52%208%20.77%204.25l1.48-1.48L6%206.52l3.75-3.75%201.48%201.48L7.48%208z%22/%3E%3C/svg%3E");
}

.tail-select.deselect .select-dropdown ul li.dropdown-option.selected:hover .option-description,
.tail-select.deselect .select-dropdown ul li.dropdown-option.selected.hover .option-description {
  color: #3C82E6;
}

.tail-select .select-dropdown ul li.dropdown-option {
  transition: all 0.3s ease-in;
}

.tail-select .select-dropdown ul li.dropdown-option:hover,
.tail-select .select-dropdown ul li.dropdown-option.hover {
  transition: all 0.4s ease;
  background-color: #e9edf2;
}

.tail-select.disabled .select-dropdown ul li.dropdown-option,
.tail-select .select-dropdown ul li.dropdown-option.disabled {
  cursor: not-allowed;
  color: rgba(48, 52, 56, 0.4);
  text-shadow: 0px 1px 0px rgba(119, 129, 138, 0.1), 0px -1px 0px rgba(0, 0, 0, 0.1);
  background-color: #fafafa;
}

.tail-select.disabled .select-dropdown ul li.dropdown-option:before,
.tail-select .select-dropdown ul li.dropdown-option.disabled:before {
  opacity: 0.85;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M7%201C3.14%201%200%204.14%200%208s3.14%207%207%207%207-3.14%207-7-3.14-7-7-7zm0%201.3c1.3%200%202.5.44%203.47%201.17l-8%208A5.755%205.755%200%200%201%201.3%208c0-3.14%202.56-5.7%205.7-5.7zm0%2011.41c-1.3%200-2.5-.44-3.47-1.17l8-8c.73.97%201.17%202.17%201.17%203.47%200%203.14-2.56%205.7-5.7%205.7z%22/%3E%3C/svg%3E");
}

.tail-select.disabled .select-dropdown ul li.dropdown-option .option-description,
.tail-select .select-dropdown ul li.dropdown-option.disabled .option-description {
  color: rgba(48, 52, 56, 0.4);
}

/* State & Icons :: Multiple */
.tail-select.multiple .select-dropdown ul li.dropdown-option:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M13%201H1c-.55%200-1%20.45-1%201v12c0%20.55.45%201%201%201h12c.55%200%201-.45%201-1V2c0-.55-.45-1-1-1zm0%2013H1V2h12v12zM6%209H3V7h3V4h2v3h3v2H8v3H6V9z%22/%3E%3C/svg%3E");
}

.tail-select.multiple .select-dropdown ul li.dropdown-option.selected:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M13%201H1c-.55%200-1%20.45-1%201v12c0%20.55.45%201%201%201h12c.55%200%201-.45%201-1V2c0-.55-.45-1-1-1zm0%2013H1V2h12v12zM4%208c0-1.66%201.34-3%203-3s3%201.34%203%203-1.34%203-3%203-3-1.34-3-3z%22/%3E%3C/svg%3E");
}

.tail-select.multiple .select-dropdown ul li.dropdown-option.selected:hover:before,
.tail-select.multiple .select-dropdown ul li.dropdown-option.selected.hover:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M13%201H1c-.55%200-1%20.45-1%201v12c0%20.55.45%201%201%201h12c.55%200%201-.45%201-1V2c0-.55-.45-1-1-1zm0%2013H1V2h12v12zm-2-5H3V7h8v2z%22/%3E%3C/svg%3E");
}

.tail-select.multiple.disabled .select-dropdown ul li.dropdown-option:before,
.tail-select.multiple .select-dropdown ul li.dropdown-option.disabled:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2016%22%3E%3Cpath%20fill%3D%22%23303438%22%20d%3D%22M13%201H1c-.55%200-1%20.45-1%201v12c0%20.55.45%201%201%201h12c.55%200%201-.45%201-1V2c0-.55-.45-1-1-1zm0%2013H1V2h12v12zm-8.5-2H3v-1.5L9.5%204H11v1.5L4.5%2012z%22/%3E%3C/svg%3E");
}

/* @end DROPDOWN */
.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-wrapper.plugin-drag_drop.multi > .ts-control > div.ui-sortable-placeholder {
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 !important;
  box-shadow: inset 0 0 12px 4px #fff;
  visibility: visible !important;
}

.ts-wrapper.plugin-drag_drop .ui-sortable-placeholder:after {
  content: "!";
  visibility: hidden;
}

.ts-wrapper.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.plugin-checkbox_options .option input {
  margin-right: 0.5rem;
}

.plugin-clear_button .ts-control {
  padding-right: calc(1em + 18px) !important;
}

.plugin-clear_button .clear-button {
  background: transparent !important;
  cursor: pointer;
  margin-right: 0 !important;
  opacity: 0;
  position: absolute;
  right: 2px;
  top: 8px;
  transition: opacity 0.5s;
}

.plugin-clear_button.single .clear-button {
  right: calc(2px + 2rem);
}

.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  background: #f8f8f8;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 3px 3px 0 0;
  padding: 10px 8px;
  position: relative;
}

.ts-wrapper .dropdown-header-close {
  color: #303030;
  font-size: 20px !important;
  line-height: 20px;
  margin-top: -12px;
  opacity: 0.4;
  position: absolute;
  right: 8px;
  top: 50%;
}

.ts-wrapper .dropdown-header-close:hover {
  color: #000;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  border: 1px solid #d0d0d0;
  box-shadow: none;
}

.plugin-dropdown_input .dropdown-input {
  background: transparent;
  border: solid #d0d0d0;
  border-width: 0 0 1px;
  box-shadow: none;
  display: block;
  padding: 8px;
  width: 100%;
}

.plugin-dropdown_input .items-placeholder {
  border: 0 !important;
  box-shadow: none !important;
  width: 100%;
}

.plugin-dropdown_input.dropdown-active .items-placeholder, .plugin-dropdown_input.has-items .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-moz-placeholder {
  color: transparent;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}

.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0;
}

.ts-wrapper.plugin-remove_button .item {
  align-items: center;
  display: inline-flex;
  padding-right: 0 !important;
}

.ts-wrapper.plugin-remove_button .item .remove {
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  color: inherit;
  display: inline-block;
  margin-left: 6px;
  padding: 0 6px;
  text-decoration: none;
  vertical-align: middle;
}

.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.ts-wrapper.plugin-remove_button .item.active .remove {
  border-left-color: #cacaca;
}

.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}

.ts-wrapper.plugin-remove_button.disabled .item .remove {
  border-left-color: #fff;
}

.ts-wrapper.plugin-remove_button .remove-single {
  font-size: 23px;
  position: absolute;
  right: 0;
  top: 0;
}

.ts-wrapper {
  position: relative;
}

.ts-control, .ts-control input, .ts-dropdown {
  font-smoothing: inherit;
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}

.ts-control, .ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-control {
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 8px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.ts-wrapper.multi.has-items .ts-control {
  padding: 6px 8px 3px;
}

.full .ts-control {
  background-color: #fff;
}

.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}

.focus .ts-control {
  box-shadow: none;
}

.ts-control > * {
  display: inline-block;
  vertical-align: baseline;
}

.ts-wrapper.multi .ts-control > div {
  background: #f2f2f2;
  border: 0 solid #d0d0d0;
  color: #303030;
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
}

.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  border: 0 solid #cacaca;
  color: #303030;
}

.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  background: #fff;
  border: 0 solid #fff;
  color: #7d7d7d;
}

.ts-control > input {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline-block !important;
  flex: 1 1 auto;
  line-height: inherit !important;
  margin: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  min-height: 0 !important;
  min-width: 7rem;
  padding: 0 !important;
  text-indent: 0 !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.ts-control > input::-ms-clear {
  display: none;
}

.ts-control > input:focus {
  outline: none !important;
}

.has-items .ts-control > input {
  margin: 0 4px !important;
}

.ts-control.rtl {
  text-align: right;
}

.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}

.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}

.disabled .ts-control {
  background-color: #fafafa;
  opacity: 0.5;
}

.input-hidden .ts-control > input {
  left: -10000px;
  opacity: 0;
  position: absolute;
}

.ts-dropdown {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 0 0 3px 3px;
  border-top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  left: 0;
  margin: 0.25rem 0 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}

.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.ts-dropdown .create, .ts-dropdown .no-results, .ts-dropdown .optgroup-header, .ts-dropdown .option {
  padding: 5px 8px;
}

.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.ts-dropdown [data-selectable].option {
  cursor: pointer;
  opacity: 1;
}

.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0;
}

.ts-dropdown .optgroup-header {
  background: #fff;
  color: #303030;
  cursor: default;
}

.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.ts-dropdown .active.create {
  color: #495c68;
}

.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.ts-dropdown .spinner {
  display: inline-block;
  height: 30px;
  margin: 5px 8px;
  width: 30px;
}

.ts-dropdown .spinner:after {
  animation: lds-dual-ring 1.2s linear infinite;
  border-color: #d0d0d0 transparent;
  border-radius: 50%;
  border-style: solid;
  border-width: 5px;
  content: " ";
  display: block;
  height: 24px;
  margin: 3px;
  width: 24px;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.ts-dropdown-content {
  overflow-scrolling: touch;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.ts-hidden-accessible {
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  padding: 12px 20px;
  color: #ffffff;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-right, .toastify-left {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
img[data-action=zoom] {
  cursor: zoom-in;
}

.zoom-img,
.zoom-img-wrap {
  position: relative;
  z-index: 666;
  transition: all 300ms;
}

img.zoom-img {
  cursor: zoom-out;
}

.zoom-overlay {
  cursor: zoom-out;
  z-index: 420;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: "alpha(opacity=0)";
  opacity: 0;
  transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";
  opacity: 1;
}
.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input, .iti input[type=text], .iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box, .iti__country-name, .iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box, .iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../img/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../img/flags@2x.png");
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.flatpickr-monthSelect-months {
  margin: 10px 1px 3px 1px;
  flex-wrap: wrap;
}

.flatpickr-monthSelect-month {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  margin: 0.5px;
  justify-content: center;
  padding: 10px;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  width: 33%;
}

.flatpickr-monthSelect-month.flatpickr-disabled {
  color: #eee;
}

.flatpickr-monthSelect-month.flatpickr-disabled:hover,
.flatpickr-monthSelect-month.flatpickr-disabled:focus {
  cursor: not-allowed;
  background: none !important;
}

.flatpickr-monthSelect-theme-dark {
  background: #3f4458;
}

.flatpickr-monthSelect-theme-dark .flatpickr-current-month input.cur-year {
  color: #fff;
}

.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-prev-month,
.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-next-month {
  color: #fff;
  fill: #fff;
}

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month {
  color: rgba(255, 255, 255, 0.95);
}

.flatpickr-monthSelect-month.today {
  border-color: #959ea9;
}

.flatpickr-monthSelect-month.inRange,
.flatpickr-monthSelect-month.inRange.today,
.flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-month:focus {
  background: #e6e6e6;
  cursor: pointer;
  outline: 0;
  border-color: #e6e6e6;
}

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.inRange,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:focus {
  background: #646c8c;
  border-color: #646c8c;
}

.flatpickr-monthSelect-month.today:hover,
.flatpickr-monthSelect-month.today:focus {
  background: #959ea9;
  border-color: #959ea9;
  color: #fff;
}

.flatpickr-monthSelect-month.selected,
.flatpickr-monthSelect-month.startRange,
.flatpickr-monthSelect-month.endRange {
  background-color: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-monthSelect-month.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-monthSelect-month.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-monthSelect-month.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-monthSelect-month.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.selected,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.startRange,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.endRange {
  background: #80cbc4;
  box-shadow: none;
  color: #fff;
  border-color: #80cbc4;
}

:root {
  --tagify-dd-color-primary:rgb(53,149,246);
  --tagify-dd-bg-color:white;
  --tagify-dd-item-pad:.3em .5em;
}

.tagify {
  --tags-disabled-bg:#F1F1F1;
  --tags-border-color:#DDD;
  --tags-hover-border-color:#CCC;
  --tags-focus-border-color:#3595f6;
  --tag-border-radius:3px;
  --tag-bg:#E5E5E5;
  --tag-hover:#D3E2E2;
  --tag-text-color:black;
  --tag-text-color--edit:black;
  --tag-pad:0.3em 0.5em;
  --tag-inset-shadow-size:1.1em;
  --tag-invalid-color:#D39494;
  --tag-invalid-bg:rgba(211, 148, 148, 0.5);
  --tag-remove-bg:rgba(211, 148, 148, 0.3);
  --tag-remove-btn-color:black;
  --tag-remove-btn-bg:none;
  --tag-remove-btn-bg--hover:#c77777;
  --input-color:inherit;
  --tag--min-width:1ch;
  --tag--max-width:auto;
  --tag-hide-transition:0.3s;
  --placeholder-color:rgba(0, 0, 0, 0.4);
  --placeholder-color-focus:rgba(0, 0, 0, 0.25);
  --loader-size:.8em;
  --readonly-striped:1;
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid var(--tags-border-color);
  padding: 0;
  line-height: 0;
  cursor: text;
  outline: 0;
  position: relative;
  box-sizing: border-box;
  transition: 0.1s;
}

@keyframes tags--bump {
  30% {
    transform: scale(1.2);
  }
}
@keyframes rotateLoader {
  to {
    transform: rotate(1turn);
  }
}
.tagify:hover:not(.tagify--focus):not(.tagify--invalid) {
  --tags-border-color:var(--tags-hover-border-color);
}

.tagify[disabled] {
  background: var(--tags-disabled-bg);
  filter: saturate(0);
  opacity: 0.5;
  pointer-events: none;
}

.tagify[disabled].tagify--select, .tagify[readonly].tagify--select {
  pointer-events: none;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select), .tagify[readonly]:not(.tagify--mix):not(.tagify--select) {
  cursor: default;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) > .tagify__input, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) > .tagify__input {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div {
  padding: var(--tag-pad);
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify[disabled] .tagify__tag__removeBtn, .tagify[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify--loading .tagify__input > br:last-child {
  display: none;
}

.tagify--loading .tagify__input::before {
  content: none;
}

.tagify--loading .tagify__input::after {
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  content: "" !important;
  margin: -2px 0 -2px 0.5em;
}

.tagify--loading .tagify__input:empty::after {
  margin-left: 0;
}

.tagify + input, .tagify + textarea {
  position: absolute !important;
  left: -9999em !important;
  transform: scale(0) !important;
}

.tagify__tag {
  display: inline-flex;
  align-items: center;
  margin: 5px 0 5px 5px;
  position: relative;
  z-index: 1;
  outline: 0;
  line-height: normal;
  cursor: default;
  transition: 0.13s ease-out;
}

.tagify__tag > div {
  vertical-align: top;
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--tag-pad);
  color: var(--tag-text-color);
  line-height: inherit;
  border-radius: var(--tag-border-radius);
  white-space: nowrap;
  transition: 0.13s ease-out;
}

.tagify__tag > div > * {
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  min-width: var(--tag--min-width);
  max-width: var(--tag--max-width);
  transition: 0.8s ease, 0.1s color;
}

.tagify__tag > div > [contenteditable] {
  outline: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
       user-select: text;
  cursor: text;
  margin: -2px;
  padding: 2px;
  max-width: 350px;
}

.tagify__tag > div::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: var(--tag-bg-inset, 0);
  z-index: -1;
  pointer-events: none;
  transition: 120ms ease;
  animation: tags--bump 0.3s ease-out 1;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset;
}

.tagify__tag:focus div::before, .tagify__tag:hover:not([readonly]) div::before {
  --tag-bg-inset:-2.5px;
  --tag-bg:var(--tag-hover);
}

.tagify__tag--loading {
  pointer-events: none;
}

.tagify__tag--loading .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag--loading::after {
  --loader-size:.4em;
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  margin: 0 0.5em 0 -0.1em;
}

.tagify__tag--flash div::before {
  animation: none;
}

.tagify__tag--hide {
  width: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: var(--tag-hide-transition);
  pointer-events: none;
}

.tagify__tag--hide > div > * {
  white-space: nowrap;
}

.tagify__tag.tagify--noAnim > div::before {
  animation: none;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div > span {
  opacity: 0.5;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before {
  --tag-bg:var(--tag-invalid-bg);
  transition: 0.2s;
}

.tagify__tag[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag[readonly] > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify__tag--editable > div {
  color: var(--tag-text-color--edit);
}

.tagify__tag--editable > div::before {
  box-shadow: 0 0 0 2px var(--tag-hover) inset !important;
}

.tagify__tag--editable > .tagify__tag__removeBtn {
  pointer-events: none;
}

.tagify__tag--editable > .tagify__tag__removeBtn::after {
  opacity: 0;
  transform: translateX(100%) translateX(5px);
}

.tagify__tag--editable.tagify--invalid > div::before {
  box-shadow: 0 0 0 2px var(--tag-invalid-color) inset !important;
}

.tagify__tag__removeBtn {
  order: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font: 14px/1 Arial;
  background: var(--tag-remove-btn-bg);
  color: var(--tag-remove-btn-color);
  width: 14px;
  height: 14px;
  margin-right: 4.6666666667px;
  margin-left: auto;
  overflow: hidden;
  transition: 0.2s ease-out;
}

.tagify__tag__removeBtn::after {
  content: "×";
  transition: 0.3s, color 0s;
}

.tagify__tag__removeBtn:hover {
  color: #fff;
  background: var(--tag-remove-btn-bg--hover);
}

.tagify__tag__removeBtn:hover + div > span {
  opacity: 0.5;
}

.tagify__tag__removeBtn:hover + div::before {
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, rgba(211, 148, 148, 0.3)) inset !important;
  transition: box-shadow 0.2s;
}

.tagify:not(.tagify--mix) .tagify__input br {
  display: none;
}

.tagify:not(.tagify--mix) .tagify__input * {
  display: inline;
  white-space: nowrap;
}

.tagify__input {
  flex-grow: 1;
  display: inline-block;
  min-width: 110px;
  margin: 5px;
  padding: var(--tag-pad);
  line-height: normal;
  position: relative;
  white-space: pre-wrap;
  color: var(--input-color);
  box-sizing: inherit;
}

.tagify__input:empty::before {
  position: static;
}

.tagify__input:focus {
  outline: 0;
}

.tagify__input:focus::before {
  transition: 0.2s ease-out;
  opacity: 0;
  transform: translatex(6px);
}

@supports (-ms-ime-align: auto) {
  .tagify__input:focus::before {
    display: none;
  }
}
.tagify__input:focus:empty::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  color: rgba(0, 0, 0, 0.25);
  color: var(--placeholder-color-focus);
}

@-moz-document url-prefix() {
  .tagify__input:focus:empty::after {
    display: none;
  }
}
.tagify__input::before {
  content: attr(data-placeholder);
  height: 1em;
  line-height: 1em;
  margin: auto 0;
  z-index: 1;
  color: var(--placeholder-color);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

.tagify__input::after {
  content: attr(data-suggest);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  min-width: calc(100% - 1.5em);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  color: var(--tag-text-color);
  opacity: 0.3;
  pointer-events: none;
  max-width: 100px;
}

.tagify__input .tagify__tag {
  margin: 0 1px;
}

.tagify--mix {
  display: block;
}

.tagify--mix .tagify__input {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  display: block;
}

.tagify--mix .tagify__input::before {
  height: auto;
  display: none;
  line-height: inherit;
}

.tagify--mix .tagify__input::after {
  content: none;
}

.tagify--select::after {
  content: ">";
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font: 16px monospace;
  line-height: 8px;
  height: 8px;
  pointer-events: none;
  transform: translate(-150%, -50%) scaleX(1.2) rotate(90deg);
  transition: 0.2s ease-in-out;
}

.tagify--select[aria-expanded=true]::after {
  transform: translate(-150%, -50%) rotate(270deg) scaleY(1.2);
}

.tagify--select .tagify__tag {
  position: absolute;
  top: 0;
  right: 1.8em;
  bottom: 0;
}

.tagify--select .tagify__tag div {
  display: none;
}

.tagify--select .tagify__input {
  width: 100%;
}

.tagify--empty .tagify__input::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  display: inline-block;
  width: auto;
}

.tagify--mix .tagify--empty .tagify__input::before {
  display: inline-block;
}

.tagify--focus {
  --tags-border-color:var(--tags-focus-border-color);
  transition: 0s;
}

.tagify--invalid {
  --tags-border-color:#D39494;
}

.tagify__dropdown {
  position: absolute;
  z-index: 9999;
  transform: translateY(1px);
  overflow: hidden;
}

.tagify__dropdown[placement=top] {
  margin-top: 0;
  transform: translateY(-100%);
}

.tagify__dropdown[placement=top] .tagify__dropdown__wrapper {
  border-top-width: 1.1px;
  border-bottom-width: 0;
}

.tagify__dropdown[position=text] {
  box-shadow: 0 0 0 3px rgba(var(--tagify-dd-color-primary), 0.1);
  font-size: 0.9em;
}

.tagify__dropdown[position=text] .tagify__dropdown__wrapper {
  border-width: 1px;
}

.tagify__dropdown__wrapper {
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: var(--tagify-dd-bg-color);
  border: 1px solid;
  border-color: var(--tagify-dd-color-primary);
  border-bottom-width: 1.5px;
  border-top-width: 0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  transition: 0.25s cubic-bezier(0, 1, 0.5, 1);
}

.tagify__dropdown__header:empty {
  display: none;
}

.tagify__dropdown__footer {
  display: inline-block;
  margin-top: 0.5em;
  padding: var(--tagify-dd-item-pad);
  font-size: 0.7em;
  font-style: italic;
  opacity: 0.5;
}

.tagify__dropdown__footer:empty {
  display: none;
}

.tagify__dropdown--initial .tagify__dropdown__wrapper {
  max-height: 20px;
  transform: translateY(-1em);
}

.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper {
  transform: translateY(2em);
}

.tagify__dropdown__item {
  box-sizing: border-box;
  padding: var(--tagify-dd-item-pad);
  margin: 1px;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  outline: 0;
  max-height: 60px;
  max-width: 100%;
}

.tagify__dropdown__item--active {
  background: var(--tagify-dd-color-primary);
  color: #fff;
}

.tagify__dropdown__item:active {
  filter: brightness(105%);
}

.tagify__dropdown__item--hidden {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 1px;
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  transition: var(--tagify-dd-item--hidden-duration, 0.3s) !important;
}

.tagify__dropdown__item--hidden > * {
  transform: translateY(-100%);
  opacity: 0;
  transition: inherit;
}

.c3 svg {
  font: 10px sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.c3 line, .c3 path {
  fill: none;
  stroke: #000;
}

.c3 text {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.c3-bars path, .c3-event-rect, .c3-legend-item-tile, .c3-xgrid-focus, .c3-ygrid {
  shape-rendering: crispEdges;
}

.c3-chart-arc path {
  stroke: #fff;
}

.c3-chart-arc rect {
  stroke: #fff;
  stroke-width: 1;
}

.c3-chart-arc text {
  fill: #fff;
  font-size: 13px;
}

.c3-grid line {
  stroke: #aaa;
}

.c3-grid text {
  fill: #aaa;
}

.c3-xgrid, .c3-ygrid {
  stroke-dasharray: 3 3;
}

.c3-text.c3-empty {
  fill: grey;
  font-size: 2em;
}

.c3-line {
  stroke-width: 1px;
}

.c3-circle {
  fill: currentColor;
}

.c3-circle._expanded_ {
  stroke-width: 1px;
  stroke: #fff;
}

.c3-selected-circle {
  fill: #fff;
  stroke-width: 2px;
}

.c3-bar {
  stroke-width: 0;
}

.c3-bar._expanded_ {
  fill-opacity: 1;
  fill-opacity: 0.75;
}

.c3-target.c3-focused {
  opacity: 1;
}

.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
  stroke-width: 2px;
}

.c3-target.c3-defocused {
  opacity: 0.3 !important;
}

.c3-region {
  fill: #4682b4;
  fill-opacity: 0.1;
}

.c3-region text {
  fill-opacity: 1;
}

.c3-brush .extent {
  fill-opacity: 0.1;
}

.c3-legend-item {
  font-size: 12px;
}

.c3-legend-item-hidden {
  opacity: 0.15;
}

.c3-legend-background {
  opacity: 0.75;
  fill: #fff;
  stroke: #d3d3d3;
  stroke-width: 1;
}

.c3-title {
  font: 14px sans-serif;
}

.c3-tooltip-container {
  z-index: 10;
}

.c3-tooltip {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  empty-cells: show;
  box-shadow: 7px 7px 12px -9px #777;
  opacity: 0.9;
}

.c3-tooltip tr {
  border: 1px solid #ccc;
}

.c3-tooltip th {
  background-color: #aaa;
  font-size: 14px;
  padding: 2px 5px;
  text-align: left;
  color: #fff;
}

.c3-tooltip td {
  font-size: 13px;
  padding: 3px 6px;
  background-color: #fff;
  border-left: 1px dotted #999;
}

.c3-tooltip td > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
}

.c3-tooltip .value {
  text-align: right;
}

.c3-area {
  stroke-width: 0;
  opacity: 0.2;
}

.c3-chart-arcs-title {
  dominant-baseline: middle;
  font-size: 1.3em;
}

.c3-chart-arcs .c3-chart-arcs-background {
  fill: #e0e0e0;
  stroke: #fff;
}

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
  fill: #000;
  font-size: 16px;
}

.c3-chart-arcs .c3-chart-arcs-gauge-max {
  fill: #777;
}

.c3-chart-arcs .c3-chart-arcs-gauge-min {
  fill: #777;
}

.c3-chart-arc .c3-gauge-value {
  fill: #000;
}

.c3-chart-arc.c3-target g path {
  opacity: 1;
}

.c3-chart-arc.c3-target.c3-focused g path {
  opacity: 1;
}

.c3-drag-zoom.enabled {
  pointer-events: all !important;
  visibility: visible;
}

.c3-drag-zoom.disabled {
  pointer-events: none !important;
  visibility: hidden;
}

.c3-drag-zoom .extent {
  fill-opacity: 0.1;
}

/*
 |--------------------------------------------------------------------------
 | Components
 |--------------------------------------------------------------------------
 |
 | Import CSS/SCSS components.
 |
 */
html{
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
}
html.dark{
	--tw-bg-opacity: 1;
	background-color: rgba(35, 42, 59, var(--tw-bg-opacity));
}
html.dark body{
	--tw-text-opacity: 1;
	color: rgba(226, 232, 240, var(--tw-text-opacity));
}
html.dark body *, html.dark body ::before, html.dark body ::after{
	--tw-border-opacity: 1;
	border-color: rgba(49, 58, 85, var(--tw-border-opacity));
}
html body {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-family: Roboto;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(45, 55, 72, var(--tw-text-opacity));
}
@media (max-width: 639px) {
  html body{
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
}

.main {
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.top-bar {
  height: 67px;
  z-index: 51;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(222, 231, 239, var(--tw-border-opacity));
}

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

.dark .login{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
@media (max-width: 1279px) {
  .login {
    background: linear-gradient(to bottom, #1c3faa, #2b51b4);
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}
.login:before {
  content: "";
  margin-left: -48%;
  background-image: url(../images/bg-login-page.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1279px) {
  .login:before{
		display: none;
	}
}
.login .login__input {
  min-width: 350px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.0274509804);
}
@media (max-width: 1279px) {
  .login .login__input{
		min-width: 100%;
	}
}

.dark .login:before {
  background-image: url(../images/bg-login-page-dark.svg);
}
@media (max-width: 1279px) {
  .dark .login {
    background: #232a3b;
  }
}

.search{
	position: relative;
}
.search .search__input{
	width: 14rem;
	border-radius: 9999px;
	--tw-bg-opacity: 1;
	background-color: rgba(210, 223, 234, var(--tw-bg-opacity));
	padding-right: 2rem;
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.dark .search .search__input{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
}
.search .search__icon{
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 0.75rem;
	height: 1.25rem;
	width: 1.25rem;
	--tw-text-opacity: 1;
	color: rgba(54, 90, 116, var(--tw-text-opacity));
}

.report-box{
	position: relative;
}
.report-box:before {
  content: "";
  width: 90%;
  background: #f9fafc;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0431372549);
  position: absolute;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.75rem;
  height: 100%;
  border-radius: 0.375rem;
}
.report-box .report-box__icon {
  width: 28px;
  height: 28px;
}
.report-box .report-box__indicator {
  padding-top: 3px;
  padding-bottom: 3px;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding-left: 0.5rem;
  padding-right: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.dark .report-box:before {
  background: #2d3650;
}

.content {
  border-radius: 30px;
  padding: 0px 22px;
  min-height: 100vh;
  min-width: 0px;
  flex: 1 1 0%;
  --tw-bg-opacity: 1;
  background-color: rgba(241, 245, 248, var(--tw-bg-opacity));
  padding-bottom: 2.5rem;
}

.dark .content{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
@media (max-width: 767px) {
  .content{
		max-width: 100%;
	}
  .content{
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
.content:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
}

.top-nav{
	position: relative;
	z-index: 50;
}
@media (max-width: 767px) {
  .top-nav{
		display: none;
	}
}
.top-nav > ul {
  padding: 0px 50px;
  display: flex;
  flex-wrap: wrap;
}
.top-nav > ul > li:nth-child(1) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
.top-nav > ul > li:nth-child(1) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(2) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
.top-nav > ul > li:nth-child(2) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(3) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.top-nav > ul > li:nth-child(3) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(4) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
.top-nav > ul > li:nth-child(4) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(5) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.top-nav > ul > li:nth-child(5) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(6) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}
.top-nav > ul > li:nth-child(6) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(7) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}
.top-nav > ul > li:nth-child(7) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(8) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}
.top-nav > ul > li:nth-child(8) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(9) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.9s;
}
.top-nav > ul > li:nth-child(9) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(10) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.top-nav > ul > li:nth-child(10) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(11) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.1s;
}
.top-nav > ul > li:nth-child(11) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(12) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}
.top-nav > ul > li:nth-child(12) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(13) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
}
.top-nav > ul > li:nth-child(13) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(14) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.4s;
}
.top-nav > ul > li:nth-child(14) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(15) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}
.top-nav > ul > li:nth-child(15) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(16) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.6s;
}
.top-nav > ul > li:nth-child(16) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(17) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.7s;
}
.top-nav > ul > li:nth-child(17) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(18) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
.top-nav > ul > li:nth-child(18) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(19) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.9s;
}
.top-nav > ul > li:nth-child(19) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(20) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.top-nav > ul > li:nth-child(20) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(21) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.1s;
}
.top-nav > ul > li:nth-child(21) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(22) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s;
}
.top-nav > ul > li:nth-child(22) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(23) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.3s;
}
.top-nav > ul > li:nth-child(23) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(24) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s;
}
.top-nav > ul > li:nth-child(24) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(25) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
}
.top-nav > ul > li:nth-child(25) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(26) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
}
.top-nav > ul > li:nth-child(26) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(27) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.7s;
}
.top-nav > ul > li:nth-child(27) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(28) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
}
.top-nav > ul > li:nth-child(28) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(29) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.9s;
}
.top-nav > ul > li:nth-child(29) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(30) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}
.top-nav > ul > li:nth-child(30) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(31) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.1s;
}
.top-nav > ul > li:nth-child(31) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(32) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.2s;
}
.top-nav > ul > li:nth-child(32) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(33) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.3s;
}
.top-nav > ul > li:nth-child(33) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(34) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.4s;
}
.top-nav > ul > li:nth-child(34) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(35) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s;
}
.top-nav > ul > li:nth-child(35) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(36) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.6s;
}
.top-nav > ul > li:nth-child(36) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(37) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.7s;
}
.top-nav > ul > li:nth-child(37) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(38) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.8s;
}
.top-nav > ul > li:nth-child(38) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(39) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.9s;
}
.top-nav > ul > li:nth-child(39) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(40) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.top-nav > ul > li:nth-child(40) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(41) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.1s;
}
.top-nav > ul > li:nth-child(41) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(42) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.2s;
}
.top-nav > ul > li:nth-child(42) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(43) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.3s;
}
.top-nav > ul > li:nth-child(43) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(44) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.4s;
}
.top-nav > ul > li:nth-child(44) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(45) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.5s;
}
.top-nav > ul > li:nth-child(45) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(46) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.6s;
}
.top-nav > ul > li:nth-child(46) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(47) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.7s;
}
.top-nav > ul > li:nth-child(47) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(48) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}
.top-nav > ul > li:nth-child(48) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(49) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.9s;
}
.top-nav > ul > li:nth-child(49) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.top-nav > ul > li:nth-child(50) > a:not(.top-menu--active){
	opacity: 0;
  transform: translateY(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}
.top-nav > ul > li:nth-child(50) > a.top-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
@media (max-width: 1279px) {
  .top-nav > ul{
		padding: 0px;
	}
  .top-nav > ul{
		padding-bottom: 0.75rem;
	}
}
.top-nav > ul li{
	position: relative;
}
.top-nav > ul li:hover > .top-menu > .top-menu__title > .top-menu__sub-icon{
	--tw-rotate: -90deg;
	transform: var(--tw-transform);
	transform: var(--tw-transform);
}
.top-nav > ul li:hover .top-menu:not(.top-menu--active) .top-menu__icon:before{
	--tw-bg-opacity: 1;
	background-color: rgba(39, 74, 183, var(--tw-bg-opacity));
}
.dark .top-nav > ul li:hover .top-menu:not(.top-menu--active) .top-menu__icon:before{
	--tw-bg-opacity: 1;
	background-color: rgba(30, 37, 51, var(--tw-bg-opacity));
}
.top-nav > ul li:hover > ul{
	display: block;
}
.top-nav > ul li .top-menu {
  height: 55px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  position: relative;
  margin-right: 0.25rem;
  display: flex;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (max-width: 1279px) {
  .top-nav > ul li .top-menu{
		border-radius: 9999px;
	}
}
.top-nav > ul li .top-menu.top-menu--active{
	--tw-bg-opacity: 1;
	background-color: rgba(241, 245, 248, var(--tw-bg-opacity));
}
.dark .top-nav > ul li .top-menu.top-menu--active{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
.top-nav > ul li .top-menu.top-menu--active:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: -20px;
  transform: rotate(90deg) scale(1.04);
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23f1f5f8'/%3E%3C/svg%3E%0A");
  position: absolute;
  bottom: 0px;
  left: 0px;
}
@media (max-width: 1279px) {
  .top-nav > ul li .top-menu.top-menu--active:before{
		display: none;
	}
}
.top-nav > ul li .top-menu.top-menu--active:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: -20px;
  transform: rotate(180deg) scale(1.04);
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23f1f5f8'/%3E%3C/svg%3E%0A");
  position: absolute;
  bottom: 0px;
  right: 0px;
}
@media (max-width: 1279px) {
  .top-nav > ul li .top-menu.top-menu--active:after{
		display: none;
	}
}
.top-nav > ul li .top-menu.top-menu--active .top-menu__icon{
	--tw-text-opacity: 1;
	color: rgba(46, 81, 187, var(--tw-text-opacity));
}
.dark .top-nav > ul li .top-menu.top-menu--active .top-menu__icon{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.top-nav > ul li .top-menu.top-menu--active .top-menu__icon:before{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
.top-nav > ul li .top-menu.top-menu--active .top-menu__title{
	font-weight: 500;
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.dark .top-nav > ul li .top-menu.top-menu--active .top-menu__title{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .top-nav > ul li .top-menu .top-menu__icon{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.dark .top-nav > ul li .top-menu .top-menu__title{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.top-nav > ul li .top-menu:not(.top-menu--active) .top-menu__icon:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 100ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 1279px) {
  .top-nav > ul li .top-menu:not(.top-menu--active) .top-menu__icon:before{
		border-radius: 9999px;
	}
}
.top-nav > ul li .top-menu .top-menu__title{
	margin-left: 0.75rem;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.top-nav > ul li .top-menu .top-menu__title .top-menu__sub-icon{
	margin-left: 0.5rem;
	height: 1rem;
	width: 1rem;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 100ms;
	transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 1279px) {
  .top-nav > ul li .top-menu .top-menu__title .top-menu__sub-icon{
		display: none;
	}
}
.top-nav > ul li ul {
  left: 100%;
  margin-left: -4px;
  background: rgba(26, 56, 159, 0.9294117647);
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0431372549);
  position: absolute;
  top: 0px;
  z-index: 20;
  margin-top: -1.25rem;
  display: none;
  width: 14rem;
  border-radius: 0.375rem;
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 1279px) {
  .top-nav > ul li ul{
		left: 0px;
	}
  .top-nav > ul li ul{
		margin-top: 3.5rem;
	}
  .top-nav > ul li ul{
		margin-left: 0px;
	}
}
.top-nav > ul li ul li{
	position: relative;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.top-nav > ul li ul li .top-menu{
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
}
.top-nav > ul li ul li .top-menu .top-menu__icon:before{
	display: none;
}
.top-nav > ul li ul li .top-menu .top-menu__title{
	width: 100%;
}
.top-nav > ul li ul li .top-menu .top-menu__title .top-menu__sub-icon{
	margin-left: auto;
}
.top-nav > ul li ul ul {
  background: rgba(26, 56, 159, 0.9294117647);
  margin-top: 0px;
  margin-left: 0px;
  display: none;
  border-radius: 0.375rem;
}
@media (max-width: 1279px) {
  .top-nav > ul li ul ul {
    left: 100%;
  }
}

@keyframes intro-top-menu-animation {
  100%{
		opacity: 1;
	}
  100% {
    transform: translateY(0px);
  }
}
@keyframes intro-active-top-menu-animation {
  100%{
		z-index: 10;
	}
}
.dark .top-nav > ul li .top-menu.top-menu--active:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23293145'/%3E%3C/svg%3E%0A");
}
.dark .top-nav > ul li .top-menu.top-menu--active:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23293145'/%3E%3C/svg%3E%0A");
}
.dark .top-nav > ul li ul {
  background: rgba(24, 31, 41, 0.9019607843);
}

.side-nav {
  width: 230px;
  overflow-x: hidden;
  padding-right: 1.25rem;
  padding-bottom: 4rem;
}
@media (max-width: 1279px) {
  .side-nav {
    width: 85px;
  }
}
@media (max-width: 767px) {
  .side-nav{
		display: none;
	}
}
.side-nav.side-nav--simple {
  width: 85px;
}
.side-nav.side-nav--simple .side-menu .side-menu__title{
	display: none;
}
.side-nav.side-nav--simple .side-menu .side-menu__title .side-menu__sub-icon{
	display: none;
}
.side-nav.side-nav--simple .side-menu:not(.side-menu--active) .side-menu__icon:before{
	display: none;
}
.side-nav .side-nav__devider{
	position: relative;
	z-index: 10;
	height: 1px;
	width: 100%;
	--tw-bg-opacity: 1;
	background-color: rgba(46, 81, 187, var(--tw-bg-opacity));
}
.dark .side-nav .side-nav__devider{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
}
.side-nav .side-menu {
  height: 50px;
  position: relative;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding-left: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.side-nav .side-menu .side-menu__title{
	margin-left: 0.75rem;
	display: flex;
	width: 100%;
	align-items: center;
}
.side-nav .side-menu .side-menu__title .side-menu__sub-icon{
	margin-left: auto;
	margin-right: 1.25rem;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 100ms;
	transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.side-nav .side-menu .side-menu__title .side-menu__sub-icon svg{
	height: 1rem;
	width: 1rem;
}
@media (max-width: 1279px) {
  .side-nav .side-menu .side-menu__title .side-menu__sub-icon{
		display: none;
	}
  .side-nav .side-menu .side-menu__title{
		display: none;
	}
}
.side-nav > ul > li:nth-child(1).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
.side-nav > ul > li:nth-child(1) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
.side-nav > ul > li:nth-child(1) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(2).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
.side-nav > ul > li:nth-child(2) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
.side-nav > ul > li:nth-child(2) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(3).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.side-nav > ul > li:nth-child(3) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.side-nav > ul > li:nth-child(3) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(4).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
.side-nav > ul > li:nth-child(4) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
.side-nav > ul > li:nth-child(4) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(5).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.side-nav > ul > li:nth-child(5) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.side-nav > ul > li:nth-child(5) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(6).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}
.side-nav > ul > li:nth-child(6) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}
.side-nav > ul > li:nth-child(6) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(7).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}
.side-nav > ul > li:nth-child(7) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}
.side-nav > ul > li:nth-child(7) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(8).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}
.side-nav > ul > li:nth-child(8) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}
.side-nav > ul > li:nth-child(8) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(9).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.9s;
}
.side-nav > ul > li:nth-child(9) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.9s;
}
.side-nav > ul > li:nth-child(9) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(10).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.side-nav > ul > li:nth-child(10) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.side-nav > ul > li:nth-child(10) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(11).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.1s;
}
.side-nav > ul > li:nth-child(11) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.1s;
}
.side-nav > ul > li:nth-child(11) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(12).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}
.side-nav > ul > li:nth-child(12) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}
.side-nav > ul > li:nth-child(12) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(13).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
}
.side-nav > ul > li:nth-child(13) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
}
.side-nav > ul > li:nth-child(13) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(14).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.4s;
}
.side-nav > ul > li:nth-child(14) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.4s;
}
.side-nav > ul > li:nth-child(14) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(15).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}
.side-nav > ul > li:nth-child(15) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}
.side-nav > ul > li:nth-child(15) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(16).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.6s;
}
.side-nav > ul > li:nth-child(16) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.6s;
}
.side-nav > ul > li:nth-child(16) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(17).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.7s;
}
.side-nav > ul > li:nth-child(17) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.7s;
}
.side-nav > ul > li:nth-child(17) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(18).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
.side-nav > ul > li:nth-child(18) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
.side-nav > ul > li:nth-child(18) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(19).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.9s;
}
.side-nav > ul > li:nth-child(19) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.9s;
}
.side-nav > ul > li:nth-child(19) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(20).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.side-nav > ul > li:nth-child(20) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.side-nav > ul > li:nth-child(20) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(21).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.1s;
}
.side-nav > ul > li:nth-child(21) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.1s;
}
.side-nav > ul > li:nth-child(21) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(22).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s;
}
.side-nav > ul > li:nth-child(22) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s;
}
.side-nav > ul > li:nth-child(22) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(23).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.3s;
}
.side-nav > ul > li:nth-child(23) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.3s;
}
.side-nav > ul > li:nth-child(23) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(24).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s;
}
.side-nav > ul > li:nth-child(24) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s;
}
.side-nav > ul > li:nth-child(24) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(25).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
}
.side-nav > ul > li:nth-child(25) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
}
.side-nav > ul > li:nth-child(25) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(26).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
}
.side-nav > ul > li:nth-child(26) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
}
.side-nav > ul > li:nth-child(26) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(27).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.7s;
}
.side-nav > ul > li:nth-child(27) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.7s;
}
.side-nav > ul > li:nth-child(27) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(28).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
}
.side-nav > ul > li:nth-child(28) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
}
.side-nav > ul > li:nth-child(28) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(29).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.9s;
}
.side-nav > ul > li:nth-child(29) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.9s;
}
.side-nav > ul > li:nth-child(29) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(30).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}
.side-nav > ul > li:nth-child(30) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}
.side-nav > ul > li:nth-child(30) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(31).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.1s;
}
.side-nav > ul > li:nth-child(31) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.1s;
}
.side-nav > ul > li:nth-child(31) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(32).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.2s;
}
.side-nav > ul > li:nth-child(32) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.2s;
}
.side-nav > ul > li:nth-child(32) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(33).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.3s;
}
.side-nav > ul > li:nth-child(33) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.3s;
}
.side-nav > ul > li:nth-child(33) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(34).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.4s;
}
.side-nav > ul > li:nth-child(34) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.4s;
}
.side-nav > ul > li:nth-child(34) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(35).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s;
}
.side-nav > ul > li:nth-child(35) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s;
}
.side-nav > ul > li:nth-child(35) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(36).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.6s;
}
.side-nav > ul > li:nth-child(36) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.6s;
}
.side-nav > ul > li:nth-child(36) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(37).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.7s;
}
.side-nav > ul > li:nth-child(37) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.7s;
}
.side-nav > ul > li:nth-child(37) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(38).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.8s;
}
.side-nav > ul > li:nth-child(38) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.8s;
}
.side-nav > ul > li:nth-child(38) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(39).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.9s;
}
.side-nav > ul > li:nth-child(39) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.9s;
}
.side-nav > ul > li:nth-child(39) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(40).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.side-nav > ul > li:nth-child(40) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.side-nav > ul > li:nth-child(40) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(41).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.1s;
}
.side-nav > ul > li:nth-child(41) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.1s;
}
.side-nav > ul > li:nth-child(41) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(42).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.2s;
}
.side-nav > ul > li:nth-child(42) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.2s;
}
.side-nav > ul > li:nth-child(42) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(43).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.3s;
}
.side-nav > ul > li:nth-child(43) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.3s;
}
.side-nav > ul > li:nth-child(43) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(44).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.4s;
}
.side-nav > ul > li:nth-child(44) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.4s;
}
.side-nav > ul > li:nth-child(44) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(45).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.5s;
}
.side-nav > ul > li:nth-child(45) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.5s;
}
.side-nav > ul > li:nth-child(45) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(46).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.6s;
}
.side-nav > ul > li:nth-child(46) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.6s;
}
.side-nav > ul > li:nth-child(46) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(47).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.7s;
}
.side-nav > ul > li:nth-child(47) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.7s;
}
.side-nav > ul > li:nth-child(47) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(48).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}
.side-nav > ul > li:nth-child(48) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}
.side-nav > ul > li:nth-child(48) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(49).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.9s;
}
.side-nav > ul > li:nth-child(49) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.9s;
}
.side-nav > ul > li:nth-child(49) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul > li:nth-child(50).side-nav__devider{
	opacity: 0;
  animation: 0.4s intro-devider-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}
.side-nav > ul > li:nth-child(50) > a:not(.side-menu--active){
	opacity: 0;
  transform: translateX(50px);
  animation: 0.4s intro-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}
.side-nav > ul > li:nth-child(50) > a.side-menu--active {
  animation: 0.4s intro-active-menu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
}
.side-nav > ul ul{
	display: none;
	border-radius: 0.375rem;
	--tw-bg-opacity: 1;
	background-color: rgba(26, 56, 159, var(--tw-bg-opacity));
}
.dark .side-nav > ul ul{
	--tw-bg-opacity: 1;
	background-color: rgba(30, 37, 51, var(--tw-bg-opacity));
}
.side-nav > ul ul li:nth-child(1) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
.side-nav > ul ul li:nth-child(2) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
.side-nav > ul ul li:nth-child(3) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.side-nav > ul ul li:nth-child(4) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
.side-nav > ul ul li:nth-child(5) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.side-nav > ul ul li:nth-child(6) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}
.side-nav > ul ul li:nth-child(7) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}
.side-nav > ul ul li:nth-child(8) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}
.side-nav > ul ul li:nth-child(9) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 0.9s;
}
.side-nav > ul ul li:nth-child(10) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.side-nav > ul ul li:nth-child(11) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.1s;
}
.side-nav > ul ul li:nth-child(12) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}
.side-nav > ul ul li:nth-child(13) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
}
.side-nav > ul ul li:nth-child(14) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.4s;
}
.side-nav > ul ul li:nth-child(15) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}
.side-nav > ul ul li:nth-child(16) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.6s;
}
.side-nav > ul ul li:nth-child(17) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.7s;
}
.side-nav > ul ul li:nth-child(18) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
.side-nav > ul ul li:nth-child(19) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 1.9s;
}
.side-nav > ul ul li:nth-child(20) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.side-nav > ul ul li:nth-child(21) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.1s;
}
.side-nav > ul ul li:nth-child(22) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s;
}
.side-nav > ul ul li:nth-child(23) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.3s;
}
.side-nav > ul ul li:nth-child(24) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s;
}
.side-nav > ul ul li:nth-child(25) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
}
.side-nav > ul ul li:nth-child(26) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
}
.side-nav > ul ul li:nth-child(27) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.7s;
}
.side-nav > ul ul li:nth-child(28) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
}
.side-nav > ul ul li:nth-child(29) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 2.9s;
}
.side-nav > ul ul li:nth-child(30) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}
.side-nav > ul ul li:nth-child(31) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.1s;
}
.side-nav > ul ul li:nth-child(32) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.2s;
}
.side-nav > ul ul li:nth-child(33) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.3s;
}
.side-nav > ul ul li:nth-child(34) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.4s;
}
.side-nav > ul ul li:nth-child(35) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s;
}
.side-nav > ul ul li:nth-child(36) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.6s;
}
.side-nav > ul ul li:nth-child(37) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.7s;
}
.side-nav > ul ul li:nth-child(38) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.8s;
}
.side-nav > ul ul li:nth-child(39) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 3.9s;
}
.side-nav > ul ul li:nth-child(40) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.side-nav > ul ul li:nth-child(41) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.1s;
}
.side-nav > ul ul li:nth-child(42) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.2s;
}
.side-nav > ul ul li:nth-child(43) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.3s;
}
.side-nav > ul ul li:nth-child(44) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.4s;
}
.side-nav > ul ul li:nth-child(45) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.5s;
}
.side-nav > ul ul li:nth-child(46) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.6s;
}
.side-nav > ul ul li:nth-child(47) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.7s;
}
.side-nav > ul ul li:nth-child(48) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}
.side-nav > ul ul li:nth-child(49) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 4.9s;
}
.side-nav > ul ul li:nth-child(50) > a{
	opacity: 0;
  transform: translateX(50px);
  animation: 0.2s intro-submenu-animation ease-in-out 0.33333s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}
.side-nav > ul ul.side-menu__sub-open{
	display: block;
}
.side-nav > ul ul .side-menu__icon:before{
	display: none;
}
.side-nav > ul ul li a:not(.side-menu--active){
	--tw-text-opacity: 1;
	color: rgba(199, 210, 255, var(--tw-text-opacity));
}
.dark .side-nav > ul ul li a:not(.side-menu--active){
	--tw-text-opacity: 1;
	color: rgba(113, 128, 150, var(--tw-text-opacity));
}
.side-nav > ul ul li a.side-menu--active .side-menu__title{
	font-weight: 500;
}
.side-nav > ul ul ul{
	display: none;
	border-radius: 0.375rem;
	--tw-bg-opacity: 1;
	background-color: rgba(22, 50, 150, var(--tw-bg-opacity));
}
.dark .side-nav > ul ul ul{
	--tw-bg-opacity: 1;
	background-color: rgba(24, 31, 41, var(--tw-bg-opacity));
}
.side-nav > ul > li > .side-menu.side-menu--active{
	--tw-bg-opacity: 1;
	background-color: rgba(241, 245, 248, var(--tw-bg-opacity));
}
.dark .side-nav > ul > li > .side-menu.side-menu--active{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
.side-nav > ul > li > .side-menu.side-menu--active:before {
  content: "";
  width: 30px;
  height: 30px;
  margin-top: -30px;
  transform: rotate(90deg) scale(1.04);
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23f1f5f8'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 0px;
  right: 0px;
  margin-right: -1.25rem;
}
.side-nav > ul > li > .side-menu.side-menu--active:after {
  content: "";
  width: 30px;
  height: 30px;
  margin-top: 50px;
  transform: scale(1.04);
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23f1f5f8'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 0px;
  right: 0px;
  margin-right: -1.25rem;
}
.side-nav > ul > li > .side-menu.side-menu--active .side-menu__icon{
	--tw-text-opacity: 1;
	color: rgba(46, 81, 187, var(--tw-text-opacity));
}
.dark .side-nav > ul > li > .side-menu.side-menu--active .side-menu__icon{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.side-nav > ul > li > .side-menu.side-menu--active .side-menu__icon:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0px;
  right: 0px;
  margin-right: -1.25rem;
  height: 100%;
  width: 3rem;
  --tw-bg-opacity: 1;
  background-color: rgba(241, 245, 248, var(--tw-bg-opacity));
}
.dark .side-nav > ul > li > .side-menu.side-menu--active .side-menu__icon:before{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
.side-nav > ul > li > .side-menu.side-menu--active .side-menu__title{
	font-weight: 500;
	--tw-text-opacity: 1;
	color: rgba(45, 55, 72, var(--tw-text-opacity));
}
.dark .side-nav > ul > li > .side-menu.side-menu--active .side-menu__title{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .side-nav > ul > li > .side-menu .side-menu__icon{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.dark .side-nav > ul > li > .side-menu .side-menu__title{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.side-nav > ul > li > .side-menu:not(.side-menu--active) .side-menu__icon:before {
  content: "";
  z-index: -1;
  width: 230px;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 100ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 1279px) {
  .side-nav > ul > li > .side-menu:not(.side-menu--active) .side-menu__icon:before{
		display: none;
	}
}
.side-nav > ul > li > .side-menu:hover:not(.side-menu--active):not(.side-menu--open) .side-menu__icon:before{
	--tw-bg-opacity: 1;
	background-color: rgba(39, 74, 183, var(--tw-bg-opacity));
}
.dark .side-nav > ul > li > .side-menu:hover:not(.side-menu--active):not(.side-menu--open) .side-menu__icon:before{
	--tw-bg-opacity: 1;
	background-color: rgba(30, 37, 51, var(--tw-bg-opacity));
}

@keyframes intro-devider-animation {
  100%{
		opacity: 1;
	}
}
@keyframes intro-menu-animation {
  100%{
		opacity: 1;
	}
  100% {
    transform: translateX(0px);
  }
}
@keyframes intro-submenu-animation {
  100%{
		opacity: 1;
	}
  100% {
    transform: translateX(0px);
  }
}
@keyframes intro-active-menu-animation {
  100%{
		z-index: 10;
	}
}
.dark .side-nav > ul > li > .side-menu.side-menu--active:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23293145'/%3E%3C/svg%3E%0A");
}
.dark .side-nav > ul > li > .side-menu.side-menu--active:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259.51' height='259.52' viewBox='0 0 259.51 259.52'%3E%3Cpath id='Path_143' data-name='Path 143' d='M8659.507,423.965c-.167-2.608.05-5.319-.19-8.211-.084-1.012-.031-2.15-.118-3.12-.113-1.25-.1-2.682-.236-4.061-.172-1.722-.179-3.757-.365-5.394-.328-2.889-.478-5.857-.854-8.61-.509-3.714-.825-7.252-1.38-10.543-.934-5.535-2.009-11.312-3.189-16.692-.855-3.9-1.772-7.416-2.752-11.2-1.1-4.256-2.394-8.149-3.687-12.381-1.1-3.615-2.366-6.893-3.623-10.493-1.3-3.739-2.917-7.26-4.284-10.7-1.708-4.295-3.674-8.078-5.485-12.023-1.145-2.493-2.5-4.932-3.727-7.387-1.318-2.646-2.9-5.214-4.152-7.518-1.716-3.16-3.517-5.946-5.274-8.873-1.692-2.818-3.589-5.645-5.355-8.334-2.326-3.542-4.637-6.581-7.039-9.848-2.064-2.809-4.017-5.255-6.088-7.828-2.394-2.974-4.937-5.936-7.292-8.589-3.027-3.411-6.049-6.744-9.055-9.763-2.4-2.412-4.776-4.822-7.108-6.975-3-2.767-5.836-5.471-8.692-7.854-3.332-2.779-6.657-5.663-9.815-8.028-2.958-2.216-5.784-4.613-8.7-6.6-3.161-2.159-6.251-4.414-9.219-6.254-3.814-2.365-7.533-4.882-11.168-6.89-4.213-2.327-8.513-4.909-12.478-6.834-4.61-2.239-9.234-4.619-13.51-6.416-4.1-1.725-8.11-3.505-11.874-4.888-4.5-1.652-8.506-3.191-12.584-4.47-6.045-1.9-12.071-3.678-17.431-5-9.228-2.284-17.608-3.757-24.951-4.9-7.123-1.112-13.437-1.64-18.271-2.035l-2.405-.2c-1.638-.136-3.508-.237-4.633-.3a115.051,115.051,0,0,0-12.526-.227h259.51Z' transform='translate(-8399.997 -164.445)' fill='%23293145'/%3E%3C/svg%3E%0A");
}

.breadcrumb{
	align-items: center;
	--tw-text-opacity: 1;
	color: rgba(28, 63, 170, var(--tw-text-opacity));
}

.dark .breadcrumb{
	--tw-text-opacity: 1;
	color: rgba(49, 96, 216, var(--tw-text-opacity));
}

@media (min-width: 640px){
	.breadcrumb{
		display: flex;
	}
}
.breadcrumb.breadcrumb--light{
	margin-left: 2.5rem;
	height: 100%;
	border-left-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(40, 78, 178, var(--tw-border-opacity));
	padding-left: 2.5rem;
	--tw-text-opacity: 1;
	color: rgba(232, 238, 255, var(--tw-text-opacity));
}
.dark .breadcrumb.breadcrumb--light{
	--tw-border-opacity: 1;
	border-color: rgba(49, 58, 85, var(--tw-border-opacity));
	--tw-text-opacity: 1;
	color: rgba(49, 96, 216, var(--tw-text-opacity));
}
@media (max-width: 767px) {
  .breadcrumb.breadcrumb--light{
		margin-left: 0px;
	}
  .breadcrumb.breadcrumb--light{
		border-left-width: 0px;
	}
  .breadcrumb.breadcrumb--light{
		padding-left: 0px;
	}
}
.breadcrumb.breadcrumb--light .breadcrumb--active{
	--tw-text-opacity: 1;
	color: rgba(198, 212, 253, var(--tw-text-opacity));
}
.dark .breadcrumb.breadcrumb--light .breadcrumb--active{
	--tw-text-opacity: 1;
	color: rgba(113, 128, 150, var(--tw-text-opacity));
}
.breadcrumb .breadcrumb__icon {
  width: 14px;
  height: 14px;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.breadcrumb .breadcrumb--active{
	cursor: text;
	--tw-text-opacity: 1;
	color: rgba(45, 55, 72, var(--tw-text-opacity));
}
.dark .breadcrumb .breadcrumb--active{
	--tw-text-opacity: 1;
	color: rgba(113, 128, 150, var(--tw-text-opacity));
}

.feather{
	display: inline-block;
	stroke-width: 1.5;
}

.mobile-menu{
	margin-left: -2rem;
	margin-right: -2rem;
	margin-top: -1.25rem;
	margin-bottom: 1.5rem;
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(40, 78, 178, var(--tw-border-opacity));
}
@media (max-width: 639px) {
  .mobile-menu{
		margin-left: -0.75rem;
		margin-right: -0.75rem;
	}
}
.mobile-menu .mobile-menu-bar {
  height: 70px;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 639px) {
  .mobile-menu .mobile-menu-bar{
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
}
.mobile-menu ul.menu__sub-open{
	display: block;
}
.mobile-menu ul li {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.mobile-menu ul li ul{
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	display: none;
	border-radius: 0.375rem;
	--tw-bg-opacity: 1;
	background-color: rgba(26, 56, 159, var(--tw-bg-opacity));
}
.dark .mobile-menu ul li ul{
	--tw-bg-opacity: 1;
	background-color: rgba(30, 37, 51, var(--tw-bg-opacity));
}
@media (max-width: 639px) {
  .mobile-menu ul li ul{
		margin-left: 0.75rem;
		margin-right: 0.75rem;
	}
}
.mobile-menu ul li ul .menu{
	padding-left: 1rem;
	padding-right: 1rem;
}
.mobile-menu ul li ul ul{
	margin-left: 0px;
	margin-right: 0px;
	display: none;
	border-radius: 0.375rem;
	--tw-bg-opacity: 1;
	background-color: rgba(22, 50, 150, var(--tw-bg-opacity));
}
.dark .mobile-menu ul li ul ul{
	--tw-bg-opacity: 1;
	background-color: rgba(24, 31, 41, var(--tw-bg-opacity));
}
.mobile-menu .menu__devider{
	position: relative;
	height: 1px;
	width: 100%;
	--tw-bg-opacity: 1;
	background-color: rgba(40, 78, 178, var(--tw-bg-opacity));
}
.dark .mobile-menu .menu__devider{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
}
.mobile-menu .menu {
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (max-width: 639px) {
  .mobile-menu .menu{
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}
.mobile-menu .menu .menu__title{
	margin-left: 0.75rem;
	display: flex;
	width: 100%;
	align-items: center;
}
.mobile-menu .menu .menu__title .menu__sub-icon{
	margin-left: auto;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 100ms;
	transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.mobile-menu .menu .menu__title .menu__sub-icon svg{
	height: 1.25rem;
	width: 1.25rem;
}

.nav.nav-tabs.boxed-tabs a{
	border-bottom-width: 0px;
}
.nav.nav-tabs.boxed-tabs a.active{
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .nav.nav-tabs.boxed-tabs a.active{
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.search-result {
  width: 450px;
  visibility: hidden;
  position: absolute;
  right: 0px;
  z-index: 20;
  margin-top: 0.25rem;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s 0s;
}
.search-result.show {
  transition: visibility 0s linear 0s, opacity 0.2s 0s;
  visibility: visible;
  opacity: 1;
}
.search-result.show > .search-result__content {
  margin-top: -1px;
}
.search-result.show > .search-result__content .tab-content .tab-pane{
	visibility: visible;
}
.search-result .search-result__content {
  transition: margin-top 0.2s;
  margin-top: 1.25rem;
  padding: 1.25rem;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0431372549);
    position: relative;
    border-radius: 0.375rem;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.dark .search-result .search-result__content{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(43, 51, 72, var(--tw-bg-opacity));
}
.search-result .search-result__content .search-result__content__title{
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.notification{
	position: relative;
	--tw-text-opacity: 1;
	color: rgba(54, 90, 116, var(--tw-text-opacity));
}
.notification.notification--light{
	--tw-text-opacity: 1;
	color: rgba(152, 175, 245, var(--tw-text-opacity));
}
.notification .notification__icon{
	height: 1.25rem;
	width: 1.25rem;
}
.notification.notification--bullet:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(211, 41, 41, var(--tw-bg-opacity));
}

.notification-content {
  width: 350px;
}
@media (max-width: 639px) {
  .notification-content {
    width: 280px;
  }
}
.notification-content .notification-content__title{
	margin-bottom: 1.25rem;
	font-weight: 500;
}
.notification-content .notification-content__box{
	padding: 1.25rem;
}

.tooltip-content {
  left: 10000px;
  position: fixed;
}

.tippy-box{
	border-radius: 0.375rem;
}

.dark .tippy-box{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
}
.tippy-box .tippy-content{
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
}

.tippy-popper[x-placement=left] .tippy-roundarrow, .tippy-popper[x-placement=left] .tippy-arrow, .tippy-popper[x-placement=right] .tippy-roundarrow, .tippy-popper[x-placement=right] .tippy-arrow, .tippy-popper[x-placement=left-start] .tippy-roundarrow, .tippy-popper[x-placement=left-start] .tippy-arrow, .tippy-popper[x-placement=left-end] .tippy-roundarrow, .tippy-popper[x-placement=left-end] .tippy-arrow, .tippy-popper[x-placement=right-start] .tippy-roundarrow, .tippy-popper[x-placement=right-start] .tippy-arrow, .tippy-popper[x-placement=right-end] .tippy-roundarrow, .tippy-popper[x-placement=right-end] .tippy-arrow{
	top: 0px;
	bottom: 0px;
	margin-top: auto;
	margin-bottom: auto;
}
.tippy-popper[x-placement=top] .tippy-roundarrow, .tippy-popper[x-placement=top] .tippy-arrow, .tippy-popper[x-placement=bottom] .tippy-roundarrow, .tippy-popper[x-placement=bottom] .tippy-arrow, .tippy-popper[x-placement=top-start] .tippy-roundarrow, .tippy-popper[x-placement=top-start] .tippy-arrow, .tippy-popper[x-placement=top-end] .tippy-roundarrow, .tippy-popper[x-placement=top-end] .tippy-arrow, .tippy-popper[x-placement=bottom-start] .tippy-roundarrow, .tippy-popper[x-placement=bottom-start] .tippy-arrow, .tippy-popper[x-placement=bottom-end] .tippy-roundarrow, .tippy-popper[x-placement=bottom-end] .tippy-arrow{
	left: 0px;
	right: 0px;
	margin-left: auto;
	margin-right: auto;
}

.dark .tippy-box {
  box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1490196078), 0 4px 80px -8px rgba(36, 40, 47, 0.2509803922), 0 4px 4px -2px rgba(91, 94, 105, 0.1490196078);
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .tippy-box > .tippy-svg-arrow {
  fill: #2a3244;
}

.tail-select{
	margin: 0px;
	width: 100%;
	vertical-align: top;
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tail-select input[type=text] {
  padding: 8px 10px;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(226, 232, 240, var(--tw-border-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tail-select input[type=text]:focus{
	border-radius: 0.25rem;
	border-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity));
	--tw-text-opacity: 1;
	color: rgba(45, 55, 72, var(--tw-text-opacity));
}
.tail-select mark{
	border-radius: 0.25rem;
	--tw-bg-opacity: 1;
	background-color: rgba(211, 41, 41, var(--tw-bg-opacity));
}
.tail-select:hover .select-label, .tail-select.idle .select-label, .tail-select.active .select-label{
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tail-select .select-label {
  padding: 7.5px 32px 7.5px 12px;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(226, 232, 240, var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgba(45, 55, 72, var(--tw-text-opacity));
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tail-select .select-label:after {
  border-top-color: #444;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.tail-select .select-label.tail-select-container {
  padding: 5.5px 25px 5.5px 8px;
}
.tail-select .select-label.tail-select-container .select-handle {
  margin-top: 1.5px;
  margin-bottom: 1.5px;
  margin-right: 5px;
  padding: 0.2em 0.6em 0.3em 1.6em;
  margin-left: 0px;
  --tw-bg-opacity: 1;
  background-color: rgba(226, 232, 240, var(--tw-bg-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.tail-select .select-label.tail-select-container .select-handle:before {
  content: "×";
  margin-left: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  height: 100%;
  align-items: center;
  --tw-text-opacity: 1;
  color: rgba(74, 85, 104, var(--tw-text-opacity));
}
.tail-select .select-label.tail-select-container .select-handle:hover:before{
	--tw-text-opacity: 1;
	color: rgba(45, 55, 72, var(--tw-text-opacity));
}
.tail-select .select-label.tail-select-container .label-inner {
  padding: 1.3px 4px;
}
.tail-select .select-dropdown{
	border-radius: 0.25rem;
	border-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity));
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tail-select .select-dropdown .dropdown-inner{
	padding: 0px;
}
.tail-select .select-dropdown .dropdown-empty{
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	text-transform: capitalize;
	--tw-text-opacity: 1;
	color: rgba(113, 128, 150, var(--tw-text-opacity));
}
.tail-select .select-dropdown .dropdown-search{
	--tw-border-opacity: 1;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity));
	padding: 0.25rem;
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tail-select .select-dropdown ul li {
  padding: 9px 13px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.tail-select .select-dropdown ul li:first-of-type{
	margin-top: 0px;
}
.tail-select .select-dropdown ul li:first-of-type.selected{
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	border-top-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity));
}
.tail-select .select-dropdown ul li:last-of-type{
	margin-bottom: 0px;
}
.tail-select .select-dropdown ul li:last-of-type.selected{
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity));
}
.tail-select .select-dropdown ul li.dropdown-option:before{
	display: none;
}
.tail-select .select-dropdown ul li.dropdown-option.selected{
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.tail-select .select-dropdown ul li.dropdown-option.selected:before {
  opacity: 0.8;
}
.tail-select .select-dropdown ul li.optgroup-title{
	--tw-text-opacity: 1;
	color: rgba(45, 55, 72, var(--tw-text-opacity));
}

.dark .tail-select input[type=text]{
	--tw-border-opacity: 1;
	border-color: rgba(30, 37, 51, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .tail-select .select-label{
	--tw-border-opacity: 1;
	border-color: rgba(30, 37, 51, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(35, 42, 59, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .tail-select .select-label:after{
	--tw-border-opacity: 1;
	border-color: rgba(113, 128, 150, var(--tw-border-opacity));
  border-right-color: transparent;
  border-left-color: transparent;
}
.dark .tail-select .select-label.tail-select-container .select-handle{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .tail-select .select-label.tail-select-container .select-handle:before{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.dark .tail-select .select-label.tail-select-container .select-handle:hover:before{
	--tw-text-opacity: 1;
	color: rgba(203, 213, 224, var(--tw-text-opacity));
}
.dark .tail-select .select-dropdown{
	--tw-border-opacity: 1;
	border-color: rgba(30, 37, 51, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(35, 42, 59, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .tail-select .select-dropdown ul li{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .tail-select .select-dropdown ul li.optgroup-title{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}
.dark .tail-select .select-dropdown ul li:hover:not(.selected):not(.optgroup-title){
	--tw-bg-opacity: 1;
	background-color: rgba(30, 37, 51, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark .tail-select .select-dropdown ul li:first-of-type.selected{
	--tw-border-opacity: 1;
	border-color: rgba(30, 37, 51, var(--tw-border-opacity));
}
.dark .tail-select .select-dropdown ul li:last-of-type.selected{
	--tw-border-opacity: 1;
	border-color: rgba(30, 37, 51, var(--tw-border-opacity));
}
.dark .tail-select .select-dropdown .dropdown-search{
	--tw-border-opacity: 1;
	border-color: rgba(30, 37, 51, var(--tw-border-opacity));
}

.zoom-overlay{
	--tw-bg-opacity: 1;
	background-color: rgba(41, 49, 69, var(--tw-bg-opacity));
	--tw-bg-opacity: 0.75;
}

.report-timeline:before {
  content: "";
  height: 85%;
  position: absolute;
  margin-left: 1.25rem;
  margin-top: 1.25rem;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgba(222, 231, 239, var(--tw-bg-opacity));
}

.dark .report-timeline:before{
	--tw-bg-opacity: 1;
	background-color: rgba(63, 72, 101, var(--tw-bg-opacity));
}
.report-timeline .report-timeline__image:before {
  content: "";
  position: absolute;
  margin-top: 1.25rem;
  margin-left: 1.25rem;
  height: 1px;
  width: 5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(222, 231, 239, var(--tw-bg-opacity));
}
.dark .report-timeline .report-timeline__image:before{
	--tw-bg-opacity: 1;
	background-color: rgba(63, 72, 101, var(--tw-bg-opacity));
}

.app-toastify {
  background: none;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(237, 242, 247, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 3.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(45, 55, 72, 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);
}
@media (max-width: 767px) {
  .app-toastify {
    max-width: calc(100% - 30px);
  }
}
.app-toastify .toast-close{
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	display: flex;
	align-items: center;
	padding-right: 0.75rem;
	color: transparent;
	opacity: 1;
}
.app-toastify .toast-close:before {
  content: "×";
  margin-top: -0.375rem;
  display: block;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgba(113, 128, 150, var(--tw-text-opacity));
}

.iti{
	z-index: 30;
	width: 100%;
}

.iti__flag {
  background-image: url("/admin/images/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("/admin/images/flags@2x.png");
  }
}
.app-radio input{
	display: none;
}

.app-radio label{
	display: block;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0431372549);
    position: relative;
    border-radius: 0.375rem;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.dark .app-radio label{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
}

.app-radio label:hover{
	--tw-border-opacity: 1;
	border-color: rgba(28, 63, 170, var(--tw-border-opacity));
}

.app-radio input:checked + label{
	--tw-border-opacity: 1;
	border-color: rgba(28, 63, 170, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
}

.app-radio input:checked + label div{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

body.mceContentBody p, .content-text p{
	margin-bottom: 1rem;
}

.ck-editor__editable_inline {
  height: 400px;
}

.ck-editor h2{
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
}

@media (min-width: 1024px){
	.ck-editor h2{
		margin-bottom: 1.5rem;
	}
}

@media (min-width: 1168px){
	.ck-editor h2{
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
	.ck-editor h2{
		line-height: 1.75rem;
	}
}
.ck-editor p{
	margin-bottom: 1rem;
}
.ck-editor ul, .ck-editor ol{
	margin-bottom: 1rem;
}
.ck-editor ul {
  list-style: inside disc;
}
.ck-editor ol {
  list-style: inside decimal;
}

.tab-content .tab-pane.active {
  width: auto !important;
}

.post .post__tabs a.active {
  background-color: rgba(28, 63, 170);
  color: rgba(255, 255, 255);
}

.bold-icon {
  stroke-width: 5.5px;
}

.toastify-success {
  background: #10b981;
  color: white;
  line-height: 1.75rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
}

.toastify-error {
  background: #ef4444;
  color: white;
  line-height: 1.75rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
}

.hover\:scale-105:hover{
	--tw-scale-x: 1.05;
	--tw-scale-y: 1.05;
	transform: var(--tw-transform);
}

.hover\:bg-gray-100:hover{
	--tw-bg-opacity: 1;
	background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
}

.hover\:bg-theme-1:hover{
	--tw-bg-opacity: 1;
	background-color: rgba(28, 63, 170, var(--tw-bg-opacity));
}

.hover\:text-gray-500:hover{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}

.hover\:text-gray-400:hover{
	--tw-text-opacity: 1;
	color: rgba(203, 213, 224, var(--tw-text-opacity));
}

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

.focus\:border-blue-300:focus{
	--tw-border-opacity: 1;
	border-color: rgba(147, 197, 253, var(--tw-border-opacity));
}

.focus\:outline-none:focus{
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.focus\:ring:focus{
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.active\:bg-gray-100:active{
	--tw-bg-opacity: 1;
	background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
}

.active\:text-gray-700:active{
	--tw-text-opacity: 1;
	color: rgba(74, 85, 104, var(--tw-text-opacity));
}

.active\:text-gray-500:active{
	--tw-text-opacity: 1;
	color: rgba(160, 174, 192, var(--tw-text-opacity));
}

.dark .dark\:border-dark-5{
	--tw-border-opacity: 1;
	border-color: rgba(63, 72, 101, var(--tw-border-opacity));
}

.dark .dark\:bg-dark-2{
	--tw-bg-opacity: 1;
	background-color: rgba(35, 42, 59, var(--tw-bg-opacity));
}

.dark .dark\:bg-dark-3{
	--tw-bg-opacity: 1;
	background-color: rgba(49, 58, 85, var(--tw-bg-opacity));
}

@media (min-width: 640px){
	.sm\:col-span-5{
		grid-column: span 5 / span 5;
	}
	.sm\:col-span-2{
		grid-column: span 2 / span 2;
	}
	.sm\:col-span-1{
		grid-column: span 1 / span 1;
	}
	.sm\:col-span-11{
		grid-column: span 11 / span 11;
	}
	.sm\:col-span-6{
		grid-column: span 6 / span 6;
	}
	.sm\:mr-6{
		margin-right: 1.5rem;
	}
	.sm\:flex{
		display: flex;
	}
	.sm\:hidden{
		display: none;
	}
	.sm\:w-28{
		width: 7rem;
	}
	.sm\:w-24{
		width: 6rem;
	}
	.sm\:w-3\/4{
		width: 75%;
	}
	.sm\:w-40{
		width: 10rem;
	}
	.sm\:flex-1{
		flex: 1 1 0%;
	}
	.sm\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sm\:grid-cols-3{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.sm\:flex-row{
		flex-direction: row;
	}
	.sm\:items-center{
		align-items: center;
	}
	.sm\:justify-between{
		justify-content: space-between;
	}
	.sm\:px-10{
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.sm\:px-8{
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media (min-width: 768px){
	.md\:col-span-6{
		grid-column: span 6 / span 6;
	}
	.md\:hidden{
		display: none;
	}
	.md\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.md\:flex-row{
		flex-direction: row;
	}
	.md\:items-center{
		align-items: center;
	}
}

@media (min-width: 1024px){
	.lg\:col-span-6{
		grid-column: span 6 / span 6;
	}
	.lg\:col-span-2{
		grid-column: span 2 / span 2;
	}
	.lg\:col-span-4{
		grid-column: span 4 / span 4;
	}
	.lg\:col-span-8{
		grid-column: span 8 / span 8;
	}
	.lg\:col-span-9{
		grid-column: span 9 / span 9;
	}
	.lg\:col-span-3{
		grid-column: span 3 / span 3;
	}
	.lg\:col-span-12{
		grid-column: span 12 / span 12;
	}
	.lg\:w-2\/4{
		width: 50%;
	}
	.lg\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.lg\:grid-cols-10{
		grid-template-columns: repeat(10, minmax(0, 1fr));
	}
	.lg\:grid-cols-4{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.lg\:grid-cols-5{
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.lg\:text-left{
		text-align: left;
	}
}

@media (min-width: 1168px){
	.xl\:col-span-3{
		grid-column: span 3 / span 3;
	}
	.xl\:col-span-12{
		grid-column: span 12 / span 12;
	}
	.xl\:col-span-9{
		grid-column: span 9 / span 9;
	}
	.xl\:col-span-4{
		grid-column: span 4 / span 4;
	}
	.xl\:col-span-6{
		grid-column: span 6 / span 6;
	}
	.xl\:my-0{
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.xl\:ml-20{
		margin-left: 5rem;
	}
	.xl\:block{
		display: block;
	}
	.xl\:flex{
		display: flex;
	}
	.xl\:grid{
		display: grid;
	}
	.xl\:hidden{
		display: none;
	}
	.xl\:h-auto{
		height: auto;
	}
	.xl\:w-auto{
		width: auto;
	}
	.xl\:bg-transparent{
		background-color: transparent;
	}
	.xl\:p-0{
		padding: 0px;
	}
	.xl\:py-0{
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.xl\:text-left{
		text-align: left;
	}
	.xl\:text-3xl{
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
	.xl\:shadow-none{
		--tw-shadow: 0 0 #0000;
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	}
}
