/* Configuration */
/* Base */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700;900&display=swap");
:root {
  --link-color: rgb(var(--color-accent));
  --link-decoration: none;
  --grid-gutter: 24px;
  --grid-gutter-negative: -24px;
  --container-box-width: 1200px;
  --base-body-font: Poppins, sans-serif;
  --base-heading-font: 'Lato', sans-serif;
  --base-monospace-font: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --base-font-size: 15px;
  --base-paragraph-margin-top: 0;
  --base-paragraph-margin-bottom: 1rem;
  --base-heading-margin-top: 0;
  --base-heading-margin-bottom: 1rem;
  --base-font-weight: 400;
  --base-line-height: 1.25;
  --base-link-color: var(--color-primary);
  --color-primary: #2a389f;
  --color-accent: #FC9ED2;
  --color-success: #2aa81f;
  --color-warning: #e5b12b;
  --color-danger: #ff6868;
  --color-primary-contrast: #fff;
  --color-accent-contrast: #222B45;
  --color-success-contrast: #fff;
  --color-warning-contrast: #222B45;
  --color-danger-contrast: #fff;
  --color-white: #fff;
  --color-black: #000;
  --theme-text-primary: #23262F;
  --theme-text-secondary: #777E90;
  --theme-to-text-secondary:rgba(0, 0, 0, 0.17);
  --theme-surface: #FCFCFD;
  --theme-background: #F4F5F6;
  --theme-text-hint: rgba(0, 0, 0, .38);
  --theme-text-icon: rgba(0, 0, 0, .38);
  --theme-disable: rgba(0, 0, 0, .38);
  --theme-divider: #E6E8EC;
  --theme-scrim: rgba(0, 0, 0, .2);
  --breakpoint-xs: 0;
  --breakpoint-sm: 640px;
  --breakpoint-md: 960px;
  --breakpoint-lg: 1280px;
  --breakpoint-xl: 1440px;
  --gutter-1: 16;
  --gutter-2: 24;
  --gutter-3: 32;
  --button-background: transparent;
  --button-background-hover: var(--theme-text-primary);
  --button-border-color: none;
  --button-border-radius: 4px;
  --button-border-width: 1px;
  --button-box-shadow: 4px;
  --button-box-width: 2px;
  --button-color: var(--theme-text-primary);
  --button-font-weight: 500;
  --button-font-family: inherit;
  --button-font-size: 14px;
  --button-height: 36px;
  --button-height-sm: 30px;
  --button-height-lg: 48px;
  --button-icon-size: 18px;
  --button-min-width: 64px;
  --button-padding-x: 16px;
  --button-padding-x-sm: 8px;
  --button-padding-x-lg: 24px;
  --button-padding-y: 0;
  --button-text-transform: none;
  --icon-button-color: var(--color-primary-contrast);
  --icon-button-background: var(--color-primary);
  --nav-color: var(--theme-text-primary);
  --nav-active-color: var(--color-primary);
  --nav-opacity: 1;
  --nav-active-opacity: 1;
  --top-app-bar-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid transparent;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
footer,
header,
nav,
section,
main,
details {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

menu {
  display: block;
}

canvas {
  display: inline-block;
}

body {
  margin: 0;
  font-family: var(--base-body-font);
  font-size: var(--base-font-size);
  font-weight: var(--base-font-weight);
  line-height: var(--base-line-height);
  color: var(--theme-text-primary);
  background: var(--theme-background);
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: var(--base-heading-margin-top);
  margin-bottom: var(--base-heading-margin-bottom);
  font-family: var(--base-heading-font);
}

p {
  margin-top: var(--base-paragraph-margin-top);
  margin-bottom: var(--base-paragraph-margin-bottom);
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 500;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 500;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  touch-action: manipulation;
  color: var(--base-link-color);
  text-decoration: none;
  background-color: transparent;
}

pre,
code,
kbd,
samp {
  font-family: var(--base-monospace-font);
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

dfn {
  font-style: italic;
}

mark {
  color: var(--color-accent-contrast);
  background-color: var(--color-accent);
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  touch-action: manipulation;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

label {
  font-size: 1rem;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/* Third Party Library */
[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos][data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos][data-aos-delay="300"] {
  transition-delay: 0.3s;
}

[data-aos][data-aos-delay="400"] {
  transition-delay: 0.4s;
}

[data-aos][data-aos-delay="500"] {
  transition-delay: 0.5s;
}

[data-aos=animation-scale-x-left] {
  transform: translateX(-50px) scaleX(1.1);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=animation-scale-x-left].aos-animate {
  transform: translateX(0) scaleX(1);
  opacity: 1;
}

[data-aos=animation-scale-x-right] {
  transform: translateX(50px) scaleX(1.1);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=animation-scale-x-right].aos-animate {
  transform: translateX(0) scaleX(1);
  opacity: 1;
}

[data-aos=animation-scale-y] {
  transform: translateY(40px) scaleY(1.4);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=animation-scale-y].aos-animate {
  transform: translateX(0) scaleY(1);
  opacity: 1;
}

[data-aos=animation-scale-x] {
  transform: translateY(-40px) scaleY(1.1);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=animation-scale-x].aos-animate {
  transform: translateX(0) scaleY(1);
  opacity: 1;
}

[data-aos=animation-translate-y] {
  transform: translateY(40px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=animation-translate-y].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos=animation-translate-x-right] {
  transform: translateX(40px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=animation-translate-x-right].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos=animation-fade] {
  opacity: 0;
  transition-property: opacity;
}
[data-aos=animation-fade].aos-animate {
  opacity: 1;
}

[data-aos=animation-image] {
  transform: translateY(100%);
  opacity: 0;
}
[data-aos=animation-image].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos=animation-video-banner] {
  transform: translateX(100%);
  opacity: 0;
}
[data-aos=animation-video-banner].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

.landing-view__slider-animate {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-delay: 200ms;
}

.landing-view__slider--first {
  transition-delay: 400ms;
}

.swiper-slide-active .landing-view__slider-animate {
  opacity: 1;
  transform: translateX(0) scale(1);
  visibility: visible;
}

@media (max-width: 1024px) {
  .delay-mobile-200 {
    transition-delay: 200ms !important;
  }
}
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar, .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Components */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-900.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
.button {
  min-width: 64px;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  outline: none;
}
.button::before, .button::after {
  position: absolute;
  top: calc(50% - 100%);
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
  pointer-events: none;
  content: " ";
  background-color: var(--button-background-hover);
  border-radius: 50%;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity;
  will-change: opacity;
}
.button::before {
  border-radius: 4px;
  transition-duration: 300ms;
  transition-property: transform, opacity;
  transform: scale(0);
  will-change: transform, opacity;
}
.button::after {
  transition-timing-function: linear;
  transition-duration: 85ms;
}
.button--active::before, .button:hover::before, .button:active::before, .button:focus::before {
  opacity: 0.06;
  transform: none;
}
.button:active::after {
  opacity: 0.06;
}
.button__icon {
  display: inline-block;
  width: var(--button-icon-size);
  height: var(--button-icon-size);
  margin-right: 8px;
  margin-left: 0;
  font-size: var(--button-icon-size);
  vertical-align: top;
  pointer-events: none;
  user-select: none;
}
.button--raised .button__icon, .button--outlined .button__icon, .button--unelevated .button__icon {
  margin-left: -4px;
}
.button__icon--trailing {
  margin-right: 0;
  margin-left: 8px;
}
.button--raised .button__icon--trailing, .button--outlined .button__icon--trailing, .button--unelevated .button__icon--trailing {
  margin-right: -4px;
  margin-left: 8px;
}
.button__label {
  flex-grow: 1;
  pointer-events: none;
}
.button__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button[disabled], .button--loading {
  --button-color: var(--theme-disable);
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.button[disabled]::after, .button[disabled]::before, .button--loading::after, .button--loading::before {
  display: none;
}
.button[disabled].button--raised, .button--loading.button--raised {
  --button-color: var(--color-app-button-disable);
  --button-background: var(--theme-divider);
}

.icon-button {
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  outline: none;
  will-change: box-shadow, background;
  transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  fill: currentColor;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.icon-button::before, .icon-button::after {
  position: absolute;
  top: calc(50% - 100%);
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
  pointer-events: none;
  content: " ";
  background-color: var(--theme-text-primary);
  border-radius: 50%;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity;
  will-change: opacity;
}
.icon-button::before {
  border-radius: inherit;
  transition-duration: 300ms;
  transition-property: transform, opacity;
  transform: scale(0);
  will-change: transform, opacity;
}
.icon-button::after {
  transition-duration: 85ms;
}
.icon-button--active::before, .icon-button:hover::before, .icon-button:active::before, .icon-button:focus::before {
  opacity: 0.06;
  transform: none;
}
.icon-button:active::after {
  opacity: 0.06;
}
.icon-button__icon {
  display: inline-block;
  color: inherit;
  vertical-align: top;
  user-select: none;
}
.icon-button__icon--on {
  display: none;
}
.icon-button--on .icon-button__icon {
  display: none;
}
.icon-button--on .icon-button__icon--on {
  display: inline-block;
}
.icon-button--accent {
  --icon-button-background-hover: var(--color-accent-contrast);
  --icon-button-color: var(--color-accent);
}
.icon-button[disabled] {
  --icon-button-color: var(--theme-disable);
  pointer-events: none;
  cursor: default;
}
.icon-button[disabled]::after, .icon-button[disabled]::before {
  display: none;
}

.text-field {
  outline: none;
  will-change: opacity, transform;
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
  background-color: var(--theme-surface);
  border: 2px solid var(--theme-to-text-secondary);
  --floating-label-color: var(--theme-to-text-secondary);
  /* Modifier */
}
.text-field__input {
  z-index: 1;
  background: transparent;
  text-decoration: inherit;
  text-transform: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.text-field__input:required ~ .floating-label::after, .text-field__input:required ~ .notched .floating-label::after {
  margin-left: 1px;
  content: "*";
}
.text-field:hover {
  border-color: var(--theme-text-primary);
}
.text-field--focused {
  border-color: var(--theme-text-primary);
}
.text-field--focused .text-field__input:required ~ .floating-label::after,
.text-field--focused .text-field__input:required ~ .notched .floating-label::after {
  color: #d50000;
}
.text-field--focused::after, .text-field--focused::before {
  opacity: 0.06;
}
.text-field--invalid {
  --notched-border-color: RGB(var(--color-danger));
  --floating-label-color: RGB(var(--color-danger));
  --line-ripple-background: RGB(var(--color-danger));
}
.text-field--disabled .floating-label {
  color: var(--theme-disable);
}

.top-app-bar {
  z-index: 4;
  border: none;
  transition-timing-function: var(--animation-curve-default);
  transition-duration: 0.2s;
  transition-property: all;
}
.top-app-bar__navigation-icon {
  width: 48px;
  height: 48px;
  margin-left: -12px;
  color: inherit !important;
  background: transparent;
  outline: none;
}
.top-app-bar__row {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  height: var(--top-app-bar-height);
}
.top-app-bar__title {
  z-index: 1;
  overflow: hidden;
  padding-right: 0;
  padding-left: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-app-bar__brand {
  display: inline-flex;
  margin-right: 16px;
  padding: 4px 0;
  font-size: 24px;
  line-height: inherit;
  white-space: nowrap;
}
.top-app-bar__brand img {
  width: auto;
  max-height: 100%;
}
.top-app-bar--casting-border {
  border-bottom: 1px solid var(--theme-divider);
}
.top-app-bar--dense .top-app-bar__row {
  height: var(--top-app-bar-height-phone);
}
.top-app-bar--dense .top-app-bar__title {
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-app-bar--dense .top-app-bar__menu-button {
  top: 4px;
  left: 4px;
}
.top-app-bar--short .top-app-bar__row {
  height: var(--top-app-bar-height-default);
}
.top-app-bar--short .top-app-bar__title {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
}
.top-app-bar--short .top-app-bar__menu-button {
  top: 2px;
  left: 4px;
}

/* Utilities */
.gutter-2 {
  --grid-gutter: 12px;
  --grid-gutter-negative: -12px;
}

.gutter-3 {
  --grid-gutter: 16px;
  --grid-gutter-negative: -16px;
}

.gutter-4 {
  --grid-gutter: 24px;
  --grid-gutter-negative: -24px;
}

@media (min-width: 640px) {
  .sm\:gutter-2 {
    --grid-gutter: 12px;
    --grid-gutter-negative: -12px;
  }

  .sm\:gutter-3 {
    --grid-gutter: 16px;
    --grid-gutter-negative: -16px;
  }

  .sm\:gutter-4 {
    --grid-gutter: 24px;
    --grid-gutter-negative: -24px;
  }
}
@media (min-width: 960px) {
  .md\:gutter-2 {
    --grid-gutter: 12px;
    --grid-gutter-negative: -12px;
  }

  .md\:gutter-3 {
    --grid-gutter: 16px;
    --grid-gutter-negative: -16px;
  }

  .md\:gutter-4 {
    --grid-gutter: 24px;
    --grid-gutter-negative: -24px;
  }
}
@media (min-width: 1280px) {
  .lg\:gutter-2 {
    --grid-gutter: 12px;
    --grid-gutter-negative: -12px;
  }

  .lg\:gutter-3 {
    --grid-gutter: 16px;
    --grid-gutter-negative: -16px;
  }

  .lg\:gutter-4 {
    --grid-gutter: 24px;
    --grid-gutter-negative: -24px;
  }
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--grid-gutter);
  padding-left: var(--grid-gutter);
}
.container--box {
  max-width: var(--container-box-width);
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-right: var(--grid-gutter-negative);
  margin-left: var(--grid-gutter-negative);
}

.col-break {
  width: 100% !important;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  min-height: 1px;
  padding-right: var(--grid-gutter);
  padding-left: var(--grid-gutter);
}

.col--1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col--2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col--3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col--4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col--5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col--6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col--7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col--8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col--9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col--10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col--11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col--12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .sm\:col--1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .sm\:col--2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .sm\:col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .sm\:col--4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .sm\:col--5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .sm\:col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .sm\:col--7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .sm\:col--8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .sm\:col--9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .sm\:col--10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .sm\:col--11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .sm\:col--12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 960px) {
  .md\:col--1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .md\:col--2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .md\:col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .md\:col--4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .md\:col--5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .md\:col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .md\:col--7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .md\:col--8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .md\:col--9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .md\:col--10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .md\:col--11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .md\:col--12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .lg\:col--1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .lg\:col--2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .lg\:col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .lg\:col--4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .lg\:col--5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .lg\:col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .lg\:col--7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .lg\:col--8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .lg\:col--9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .lg\:col--10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .lg\:col--11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .lg\:col--12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.col--offset-1 {
  margin-left: 8.3333333333%;
}

.col--offset-2 {
  margin-left: 16.6666666667%;
}

.col--offset-3 {
  margin-left: 25%;
}

.col--offset-4 {
  margin-left: 33.3333333333%;
}

.col--offset-5 {
  margin-left: 41.6666666667%;
}

.col--offset-6 {
  margin-left: 50%;
}

.col--offset-7 {
  margin-left: 58.3333333333%;
}

.col--offset-8 {
  margin-left: 66.6666666667%;
}

.col--offset-9 {
  margin-left: 75%;
}

.col--offset-10 {
  margin-left: 83.3333333333%;
}

.col--offset-11 {
  margin-left: 91.6666666667%;
}

.col--offset-12 {
  margin-left: 100%;
}

@media (min-width: 640px) {
  .sm\:col--offset-1 {
    margin-left: 8.3333333333%;
  }

  .sm\:col--offset-2 {
    margin-left: 16.6666666667%;
  }

  .sm\:col--offset-3 {
    margin-left: 25%;
  }

  .sm\:col--offset-4 {
    margin-left: 33.3333333333%;
  }

  .sm\:col--offset-5 {
    margin-left: 41.6666666667%;
  }

  .sm\:col--offset-6 {
    margin-left: 50%;
  }

  .sm\:col--offset-7 {
    margin-left: 58.3333333333%;
  }

  .sm\:col--offset-8 {
    margin-left: 66.6666666667%;
  }

  .sm\:col--offset-9 {
    margin-left: 75%;
  }

  .sm\:col--offset-10 {
    margin-left: 83.3333333333%;
  }

  .sm\:col--offset-11 {
    margin-left: 91.6666666667%;
  }

  .sm\:col--offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 960px) {
  .md\:col--offset-1 {
    margin-left: 8.3333333333%;
  }

  .md\:col--offset-2 {
    margin-left: 16.6666666667%;
  }

  .md\:col--offset-3 {
    margin-left: 25%;
  }

  .md\:col--offset-4 {
    margin-left: 33.3333333333%;
  }

  .md\:col--offset-5 {
    margin-left: 41.6666666667%;
  }

  .md\:col--offset-6 {
    margin-left: 50%;
  }

  .md\:col--offset-7 {
    margin-left: 58.3333333333%;
  }

  .md\:col--offset-8 {
    margin-left: 66.6666666667%;
  }

  .md\:col--offset-9 {
    margin-left: 75%;
  }

  .md\:col--offset-10 {
    margin-left: 83.3333333333%;
  }

  .md\:col--offset-11 {
    margin-left: 91.6666666667%;
  }

  .md\:col--offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1280px) {
  .lg\:col--offset-1 {
    margin-left: 8.3333333333%;
  }

  .lg\:col--offset-2 {
    margin-left: 16.6666666667%;
  }

  .lg\:col--offset-3 {
    margin-left: 25%;
  }

  .lg\:col--offset-4 {
    margin-left: 33.3333333333%;
  }

  .lg\:col--offset-5 {
    margin-left: 41.6666666667%;
  }

  .lg\:col--offset-6 {
    margin-left: 50%;
  }

  .lg\:col--offset-7 {
    margin-left: 58.3333333333%;
  }

  .lg\:col--offset-8 {
    margin-left: 66.6666666667%;
  }

  .lg\:col--offset-9 {
    margin-left: 75%;
  }

  .lg\:col--offset-10 {
    margin-left: 83.3333333333%;
  }

  .lg\:col--offset-11 {
    margin-left: 91.6666666667%;
  }

  .lg\:col--offset-12 {
    margin-left: 100%;
  }
}
.align-content-center {
  align-content: center;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-between {
  align-content: space-between;
}

.align-content-around {
  align-content: space-around;
}

@media (min-width: 640px) {
  .sm\:align-content-center {
    align-content: center;
  }

  .sm\:align-content-start {
    align-content: flex-start;
  }

  .sm\:align-content-end {
    align-content: flex-end;
  }

  .sm\:align-content-between {
    align-content: space-between;
  }

  .sm\:align-content-around {
    align-content: space-around;
  }
}
@media (min-width: 960px) {
  .md\:align-content-center {
    align-content: center;
  }

  .md\:align-content-start {
    align-content: flex-start;
  }

  .md\:align-content-end {
    align-content: flex-end;
  }

  .md\:align-content-between {
    align-content: space-between;
  }

  .md\:align-content-around {
    align-content: space-around;
  }
}
@media (min-width: 1280px) {
  .lg\:align-content-center {
    align-content: center;
  }

  .lg\:align-content-start {
    align-content: flex-start;
  }

  .lg\:align-content-end {
    align-content: flex-end;
  }

  .lg\:align-content-between {
    align-content: space-between;
  }

  .lg\:align-content-around {
    align-content: space-around;
  }
}
.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

@media (min-width: 640px) {
  .sm\:align-items-start {
    align-items: flex-start;
  }

  .sm\:align-items-end {
    align-items: flex-end;
  }

  .sm\:align-items-center {
    align-items: center;
  }

  .sm\:align-items-baseline {
    align-items: baseline;
  }

  .sm\:align-items-stretch {
    align-items: stretch;
  }
}
@media (min-width: 960px) {
  .md\:align-items-start {
    align-items: flex-start;
  }

  .md\:align-items-end {
    align-items: flex-end;
  }

  .md\:align-items-center {
    align-items: center;
  }

  .md\:align-items-baseline {
    align-items: baseline;
  }

  .md\:align-items-stretch {
    align-items: stretch;
  }
}
@media (min-width: 1280px) {
  .lg\:align-items-start {
    align-items: flex-start;
  }

  .lg\:align-items-end {
    align-items: flex-end;
  }

  .lg\:align-items-center {
    align-items: center;
  }

  .lg\:align-items-baseline {
    align-items: baseline;
  }

  .lg\:align-items-stretch {
    align-items: stretch;
  }
}
.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

@media (min-width: 640px) {
  .sm\:align-self-start {
    align-self: flex-start;
  }

  .sm\:align-self-end {
    align-self: flex-end;
  }

  .sm\:align-self-center {
    align-self: center;
  }

  .sm\:align-self-baseline {
    align-self: baseline;
  }

  .sm\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 960px) {
  .md\:align-self-start {
    align-self: flex-start;
  }

  .md\:align-self-end {
    align-self: flex-end;
  }

  .md\:align-self-center {
    align-self: center;
  }

  .md\:align-self-baseline {
    align-self: baseline;
  }

  .md\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 1280px) {
  .lg\:align-self-start {
    align-self: flex-start;
  }

  .lg\:align-self-end {
    align-self: flex-end;
  }

  .lg\:align-self-center {
    align-self: center;
  }

  .lg\:align-self-baseline {
    align-self: baseline;
  }

  .lg\:align-self-stretch {
    align-self: stretch;
  }
}
.bg-primary {
  background-color: var(--color-primary);
}

.bg-success {
  background-color: var(--color-success);
}

.bg-warning {
  background-color: var(--color-warning);
}

.bg-danger {
  background-color: var(--color-danger);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-black {
  background-color: var(--color-black);
}

.bg-theme-background {
  background-color: var(--theme-background);
}

.bg-theme-surface {
  background-color: var(--theme-surface);
}

.bg-theme-disable {
  background-color: var(--theme-disable);
}

.bg-theme-divider {
  background-color: var(--theme-divider);
}

.bg-theme-scrim {
  background-color: var(--theme-scrim);
}

.bg-transparent {
  background-color: transparent;
}

.bg-primary\:hover:hover {
  background-color: var(--color-primary);
}

.bg-success\:hover:hover {
  background-color: var(--color-success);
}

.bg-warning\:hover:hover {
  background-color: var(--color-warning);
}

.bg-danger\:hover:hover {
  background-color: var(--color-danger);
}

.bg-white\:hover:hover {
  background-color: var(--color-white);
}

.bg-black\:hover:hover {
  background-color: var(--color-black);
}

.bg-theme-background\:hover:hover {
  background-color: var(--theme-background);
}

.bg-theme-surface\:hover:hover {
  background-color: var(--theme-surface);
}

.bg-theme-disable\:hover:hover {
  background-color: var(--theme-disable);
}

.bg-theme-divider\:hover:hover {
  background-color: var(--theme-divider);
}

.bg-theme-scrim\:hover:hover {
  background-color: var(--theme-scrim);
}

.bg-transparent\:hover:hover {
  background-color: transparent;
}

.border-none {
  border: none;
}

.border-1 {
  border: 1px solid;
}

.border-t-none {
  border-top-width: 0;
}

.border-t-1 {
  border-top-width: 1px;
}

.border-r-none {
  border-right-width: 0;
}

.border-r-1 {
  border-right-width: 1px;
}

.border-b-none {
  border-bottom-width: 0;
}

.border-b-1 {
  border-bottom-width: 1px;
}

.border-l-none {
  border-left-width: 0;
}

.border-l-1 {
  border-left-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-none {
  border-style: none;
}

.border-radius-none {
  border-radius: 0;
}

.border-radius-circle {
  border-radius: 50%;
}

.border-radius-4 {
  border-radius: 4px;
}

.border-radius-8 {
  border-radius: 8px;
}

.border-radius-12 {
  border-radius: 12px;
}

.border-radius-24 {
  border-radius: 24px;
}

.border-white {
  border-color: var(--color-white);
}

.border-transparent {
  border-color: transparent;
}

.border-divider {
  border-color: var(--theme-divider);
}

.shadow-header {
  box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
}

.shadow-drawer {
  box-shadow: 0 0 15px 0 rgb(34 41 47 / 5%);
}

.shadow-card {
  box-shadow: 0 5px 20px #ededed;
}

.shadow-header\:hover:hover {
  box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
}

.shadow-drawer\:hover:hover {
  box-shadow: 0 0 15px 0 rgb(34 41 47 / 5%);
}

.shadow-card\:hover:hover {
  box-shadow: 0 5px 20px #ededed;
}

.text-inherit {
  color: inherit;
}

.text-primary {
  color: var(--color-primary);
}

.text-success {
  color: var(--color-success);
}

.text-warning {
  color: var(--color-warning);
}

.text-danger {
  color: var(--color-danger);
}

.text-light {
  color: var(--color-light);
}

.text-white {
  color: var(--color-white);
}

.text-dark {
  color: var(--color-dark);
}

.text-black {
  color: var(--color-black);
}

.text-theme-primary {
  color: var(--theme-text-primary);
}

.text-theme-secondary {
  color: var(--theme-text-secondary);
}

.text-theme-tertiary {
  color: var(--theme-text-tertiary);
}

.text-pink {
  color: var(--color-pink);
}

.text-purple {
  color: var(--color-purple);
}

.text-blue {
  color: var(--color-blue);
}

.text-red {
  color: var(--color-red);
}

.text-green {
  color: var(--color-green);
}

.text-inherit\:hover:hover {
  color: inherit;
}

.text-primary\:hover:hover {
  color: var(--color-primary);
}

.text-success\:hover:hover {
  color: var(--color-success);
}

.text-warning\:hover:hover {
  color: var(--color-warning);
}

.text-danger\:hover:hover {
  color: var(--color-danger);
}

.text-light\:hover:hover {
  color: var(--color-light);
}

.text-white\:hover:hover {
  color: var(--color-white);
}

.text-dark\:hover:hover {
  color: var(--color-dark);
}

.text-black\:hover:hover {
  color: var(--color-black);
}

.text-theme-primary\:hover:hover {
  color: var(--theme-text-primary);
}

.text-theme-secondary\:hover:hover {
  color: var(--theme-text-secondary);
}

.text-theme-tertiary\:hover:hover {
  color: var(--theme-text-tertiary);
}

.text-pink\:hover:hover {
  color: var(--color-pink);
}

.text-purple\:hover:hover {
  color: var(--color-purple);
}

.text-blue\:hover:hover {
  color: var(--color-blue);
}

.text-red\:hover:hover {
  color: var(--color-red);
}

.text-green\:hover:hover {
  color: var(--color-green);
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

@media (min-width: 640px) {
  .sm\:d-none {
    display: none;
  }

  .sm\:d-inline-block {
    display: inline-block;
  }

  .sm\:d-block {
    display: block;
  }

  .sm\:d-flex {
    display: flex;
  }

  .sm\:d-inline-flex {
    display: inline-flex;
  }
}
@media (min-width: 960px) {
  .md\:d-none {
    display: none;
  }

  .md\:d-inline-block {
    display: inline-block;
  }

  .md\:d-block {
    display: block;
  }

  .md\:d-flex {
    display: flex;
  }

  .md\:d-inline-flex {
    display: inline-flex;
  }
}
@media (min-width: 1280px) {
  .lg\:d-none {
    display: none;
  }

  .lg\:d-inline-block {
    display: inline-block;
  }

  .lg\:d-block {
    display: block;
  }

  .lg\:d-flex {
    display: flex;
  }

  .lg\:d-inline-flex {
    display: inline-flex;
  }
}
.flex-initial {
  flex: 0 1 auto;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-1 {
  flex: 1 1 100%;
}

.flex-none {
  flex: none;
}

@media (min-width: 640px) {
  .sm\:flex-initial {
    flex: 0 1 auto;
  }

  .sm\:flex-auto {
    flex: 1 1 auto;
  }

  .sm\:flex-1 {
    flex: 1 1 100%;
  }

  .sm\:flex-none {
    flex: none;
  }
}
@media (min-width: 960px) {
  .md\:flex-initial {
    flex: 0 1 auto;
  }

  .md\:flex-auto {
    flex: 1 1 auto;
  }

  .md\:flex-1 {
    flex: 1 1 100%;
  }

  .md\:flex-none {
    flex: none;
  }
}
@media (min-width: 1280px) {
  .lg\:flex-initial {
    flex: 0 1 auto;
  }

  .lg\:flex-auto {
    flex: 1 1 auto;
  }

  .lg\:flex-1 {
    flex: 1 1 100%;
  }

  .lg\:flex-none {
    flex: none;
  }
}
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 960px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-col-reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1280px) {
  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:flex-col-reverse {
    flex-direction: column-reverse;
  }
}
.flex-grow {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.font-size-96 {
  font-size: 96px;
}

.font-size-64 {
  font-size: 64px;
}

.font-size-48 {
  font-size: 48px;
}

.font-size-40 {
  font-size: 40px;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-12 {
  font-size: 12px;
}

@media (min-width: 640px) {
  .sm\:font-size-96 {
    font-size: 96px;
  }

  .sm\:font-size-64 {
    font-size: 64px;
  }

  .sm\:font-size-48 {
    font-size: 48px;
  }

  .sm\:font-size-40 {
    font-size: 40px;
  }

  .sm\:font-size-32 {
    font-size: 32px;
  }

  .sm\:font-size-24 {
    font-size: 24px;
  }

  .sm\:font-size-20 {
    font-size: 20px;
  }

  .sm\:font-size-18 {
    font-size: 18px;
  }

  .sm\:font-size-16 {
    font-size: 16px;
  }

  .sm\:font-size-14 {
    font-size: 14px;
  }

  .sm\:font-size-12 {
    font-size: 12px;
  }
}
@media (min-width: 960px) {
  .md\:font-size-96 {
    font-size: 96px;
  }

  .md\:font-size-64 {
    font-size: 64px;
  }

  .md\:font-size-48 {
    font-size: 48px;
  }

  .md\:font-size-40 {
    font-size: 40px;
  }

  .md\:font-size-32 {
    font-size: 32px;
  }

  .md\:font-size-24 {
    font-size: 24px;
  }

  .md\:font-size-20 {
    font-size: 20px;
  }

  .md\:font-size-18 {
    font-size: 18px;
  }

  .md\:font-size-16 {
    font-size: 16px;
  }

  .md\:font-size-14 {
    font-size: 14px;
  }

  .md\:font-size-12 {
    font-size: 12px;
  }
}
@media (min-width: 1280px) {
  .lg\:font-size-96 {
    font-size: 96px;
  }

  .lg\:font-size-64 {
    font-size: 64px;
  }

  .lg\:font-size-48 {
    font-size: 48px;
  }

  .lg\:font-size-40 {
    font-size: 40px;
  }

  .lg\:font-size-32 {
    font-size: 32px;
  }

  .lg\:font-size-24 {
    font-size: 24px;
  }

  .lg\:font-size-20 {
    font-size: 20px;
  }

  .lg\:font-size-18 {
    font-size: 18px;
  }

  .lg\:font-size-16 {
    font-size: 16px;
  }

  .lg\:font-size-14 {
    font-size: 14px;
  }

  .lg\:font-size-12 {
    font-size: 12px;
  }
}
.font-family-body {
  font-family: var(--base-body-font);
}

.font-family-heading {
  font-family: var(--base-heading-font);
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

@media (min-width: 640px) {
  .sm\:justify-content-start {
    justify-content: flex-start;
  }

  .sm\:justify-content-end {
    justify-content: flex-end;
  }

  .sm\:justify-content-center {
    justify-content: center;
  }

  .sm\:justify-content-between {
    justify-content: space-between;
  }

  .sm\:justify-content-around {
    justify-content: space-around;
  }
}
@media (min-width: 960px) {
  .md\:justify-content-start {
    justify-content: flex-start;
  }

  .md\:justify-content-end {
    justify-content: flex-end;
  }

  .md\:justify-content-center {
    justify-content: center;
  }

  .md\:justify-content-between {
    justify-content: space-between;
  }

  .md\:justify-content-around {
    justify-content: space-around;
  }
}
@media (min-width: 1280px) {
  .lg\:justify-content-start {
    justify-content: flex-start;
  }

  .lg\:justify-content-end {
    justify-content: flex-end;
  }

  .lg\:justify-content-center {
    justify-content: center;
  }

  .lg\:justify-content-between {
    justify-content: space-between;
  }

  .lg\:justify-content-around {
    justify-content: space-around;
  }
}
.left-0 {
  left: 0;
}

.line-height-1 {
  line-height: 1.25;
}

.line-height-normal {
  line-height: normal;
}

.line-height-2 {
  line-height: 1.33333333;
}

.line-height-3 {
  line-height: 1.75;
}

.line-height-4 {
  line-height: 2;
}

@media (min-width: 640px) {
  .sm\:line-height-1 {
    line-height: 1.25;
  }

  .sm\:line-height-normal {
    line-height: normal;
  }

  .sm\:line-height-2 {
    line-height: 1.33333333;
  }

  .sm\:line-height-3 {
    line-height: 1.75;
  }

  .sm\:line-height-4 {
    line-height: 2;
  }
}
@media (min-width: 960px) {
  .md\:line-height-1 {
    line-height: 1.25;
  }

  .md\:line-height-normal {
    line-height: normal;
  }

  .md\:line-height-2 {
    line-height: 1.33333333;
  }

  .md\:line-height-3 {
    line-height: 1.75;
  }

  .md\:line-height-4 {
    line-height: 2;
  }
}
@media (min-width: 1280px) {
  .lg\:line-height-1 {
    line-height: 1.25;
  }

  .lg\:line-height-normal {
    line-height: normal;
  }

  .lg\:line-height-2 {
    line-height: 1.33333333;
  }

  .lg\:line-height-3 {
    line-height: 1.75;
  }

  .lg\:line-height-4 {
    line-height: 2;
  }
}
.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-y-visible {
  overflow-y: visible;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.p-0 {
  padding: 0;
}

.p-8 {
  padding: 0.5rem;
}

.p-16 {
  padding: 1rem;
}

.p-20 {
  padding: 1.25rem;
}

.p-24 {
  padding: 1.5rem;
}

.p-32 {
  padding: 2rem;
}

.p-72 {
  padding: 72px;
}

.p-64 {
  padding: 64px;
}

@media (min-width: 640px) {
  .sm\:p-0 {
    padding: 0;
  }

  .sm\:p-8 {
    padding: 0.5rem;
  }

  .sm\:p-16 {
    padding: 1rem;
  }

  .sm\:p-20 {
    padding: 1.25rem;
  }

  .sm\:p-24 {
    padding: 1.5rem;
  }

  .sm\:p-32 {
    padding: 2rem;
  }

  .sm\:p-72 {
    padding: 72px;
  }

  .sm\:p-64 {
    padding: 64px;
  }
}
@media (min-width: 960px) {
  .md\:p-0 {
    padding: 0;
  }

  .md\:p-8 {
    padding: 0.5rem;
  }

  .md\:p-16 {
    padding: 1rem;
  }

  .md\:p-20 {
    padding: 1.25rem;
  }

  .md\:p-24 {
    padding: 1.5rem;
  }

  .md\:p-32 {
    padding: 2rem;
  }

  .md\:p-72 {
    padding: 72px;
  }

  .md\:p-64 {
    padding: 64px;
  }
}
@media (min-width: 1280px) {
  .lg\:p-0 {
    padding: 0;
  }

  .lg\:p-8 {
    padding: 0.5rem;
  }

  .lg\:p-16 {
    padding: 1rem;
  }

  .lg\:p-20 {
    padding: 1.25rem;
  }

  .lg\:p-24 {
    padding: 1.5rem;
  }

  .lg\:p-32 {
    padding: 2rem;
  }

  .lg\:p-72 {
    padding: 72px;
  }

  .lg\:p-64 {
    padding: 64px;
  }
}
.pt-0 {
  padding-top: 0;
}

.pt-8 {
  padding-top: 0.5rem;
}

.pt-12 {
  padding-top: 0.75rem;
}

.pt-16 {
  padding-top: 1rem;
}

.pt-20 {
  padding-top: 1.25rem;
}

.pt-24 {
  padding-top: 1.5rem;
}

.pt-32 {
  padding-top: 2rem;
}

.pt-40 {
  padding-top: 2.5rem;
}

.pt-64 {
  padding-top: 64px;
}

.pt-72 {
  padding-top: 72px;
}

.pt-96 {
  padding-top: 96px;
}

@media (min-width: 640px) {
  .sm\:pt-0 {
    padding-top: 0;
  }

  .sm\:pt-8 {
    padding-top: 0.5rem;
  }

  .sm\:pt-12 {
    padding-top: 0.75rem;
  }

  .sm\:pt-16 {
    padding-top: 1rem;
  }

  .sm\:pt-20 {
    padding-top: 1.25rem;
  }

  .sm\:pt-24 {
    padding-top: 1.5rem;
  }

  .sm\:pt-32 {
    padding-top: 2rem;
  }

  .sm\:pt-40 {
    padding-top: 2.5rem;
  }

  .sm\:pt-64 {
    padding-top: 64px;
  }

  .sm\:pt-72 {
    padding-top: 72px;
  }

  .sm\:pt-96 {
    padding-top: 96px;
  }
}
@media (min-width: 960px) {
  .md\:pt-0 {
    padding-top: 0;
  }

  .md\:pt-8 {
    padding-top: 0.5rem;
  }

  .md\:pt-12 {
    padding-top: 0.75rem;
  }

  .md\:pt-16 {
    padding-top: 1rem;
  }

  .md\:pt-20 {
    padding-top: 1.25rem;
  }

  .md\:pt-24 {
    padding-top: 1.5rem;
  }

  .md\:pt-32 {
    padding-top: 2rem;
  }

  .md\:pt-40 {
    padding-top: 2.5rem;
  }

  .md\:pt-64 {
    padding-top: 64px;
  }

  .md\:pt-72 {
    padding-top: 72px;
  }

  .md\:pt-96 {
    padding-top: 96px;
  }
}
@media (min-width: 1280px) {
  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:pt-8 {
    padding-top: 0.5rem;
  }

  .lg\:pt-12 {
    padding-top: 0.75rem;
  }

  .lg\:pt-16 {
    padding-top: 1rem;
  }

  .lg\:pt-20 {
    padding-top: 1.25rem;
  }

  .lg\:pt-24 {
    padding-top: 1.5rem;
  }

  .lg\:pt-32 {
    padding-top: 2rem;
  }

  .lg\:pt-40 {
    padding-top: 2.5rem;
  }

  .lg\:pt-64 {
    padding-top: 64px;
  }

  .lg\:pt-72 {
    padding-top: 72px;
  }

  .lg\:pt-96 {
    padding-top: 96px;
  }
}
.pl-0 {
  padding-left: 0;
}

.pl-8 {
  padding-left: 0.5rem;
}

.pl-16 {
  padding-left: 1rem;
}

.pl-20 {
  padding-left: 1.25rem;
}

.pl-24 {
  padding-left: 1.5rem;
}

.pl-32 {
  padding-left: 2rem;
}

.pl-36 {
  padding-left: 36px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-48 {
  padding-left: 48px;
}

.pl-56 {
  padding-left: 56px;
}

.pl-64 {
  padding-left: 64px;
}

.pl-72 {
  padding-left: 72px;
}

@media (min-width: 640px) {
  .sm\:pl-0 {
    padding-left: 0;
  }

  .sm\:pl-8 {
    padding-left: 0.5rem;
  }

  .sm\:pl-16 {
    padding-left: 1rem;
  }

  .sm\:pl-20 {
    padding-left: 1.25rem;
  }

  .sm\:pl-24 {
    padding-left: 1.5rem;
  }

  .sm\:pl-32 {
    padding-left: 2rem;
  }

  .sm\:pl-36 {
    padding-left: 36px;
  }

  .sm\:pl-40 {
    padding-left: 40px;
  }

  .sm\:pl-48 {
    padding-left: 48px;
  }

  .sm\:pl-56 {
    padding-left: 56px;
  }

  .sm\:pl-64 {
    padding-left: 64px;
  }

  .sm\:pl-72 {
    padding-left: 72px;
  }
}
@media (min-width: 960px) {
  .md\:pl-0 {
    padding-left: 0;
  }

  .md\:pl-8 {
    padding-left: 0.5rem;
  }

  .md\:pl-16 {
    padding-left: 1rem;
  }

  .md\:pl-20 {
    padding-left: 1.25rem;
  }

  .md\:pl-24 {
    padding-left: 1.5rem;
  }

  .md\:pl-32 {
    padding-left: 2rem;
  }

  .md\:pl-36 {
    padding-left: 36px;
  }

  .md\:pl-40 {
    padding-left: 40px;
  }

  .md\:pl-48 {
    padding-left: 48px;
  }

  .md\:pl-56 {
    padding-left: 56px;
  }

  .md\:pl-64 {
    padding-left: 64px;
  }

  .md\:pl-72 {
    padding-left: 72px;
  }
}
@media (min-width: 1280px) {
  .lg\:pl-0 {
    padding-left: 0;
  }

  .lg\:pl-8 {
    padding-left: 0.5rem;
  }

  .lg\:pl-16 {
    padding-left: 1rem;
  }

  .lg\:pl-20 {
    padding-left: 1.25rem;
  }

  .lg\:pl-24 {
    padding-left: 1.5rem;
  }

  .lg\:pl-32 {
    padding-left: 2rem;
  }

  .lg\:pl-36 {
    padding-left: 36px;
  }

  .lg\:pl-40 {
    padding-left: 40px;
  }

  .lg\:pl-48 {
    padding-left: 48px;
  }

  .lg\:pl-56 {
    padding-left: 56px;
  }

  .lg\:pl-64 {
    padding-left: 64px;
  }

  .lg\:pl-72 {
    padding-left: 72px;
  }
}
.pb-0 {
  padding-bottom: 0;
}

.pb-8 {
  padding-bottom: 0.5rem;
}

.pb-16 {
  padding-bottom: 1rem;
}

.pb-20 {
  padding-bottom: 1.25rem;
}

.pb-24 {
  padding-bottom: 1.5rem;
}

.pb-32 {
  padding-bottom: 2rem;
}

.pb-40 {
  padding-bottom: 2.5rem;
}

.pb-54 {
  padding-bottom: 54px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pb-72 {
  padding-bottom: 72px;
}

.pb-96 {
  padding-bottom: 96px;
}

@media (min-width: 640px) {
  .sm\:pb-0 {
    padding-bottom: 0;
  }

  .sm\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .sm\:pb-16 {
    padding-bottom: 1rem;
  }

  .sm\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .sm\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .sm\:pb-32 {
    padding-bottom: 2rem;
  }

  .sm\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .sm\:pb-54 {
    padding-bottom: 54px;
  }

  .sm\:pb-64 {
    padding-bottom: 64px;
  }

  .sm\:pb-72 {
    padding-bottom: 72px;
  }

  .sm\:pb-96 {
    padding-bottom: 96px;
  }
}
@media (min-width: 960px) {
  .md\:pb-0 {
    padding-bottom: 0;
  }

  .md\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .md\:pb-16 {
    padding-bottom: 1rem;
  }

  .md\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .md\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .md\:pb-32 {
    padding-bottom: 2rem;
  }

  .md\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .md\:pb-54 {
    padding-bottom: 54px;
  }

  .md\:pb-64 {
    padding-bottom: 64px;
  }

  .md\:pb-72 {
    padding-bottom: 72px;
  }

  .md\:pb-96 {
    padding-bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .lg\:pb-0 {
    padding-bottom: 0;
  }

  .lg\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .lg\:pb-16 {
    padding-bottom: 1rem;
  }

  .lg\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .lg\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .lg\:pb-32 {
    padding-bottom: 2rem;
  }

  .lg\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .lg\:pb-54 {
    padding-bottom: 54px;
  }

  .lg\:pb-64 {
    padding-bottom: 64px;
  }

  .lg\:pb-72 {
    padding-bottom: 72px;
  }

  .lg\:pb-96 {
    padding-bottom: 96px;
  }
}
.pr-0 {
  padding-right: 0;
}

.pr-8 {
  padding-right: 0.5rem;
}

.pr-16 {
  padding-right: 1rem;
}

.pr-20 {
  padding-right: 1.25rem;
}

.pr-24 {
  padding-right: 1.5rem;
}

.pr-32 {
  padding-right: 2rem;
}

.pr-72 {
  padding-right: 72px;
}

.pr-64 {
  padding-right: 64px;
}

@media (min-width: 640px) {
  .sm\:pr-0 {
    padding-right: 0;
  }

  .sm\:pr-8 {
    padding-right: 0.5rem;
  }

  .sm\:pr-16 {
    padding-right: 1rem;
  }

  .sm\:pr-20 {
    padding-right: 1.25rem;
  }

  .sm\:pr-24 {
    padding-right: 1.5rem;
  }

  .sm\:pr-32 {
    padding-right: 2rem;
  }

  .sm\:pr-72 {
    padding-right: 72px;
  }

  .sm\:pr-64 {
    padding-right: 64px;
  }
}
@media (min-width: 960px) {
  .md\:pr-0 {
    padding-right: 0;
  }

  .md\:pr-8 {
    padding-right: 0.5rem;
  }

  .md\:pr-16 {
    padding-right: 1rem;
  }

  .md\:pr-20 {
    padding-right: 1.25rem;
  }

  .md\:pr-24 {
    padding-right: 1.5rem;
  }

  .md\:pr-32 {
    padding-right: 2rem;
  }

  .md\:pr-72 {
    padding-right: 72px;
  }

  .md\:pr-64 {
    padding-right: 64px;
  }
}
@media (min-width: 1280px) {
  .lg\:pr-0 {
    padding-right: 0;
  }

  .lg\:pr-8 {
    padding-right: 0.5rem;
  }

  .lg\:pr-16 {
    padding-right: 1rem;
  }

  .lg\:pr-20 {
    padding-right: 1.25rem;
  }

  .lg\:pr-24 {
    padding-right: 1.5rem;
  }

  .lg\:pr-32 {
    padding-right: 2rem;
  }

  .lg\:pr-72 {
    padding-right: 72px;
  }

  .lg\:pr-64 {
    padding-right: 64px;
  }
}
.position-fixed {
  position: fixed;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.right-0 {
  right: 0;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

@media (min-width: 640px) {
  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-center {
    text-align: center;
  }

  .sm\:text-right {
    text-align: right;
  }

  .sm\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 960px) {
  .md\:text-left {
    text-align: left;
  }

  .md\:text-center {
    text-align: center;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1280px) {
  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:text-justify {
    text-align: justify;
  }
}
.text-clip {
  text-overflow: clip;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

.text-fade {
  text-overflow: fade;
}

.transition-none {
  transition: none;
}

.transition-all {
  transition: all 300ms ease;
}

.transition-color {
  transition: color 300ms ease;
}

.transition-opacity {
  transition: opacity 300ms ease;
}

.transition-shadow {
  transition: shadow 300ms ease;
}

.transition-transform {
  transition: transform 300ms ease;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.timing-ease-in-out {
  transition-timing-function: ease-in-out;
}

.timing-ease {
  transition-timing-function: ease;
}

.m-0 {
  margin: 0;
}

.m-4 {
  margin: 4px;
}

.m-8 {
  margin: 8px;
}

.m-16 {
  margin: 16px;
}

.m-24 {
  margin: 24px;
}

.m-32 {
  margin: 32px;
}

.m-48 {
  margin: 48px;
}

.m-56 {
  margin: 56px;
}

.m-64 {
  margin: 64px;
}

@media (min-width: 640px) {
  .sm\:m-0 {
    margin: 0;
  }

  .sm\:m-4 {
    margin: 4px;
  }

  .sm\:m-8 {
    margin: 8px;
  }

  .sm\:m-16 {
    margin: 16px;
  }

  .sm\:m-24 {
    margin: 24px;
  }

  .sm\:m-32 {
    margin: 32px;
  }

  .sm\:m-48 {
    margin: 48px;
  }

  .sm\:m-56 {
    margin: 56px;
  }

  .sm\:m-64 {
    margin: 64px;
  }
}
@media (min-width: 960px) {
  .md\:m-0 {
    margin: 0;
  }

  .md\:m-4 {
    margin: 4px;
  }

  .md\:m-8 {
    margin: 8px;
  }

  .md\:m-16 {
    margin: 16px;
  }

  .md\:m-24 {
    margin: 24px;
  }

  .md\:m-32 {
    margin: 32px;
  }

  .md\:m-48 {
    margin: 48px;
  }

  .md\:m-56 {
    margin: 56px;
  }

  .md\:m-64 {
    margin: 64px;
  }
}
@media (min-width: 1280px) {
  .lg\:m-0 {
    margin: 0;
  }

  .lg\:m-4 {
    margin: 4px;
  }

  .lg\:m-8 {
    margin: 8px;
  }

  .lg\:m-16 {
    margin: 16px;
  }

  .lg\:m-24 {
    margin: 24px;
  }

  .lg\:m-32 {
    margin: 32px;
  }

  .lg\:m-48 {
    margin: 48px;
  }

  .lg\:m-56 {
    margin: 56px;
  }

  .lg\:m-64 {
    margin: 64px;
  }
}
.mt-0 {
  margin-top: 0;
}

.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-56 {
  margin-top: 56px;
}

.mt-64 {
  margin-top: 64px;
}

@media (min-width: 640px) {
  .sm\:mt-0 {
    margin-top: 0;
  }

  .sm\:mt-4 {
    margin-top: 4px;
  }

  .sm\:mt-8 {
    margin-top: 8px;
  }

  .sm\:mt-16 {
    margin-top: 16px;
  }

  .sm\:mt-24 {
    margin-top: 24px;
  }

  .sm\:mt-32 {
    margin-top: 32px;
  }

  .sm\:mt-48 {
    margin-top: 48px;
  }

  .sm\:mt-56 {
    margin-top: 56px;
  }

  .sm\:mt-64 {
    margin-top: 64px;
  }
}
@media (min-width: 960px) {
  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:mt-4 {
    margin-top: 4px;
  }

  .md\:mt-8 {
    margin-top: 8px;
  }

  .md\:mt-16 {
    margin-top: 16px;
  }

  .md\:mt-24 {
    margin-top: 24px;
  }

  .md\:mt-32 {
    margin-top: 32px;
  }

  .md\:mt-48 {
    margin-top: 48px;
  }

  .md\:mt-56 {
    margin-top: 56px;
  }

  .md\:mt-64 {
    margin-top: 64px;
  }
}
@media (min-width: 1280px) {
  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mt-4 {
    margin-top: 4px;
  }

  .lg\:mt-8 {
    margin-top: 8px;
  }

  .lg\:mt-16 {
    margin-top: 16px;
  }

  .lg\:mt-24 {
    margin-top: 24px;
  }

  .lg\:mt-32 {
    margin-top: 32px;
  }

  .lg\:mt-48 {
    margin-top: 48px;
  }

  .lg\:mt-56 {
    margin-top: 56px;
  }

  .lg\:mt-64 {
    margin-top: 64px;
  }
}
.ml-0 {
  margin-left: 0;
}

.ml-4 {
  margin-left: 4px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-24 {
  margin-left: 24px;
}

.ml-32 {
  margin-left: 32px;
}

.ml-48 {
  margin-left: 48px;
}

.ml-56 {
  margin-left: 56px;
}

.ml-64 {
  margin-left: 64px;
}

@media (min-width: 640px) {
  .sm\:ml-0 {
    margin-left: 0;
  }

  .sm\:ml-4 {
    margin-left: 4px;
  }

  .sm\:ml-8 {
    margin-left: 8px;
  }

  .sm\:ml-16 {
    margin-left: 16px;
  }

  .sm\:ml-24 {
    margin-left: 24px;
  }

  .sm\:ml-32 {
    margin-left: 32px;
  }

  .sm\:ml-48 {
    margin-left: 48px;
  }

  .sm\:ml-56 {
    margin-left: 56px;
  }

  .sm\:ml-64 {
    margin-left: 64px;
  }
}
@media (min-width: 960px) {
  .md\:ml-0 {
    margin-left: 0;
  }

  .md\:ml-4 {
    margin-left: 4px;
  }

  .md\:ml-8 {
    margin-left: 8px;
  }

  .md\:ml-16 {
    margin-left: 16px;
  }

  .md\:ml-24 {
    margin-left: 24px;
  }

  .md\:ml-32 {
    margin-left: 32px;
  }

  .md\:ml-48 {
    margin-left: 48px;
  }

  .md\:ml-56 {
    margin-left: 56px;
  }

  .md\:ml-64 {
    margin-left: 64px;
  }
}
@media (min-width: 1280px) {
  .lg\:ml-0 {
    margin-left: 0;
  }

  .lg\:ml-4 {
    margin-left: 4px;
  }

  .lg\:ml-8 {
    margin-left: 8px;
  }

  .lg\:ml-16 {
    margin-left: 16px;
  }

  .lg\:ml-24 {
    margin-left: 24px;
  }

  .lg\:ml-32 {
    margin-left: 32px;
  }

  .lg\:ml-48 {
    margin-left: 48px;
  }

  .lg\:ml-56 {
    margin-left: 56px;
  }

  .lg\:ml-64 {
    margin-left: 64px;
  }
}
.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mb-64 {
  margin-bottom: 64px;
}

@media (min-width: 640px) {
  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:mb-4 {
    margin-bottom: 4px;
  }

  .sm\:mb-8 {
    margin-bottom: 8px;
  }

  .sm\:mb-16 {
    margin-bottom: 16px;
  }

  .sm\:mb-24 {
    margin-bottom: 24px;
  }

  .sm\:mb-32 {
    margin-bottom: 32px;
  }

  .sm\:mb-48 {
    margin-bottom: 48px;
  }

  .sm\:mb-56 {
    margin-bottom: 56px;
  }

  .sm\:mb-64 {
    margin-bottom: 64px;
  }
}
@media (min-width: 960px) {
  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:mb-4 {
    margin-bottom: 4px;
  }

  .md\:mb-8 {
    margin-bottom: 8px;
  }

  .md\:mb-16 {
    margin-bottom: 16px;
  }

  .md\:mb-24 {
    margin-bottom: 24px;
  }

  .md\:mb-32 {
    margin-bottom: 32px;
  }

  .md\:mb-48 {
    margin-bottom: 48px;
  }

  .md\:mb-56 {
    margin-bottom: 56px;
  }

  .md\:mb-64 {
    margin-bottom: 64px;
  }
}
@media (min-width: 1280px) {
  .lg\:mb-0 {
    margin-bottom: 0;
  }

  .lg\:mb-4 {
    margin-bottom: 4px;
  }

  .lg\:mb-8 {
    margin-bottom: 8px;
  }

  .lg\:mb-16 {
    margin-bottom: 16px;
  }

  .lg\:mb-24 {
    margin-bottom: 24px;
  }

  .lg\:mb-32 {
    margin-bottom: 32px;
  }

  .lg\:mb-48 {
    margin-bottom: 48px;
  }

  .lg\:mb-56 {
    margin-bottom: 56px;
  }

  .lg\:mb-64 {
    margin-bottom: 64px;
  }
}
.mr-0 {
  margin-right: 0;
}

.mr-4 {
  margin-right: 4px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-24 {
  margin-right: 24px;
}

.mr-32 {
  margin-right: 32px;
}

.mr-48 {
  margin-right: 48px;
}

.mr-56 {
  margin-right: 56px;
}

.mr-64 {
  margin-right: 64px;
}

@media (min-width: 640px) {
  .sm\:mr-0 {
    margin-right: 0;
  }

  .sm\:mr-4 {
    margin-right: 4px;
  }

  .sm\:mr-8 {
    margin-right: 8px;
  }

  .sm\:mr-16 {
    margin-right: 16px;
  }

  .sm\:mr-24 {
    margin-right: 24px;
  }

  .sm\:mr-32 {
    margin-right: 32px;
  }

  .sm\:mr-48 {
    margin-right: 48px;
  }

  .sm\:mr-56 {
    margin-right: 56px;
  }

  .sm\:mr-64 {
    margin-right: 64px;
  }
}
@media (min-width: 960px) {
  .md\:mr-0 {
    margin-right: 0;
  }

  .md\:mr-4 {
    margin-right: 4px;
  }

  .md\:mr-8 {
    margin-right: 8px;
  }

  .md\:mr-16 {
    margin-right: 16px;
  }

  .md\:mr-24 {
    margin-right: 24px;
  }

  .md\:mr-32 {
    margin-right: 32px;
  }

  .md\:mr-48 {
    margin-right: 48px;
  }

  .md\:mr-56 {
    margin-right: 56px;
  }

  .md\:mr-64 {
    margin-right: 64px;
  }
}
@media (min-width: 1280px) {
  .lg\:mr-0 {
    margin-right: 0;
  }

  .lg\:mr-4 {
    margin-right: 4px;
  }

  .lg\:mr-8 {
    margin-right: 8px;
  }

  .lg\:mr-16 {
    margin-right: 16px;
  }

  .lg\:mr-24 {
    margin-right: 24px;
  }

  .lg\:mr-32 {
    margin-right: 32px;
  }

  .lg\:mr-48 {
    margin-right: 48px;
  }

  .lg\:mr-56 {
    margin-right: 56px;
  }

  .lg\:mr-64 {
    margin-right: 64px;
  }
}
.max-w-none {
  max-width: none;
}

.max-w-100 {
  max-width: 100%;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w-0 {
  width: 0;
}

.w-20 {
  width: 20px;
}

.w-24 {
  width: 24px;
}

.w-32 {
  width: 32px;
}

.w-40 {
  width: 40px;
}

.w-48 {
  width: 48px;
}

.w-56 {
  width: 56px;
}

.w-60 {
  width: 60px;
}

.w-64 {
  width: 64px;
}

.w-75 {
  width: 75px;
}

.w-83 {
  width: 83px;
}

.w-100 {
  width: 100px;
}

.w-183 {
  width: 183px;
}

@media (min-width: 640px) {
  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:w-screen {
    width: 100vw;
  }

  .sm\:w-0 {
    width: 0;
  }

  .sm\:w-20 {
    width: 20px;
  }

  .sm\:w-24 {
    width: 24px;
  }

  .sm\:w-32 {
    width: 32px;
  }

  .sm\:w-40 {
    width: 40px;
  }

  .sm\:w-48 {
    width: 48px;
  }

  .sm\:w-56 {
    width: 56px;
  }

  .sm\:w-60 {
    width: 60px;
  }

  .sm\:w-64 {
    width: 64px;
  }

  .sm\:w-75 {
    width: 75px;
  }

  .sm\:w-83 {
    width: 83px;
  }

  .sm\:w-100 {
    width: 100px;
  }

  .sm\:w-183 {
    width: 183px;
  }
}
@media (min-width: 960px) {
  .md\:w-auto {
    width: auto;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-screen {
    width: 100vw;
  }

  .md\:w-0 {
    width: 0;
  }

  .md\:w-20 {
    width: 20px;
  }

  .md\:w-24 {
    width: 24px;
  }

  .md\:w-32 {
    width: 32px;
  }

  .md\:w-40 {
    width: 40px;
  }

  .md\:w-48 {
    width: 48px;
  }

  .md\:w-56 {
    width: 56px;
  }

  .md\:w-60 {
    width: 60px;
  }

  .md\:w-64 {
    width: 64px;
  }

  .md\:w-75 {
    width: 75px;
  }

  .md\:w-83 {
    width: 83px;
  }

  .md\:w-100 {
    width: 100px;
  }

  .md\:w-183 {
    width: 183px;
  }
}
@media (min-width: 1280px) {
  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:w-screen {
    width: 100vw;
  }

  .lg\:w-0 {
    width: 0;
  }

  .lg\:w-20 {
    width: 20px;
  }

  .lg\:w-24 {
    width: 24px;
  }

  .lg\:w-32 {
    width: 32px;
  }

  .lg\:w-40 {
    width: 40px;
  }

  .lg\:w-48 {
    width: 48px;
  }

  .lg\:w-56 {
    width: 56px;
  }

  .lg\:w-60 {
    width: 60px;
  }

  .lg\:w-64 {
    width: 64px;
  }

  .lg\:w-75 {
    width: 75px;
  }

  .lg\:w-83 {
    width: 83px;
  }

  .lg\:w-100 {
    width: 100px;
  }

  .lg\:w-183 {
    width: 183px;
  }
}
.text-nowrap {
  white-space: nowrap;
}

@media (min-width: 640px) {
  .sm\:text-nowrap {
    white-space: nowrap;
  }
}
@media (min-width: 960px) {
  .md\:text-nowrap {
    white-space: nowrap;
  }
}
@media (min-width: 1280px) {
  .lg\:text-nowrap {
    white-space: nowrap;
  }
}
.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-24 {
  height: 24px;
}

.h-32 {
  height: 32px;
}

.h-40 {
  height: 40px;
}

.h-48 {
  height: 48px;
}

.h-56 {
  height: 56px;
}

.h-64 {
  height: 64px;
}

.h-72 {
  height: 72px;
}

@media (min-width: 640px) {
  .sm\:h-auto {
    height: auto;
  }

  .sm\:h-full {
    height: 100%;
  }

  .sm\:h-screen {
    height: 100vh;
  }

  .sm\:h-24 {
    height: 24px;
  }

  .sm\:h-32 {
    height: 32px;
  }

  .sm\:h-40 {
    height: 40px;
  }

  .sm\:h-48 {
    height: 48px;
  }

  .sm\:h-56 {
    height: 56px;
  }

  .sm\:h-64 {
    height: 64px;
  }

  .sm\:h-72 {
    height: 72px;
  }
}
@media (min-width: 960px) {
  .md\:h-auto {
    height: auto;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:h-screen {
    height: 100vh;
  }

  .md\:h-24 {
    height: 24px;
  }

  .md\:h-32 {
    height: 32px;
  }

  .md\:h-40 {
    height: 40px;
  }

  .md\:h-48 {
    height: 48px;
  }

  .md\:h-56 {
    height: 56px;
  }

  .md\:h-64 {
    height: 64px;
  }

  .md\:h-72 {
    height: 72px;
  }
}
@media (min-width: 1280px) {
  .lg\:h-auto {
    height: auto;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:h-24 {
    height: 24px;
  }

  .lg\:h-32 {
    height: 32px;
  }

  .lg\:h-40 {
    height: 40px;
  }

  .lg\:h-48 {
    height: 48px;
  }

  .lg\:h-56 {
    height: 56px;
  }

  .lg\:h-64 {
    height: 64px;
  }

  .lg\:h-72 {
    height: 72px;
  }
}
.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.pointer-none {
  pointer-events: none;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

p {
  margin-bottom: 0;
}

.gradiant-hover::before, .gradiant-hover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, #39ceee 0%, #3ceccd 100%);
  opacity: 0;
  transition: all ease 300ms;
}
.gradiant-hover::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(216, 216, 216, 0.5) 100%);
  opacity: 1;
}
.gradiant-hover--hidden::after {
  opacity: 0;
}
.gradiant-hover:hover::before {
  opacity: 1;
}
.gradiant-hover:hover::after {
  opacity: 0;
}
.gradiant-hover--active::before {
  opacity: 1;
}
.gradiant-hover--active::after {
  opacity: 0;
}

.layout-enter-active,
.layout-leave-active {
  transition: opacity 0.3s;
}

.layout-enter,
.layout-leave-active {
  opacity: 0;
}

.app-navigation-wrapper {
  flex: 0 0 272px;
  max-width: 272px;
}

.app-sticky {
  max-height: calc(100vh - 144px);
  width: 272px;
}
.app-sticky--full-height {
  max-height: none;
}

.content h2 {
  position: relative;
}
.content h2 > a {
  margin-left: 0;
}
.content h2 > a::before {
  content: "#";
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-left: -1.75rem;
  padding-right: 0.5rem;
  position: absolute;
  opacity: 0;
}
.content h2:hover > a::before {
  opacity: 1;
}

.check-icon {
  width: 12px;
  height: 12px;
}

.portrait-cards .check-icon {
  height: 8px;
  width: 8px;
}

.app-navigation__button::after, .app-navigation__button::before {
  display: none;
}

.app-navigation__list {
  height: auto;
}
.app-navigation__list li a {
  padding-left: 26px;
  background-image: url("/img/svg/inner-menu.svg");
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: 2px 7px;
}

.app-navigation__item {
  overflow: hidden;
}
.app-navigation__item::after {
  position: absolute;
  margin-left: 36px;
  width: calc(100% - 36px);
  content: "";
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  background: var(--theme-divider);
}
.app-navigation__item--selected .app-navigation__button, .app-navigation__item--expanded .app-navigation__button {
  color: var(--color-primary);
}
.app-navigation__item--faq::after {
  margin-left: 0;
  width: 100%;
}

.no-events {
  pointer-events: none;
}

.child-link--active {
  color: var(--theme-text-primary);
}

img {
  max-width: 100%;
}

.text-gradiant-clip {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.round-chip {
  border-width: 1px;
  height: 24px;
}
.round-chip__bg {
  border-radius: inherit;
  box-shadow: inset 0 -0.5px 1px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(12px 24px 16px rgba(0, 0, 0, 0.25));
}
.round-chip__text {
  z-index: 1;
}
.round-chip::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: 12px;
  background-image: radial-gradient(88.95% 96.43% at 3.87% 8.93%, #fcf6e8 0%, #c8a66b 76.04%, #543d19 100%);
}

.apk-download {
  z-index: 9;
  background: #0a1615;
  transform: translateY(100%);
}

.body-scrolled .apk-download {
  transform: none;
}

.apk-download-button {
  background: linear-gradient(180deg, #257625 0%, #175c17 100%);
}
.apk-download-button__bg {
  background-image: url("/img/dots.svg");
  background-repeat: repeat;
  background-position: 20px 20px;
  z-index: 1;
  opacity: 0.06;
}

.background-counter {
  position: relative;
}
.background-counter::before {
  content: attr(data-index);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 74px;
  line-height: 78px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-15px);
}
.background-counter--dense::before {
  font-size: 64px;
  line-height: 80px;
}
.background-counter--large::before {
  font-size: 148px;
  line-height: 96px;
}
@media (max-width: 1024px) {
  .background-counter--large::before {
    font-size: 64px;
    line-height: 64px;
  }
}

.family-play-video {
  right: 0;
  top: 0;
}
.family-play-video__video {
  max-width: 100%;
}

.audio-chat-video__video {
  max-width: 100%;
  height: auto;
}

.family-play-img-wrapper {
  height: 420px;
  overflow-x: visible;
}
@media (max-width: 1024px) {
  .family-play-img-wrapper {
    margin-top: 64px;
    position: relative;
    height: 175px;
    margin-right: -24px;
  }
}

@media (max-width: 1024px) {
  .family-play-img {
    left: 0;
  }
}

.playing-avatar {
  width: 44px;
  height: 44px;
  background-size: cover;
  border: 4px solid var(--theme-background);
  margin-left: -12px;
  transform: translateX(8px);
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  transform: scale(1);
  border-radius: 0;
}
.swiper-pagination-bullets .swiper-pagination-bullet:first-child {
  border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
}
.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  border-bottom-right-radius: 40px;
  border-top-right-radius: 40px;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  border-radius: 40px !important;
}

.landing-view {
  --swiper-theme-color: var(--theme-text-primary);
  --swiper-pagination-color: var(--theme-text-primary);
}
@media (max-width: 1024px) {
  .landing-view__wrapper {
    position: relative;
  }
}
.landing-view__slider {
  min-height: 70vh;
}
@media (max-width: 1024px) {
  .landing-view__slider {
    min-height: 0;
  }
}
.landing-view .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  background: var(--theme-text-secondary);
  width: 24px;
  border-radius: 40px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  opacity: 0.12;
}
.landing-view .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-primary);
}
.landing-view .swiper-pagination-bullets .swiper-pagination-bullet {
  transform: scale(1);
  border-radius: 0;
}
.landing-view .swiper-pagination-bullets .swiper-pagination-bullet:first-child {
  border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
}
.landing-view .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  border-bottom-right-radius: 40px;
  border-top-right-radius: 40px;
}
.landing-view .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border-radius: 40px !important;
}

.img-gray-hover-primary__img {
  filter: opacity(0.24) saturate(0%);
}
.img-gray-hover-primary--active .img-gray-hover-primary__img, .img-gray-hover-primary:hover .img-gray-hover-primary__img {
  filter: opacity(1) saturate(100%);
}

.dark-shade {
  background-color: rgba(5, 15, 14, 0.5);
}

.accordion__item {
  cursor: pointer;
}

.accordion-enter-active,
.accordion-leave-active {
  will-change: height, opacity;
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.accordion__icon {
  top: 24px;
  right: 24px;
  background-image: url("/img/svg/icons/add.svg");
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform, filter;
  overflow: hidden;
  filter: saturate(0%) brightness(2);
}
@media (max-width: 960px) {
  .accordion__icon {
    width: 22px;
    height: 20px;
    top: 16px;
    right: 0;
    background-size: 16px auto;
  }
}

.accordion__item--active .accordion__icon {
  transform: rotate(45deg);
  filter: saturate(100%) brightness(1);
}

.usp-item {
  max-width: 226px;
}

.accordion-enter,
.accordion-leave-to {
  height: 0 !important;
  opacity: 0;
}

.text-underline {
  text-decoration: underline;
}

.nav-item--active {
  color: var(--color-primary);
}

.mini-container {
  max-width: 736px;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(1);
}

@media (max-width: 1024px) {
  .gradiant-hover--hidden::before, .gradiant-hover--hidden::after {
    display: none;
  }
  .gradiant-hover--hidden:hover {
    background: inherit;
  }

  #app-navigation-wrapper {
    display: none;
  }

  #app-article-container {
    padding-left: 24px;
    padding-right: 24px;
  }
  #app-article-container > .pl-72 {
    padding-left: 0;
  }
}
@media (prefers-color-scheme: none) {
  :root {
    --theme-text-primary: #fcfcfd;
    --theme-text-secondary: #777e90;
    --theme-background: #23262f;
    --theme-surface: #141416;
    --theme-text-hint: rgba(255, 255, 255, 0.5);
    --theme-text-icon: rgba(255, 255, 255, 0.5);
    --theme-disable: rgba(255, 255, 255, 0.5);
    --theme-divider: #353945;
    --theme-scrim: rgba(255, 255, 255, 0.32);
  }
}

.nav-item.nuxt-link-active {
  color: var(--theme-text-primary);
}
.nav-item__text-label {
  pointer-events: none;
}
.body-scrolled .white-on-scrolled {
  background-color: #fff;
  box-shadow: 0 5px 20px #ededed;
  border-color: transparent;
}
.light-img-hover {
  background-color: var(--color-primary);
}
.light-img-hover img {
  filter: saturate(0) brightness(2);
}
.light-img-hover:hover img {
  filter: none;
}
.admin-drawer {
  line-height: normal;
  width: 80px;
}
.admin-drawer__header {
  width: 260px;
}
.admin-drawer .visible-on-expand {
  visibility: hidden;
  opacity: 0;
}
.admin-drawer--expanded {
  color: inherit;
  width: 260px;
}
.admin-drawer--expanded .visible-on-expand {
  visibility: visible;
  opacity: 1;
}
.admin-drawer__main-content {
  height: calc(100% - 64px);
}
.center-on-collapsed .button__icon {
  min-width: 84px;
  color: #cd5c5c;
}
.admin-drawer:not(.admin-drawer--expanded) .center-on-collapsed {
  margin-left: 8px;
}
.nav-item_ {
  display: flex;
  text-decoration: none;
  outline: none;
  height: 48px;
  padding: 0;
}
.nav-item_ a {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 0 16px 0 24px;
  position: relative;
  height: inherit;
}
.vue-affix {
  position: relative;
}
.affix {
  position: fixed;
}
.affix-bottom {
  position: relative;
}

.offer-card {
  height: 272px;
}
.offer-card__overlay {
  opacity: 0;
}
.offer-card__text {
  transform: translateY(100%);
}
.offer-card__img {
  max-height: 150px;
}
.offer-card:hover .offer-card__overlay {
  opacity: 1;
}
.offer-card:hover .offer-card__text {
  transform: none;
}

/*added by srinath*/
.alert {
    padding: 20px;
    background-color: #41b115;
    color: white;
    border-radius: 10px !important;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 30px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;  
}

.closebtn:hover {
  color: black;
}



