html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
  -webkit-appearance: none;
}

input[type="submit"], button {
  cursor: pointer;
}

input[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

input, button {
  border: 0;
  margin: 0;
  padding: 0;
}

div, input, textarea, select, button, h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

ul, ol {
  list-style-type: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

html {
  box-sizing: border-box;
}

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

:root {
  --base-primary-1: #2a85ff;
  --base-primary-2: #83bf6e;
  --base-primary-3: #ff6a55;
  --base-primary-4: #8e59ff;
  --base-secondary-1: #ffbc99;
  --base-secondary-2: #cabdff;
  --base-secondary-3: #b1e5fc;
  --base-secondary-4: #b5e4ca;
  --base-secondary-5: #ffd88d;
  --contrast-white: #fff;
  --contrast-light-1: #fcfcfc;
  --contrast-light-2: #f4f4f4;
  --contrast-light-3: #efefef;
  --contrast-gray-1: #6f767e;
  --contrast-dark-1: #33383f;
  --contrast-dark-2: #272b30;
  --contrast-dark-3: #1a1d1f;
  --contrast-dark-4: #111315;
  --shades-gray-1: #9a9fa5;
  --shades-gray-2: #6f767e;
  --shades-gray-3: #6f767e66;
  --shades-dark-1: #11131580;
}

body {
  background: var(--contrast-light-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -.01em;
  color: var(--contrast-dark-3);
  min-width: 320px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

blockquote {
  border-left: 4px solid var(--contrast-gray-1);
  padding-left: 24px;
  font-size: 18px;
}

ol {
  padding-left: 24px;
  list-style-type: decimal;
}

ul {
  padding-left: 24px;
  list-style-type: disc;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-style-italic {
  font-style: italic;
}

.text-style-muted {
  opacity: .6;
}

.text-style-uppercase {
  text-transform: uppercase;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-style-link {
  color: var(--base-primary-1);
  text-decoration: underline;
}

.text-style-quote {
  border-left: 4px solid var(--contrast-gray-1);
  padding-left: 24px;
  font-size: 16px;
}

.text-style-2lines {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.text-style-3lines {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

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

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

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

.m-auto {
  margin: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

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

@media only screen and (width <= 1259px) {
  .desktop-hide {
    display: none !important;
  }
}

.desktop-show {
  display: none !important;
}

@media only screen and (width <= 1259px) {
  .desktop-show {
    display: block !important;
  }
}

@media only screen and (width <= 1023px) {
  .tablet-hide {
    display: none !important;
  }
}

.tablet-show {
  display: none !important;
}

@media only screen and (width <= 1023px) {
  .tablet-show {
    display: block !important;
  }
}

@media only screen and (width <= 767px) {
  .mobile-hide {
    display: none !important;
  }
}

.mobile-show {
  display: none !important;
}

@media only screen and (width <= 767px) {
  .mobile-show {
    display: block !important;
  }
}

.padding-global {
  width: 100%;
  padding: 0 32px;
}

@media only screen and (width <= 1023px) {
  .padding-global {
    padding: 0 16px;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.flex-layout {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -8px;
  display: flex;
}

.flex-layout [class*="flex-col-"] {
  flex: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

.flex-layout .flex-col-1 {
  width: 8.33%;
}

.flex-layout .flex-col-2 {
  width: 16.66%;
}

.flex-layout .flex-col-3 {
  width: 25%;
}

.flex-layout .flex-col-4 {
  width: 33.33%;
}

.flex-layout .flex-col-5 {
  width: 41.66%;
}

.flex-layout .flex-col-6 {
  width: 50%;
}

.flex-layout .flex-col-7 {
  width: 58.3333%;
}

.flex-layout .flex-col-8 {
  width: 66.6667%;
}

.flex-layout .flex-col-9 {
  width: 75%;
}

.flex-layout .flex-col-10 {
  width: 83.33%;
}

.flex-layout .flex-col-11 {
  width: 91.66%;
}

.flex-layout .flex-col-12, .spacer {
  width: 100%;
}

.spacer-8 {
  height: 8px;
}

.spacer-16 {
  height: 16px;
}

.spacer-24 {
  height: 24px;
}

.spacer-32 {
  height: 32px;
}

.spacer-48 {
  height: 48px;
}

.spacer-64 {
  height: 64px;
}

.spacer-80 {
  height: 80px;
}

.spacer-96 {
  height: 96px;
}

.spacer-128 {
  height: 128px;
}

.grid-layout {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.grid-layout.is-8-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-layout.is-7-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-layout.is-6-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-layout.is-5-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-layout.is-4-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-layout.is-3-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-layout.is-2-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-layout.is-2-1-cols {
  grid-template-columns: 2fr 1fr;
}

.grid-layout.is-1-2-cols {
  grid-template-columns: 1fr 2fr;
}

.grid-layout.is-1-col {
  grid-template-columns: 1fr;
}

.h1, .h2, .h3, .h4 {
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.h1 {
  letter-spacing: -.03em;
  font-size: 64px;
  line-height: 1;
}

.h2 {
  letter-spacing: -.03em;
  font-size: 48px;
  line-height: 1;
}

.h3 {
  letter-spacing: -.02em;
  font-size: 40px;
  line-height: 1.2;
}

@media only screen and (width <= 767px) {
  .h3 {
    letter-spacing: -.03em;
    font-size: 32px;
    line-height: 1.25;
  }
}

.h4 {
  letter-spacing: -.03em;
  font-size: 32px;
  line-height: 1.25;
}

[class^="button"] {
  background: var(--base-primary-1);
  text-align: center;
  color: var(--contrast-light-1);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

[class^="button"]:hover {
  background: #0069f6;
}

[class^="button"].disabled {
  opacity: .5;
  pointer-events: none;
}

[class^="button"] svg {
  fill: var(--contrast-light-1);
  transition: all .2s;
}

[class^="button"]:not([class^="button-square"]) svg:first-child {
  margin-right: 8px;
}

[class^="button"]:not([class^="button-square"]) svg:last-child {
  margin-left: 8px;
}

.button-stroke, .button-stroke-red {
  box-shadow: 0 0 0 2px var(--contrast-light-3) inset;
  background: none;
}

.button-stroke {
  color: var(--contrast-dark-3);
}

.button-stroke svg {
  fill: var(--contrast-gray-1);
}

.button-stroke:hover {
  box-shadow: 0 0 0 2px var(--contrast-dark-3) inset;
  background: none;
}

.button-stroke:hover svg {
  fill: var(--contrast-dark-3);
}

.button-stroke.active {
  background: var(--contrast-dark-2);
  box-shadow: 0 0 0 2px var(--contrast-dark-2) inset;
}

.button-stroke.active svg {
  fill: var(--contrast-dark-3);
}

.button-stroke-red {
  color: var(--base-primary-3);
}

.button-stroke-red svg {
  fill: var(--base-primary-3);
}

.button-stroke-red:hover, .button-stroke-red.active {
  background: var(--base-primary-3);
  box-shadow: 0 0 0 2px var(--base-primary-3) inset;
  color: var(--contrast-light-1);
}

.button-stroke-red:hover svg, .button-stroke-red.active svg {
  fill: var(--contrast-light-1);
}

.button-white {
  box-shadow: 0 0 0 2px var(--contrast-light-3) inset;
  background: var(--contrast-light-1);
  color: var(--contrast-dark-3);
}

.button-white svg {
  fill: var(--contrast-dark-3);
}

.button-white:hover, .button-white.active {
  box-shadow: 0 0 0 2px var(--contrast-dark-3) inset;
  background: var(--contrast-white);
  color: var(--contrast-dark-3);
}

.button-white:hover svg, .button-white.active svg {
  fill: var(--contrast-dark-3);
}

.button-small {
  border-radius: 8px;
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.button-square-stroke {
  box-shadow: 0 0 0 2px var(--contrast-light-3) inset;
  background: none;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  transition: all .2s;
}

.button-square-stroke svg {
  fill: var(--contrast-gray-1);
}

.button-square-stroke:hover {
  background: var(--base-primary-1);
  box-shadow: 0 0 0 2px var(--base-primary-1) inset;
}

.button-square-stroke:hover svg {
  fill: var(--contrast-light-1);
}

.button-square-stroke.button-small {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

[class^="label"] {
  border-radius: 6px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
}

.label-green {
  color: var(--base-primary-2);
  background: #eafae5;
}

body.dark .label-green {
  background: #83bf6e26;
}

.label-green-dark {
  background: var(--base-secondary-4);
  color: var(--contrast-dark-3);
}

.label-red {
  color: var(--base-primary-3);
  background: #ffe7e4;
}

body.dark .label-red {
  background: #ff6a5526;
}

.label-red-dark {
  background: var(--base-secondary-1);
  color: var(--contrast-light-1);
}

.label-purple {
  color: var(--base-primary-4);
  background: #cabdff;
}

.label-blue {
  background: var(--base-secondary-3);
  color: var(--base-primary-1);
}

.label-yellow {
  background: var(--base-seoncary-5);
  color: var(--contrast-dark-3);
}

.text-color-base-primary-1 {
  color: var(--base-primary-1);
}

.background-color-base-primary-1 {
  background-color: var(--base-primary-1);
}

.text-color-base-primary-2 {
  color: var(--base-primary-2);
}

.background-color-base-primary-2 {
  background-color: var(--base-primary-2);
}

.text-color-base-primary-3 {
  color: var(--base-primary-3);
}

.background-color-base-primary-3 {
  background-color: var(--base-primary-3);
}

.text-color-base-primary-4 {
  color: var(--base-primary-4);
}

.background-color-base-primary-4 {
  background-color: var(--base-primary-4);
}

.text-color-base-secondary-1 {
  color: var(--base-secondary-1);
}

.background-color-base-secondary-1 {
  background-color: var(--base-secondary-1);
}

.text-color-base-secondary-2 {
  color: var(--base-secondary-2);
}

.background-color-base-secondary-2 {
  background-color: var(--base-secondary-2);
}

.text-color-base-secondary-3 {
  color: var(--base-secondary-3);
}

.background-color-base-secondary-3 {
  background-color: var(--base-secondary-3);
}

.text-color-base-secondary-4 {
  color: var(--base-secondary-4);
}

.background-color-base-secondary-4 {
  background-color: var(--base-secondary-4);
}

.text-color-contrast-white {
  color: var(--contrast-white);
}

.background-color-contrast-white {
  background-color: var(--contrast-white);
}

.text-color-contrast-light-1 {
  color: var(--contrast-light-1);
}

.background-color-contrast-light-1 {
  background-color: var(--contrast-light-1);
}

.text-color-contrast-light-2 {
  color: var(--contrast-light-2);
}

.background-color-contrast-light-2 {
  background-color: var(--contrast-light-2);
}

.text-color-contrast-light-3 {
  color: var(--contrast-light-3);
}

.background-color-contrast-light-3 {
  background-color: var(--contrast-light-3);
}

.text-color-contrast-gray-1 {
  color: var(--contrast-gray-1);
}

.background-color-contrast-gray-1 {
  background-color: var(--contrast-gray-1);
}

.text-color-contrast-dark-1 {
  color: var(--contrast-dark-1);
}

.background-color-contrast-dark-1 {
  background-color: var(--contrast-dark-1);
}

.text-color-contrast-dark-2 {
  color: var(--contrast-dark-2);
}

.background-color-contrast-dark-2 {
  background-color: var(--contrast-dark-2);
}

.text-color-contrast-dark-3 {
  color: var(--contrast-dark-3);
}

.background-color-contrast-dark-3 {
  background-color: var(--contrast-dark-3);
}

.text-color-contrast-dark-4 {
  color: var(--contrast-dark-4);
}

.background-color-contrast-dark-4 {
  background-color: var(--contrast-dark-4);
}

.text-color-shades-gray-1 {
  color: var(--shades-gray-1);
}

.background-color-shades-gray-1 {
  background-color: var(--shades-gray-1);
}

.text-color-shades-gray-2 {
  color: var(--shades-gray-2);
}

.background-color-shades-gray-2 {
  background-color: var(--shades-gray-2);
}

.text-color-shades-gray-3 {
  color: var(--shades-gray-3);
}

.background-color-shades-gray-3 {
  background-color: var(--shades-gray-3);
}

.text-color-shades-dark-1 {
  color: var(--shades-dark-1);
}

.background-color-shades-dark-1 {
  background-color: var(--shades-dark-1);
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-size-24px {
  font-size: 24px;
}

.font-size-18px {
  font-size: 18px;
}

.display-block {
  display: block;
}

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

.display-flex {
  display: flex;
}

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

.loader {
  text-indent: -9999em;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  font-size: 4px;
  animation: 1.1s infinite loader;
  position: relative;
  transform: translateZ(0);
}

@keyframes loader {
  0%, 100% {
    box-shadow: 0 -2.6em 0 0 #777e90, 1.8em -1.8em 0 0 #777e9033, 2.5em 0 0 0 #777e9033, 1.75em 1.75em 0 0 #777e9033, 0 2.5em 0 0 #777e9033, -1.8em 1.8em 0 0 #777e9033, -2.6em 0 0 0 #777e9080, -1.8em -1.8em 0 0 #777e90b3;
  }

  12.5% {
    box-shadow: 0 -2.6em 0 0 #777e90b3, 1.8em -1.8em 0 0 #777e90, 2.5em 0 0 0 #777e9033, 1.75em 1.75em 0 0 #777e9033, 0 2.5em 0 0 #777e9033, -1.8em 1.8em 0 0 #777e9033, -2.6em 0 0 0 #777e9033, -1.8em -1.8em 0 0 #777e9080;
  }

  25% {
    box-shadow: 0 -2.6em 0 0 #777e9080, 1.8em -1.8em 0 0 #777e90b3, 2.5em 0 0 0 #777e90, 1.75em 1.75em 0 0 #777e9033, 0 2.5em 0 0 #777e9033, -1.8em 1.8em 0 0 #777e9033, -2.6em 0 0 0 #777e9033, -1.8em -1.8em 0 0 #777e9033;
  }

  37.5% {
    box-shadow: 0 -2.6em 0 0 #777e9033, 1.8em -1.8em 0 0 #777e9080, 2.5em 0 0 0 #777e90b3, 1.75em 1.75em 0 0 #777e90, 0 2.5em 0 0 #777e9033, -1.8em 1.8em 0 0 #777e9033, -2.6em 0 0 0 #777e9033, -1.8em -1.8em 0 0 #777e9033;
  }

  50% {
    box-shadow: 0 -2.6em 0 0 #777e9033, 1.8em -1.8em 0 0 #777e9033, 2.5em 0 0 0 #777e9080, 1.75em 1.75em 0 0 #777e90b3, 0 2.5em 0 0 #777e90, -1.8em 1.8em 0 0 #777e9033, -2.6em 0 0 0 #777e9033, -1.8em -1.8em 0 0 #777e9033;
  }

  62.5% {
    box-shadow: 0 -2.6em 0 0 #777e9033, 1.8em -1.8em 0 0 #777e9033, 2.5em 0 0 0 #777e9033, 1.75em 1.75em 0 0 #777e9080, 0 2.5em 0 0 #777e90b3, -1.8em 1.8em 0 0 #777e90, -2.6em 0 0 0 #777e9033, -1.8em -1.8em 0 0 #777e9033;
  }

  75% {
    box-shadow: 0 -2.6em 0 0 #777e9033, 1.8em -1.8em 0 0 #777e9033, 2.5em 0 0 0 #777e9033, 1.75em 1.75em 0 0 #777e9033, 0 2.5em 0 0 #777e9080, -1.8em 1.8em 0 0 #777e90b3, -2.6em 0 0 0 #777e90, -1.8em -1.8em 0 0 #777e9033;
  }

  87.5% {
    box-shadow: 0 -2.6em 0 0 #777e9033, 1.8em -1.8em 0 0 #777e9033, 2.5em 0 0 0 #777e9033, 1.75em 1.75em 0 0 #777e9033, 0 2.5em 0 0 #777e9033, -1.8em 1.8em 0 0 #777e9080, -2.6em 0 0 0 #777e90b3, -1.8em -1.8em 0 0 #777e90;
  }
}

/*# sourceMappingURL=test-2-scss.fcb3f8e3.css.map */
