/* src/styles.css */
@font-face {
  font-family: "Gilroy";
  src: url(/assets/fonts/Gilroy-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url(/assets/fonts/Gilroy-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url(/assets/fonts/Gilroy-Semibold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #ccff7e;
  --secondary-color: #e3e6ff;
  --third-color: #5468ff;
  --color-white: #ffffff;
  --color-grey: #eeeeee;
  --color-secondary-grey: #f7f8ff;
  --color-red: #ff0606;
  --text-grey: #818181;
  --text-primary: #212121;
  --text-black: #000000;
  --divider: #d9d9d9;
  --border-radius: 28px;
  --button-padding: 8px 16px;
  --container-width: 1410px;
  --transition-base: 300ms ease;
  --container-side-padding: 3rem;
  --color-accent-green: #ccff7e;
  --color-accent-green-hover: #bff06f;
  --color-accent-purple: #5468ff;
  --color-accent-purple-hover: #4359f2;
  --color-card: #eeeeee;
  --color-card-hover: #e5e5e5;
  --color-card-active: #ccff7e;
  --color-white-hover: #ffffff;
  --color-promo-badge: #e3e6ff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  height: 100%;
  scroll-behavior: auto;
  scrollbar-gutter: auto;
}
body {
  min-height: 100%;
  font-family:
    "Gilroy",
    "Segoe UI",
    sans-serif;
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  font-weight: 500;
  line-height: 1.55;
}
button,
input,
textarea,
select,
a {
  cursor: pointer;
  color: var(--text-primary);
}
button {
  border: 0;
  background: none;
  width: fit-content;
}
a {
  text-decoration: none;
}
img,
picture {
  display: block;
  max-width: 100%;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
textarea {
  resize: vertical;
}
.container {
  width: min(var(--container-width), calc(100% - (var(--container-side-padding) * 2)));
  margin-inline: auto;
}
.muted {
  color: var(--text-grey);
}
.divider {
  width: 1px;
  height: 21px;
  background: #BBBBBB;
}
@media (max-width: 1440px) {
  :root {
    --container-width: 1350px;
  }
}
@media (max-width: 1280px) {
  .container {
    width: min(var(--container-width), calc(100% - 4rem));
  }
  :root {
    --container-side-padding: 2rem;
  }
}
@media (max-width: 1100px) {
  :root {
    --client-navbar-scroll-offset: 76px;
  }
}
@media (max-width: 1024px) {
  .container {
    width: min(var(--container-width), calc(100% - 3rem));
  }
  :root {
    --container-side-padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  :root {
    --container-side-padding: 16px;
    --client-navbar-scroll-offset: 80px;
  }
  .container {
    width: min(var(--container-width), 100%) !important;
    padding: 0 16px;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 360px) {
  :root {
    --container-side-padding: 12px;
  }
  .container {
    padding: 0 12px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
