@import "https://fonts.googleapis.com/css2?family=PT+Sans:ital@0;1&display=swap";
/* [project]/src/assets/styles/reset.css [client] (css) */
*, :before, :after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* [project]/src/assets/styles/variables.css [client] (css) */
:root {
  --color-white: #fff;
  --color-black: #000;
  --container-box-shadow: 0 2px 4px 0 #0000001f;
  --container-border-radius: 6px;
  --large-spacing: 24px;
  --medium-spacing: 16px;
  --small-spacing: 8px;
  --standard-field-height: 36px;
  --l-threshold: .7;
  --color-primary-blue: #2563eb;
  --color-blue: #0057d2;
  --color-secondary-default: #95a0c5;
  --color-info-icon: #3ebeca;
  --color-border: #cdd6df;
  --color-danger: #dc3545;
  --color-success: #28a745;
  --color-disabled: #96a0b5;
  --color-secondary-bg: #f4f6f9;
}


/* [project]/src/assets/styles/layout.css [client] (css) */
html, body {
  -webkit-tap-highlight-color: #fff0;
  letter-spacing: normal;
  font-kerning: none;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-scrolling: revert;
  text-size-adjust: 100%;
  border: none;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  font-style: normal;
  font-weight: normal;
  display: flex;
}

#__next {
  flex-flow: column;
  flex: 1;
  display: flex;
}


/* [project]/src/assets/styles/typography.css [client] (css) */
@layer global {
  .font-base {
    font-size: 1.25rem;
  }

  .exo-bold, .exo-medium, .exo-semibold {
    font-optical-sizing: auto;
    font-family: Exo, Segoe UI, Source Sans Pro, -apple-system, sans-serif;
  }

  .exo-medium {
    font-weight: 500;
  }

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

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


/* [project]/src/assets/styles/utilities.css [client] (css) */
@layer utilities {
  .container {
    background-color: var(--color-white);
    border-radius: var(--container-border-radius);
    box-shadow: var(--container-box-shadow);
  }

  .fullWidth {
    width: 100%;
  }

  .halfWidth {
    width: 50%;
  }

  .halfWidthXl {
    width: calc(50% - 12px);
  }

  .fullHeight {
    height: 100%;
  }

  .heightAuto {
    height: auto;
  }

  .flexCenter {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .flexAlignCenter {
    align-items: center;
    display: flex;
  }

  .flexAlignStart {
    align-items: flex-start;
    display: flex;
  }

  .flexJustifyCenter {
    justify-content: center;
    display: flex;
  }

  .flexJustifyBetween {
    justify-content: space-between;
    display: flex;
  }

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

  .flexJustifyStart {
    justify-content: flex-start;
  }

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

  .flexCol {
    flex-direction: column;
    display: flex;
  }

  .flexWrap {
    flex-wrap: wrap;
  }

  .flexOne {
    flex: 1;
  }

  .gapMini {
    gap: 4px;
  }

  .gapSm {
    gap: var(--small-spacing);
  }

  .gapLg {
    gap: var(--medium-spacing);
  }

  .gapXl {
    gap: var(--large-spacing);
  }

  .paddingSm {
    padding: var(--small-spacing);
  }

  .paddingLg {
    padding: var(--medium-spacing);
  }

  .paddingXl {
    padding: var(--large-spacing);
  }

  .textSm {
    letter-spacing: 0;
    font-size: 14px;
    line-height: 100%;
  }

  .textLg {
    letter-spacing: 0;
    font-size: 16px;
    line-height: 100%;
  }

  .textXl {
    letter-spacing: 0;
    font-size: 19px;
    line-height: 100%;
  }

  .fontWeightSm {
    font-weight: 400;
  }

  .fontWeightLg {
    font-weight: 500;
  }

  .fontWeightXl {
    font-weight: 600;
  }

  .textCenter {
    text-align: center;
  }

  .infoIcon {
    font-size: 16px;
    color: var(--color-info-icon) !important;
  }

  .mainParagraphSpacing {
    padding-bottom: var(--large-spacing);
  }

  .paragraphSpacing {
    padding: var(--large-spacing) 0;
  }

  .checkboxItemGap {
    padding-left: 4px;
  }

  .ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    overflow: hidden;
  }

  .multyEllipsis {
    white-space: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .contrastColor {
    color: oklch(from var(--color-context) clamp(0, (l / var(--l-threshold)  - 1) * -infinity, 1) 0 0);
  }

  .extraBlock {
    min-width: 444px;
    max-width: 444px;
  }
}


/* [project]/src/assets/styles/globals.css [client] (css) */



/*# sourceMappingURL=src_assets_styles_04322731._.css.map*/