/* Variables  */
/* Aliases  */
.sr-only {
  position: absolute;
  /* Outside the DOM flow */
  height: 1px;
  width: 1px;
  /* Nearly collapsed */
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  left: -9999px;
  text-indent: -5000px;
  clip: rect(1px, 1px, 1px, 1px);
  /* All other browsers */
}

/* Variables  */
/* Aliases  */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1.5;
}

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;
}

input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

:host(:focus) {
  outline: none !important;
  border: none !important;
}

.label-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: fit-content;
  margin-bottom: 8px;
}
.label-wrapper .label {
  color: #414651;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "museo-sans", arial, sans-serif;
  height: fit-content;
}
.label-wrapper .label.fontStyle--regular {
  font-weight: 500;
}
.label-wrapper .label.fontStyle--bold {
  font-weight: 700;
}
.label-wrapper .required {
  color: #8c0a08;
  margin-left: 8px;
}
.label-wrapper .label + .label {
  font-family: "museo-sans", arial, sans-serif;
  color: #717680;
  font-size: 0.75rem;
  line-height: 1.5;
}
.label-wrapper.dark .label {
  color: whitesmoke;
}
.label-wrapper.dark .required {
  color: #ec9a98;
}
.label-wrapper.dark .label + .label {
  color: #e9eaeb;
}
.label-wrapper.noMargin {
  margin-bottom: 0;
}

.validation-message {
  font-size: 1rem;
  color: #8c0a08;
  line-height: 1.5;
  font-family: "museo-sans", arial, sans-serif;
  width: 100%;
  height: 1.5rem;
  margin-top: 12px;
  margin-bottom: 12px;
  display: block;
}
.validation-message.dark {
  color: #ec9a98;
}
.validation-message.noMargin {
  margin: 0;
}

fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
fieldset .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
fieldset .content.row {
  flex-direction: row;
}