/* src/styles.scss */
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AMX";
  src: url(/fonts/AMX-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-red-600: #DA291C;
  --color-red-700: #C7251A;
  --color-red-800: #B52217;
  --color-blue-500: #0097A9;
  --color-yellow-600: #FFC722;
  --color-yellow-900: #FF8300;
  --color-gray-100: #F4F4F4;
  --color-gray-200: #DBDBDB;
  --color-gray-300: #B9B9B9;
  --color-gray-400: #989898;
  --color-gray-500: #6C6C6C;
  --color-gray-600: #525252;
  --color-gray-700: #3C3C3C;
  --color-gray-800: #2D2D2D;
  --color-gray-900: #222222;
  --color-blue-gray-100: #E0E7F6;
  --color-blue-gray-500: #9CA1BF;
  --color-white: #FFFFFF;
  --color-background: #F4F4F4;
  --color-success: #008C67;
  --color-error: #DA291C;
  --color-warning: #FFC722;
  --color-info: #0097A9;
  --font-primary: AMX, sans-serif;
  --font-secondary: Roboto, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 30px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #3C3C3C;
  background-color: #F4F4F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1 {
  font-family: "AMX", sans-serif;
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: #3C3C3C;
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 32px;
  }
}
h2 {
  font-family: "AMX", sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #3C3C3C;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
h3 {
  font-family: "AMX", sans-serif;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  color: #3C3C3C;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
h4 {
  font-family: "AMX", sans-serif;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: #3C3C3C;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
    line-height: 22px;
  }
}
h5 {
  font-family: "AMX", sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #3C3C3C;
}
h6 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #3C3C3C;
}
p,
.body-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
small,
.text-sm {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.text-xs {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #0097A9;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary:disabled {
  cursor: not-allowed;
}
.btn-primary {
  background:
    linear-gradient(
      -45deg,
      #B52217 0%,
      #DA291C 100%);
  border-radius: 20px;
  color: #FFFFFF;
  font-family: "AMX", sans-serif;
  font-weight: 700;
  box-shadow:
    0px 4px 12px rgba(131, 23, 15, 0.5),
    inset 4px 4px 14px rgba(255, 255, 255, 0.4),
    inset 0px -4px 10px rgba(45, 45, 45, 0.6);
}
.btn-primary:hover:not(:disabled) {
  background: #FFFFFF;
  color: #DA291C;
  border: 2px solid #DA291C;
  box-shadow: 0px 2px 6px rgba(131, 23, 15, 0.2);
}
.btn-primary:disabled {
  background: #DBDBDB;
  color: #989898;
  box-shadow: none;
  border-radius: 24px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-secondary:disabled {
  cursor: not-allowed;
}
.btn-secondary {
  background: transparent;
  color: #DA291C;
  border: 2px solid #DA291C;
  border-radius: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.btn-secondary:hover:not(:disabled) {
  background: #DA291C;
  color: #FFFFFF;
  box-shadow:
    0px 4px 12px rgba(131, 23, 15, 0.5),
    inset 4px 4px 14px rgba(255, 255, 255, 0.4),
    inset 0px -4px 10px rgba(45, 45, 45, 0.6);
}
.btn-secondary:disabled {
  border-color: #DBDBDB;
  color: #989898;
}
.btn-tertiary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-tertiary-outline:disabled {
  cursor: not-allowed;
}
.btn-tertiary-outline {
  background: transparent;
  border: 2px solid #3C3C3C;
  border-radius: 30px;
  color: #3C3C3C;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.btn-tertiary-outline:hover:not(:disabled) {
  box-shadow: 0px 2px 6px rgba(45, 45, 45, 0.4);
}
.btn-tertiary-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-tertiary-yellow:disabled {
  cursor: not-allowed;
}
.btn-tertiary-yellow {
  background: #FFC722;
  border-radius: 24px;
  color: #3C3C3C;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  box-shadow: inset 4px 4px 14px rgba(255, 255, 255, 0.4), inset 0px -4px 10px rgba(45, 45, 45, 0.6);
}
.btn-tertiary-yellow:hover:not(:disabled) {
  background: #FFAD17;
  box-shadow:
    0px 2px 6px rgba(45, 45, 45, 0.4),
    inset 4px 4px 14px rgba(255, 255, 255, 0.4),
    inset 0px -4px 10px rgba(45, 45, 45, 0.6);
}
.btn--160 {
  width: 160px;
}
.btn--200 {
  width: 200px;
}
.btn--240 {
  width: 240px;
}
.btn--300 {
  width: 300px;
}
.btn--full {
  width: 100%;
}
.input-field {
  height: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3C3C3C;
  background-color: #FFFFFF;
  border: 1px solid #B9B9B9;
  border-radius: 12px;
  padding: 0 20px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.input-field::placeholder {
  color: #B9B9B9;
}
.input-field:focus {
  border: 2px solid #0097A9;
  outline: none;
}
.input-field:disabled {
  background-color: #DBDBDB;
  border-color: #DBDBDB;
  color: #6C6C6C;
  cursor: not-allowed;
}
.input-field--success {
  background-color: #F3FFFC;
  border-color: #008C67;
  color: #008C67;
}
.input-field--error {
  background-color: #FCF3F3;
  border-color: #B52217;
  color: #B52217;
}
.toast--success {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  background: #DDF9ED;
  border-color: #B2E5D3;
  color: #008C67;
}
.toast--error {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  background: #FCF3F3;
  border-color: #FFC5C1;
  color: #B52217;
}
.toast--warning {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  background: #FFFCE0;
  border-color: #FFF072;
  color: #B52217;
}
.u-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 767px) {
  .u-container {
    padding: 0 20px;
  }
}
.u-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(45, 45, 45, 0.12);
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-mt-xs {
  margin-top: 12px;
}
.u-mt-sm {
  margin-top: 16px;
}
.u-mt-md {
  margin-top: 20px;
}
.u-mt-lg {
  margin-top: 24px;
}
.u-mt-xl {
  margin-top: 32px;
}
.u-mb-xs {
  margin-bottom: 12px;
}
.u-mb-sm {
  margin-bottom: 16px;
}
.u-mb-md {
  margin-bottom: 20px;
}
.u-mb-lg {
  margin-bottom: 24px;
}
.u-mb-xl {
  margin-bottom: 32px;
}
.u-gap-sm {
  gap: 8px;
}
.u-gap-md {
  gap: 16px;
}
.u-gap-lg {
  gap: 24px;
}
.grecaptcha-badge {
  bottom: 100px !important;
}

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