/* Global definitions */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-primary-pink: #ff6882;
  --color-secondary-pink: #f7cfd7;
  --color-green-price: #37b934;
  --color-green-light: #DDFFDC;
  --color-gray-100: #404040;
  --color-gray-200: #ABABAB;
  --color-gray-300: #EEEEEE;
  --color-gray-400: #F8F8F8;
  --mobile-vertical-spacing-main: 75px;
  --desktop-vertical-spacing-main: 160px;
}

/* Reset  */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}
body {
  color: var(--color-black);
  font-family: 'haas-55', sans-serif;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--color-black);
}

a:hover, a.active {
  color: var(--color-brand-secondary);
  text-decoration: none;
  transition: color 240ms ease-out;
}
a.link {
  text-decoration: none;
}

/* Borders */
.br-pill {
  border-radius: 43px;
}

/* Forms */
fieldset {
  padding: 1rem 0;
  text-align: left;
}
input[type="text"], input[type="email"], input[type="number"] {
  border-radius: .125rem;
  border: 1px solid rgba(0,0,0,.2);
  line-height: 1.15;
  margin: 0;
  outline: none;
  padding: 1rem;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
}
label {
  color: rgba(0,0,0,.5);
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.custom-select {
  position: relative;
}
.custom-select select {
  position: relative;
  border: 1px solid rgba(0,0,0,.2);
  line-height: 20px;
  min-height: 50px;
  padding: 12px;
  width: 100%;
  z-index: 1;
  appearance: none;
  background: #fff;
  border-radius: 0;
  color: #292828;
  cursor: pointer;
  outline: none;
  -webkit-transition: border .1s linear;
  transition: border .1s linear;
  -ms-flex-preferred-size: 100%;
}
.custom-select::after {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 12px;
  height: 12px;
  margin-top: -4px;
  pointer-events: none;
  z-index: 1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDggMTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHRpdGxlPkFycm93PC90aXRsZT48cGF0aCBkPSJNMCA4LjMwM2wxLjI5NyAxLjUyM0w3LjEgNC44ODQgMS4yOTEgMCAuMDA2IDEuNTMxbDQgMy4zNjJ6IiBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9IiMwMDAiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 10px;
}
.object-fit-cover {
  object-fit: cover;
}
.fineprint {
  font-size: 40px;
  vertical-align: bottom;
}