:root {
  --body-font: "Montserrat", sans-serif;
  --heading-font: "Merriweather", serif;
  --body-color: #000;

  --color-white: #fff;
  /* Percentage of black */
  --color-gray-04: hsl(0, 0%, 96%); /* #f6f6f6 or #f5f5f5 */
  --color-gray-10: hsl(0, 0%, 90%); /* #e5e5e5 */
  --color-gray-13: hsl(0, 0%, 87%); /* #DDDDDD */
  --color-gray-20: hsl(0, 0%, 80%); /* #cccccc */
  --color-gray-40: hsl(0, 0%, 60%); /* #999999 */
  --color-gray-50: hsl(0, 0%, 50%); /* #7f7f7f */
  --color-gray-60: hsl(0, 0%, 40%); /* #666666 */
  --color-black: #000;
  --color-primary: #ab1d36;
  --color-secondary: #a29480;
  --color-secondary-90: hsl(35, 15%, 57%, 10%); /* F5F5F5 */

  /* Using this table https://gist.github.com/lopspower/03fb1cc0ac9f32ef38f4 for opacity */
  --color-primary-70: #ab1d36b3;
  --color-secondary-70: #a29480b3;

  --color-green: #018644;
  --color-error: #e02b27;

  --nav-height: 5rem;

  --max-width: 128rem;

  --color-links: hsl(213, 100%, 52%);
  --color-links-hover: hsl(213, 100%, 43%);
  --color-border: hsl(0, 0%, 82%);
  --color-placeholder: var(--color-gray-50);

  /* Most browser have 16px as default for 1 rem, we use rems for usability reasons */

  --font-size-xs: 1.1rem; /* 11px*/
  --font-size-sm: 1.3rem; /* 13px */
  --font-size-md: 1.5rem; /* 15px */
  --font-size-lg: 1.8rem; /* 18px */
  --font-size-xl: 2.4rem; /* 24px */
  --font-size-xxl: 3.2rem; /* 32px */

  --line-height-xs: 1.7rem; /* 17px */
  --line-height-sm: 1.9rem; /* 24px */
  --line-height-md: 2rem; /* 20px */
  --line-height-lg: 2.6rem; /* 26px */
  --line-height-xl: 3rem; /* 30px */
  --line-height-xxl: 3.8rem; /* 38px */

  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;

  /* Using scale of 4, (4px, 8px, 12px, 16px) */
  --space-1: 0.4rem; /* 4px */
  --space-2: 0.8rem; /* 8px */
  --space-3: 1.2rem; /* 12px */
  --space-4: 1.6rem; /* 16px */
  --space-5: 2rem; /* 20px */
  --space-6: 2.4rem; /* 24px */
  --space-7: 2.8rem; /* 28px */
  --space-8: 3.2rem; /* 32px */
  --space-9: 3.6rem; /* 32px */
  --space-10: 4rem; /* 40px */
  --space-13: 5.2rem; /* 52px */

  --border-radius: 0.4rem;

  --z-index-main-header-overlay: 9;
  --z-index-menu: 10;
  --z-index-nav-mobile-menu: 12;
  --z-index-popup-box: 12;
  --z-index-fixed-banner: 13;

  --login-register-max-width: 80rem;
}

/* rems are not good supported for media queries so we use em instead */

/* 768px */
@media only screen and (min-width: 48em) {
  :root {
    --font-size-xxl: 3.6rem;
  }
}

/*
    Media queries:
    sm: '30em',  480px
    md: '48em',  768px
    lg: '62em',  992px
    xl: '80em',  1280px
    2xl: '96em', 1537px
*/

/*
** CSS Reset based on https://github.com/chakra-ui/chakra-ui/blob/main/packages/css-reset/src/css-reset.tsx
** Added some project specific defaults
*/

html {
  line-height: 1.5;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
}

body {
  position: relative;
  min-height: 100%;
  font-feature-settings: "kern";
  color: var(--body-color);
  font: var(--font-size-sm) / var(--line-height-sm) var(--body-font);
}

*,
*::before,
*::after {
  border-width: 0;
  border-style: solid;
  box-sizing: border-box;
  border-color: var(--color-border);
  word-wrap: break-word;
}

*::placeholder {
  color: var(--color-placeholder);
}

main {
  display: block;
}

hr {
  border-top-width: 0.1rem;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline; /* fallback */
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
}

input[type="number"] {
  -moz-appearance: textfield;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -0.2rem;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none !important;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

button {
  background: transparent;
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

ul,
ol {
  padding-left: var(--space-4);
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
}

ul li,
ol li {
  margin-bottom: var(--space-2);
}

ul li:last-of-type,
ol li:last-of-type {
  margin-bottom: 0;
}

textarea {
  resize: vertical;
}

button,
[role="button"] {
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0 !important;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
video {
  height: auto;
}

[data-js-focus-visible] :focus:not([data-focus-visible-added]) {
  outline: none;
  box-shadow: none;
}

select::-ms-expand {
  display: none;
}

/* END CSS RESET */
