@charset "UTF-8";

:root {
    --abbott-magenta: #c30058;
    --abbott-lt-blue: #009cde;
    --abbott-dk-blue: #004b6b;
    --abbott-yellow: #f6dc44;
    --abbott-orange: #ffa712;
    --abbott-teal: #00c8c5;
    --abbott-grey: #d5d4d1;
    --abbott-lt-grey: #f0f0f0;
    --abbott-md-grey: #d9d9d6;
    --abbott-charcoal: rgb(34,39,49);
    --abbott-dk-grey: rgb(99,102,106);
    --abbott-slate-blue: #002a37;
    --abbott-purple: #470a68;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: BrandonGrotesque, Arial, Helvetica, sans-serif;
  font-weight: 800;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

label:not([id*="OptIn"], [id*="repRequest"], [id*="oneTrust"]) {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-end;
    font-family: var(--body-font-stack);
    font-size: 13px;
    font-weight: 500;
}

.mktoForm label[for*="Opt"].mktoLabel,
.mktoForm label[for*="repRequest"].mktoLabel,
.mktoForm label[for*="oneTrust"].mktoLabel {
    display: flex;
    font-size: 14px;
    line-height: 1.3;
    padding-left: 36px;
    text-transform: inherit;
}

.mktoForm label[for*="Opt"].mktoLabel,
.mktoForm label[for*="optIn"].mktoLabel,
.mktoForm label[for*="oneTrust"].mktoLabel {
    padding-left: 28px;
    text-transform: inherit;
}

.mktoForm .mktoLabel[for*="repRequest"] ~ div.mktoCheckboxList,
.mktoForm .mktoLabel[for*="oneTrust"] ~ div.mktoCheckboxList {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px !important;
}

.mktoForm input[type="checkbox"] {
    margin: 0;
}

.mktoForm .mktoFieldWrap:not(.mktoRequiredField) label .mktoAsterix {
    display: none !important;
}

