@charset "UTF-8";
/*! last updated 2025-10-09-210552 */
:root {
  font-size: 62.5%;
}

*,
*:before,
*:after {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.on-dark {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  hanging-punctuation: last;
  overflow-y: scroll;
  position: relative;
  text-rendering: optimizeLegibility;
}

body {
  background-color: #fff;
  color: #1d2329;
  font-family: font-regular, sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1;
  min-height: 100vh;
  position: relative;
  width: 100%;
}

:focus {
  outline: none;
}

a {
  background-color: transparent;
  color: #0074b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.color-ui-white:focus,
a.color-white:focus {
  color: #fff;
}

.is-tabbing a:not([class*="btn-"]):focus {
  outline: 1px dotted #000;
  outline-offset: 0;
}

b, strong {
  font-family: font-bold, sans-serif;
  font-weight: normal;
}

img {
  border: 0;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

svg {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

details summary {
  cursor: pointer;
}

details summary > * {
  display: inline;
}

fieldset {
  border: none;
  padding: 0;
}

button {
  color: inherit;
}

button > * {
  pointer-events: none;
}

button,
input,
select,
textarea,
option {
  font-size: 1.6rem;
  margin: 0;
  vertical-align: middle;
  font-family: font-regular, sans-serif;
}

optgroup {
  font-family: font-bold, sans-serif;
}

a,
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"],
[role="button"],
[role="checkbox"],
[role="radio"],
[role="option"] {
  cursor: pointer;
}

[role="button"].disabled,
[tabindex][aria-disabled="true"] {
  cursor: not-allowed;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  appearance: none;
}

a.disabled {
  text-decoration: none;
}

textarea {
  overflow: auto;
  resize: none;
  vertical-align: top;
}

select {
  appearance: none;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
}

caption {
  display: table-caption !important;
}

.slide-up {
  position: relative;
  animation: slide-up .8s ease .1s;
}

@keyframes slide-up {
  from {
    top: 16px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.slide-down {
  position: relative;
  animation: slide-down .8s ease .1s;
}

@keyframes slide-down {
  from {
    top: -16px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.slide-right {
  position: relative;
  animation: slide-right .8s ease .1s;
}

@keyframes slide-right {
  from {
    left: -16px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

.slide-left {
  position: relative;
  animation: slide-left .8s ease .1s;
}

@keyframes slide-left {
  from {
    left: 16px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

.badge {
  background-color: #0074b3;
  color: #fff;
  height: 2rem;
  min-width: 2rem;
  padding: 0 .59rem;
}

.badge [aria-hidden] {
  text-indent: -.005ch;
}

.isFirefox .badge {
  padding: 0 .59rem .1rem;
}

.rte-styles span.btn-primary,
.rte-styles span.btn-secondary {
  display: none;
}

.btn-primary,
.btn-secondary,
.btn-large,
.rte-styles span.btn-primary + a[href],
.rte-styles span.btn-secondary + a[href] {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 2em;
  display: inline-flex;
  font-family: font-bold, sans-serif;
  justify-content: center;
  text-align: center;
  line-height: 1;
  outline: 1px solid transparent;
  text-decoration: none !important;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1.4rem;
  height: 4.8rem;
  min-width: 100px;
  padding-left: 32px;
  padding-right: 32px;
  vertical-align: bottom;
}

.btn-small {
  font-size: 1.2rem;
  height: 3.2rem;
  min-width: 100px;
  padding-left: 24px;
  padding-right: 24px;
}

.btn-full-width {
  min-width: 100%;
}

.btn-primary,
.rte-styles span.btn-primary + a[href] {
  background-color: var(--btn-primary-bgcolor, #00388f);
  border-color: var(--btn-border-color, #00388f);
  color: var(--btn-primary-color, #f2fafd);
  outline-offset: -4px;
  transition: all .2s ease;
}

.btn-primary.on-dark,
.color-white .btn-primary,
.color-white.rte-styles span.btn-primary + a[href] {
  background-color: #f2fafd;
  border-color: #f2fafd;
  color: #00388f;
}

.btn-secondary,
.rte-styles span.btn-secondary + a[href] {
  background-color: var(--btn-secondary-bgcolor, transparent);
  border-color: var(--btn-border-color, #00388f);
  color: var(--btn-secondary-color, #00388f);
  outline-offset: -5px;
  transition: all .2s ease;
}

.btn-secondary.on-dark,
.color-white .btn-secondary,
.color-white.rte-styles span.btn-primary + a[href] {
  background-color: transparent;
  border-color: #f2fafd;
  color: #f2fafd;
}

:is(.btn-primary, .btn-secondary):hover,
.color-white :is(.btn-primary, .btn-secondary):hover,
.color-white.rte-styles span:is(.btn-primary, .btn-secondary) + a[href]:hover {
  background-color: var(--btn-border-hover, #0057b8);
  border-color: var(--btn-border-hover, #0057b8);
  color: var(--btn-hover-color, #f2fafd);
}

:is(.btn-primary, .btn-secondary).on-dark:hover,
.color-white :is(.btn-primary, .btn-secondary):hover,
.color-white.rte-styles span:is(.btn-primary, .btn-secondary) + a[href]:hover {
  background-color: #dcf3fa;
  border-color: #dcf3fa;
  color: #00388f;
}

.is-tabbing .btn-primary:focus,
.is-tabbing .rte-styles span.btn-primary + a[href]:focus {
  outline-color: var(--btn-primary-outline-color-keyfocus, #f2fafd);
}

.is-tabbing .btn-primary.on-dark:focus,
.is-tabbing .color-white .btn-primary:focus,
.is-tabbing .color-white.rte-styles span.btn-primary + a[href]:focus {
  color: #00388f;
  outline-color: #00388f;
}

.is-tabbing .btn-primary.on-dark:focus:active,
.is-tabbing .color-white .btn-primary:focus:active,
.is-tabbing .color-white.rte-styles span.btn-primary + a[href]:focus:active {
  outline-color: #f2fafd;
}

.is-tabbing .btn-secondary:focus,
.is-tabbing .rte-styles span.btn-secondary + a[href]:focus {
  outline-color: var(--btn-secondary-outline-color-keyfocus, #00388f);
}

.is-tabbing .btn-secondary.on-dark:focus,
.is-tabbing .color-white .btn-secondary:focus,
.is-tabbing .color-white.rte-styles span.btn-primary + a[href]:focus {
  border-color: #f2fafd;
  outline-color: #f2fafd;
}

.is-tabbing :is(.btn-primary, .btn-secondary):active,
.is-tabbing .rte-styles span:is(.btn-primary, .btn-secondary) + a[href]:active,
.is-tabbing :is(.btn-primary, .btn-secondary).on-dark:active,
.is-tabbing .color-white :is(.btn-primary, .btn-secondary):active,
.is-tabbing .rte-styles.color-white span:is(.btn-primary, .btn-secondary) + a[href]:active {
  background-color: var(--btn-bgcolor-keyfocus-active, #0057b8);
  border-color: var(--btn-border-color-keyfocus-active, #0057b8);
  color: var(--btn-color-keyfocus-active, #f2fafd);
  transition: none;
}

.is-tabbing .btn-secondary:focus:active,
.is-tabbing .rte-styles span.btn-secondary + a[href]:focus:active {
  outline-color: var(--btn-secondary-outline-color-keyfocus-active, #f2fafd);
}

.is-tabbing :is(.btn-primary, .btn-secondary):focus:hover,
.is-tabbing .rte-styles span:is(.btn-primary, .btn-secondary) + a[href]:focus:hover {
  outline-color: transparent;
}

.btn-primary:not(.btn-search):is([disabled], [aria-disabled], .disabled) {
  background-color: #dcdfe3 !important;
  border-color: #dcdfe3 !important;
  color: #878c94 !important;
}

.btn-secondary:is([disabled], [aria-disabled], .disabled) {
  background-color: transparent !important;
  border-color: #878c94 !important;
  color: #878c94 !important;
}

[class*="btn-"]:is([disabled], [aria-disabled], .disabled) {
  cursor: not-allowed !important;
  outline: none !important;
  transition: none !important;
}

:is(.btn-primary, .btn-secondary) > :is(svg, img) {
  height: 28px;
  margin: 0 12px 0 0;
  width: 28px;
}

:is(.btn-primary, .btn-secondary) > :is(svg, img)[class*="mar-r-none"] {
  margin: 0;
}

:is(.btn-primary, .btn-secondary).row-reverse > :is(svg, img) {
  margin: 0 0 0 12px;
}

.btn-small > :is(svg, img) {
  height: 20px;
  margin: 0 10px 0 0;
  width: 20px;
}

.btn-small.row-reverse > :is(svg, img) {
  margin: 0 0 0 10px;
}

.btn-secondary:hover > svg path {
  fill: #fff;
  transition: fill .3s linear 0s;
}

.btn-primary.on-dark > svg path,
.btn-secondary.on-dark:hover > svg path {
  fill: currentColor;
  transition: fill .3s linear 0s;
}

.btn-group {
  background-color: #fff;
  border: 1px solid #bdc2c7;
  border-radius: 2em;
  display: inline-flex;
  gap: 2px;
  height: auto;
  overflow: hidden;
  padding: 4px;
  position: relative;
  width: 100%;
}

.btn-group [class*="btn-"] {
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  margin: 0;
  min-width: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  z-index: 2;
  transition: color .6s ease;
}

.btn-group .btn-primary:not(.active),
.btn-group [class*="btn-"].active:hover {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #00388f !important;
  transition: color .6s ease;
}

.btn-group [class*="btn-"]:hover {
  background-color: #f2fafd !important;
  border: 1px solid #f2fafd !important;
  color: #00388f !important;
}

.btn-group [class*="btn-"].active:hover {
  color: #fff !important;
}

@media (max-width: 767px) {
  .btn-group-responsive [class*="btn-"] {
    font-size: 1.2rem;
    height: 3.2rem;
  }
  .btn-group.btn-group-responsive:after {
    height: 3.2rem;
  }
}

@media (min-width: 768px) {
  .btn-group-responsive [class*="btn-"] {
    height: 4.8rem;
  }
}

.btn-group:has(button:nth-child(1).active):after {
  transform: translateX(calc(0% + 4px));
}

.btn-group:has(button:nth-child(2).active):after {
  transform: translateX(calc(100% + 6px));
}

.btn-group:has(button:nth-child(3).active):after {
  transform: translateX(calc(200% + 8px));
}

.btn-group:has(button:nth-child(4).active):after {
  transform: translateX(calc(300% + 10px));
}

.btn-group:has(button:nth-child(5).active):after {
  transform: translateX(calc(400% + 12px));
}

.btn-group:has(button:nth-child(2)):not(:has(button:nth-child(3))):after {
  width: calc((100% - 8px - 2px) / 2);
}

.btn-group:has(button:nth-child(3)):not(:has(button:nth-child(4))):after {
  width: calc((100% - 8px - 4px) / 3);
}

.btn-group:has(button:nth-child(4)):not(:has(button:nth-child(5))):after {
  width: calc((100% - 8px - 6px) / 4);
}

.btn-group:has(button:nth-child(5)):not(:has(button:nth-child(6))):after {
  width: calc((100% - 8px - 8px) / 5);
}

.is-tabbing .btn-group .btn-primary {
  outline: 0 !important;
}

.btn-group:after {
  background-color: #00388f;
  border-radius: 2em;
  content: '';
  height: 48px;
  left: 0;
  position: absolute;
  top: 4px;
  transition: transform .3s ease .1s;
  z-index: 1;
}

.btn-group:has(.btn-small):after {
  height: 32px;
}

.is-tabbing .btn-group:has(button:focus):after {
  outline: 1px solid #f2fafd;
  outline-offset: -4px;
}

.is-tabbing .btn-group .btn-primary.on-dark.active:focus {
  color: #f2fafd;
  outline-color: #f2fafd;
}

.btn-reset,
.btn-reset:not(.btn-search)[disabled] {
  background-color: transparent;
  border: none;
}

.btn-reset:not([class*="bg-"]) {
  background-color: initial;
}

.is-tabbing .btn-reset:not(.transparent):not(.focus-inset):focus,
.is-tabbing [role="button"][tabindex]:not(a):not(.card):not(.tooltip-trigger):not(.pop-trigger):focus {
  box-shadow: 0 0 0 1px #fff inset;
  outline: 1px dotted #000;
  outline-offset: -1px;
}

.is-tabbing .btn-reset.color-white:focus {
  outline-color: #fff;
}

[class*="dropdown-"].btn-primary .icon-chevron-bold:after {
  background-color: #f2fafd;
}

[class*="dropdown-"].btn-secondary .icon-chevron-bold:after {
  background-color: #00388f;
}

[class*="dropdown-"].btn-primary.on-dark .icon-chevron-bold:after {
  background-color: #00388f;
}

[class*="dropdown-"].btn-secondary.on-dark .icon-chevron-bold:after {
  background-color: #f2fafd;
}

[class*="dropdown-"].btn-secondary.on-dark:hover .icon-chevron-bold:after {
  background-color: #00388f;
}

.btn-primary.selected[data-selector-target]:is([role="radio"][disabled], [role="radio"][disabled]:hover, [role="checkbox"], [role="checkbox"]:hover) {
  background-color: #fff !important;
  border-color: #fff !important;
}

.btn-primary.selected[data-selector-target]:is([role="radio"][disabled], [role="radio"][disabled]:hover) {
  color: #454b52 !important;
  cursor: text;
}

.btn-primary.selected[data-selector-target]:is([role="checkbox"], [role="checkbox"]:hover) {
  color: #00388f !important;
}

.is-tabbing .btn-primary[data-selector-target][role="checkbox"].selected:focus {
  outline-color: #00388f !important;
}

.flex-items-stretch .card,
[class*="card-height-"] {
  height: 100%;
}

[class*="flex-card"] .flex-3 {
  display: grid;
  min-height: 180px;
}

[class*="flex-card"] .flex-1:last-child {
  padding-bottom: 32px !important;
}

@media (min-width: 1024.1px) {
  .film-strip-reel [class*="flex-card"] .flex-1 {
    width: 39.866rem !important;
  }
}

@media (min-width: 768px) {
  .card-height-default,
  .card-height-base {
    min-height: 40.0rem;
  }
  .card-pad-base {
    padding: 24px;
  }
  .card-height-tight,
  .card-height-short {
    min-height: 36.0rem;
  }
  .card-pad-tight {
    padding: 16px;
  }
  .card-height-loose,
  .card-height-tall {
    min-height: 50.0rem;
  }
  .card-pad-loose {
    padding: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .film-strip-reel [class*="flex-card"] .flex-1 {
    width: 33.6rem !important;
  }
}

@media (max-width: 767px) {
  .card-height-default,
  .card-height-base {
    min-height: 36.0rem;
  }
  .card-pad-base {
    padding: 16px;
  }
  .card-height-tight,
  .card-height-short {
    min-height: 30.0rem;
  }
  .card-pad-tight {
    padding: 8px;
  }
  .card-height-loose,
  .card-height-tall {
    min-height: 40.0rem;
  }
  .card-pad-loose {
    padding: 24px;
  }
}

@media (max-width: 1024px) {
  [class*="flex-card"] .flex-1:last-child {
    padding-bottom: 24px !important;
  }
}

a.card {
  display: block;
}

a.card:focus {
  outline: none;
}

.theme-att-2022 .theme-base-bg .card.theme-base-bg .card-content.bgcolor:not([class*="bg-"]) {
  background-color: transparent;
}

.card.border-shadow {
  box-shadow: 0 0 0 1px #dcdfe3 inset;
}

.card[tabindex]:is([role="radio"],
[role="checkbox"]):hover,
.card[tabindex]:has(.cta-overlay:is(input[type="checkbox"],
input[type="radio"])):hover,
.radio-button-card:hover .outline-container {
  box-shadow: 0 0 0 1px #009fdb inset;
}

.card[tabindex].selected:hover {
  box-shadow: 0 0 0 2px #009fdb inset, 0 0 0 2px #fff !important;
}

.card.selected,
.card[tabindex].selected,
.card[tabindex]:is([role="radio"],
[role="checkbox"]).selected,
.card[tabindex].selected:has(input:checked),
.card.selected:has([class*="qty-select"]),
.selected-by-checkbox:has(input[type="checkbox"]:checked),
.selected-by-radio:has(input[type="radio"]:checked) {
  background-color: #f2fafd !important;
  box-shadow: 0 0 0 2px #009fdb inset, 0 0 0 2px #fff !important;
}

.card[tabindex]:is([role="radio"],
[role="checkbox"]).selected:hover {
  box-shadow: 0 0 0 2px #009fdb inset, 0 0 0 2px #fff !important;
}

.grow-on-hover {
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.grow-on-hover:hover {
  transform: scale(var(--computedScaleX), var(--computedScaleY));
}

.grow-on-hover2 {
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.grow-on-hover2:hover {
  transform: scale(1.03);
}

.card-img {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.card[aria-disabled="true"] {
  opacity: .5;
  -webkit-user-select: none;
          user-select: none;
}

.card[aria-disabled="true"]:hover {
  cursor: not-allowed;
}

.card[aria-disabled="true"]:hover {
  box-shadow: 0 0 0 1px #dcdfe3 inset !important;
}

@media (max-width: 767px) {
  .card.border-shadow:not([class*="radius-"]):before {
    box-shadow: 0 0 0 1px #dcdfe3;
    height: calc(100% - 2px);
    top: 1px;
  }
  .card.border-shadow:not([class*="radius-"]):after {
    left: 0;
    width: 100%;
  }
}

.is-tabbing .card[tabindex]:not([aria-disabled="true"]):focus {
  outline: 1px dotted #686e74;
  outline-offset: -6px;
}

.radio-button-card input {
  top: 6px;
  left: 6px;
}

.radio-button-card .outline-container {
  box-shadow: 0 0 0 1px #dcdfe3 inset;
  border-radius: 0.8rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.radio-button-card:has(input:checked) {
  background-color: #f2fafd;
}

.radio-button-card.radius-sm .outline-container {
  border-radius: 0.4rem;
}

.radio-button-card.radius-lg .outline-container {
  border-radius: 1.6rem;
}

.radio-button-card input:not([disabled]):checked ~ .outline-container {
  box-shadow: 0 0 0 2px #009fdb inset;
}

.radio-button-card:hover input:checked ~ .outline-container {
  box-shadow: 0 0 0 2px #009fdb inset;
}

.radio-button-card.disabled:hover .outline-container {
  box-shadow: 0 0 0 1px #dcdfe3 inset !important;
}

.is-tabbing .radio-button-card input:focus ~ .outline-container:after {
  content: '';
  outline: 1px dashed #454b52;
  outline-offset: -8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: .8rem;
}

.static.checkbox input.cta-overlay + .checkbox-skin,
.static.radio input.cta-overlay + .radio-skin {
  border: none;
  position: absolute;
  width: calc(100% - 12px);
  min-height: calc(100% - 12px);
  background: none;
  top: 6px;
  left: 6px;
  margin: 0;
}

.is-tabbing .static.checkbox input.cta-overlay:focus + .checkbox-skin,
.is-tabbing .static.radio input.cta-overlay:focus + .radio-skin {
  border: 1px dotted #000;
  border-radius: .8rem;
}

.static.checkbox input.cta-overlay:focus + .checkbox-skin:before,
.static.radio input.cta-overlay:focus + .radio-skin:before {
  outline: none;
}

.form-row,
.form-row + .inline-form-row {
  margin-top: 24px;
  width: 100%;
}

.form-row:first-child,
.inline-form-row .form-row {
  margin-top: 0;
}

.inline-form-row {
  display: flex;
}

.inline-form-row .form-row:first-child {
  margin-right: 16px;
}

.inline-form-row .form-row:last-child {
  margin-left: 16px;
}

@media (max-width: 767px) {
  .inline-form-row .form-row:first-child {
    margin-right: 12px;
  }
  .inline-form-row .form-row:last-child {
    margin-left: 12px;
  }
}

.form-row legend {
  line-height: 1.2;
}

.formfield-label {
  align-items: center;
  display: flex;
  font-family: font-bold, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  padding-bottom: .8rem;
}

label.formfield-label + .formfield-label {
  color: #686e74;
}

.formfield-msg {
  align-items: flex-end;
  display: flex;
  font-size: 1.4rem;
  height: auto;
  line-height: 1.2;
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  transition: opacity 0.3s linear 0s, font-size 0s linear 0.3s, padding-top 0.2s linear 0.3s, max-height 0.2s linear 0.2s, min-height 0.2s linear 0.3s;
  width: 100%;
}

/* ********** TEXT FIELDS *********** */
::placeholder {
  color: #686e74;
  font-family: font-regular, sans-serif;
  font-style: normal;
  opacity: 1 !important;
}

::-ms-clear,
::-ms-reveal {
  display: none !important;
}

.textfield {
  align-items: center;
  width: 100%;
}

textarea,
.textfield,
input.dropdown-button {
  appearance: none;
  background-color: #fff;
  border: 1px solid #686e74;
  border-radius: 0.8rem;
  color: #1d2329;
  display: flex;
  font-family: font-regular, sans-serif;
  font-size: 1.6rem;
  min-height: 48px;
  line-height: normal;
  padding-left: 16px;
  padding-right: 24px;
}

textarea {
  height: auto;
  min-height: 85px;
  max-height: 160px;
  width: 100%;
  padding-top: 13px;
}

textarea:hover,
.textfield:hover {
  border-color: #0074b3;
}

textarea:focus:hover,
textarea:focus,
.textfield:focus:hover,
.textfield:focus {
  border-color: #0074b3;
}

.on-dark textarea:not(.error):focus:hover,
.on-dark textarea:not(.error):focus,
.on-dark .textfield:not(.error):focus:hover,
.on-dark .textfield:not(.error):focus {
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #0074b3 inset;
}

textarea:disabled,
.textfield:disabled {
  background-color: #f8fafb;
}

.formfield-label.disabled,
.textfield:disabled,
textarea:disabled {
  border-color: #bdc2c7;
  color: #878c94;
  cursor: not-allowed;
  -webkit-text-fill-color: #878c94;
  opacity: 1;
}

/* ********** END FORMS *********** */
.form-row > .radio,
.form-row > .checkbox {
  margin-top: 8px;
  margin-bottom: 8px;
}

.checkbox,
.radio {
  font-size: 1.4rem;
  position: relative;
  z-index: 0;
}

.checkbox input,
.radio input {
  height: 44px;
  left: -10px;
  opacity: 0.001;
  position: absolute;
  top: -10px;
  width: 44px;
  z-index: 1;
}

.checkbox-selectall .checkbox-skin {
  border: 1px solid #686e74;
  height: 24px;
  width: 24px;
  margin-right: 8px;
}

.checkbox input + .checkbox-skin,
.radio input + .radio-skin,
.checkbox-selectall .checkbox-skin {
  align-items: center;
  align-self: baseline;
  background-color: #fff;
  border: 1px solid #686e74;
  display: flex;
  height: 24px;
  justify-content: center;
  max-height: 24px;
  min-width: 24px;
  position: relative;
  width: 24px;
  z-index: 0;
}

.checkbox input + .checkbox-skin,
.checkbox-selectall .checkbox-skin {
  border-radius: 0.4rem;
}

.radio input + .radio-skin {
  border-radius: 100%;
}

.checkbox:not(.error) input:checked + .checkbox-skin,
.checkbox:not(.error) input:not(.cta-overlay):checked:hover:not([disabled]) + .checkbox-skin,
.checkbox-selectall[aria-checked="true"] .checkbox-skin {
  background-color: #0074b3;
  border: 1px solid #0074b3;
}

.checkbox-selectall[aria-checked="true"]:hover .checkbox-skin {
  border: 1px solid #0074b3;
}

.radio input:not(.cta-overlay):checked + .radio-skin,
.radio input:not(.cta-overlay):checked:hover:not([disabled]) + .radio-skin {
  border: 1px solid #0074b3;
}

.checkbox input:not([disabled]):hover + .checkbox-skin,
.radio input:not([disabled]):hover + .radio-skin,
.checkbox-selectall:hover .checkbox-skin,
.checkbox-link:hover input:not([disabled]) + .checkbox-skin {
  border-color: #0074b3;
}

.radio-skin:before,
.checkbox-skin:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
}

.is-tabbing .checkbox input:focus + .checkbox-skin:before,
.is-tabbing .radio:not(.card-outline) input:focus + .radio-skin:before,
.is-tabbing .checkbox-selectall:focus .checkbox-skin:before,
.is-tabbing [role="checkbox"][tabindex]:not(.card):not(.checkbox-selectall):focus,
.is-tabbing .checkbox-link:focus-within input:not([disabled]) + .checkbox-skin:before {
  outline: 1px dotted #000;
  outline-offset: 6px;
}

.is-tabbing .checkbox-link a:not([class*="btn-"]):not([class*="tabs"]):focus {
  outline: none;
}

.radio input:not(.cta-overlay):checked + .radio-skin:after {
  background-color: var(--rad-chk-checked-dot, #0074b3);
  box-shadow: 0 0 0 3px var(--rad-chk-checked-fill, #fff) inset;
  border-radius: 100%;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
}

.checkbox input + .checkbox-skin:after,
.checkbox input:disabled + .checkbox-skin:after,
.checkbox-selectall[aria-checked] .checkbox-skin:after {
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 16px 16px;
  content: "";
  height: 16px;
  width: 16px;
  position: absolute;
}

.checkbox input:checked + .checkbox-skin:after,
.checkbox input:disabled:checked + .checkbox-skin:after,
.checkbox-selectall[aria-checked="true"] .checkbox-skin:after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M15.4 4.3l-9.3 9.3L1 8.5 2.3 7 6.1 11l8-7.9z'/%3E%3C/svg%3E");
  background-color: #fff;
}

.checkbox input:disabled:checked + .checkbox-skin:after {
  background-color: #878c94;
}

.checkbox input ~ .rad-chk-txt,
.checkbox-selectall .rad-chk-txt,
.radio input ~ .rad-chk-txt {
  align-self: baseline;
  position: relative;
  line-height: 1.6;
  top: -7px;
  margin-bottom: -7px;
  margin-left: 8px;
}

.checkbox-link .checkbox input ~ .rad-chk-txt {
  display: none;
}

.checkbox-link a {
  color: #1d2329;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  top: -7px;
  margin-bottom: -7px;
  margin-left: 4px;
}

.checkbox-link.grid a {
  margin-top: -16px;
  margin-left: 32px;
  line-height: 1.6;
}

.checkbox.disabled,
.checkbox input:disabled,
.radio.disabled,
.radio input:disabled,
.checkbox-link .checkbox.disabled + a {
  color: #878c94;
  cursor: not-allowed;
}

.checkbox input:not(.cta-overlay):disabled + .checkbox-skin,
.radio input:not(.cta-overlay):disabled + .radio-skin {
  background-color: #f8fafb;
  border: 1px solid #bdc2c7;
}

.checkbox input:disabled:checked + .checkbox-skin {
  background-color: #f8fafb;
}

.radio input:disabled:checked + .radio-skin:after {
  background-color: var(--rad-chk-checked-disabled-dot, #bdc2c7);
  box-shadow: 0 0 0 3px var(--rad-chk-checked-fill, #fff) inset;
}

.radio.disabled input:checked + .radio-skin:after {
  background-color: #878c94;
}

.checkbox-selectall[aria-checked="mixed"] .checkbox-skin:after {
  background-color: #0074b3;
  content: "";
  height: 2px;
  width: 12px;
  position: absolute;
  filter: none;
}

.indeterminate-group {
  padding-left: 32px;
}

.radio-selector-bar .radio input:checked + .radio-skin:after {
  box-shadow: none !important;
}

.selectWrap {
  position: relative;
}

.awd-select {
  background-color: transparent;
  border: none;
  border-radius: 0.8rem;
  color: #1d2329;
  font-family: font-regular, sans-serif;
  font-size: 1.6rem;
  height: 4.8rem;
  left: 0;
  line-height: 4.8rem;
  padding: 0 4.3rem 0 1.6rem;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1;
}

.awd-select optgroup,
.awd-select option {
  background-color: #fff;
  color: #1d2329;
}

.awd-select.select-placeholder {
  color: #686e74;
}

.awd-select:focus {
  outline: none;
}

.select-skin {
  align-items: center;
  background-color: #fff;
  border: 1px solid #686e74;
  border-radius: 0.8rem;
  color: #1d2329;
  cursor: pointer;
  display: flex;
  font-family: font-regular, sans-serif;
  height: 4.8rem;
  left: 0;
  outline: none;
  padding-right: 4.3rem;
  position: absolute;
  top: 0;
  width: 100%;
}

.awd-select:hover + .select-skin {
  border-color: #0074b3;
}

.awd-select:focus + .select-skin {
  border-color: #0074b3;
}

[class*="theme-dark"] .awd-select:focus + .select-skin {
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #0074b3 inset;
}

.awd-select[disabled] {
  cursor: not-allowed;
  opacity: 1;
}

.awd-select[disabled] > option {
  color: #878c94;
}

.awd-select[disabled] + .select-skin {
  background-color: #f8fafb;
  border-color: #bdc2c7;
}

/* *************************** */
.dropdown-button:after,
.dropdown-link:after,
.select-skin:after {
  /* SEE core-global-icon.scss for icon ◘◘◘ */
  background-color: transparent;
  mask-position: 50% !important;
  mask-repeat: no-repeat;
  mask-size: 1.6rem;
  content: "";
  display: block;
  height: 1.6rem;
  margin-top: -.8rem !important;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: rotate(90deg);
  width: 1.6rem;
}

.dropdown-link {
  padding-right: 24px;
}

.dropdown-link:after {
  right: 0;
}

.dropdown-button:not(.btn-reset) {
  align-items: center;
  background-color: #fff;
  border: 1px solid #686e74;
  border-radius: 0.8rem;
  color: #686e74;
  display: flex;
  font-family: font-regular, sans-serif;
  font-size: 1.6rem;
  min-height: 4.8rem;
  text-align: left;
  line-height: 1.4;
  min-width: 12.0rem;
  outline: none;
  position: relative;
  text-transform: inherit;
  -webkit-user-select: none;
          user-select: none;
  width: 100%;
}

.dropdown-button[disabled] {
  background-color: #f8fafb;
  border-color: #bdc2c7 !important;
  color: #878c94;
  cursor: not-allowed;
}

.dropdown-button:hover {
  border-color: #0074b3;
  text-decoration: none;
}

.dropdown-button:not(.btn-reset):focus {
  border-color: var(--awd-select-focus, #0074b3);
}

.on-dark .dropdown-button:not(.btn-reset):focus,
.on-dark .dropdown-button:hover:focus {
  border-color: transparent;
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #0074b3 inset;
}

.on-dark .selectWrap.active .dropdown-button:not(.btn-reset) {
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #0074b3 inset;
}

.on-dark .selectWrap.active .dropdown-button.error:not(.btn-reset),
.on-dark .dropdown-button.error:not(.btn-reset):focus {
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #c70032 inset;
}

.is-tabbing .dropdown-button:focus {
  outline: 1px dotted #000;
  outline-offset: -6px;
}

.dropdown-button.error,
.dropdown-button.error:focus {
  border-color: #c70032;
}

.dropdown-link.primary-cta:hover:after {
  mask-position: 0px;
}

.dropdown-button[aria-expanded="true"] {
  border-color: #0074b3;
  z-index: 2;
}

.dropdown-link[aria-expanded="true"] {
  border-color: var(--a-default-color, #0074b3);
  z-index: 2;
}

.on-dark .dropdown-button[aria-expanded="true"] {
  border-color: #fff;
}

.awd-select.active + .select-skin:after,
.dropdown-button[aria-expanded="true"]:after,
.dropdown-link[aria-expanded="true"]:after {
  transform: rotate(-90deg);
}

.option-selected {
  color: #1d2329;
}

.labelText {
  line-height: normal;
  overflow: hidden;
  padding-left: 1.6rem;
  padding-right: 4.3rem;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.labelText .labelText-hidden svg,
.option-list-item[aria-selected="false"] .labelText-hidden svg {
  display: none !important;
}

.optionWrapper {
  background-color: #fff;
  border: none;
  border-radius: 0.8rem;
  border-top: none;
  color: #1d2329;
  max-height: 0px;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 2;
  transition: margin-top .25s linear, opacity .25s linear;
}

.optionWrapper.open {
  border: 1px solid #dcdfe3;
  height: auto;
  max-height: 24.5rem;
  opacity: 1;
  margin-top: 4px;
  transition: margin-top .25s linear, opacity .25s linear;
}

.optionWrapperTop {
  top: calc(100% - 29.4rem);
}

.optionWrapperTop.open {
  margin-top: -4px;
  transition: margin-top .25s linear, opacity .25s linear;
}

.isMobile .optionWrapper.open {
  max-height: 26.1rem;
}

.isMobile .optionWrapperTop {
  top: calc(100% - 31.4rem);
}

.option-list {
  border-radius: inherit;
  margin-top: 0px;
  max-height: 24.2rem;
  overflow-y: auto;
  transition: max-height .2s linear 0s;
}

.option-list.scrollsnap {
  scroll-snap-type: y proximity;
}

.isMobile .option-list {
  max-height: 26.1rem;
}

.optgroup-wrapper {
  font-family: font-bold, sans-serif;
  font-size: 1.4rem;
  padding: 6px 0 0 0;
  text-indent: 1.6rem;
}

.optgroup {
  margin-top: .6rem;
}

.option-list-item {
  align-items: center;
  background-color: inherit;
  cursor: pointer;
  display: block;
  font-family: font-regular, sans-serif;
  font-size: 1.4rem;
  line-height: 4rem;
  min-height: 4rem;
  overflow: hidden;
  padding-right: 2.4rem;
  padding-left: 1.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  scroll-snap-align: start;
}

.option-list-item:focus {
  outline: none;
}

.option-list-item:not(.no-hover):not(.disabled):focus,
.option-list-item.has-focus:not(.no-hover):not(.disabled),
.option-list-item[aria-selected="true"]:not(.no-hover):not(.disabled) {
  background-color: var(--option-list-item-focus, #f8fafb);
}

.option-list-item:not(.no-hover):not(.disabled):hover {
  color: var(--option-list-item-hover, #0074b3);
  background-color: #ebf4f9;
}

.option-list-item.no-hover:hover {
  cursor: default;
}

.option-list-item.disabled:not(.no-hover) {
  color: #686e74;
  -webkit-user-select: none;
          user-select: none;
}

.is-tabbing .option-list-item:focus {
  outline: 1px dotted #000;
  outline-offset: -6px;
}

.option-list-item a {
  color: #1d2329;
  text-decoration: none;
}

.option-list-item a.primary-cta,
.option-list-item a:hover {
  color: #0074b3;
}

.option-list-item a.primary-cta:after {
  background-color: #0074b3;
}

.option-list-item:hover a {
  color: #0074b3;
  text-decoration: none;
}

.selectWrap.error .dropdown-button {
  border-color: var(--color-urgent, #c70032);
  color: #1d2329;
}

fieldset.error legend span {
  align-items: center;
  display: flex;
}

fieldset.error legend span:after,
.formfield-label.error:after,
.radio.error input ~ .rad-chk-txt:after,
.checkbox.error input ~ .rad-chk-txt:after,
.checkbox-link .checkbox.error + a:after {
  display: inline-block;
  border-radius: 100%;
  content: "";
  height: 4px;
  margin: 3px 8px;
  width: 4px;
}

.checkbox-link .checkbox.error input ~ .rad-chk-txt:after {
  display: none;
}

fieldset legend span:after,
.formfield-label:after {
  content: "";
  opacity: 0;
}

fieldset.error legend span:after,
.formfield-label.error:after {
  background-color: #c70032;
  opacity: 1;
  transition: opacity .3s linear .3s;
}

.radio.error input ~ .rad-chk-txt:after,
.checkbox.error input ~ .rad-chk-txt:after,
.checkbox-link .checkbox.error + a:after {
  background-color: #c70032;
}

.radio.error input + .radio-skin,
.radio.error input:hover + .radio-skin {
  border-color: #c70032;
}

.radio.error input:checked + .radio-skin:after {
  background-color: var(--color-urgent, #c70032);
  box-shadow: 0 0 0 3px var(--rad-chk-checked-fill, #fff) inset;
}

.radio.error input:hover:checked:not([disabled]) + .radio-skin {
  border-color: var(--color-urgent, #c70032);
}

.checkbox.error input + .checkbox-skin,
.checkbox.error input:hover + .checkbox-skin {
  border: 1px solid #686e74;
}

.checkbox.error input:checked + .checkbox-skin,
.checkbox.error input:hover:checked + .checkbox-skin {
  background-color: #c70032;
  border-color: #c70032;
}

.checkbox.error input:disabled:checked + .checkbox-skin:after,
.checkbox.error input:checked + .checkbox-skin:after {
  background-color: #fff;
}

.checkbox.error input:indeterminate + .checkbox-skin:after {
  background-color: var(--color-urgent, #c70032);
}

fieldset.error .radio.error input ~ .rad-chk-txt:after,
fieldset.error .checkbox.error input ~ .rad-chk-txt:after,
fieldset.error .checkbox-link .checkbox.error + a:after {
  display: none;
}

fieldset.error .formfield-msg:not(:empty),
.error ~ .formfield-msg:not(:empty),
.focus ~ .formfield-msg:not(:empty),
:focus ~ .formfield-msg:not(:empty) {
  color: #686e74;
  min-height: 2.0rem;
  max-height: 7.0rem;
  opacity: 1;
  padding-top: 4px;
  transition: padding-top .1s linear 0s, max-height .3s linear 0s, min-height .3s linear 0s, opacity .3s linear .3s, color .3s linear 0s;
}

.error ~ .formfield-msg:not(:empty),
fieldset.error .formfield-msg:not(:empty),
[aria-invalid] ~ .formfield-msg:not(:empty),
[aria-invalid]:focus ~ .formfield-msg:not(:empty) {
  color: var(--color-urgent, #c70032);
}

textarea[aria-invalid]:is(:hover, :focus),
.textfield[aria-invalid],
.textfield[aria-invalid]:is(:hover, :focus) {
  border-color: #c70032;
}

@media (min-width: 768px) {
  .panel-height-short .hero-panel-image > img {
    max-height: 268px;
  }
  .panel-height-base .hero-panel-image > img {
    max-height: 468px;
  }
  .panel-height-tall .hero-panel-image > img {
    max-height: 768px;
  }
}

@media (min-width: 1025px) {
  .panel-height-short {
    min-height: 300px;
  }
  .panel-height-base {
    min-height: 500px;
  }
  .panel-height-tall {
    min-height: 800px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .panel-height-short {
    min-height: 300px;
  }
  .panel-height-base,
  .panel-height-tall {
    min-height: 450px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .hero-panel-base {
    min-height: 100vh;
  }
  .hero-panel-content {
    display: flex;
  }
  .hero-panel-content .grid-col-12-sm {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .bg-art,
  .hero-bg,
  .bg-art > *,
  .hero-bg > * {
    height: 60vw;
  }
  .hero-panel-content > div:first-child {
    height: 60vw;
  }
  .hero-panel-content > div:first-child:not(:empty) {
    background-color: transparent;
    height: 60vw;
  }
  .bg-art.height-auto,
  .hero-bg.height-auto,
  .bg-art.height-auto > *,
  .hero-bg.height-auto > * {
    height: auto;
  }
  .bg-art.height-auto + .container,
  .hero-bg.height-auto + .container {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hero-panel-image > img {
    max-height: 100%;
  }
}

.bgcolor-fix {
  background-clip: content-box;
  padding: 1px;
}

.hr-rule {
  display: flex;
  align-items: center;
  color: #bdc2c7;
}

.hr-rule:before,
.hr-rule:after {
  content: "";
  background: currentColor;
  height: 1px;
  width: 100%;
  display: flex;
  flex: 10;
}

hr {
  border: none;
  background: #bdc2c7;
  color: #1d2329;
}

.hr-rule hr {
  background: none;
}

hr:not([aria-label]) {
  height: 1px;
}

hr[aria-label]:after {
  content: attr(aria-label);
  padding-left: 8px;
  padding-right: 8px;
}

[role="link"] {
  cursor: pointer;
}

.is-tabbing [role="link"]:not(.btn-primary):not(.btn-secondary):not([class*="tabs"]):focus {
  outline: 1px dotted #000;
  outline-offset: -1px;
}

.rte-styles a.link-standalone {
  font-weight: bold;
  text-decoration: none;
}

.rte-styles a.currentColor {
  color: currentColor;
}

.rte-styles a,
.rte-styles a:is(.link-standalone, .currentColor):hover {
  color: #0074b3;
  text-decoration: underline;
}

.rte-styles .type-legal + a {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #454b52;
}

.link-text,
.link-text2 {
  color: #1d2329;
}

.link-text3,
[class*="link-text"]:is(:hover, :focus) {
  color: #0074b3;
}

.link-text,
.link-text3,
.link-text:hover,
.link-text3:hover {
  text-decoration: underline;
}

.link-text2:hover {
  text-decoration: none;
}

[class*="link-text"].on-dark,
.color-white [class*="link-text"] {
  color: currentColor;
  text-decoration: underline;
}

[class*="link-text"].on-dark,
.color-white [class*="link-text"] {
  color: currentColor;
  outline-color: #ffffff;
  text-decoration: underline !important;
}

[class*="link-text"].solo:not(.font-regular) {
  font-family: font-bold, sans-serif;
}

[class*="link-text"].solo:not(.type-xs):not(.rte-bullets-type-xs):not(.type-sm):not(.rte-bullets-type-sm):not(.type-base):not(.rte-bullets-type-base) {
  font-size: 1.5rem;
}

[class*="link-text"].solo:not(.on-dark) {
  text-decoration: none;
}

[class*="link-text"].solo:not(.on-dark):hover {
  text-decoration: underline;
}

a.nounderline:hover {
  text-decoration: none;
}

a:hover .icon-link-arrow:not(.icon-link-arrow-sm):after {
  animation: arrowAnimationLg 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s;
}

a:hover .icon-link-arrow-sm:after {
  animation: arrowAnimationSm 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s;
}

.link-icon {
  align-items: center;
  color: #0074b3;
  display: inline-flex;
  text-decoration: none;
}

.link-icon svg {
  position: relative;
  height: 20px;
  flex-shrink: 0;
}

.link-icon.type-sm svg, .link-icon.rte-bullets-type-sm svg,
.link-icon.type-xs svg,
.link-icon.rte-bullets-type-xs svg {
  height: 16px;
}

.link-icon svg:first-child {
  margin-right: 6px;
}

.link-icon svg:last-child {
  margin-left: 6px;
}

.link-icon[class*="hover"]:hover {
  text-decoration: none;
}

[class*="link-icon"][class*="hover"] span {
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

[class*="link-icon"].hover-dashed:hover span {
  border-bottom-style: dashed !important;
}

[class*="link-icon"][class*="hover"]:hover span {
  border-bottom-color: #0074b3;
}

.link-icon.hover[class*="color"]:hover span {
  border-bottom-color: currentColor;
}

.link-icon.disabled {
  color: #878c94 !important;
}

.link-icon.disabled[class*="hover"]:hover span {
  border-bottom-color: transparent;
}

.color-white [class*="link-icon"],
.color-white [class*="link-icon"]:focus {
  color: #fff;
}

.color-white [class*="link-icon"][class*="hover"] span,
[class*="link-icon"][class*="hover"].on-dark span {
  border-color: white;
}

.rte-styles span.primary-cta {
  display: none;
}

.primary-cta,
.rte-styles span.primary-cta + a,
.link-utility-primary,
.link-utility-secondary {
  align-items: center;
  display: inline-flex;
  color: #0074b3;
  font-family: font-bold, sans-serif;
  text-decoration: none;
  line-height: 1;
}

.link-utility-primary.solo,
.link-utility-secondary.solo {
  font-size: 1.5rem;
}

.link-utility-primary:not(.solo),
.link-utility-secondary:not(.solo) {
  font-family: font-regular, sans-serif;
}

.primary-cta:hover,
.rte-styles span.primary-cta + a:hover,
.link-utility-primary:not(.solo):hover,
.link-utility-secondary:not(.solo):hover {
  text-decoration: none;
}

.primary-cta:after,
.rte-styles span.primary-cta + a:after,
.link-utility-primary:after,
.link-utility-secondary:after {
  mask-position: -1px;
  mask-repeat: no-repeat;
  mask-size: 1em;
  border: none;
  content: "";
  height: 1em;
  margin: 0 0 0 3px;
  min-height: 16px;
  min-width: 16px;
  transition: mask-position .1s linear 0s;
  width: 1em;
}

.primary-cta:hover:after,
.rte-styles span.primary-cta + a:hover:after,
.link-utility-primary:hover:after,
.link-utility-secondary:hover:after {
  mask-position: 5px;
  transition: mask-position .1s linear 0s;
}

.link-utility-secondary:not(.on-dark) {
  color: #1d2329;
}

.link-utility-primary:not(.on-dark),
[class*="link-utility-"]:not(.on-dark):is(:hover, :focus) {
  color: #0074b3;
}

.primary-cta-list,
.link-utility-list {
  align-items: inherit;
  flex-direction: column;
  width: 100%;
}

.primary-cta-list li,
.link-utility-list li {
  display: flex;
  line-height: 1.4;
  padding: 0;
}

.primary-cta-list .primary-cta,
.link-utility-list [class*="link-utility"] {
  padding: 8px 0;
  width: 100%;
}

.primary-cta-list .primary-cta {
  font-family: font-regular;
}

.color-white .primary-cta,
.color-white .primary-cta:hover,
.primary-cta.on-dark,
.primary-cta.on-dark:hover,
.primary-cta.color-white,
[class*="link-utility-"].on-dark,
[class*="link-utility-"].on-dark:hover {
  color: #fff;
}

.color-white .primary-cta:focus,
.primary-cta.on-dark:focus,
.primary-cta.color-white:focus,
[class*="link-utility-"].on-dark:focus {
  color: #fff;
  outline-color: #fff;
}

.link-utility-list [class*="link-utility"]:hover,
a.no-hover:hover {
  text-decoration: none;
}

/* DEPRECATED */
[class*="link-tertiary-"] {
  align-items: center;
  color: #1d2329;
  display: inline-flex;
  font-family: font-bold, sans-serif;
  text-decoration: none;
}

[class*="link-tertiary-"]:hover {
  color: #0074b3;
  text-decoration: none;
}

[class*="link-tertiary-"]:focus {
  outline-color: #000;
  outline-offset: 6px;
}

.link-tertiary-large {
  font-size: 1.4rem;
}

.link-tertiary-small {
  font-size: 1.2rem;
  letter-spacing: 0.02rem;
}

.link-tertiary-large:after,
.link-tertiary-small:after {
  mask-position: 0px;
  mask-repeat: no-repeat;
  mask-size: 26px 10px;
  border: none;
  content: "";
  height: 10px;
  margin: 0 0 0 16px;
  min-width: 26px;
  width: auto;
}

.link-tertiary-small:after {
  mask-position: -5px;
  margin: 0 0 0 8px;
  min-width: 21px;
}

[class*="link-tertiary-"]:is(:hover, :focus):after {
  animation: arrowAnimationLg 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

[class*="link-tertiary-"].color-cobalt:not(.on-dark):after {
  animation: none;
}

.link-tertiary-small:not(.on-dark):is(:hover, :focus):after {
  animation: arrowAnimationSm 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.link-tertiary-large.row-reverse:after {
  margin: 0 16px 0 0;
}

.link-tertiary-small.row-reverse:after {
  margin: 0 8px 0 0;
}

[class*="link-tertiary-"].on-dark {
  color: #fff;
}

[class*="link-tertiary-"].on-dark:focus {
  outline-color: #fff;
}

[class*="link-tertiary-"].on-dark:is(:hover, :focus):after {
  animation: arrowAnimationLg 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.link-tertiary-small.on-dark:is(:hover, :focus):after {
  animation: arrowAnimationSm 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}

.breadcrumbs:not([class*="pad-l"]) {
  margin-left: -24px;
  padding-left: 24px;
  margin-right: -24px;
}

.breadcrumbs ol {
  list-style-type: none;
  padding-left: 0;
}

.breadcrumbs li {
  align-items: center;
  display: flex;
  margin-left: 0;
  padding-left: 0;
  line-height: 1;
}

.breadcrumbs li:after {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 4px;
}

.breadcrumbs [aria-current] > :is(span, h1) {
  font-size: 1.4rem;
  font-family: font-bold, sans-serif;
}

@keyframes arrowAnimationLg /* DEPRECATED */ {
  0% {
    mask-position: 0px;
  }
  50% {
    mask-position: 36px;
  }
  50.01% {
    mask-position: -36px;
  }
  100% {
    mask-position: 0px;
  }
}

@keyframes arrowAnimationSm /* DEPRECATED */ {
  0% {
    mask-position: -5px;
  }
  50% {
    mask-position: 31px;
  }
  50.01% {
    mask-position: -31px;
  }
  100% {
    mask-position: -5px;
  }
}

.list ul,
.list ol,
.list li {
  padding: revert;
  list-style: revert;
}

.list li:before {
  content: none;
}

.list ul {
  margin-left: -8px;
}

.list ul:not(:first-child),
.list ul li:not(:first-child),
.list ul ul,
.list ul ol,
.list ul ol li:not(:first-child),
.list ol:not(:first-child),
.list ol ul,
.list ol li:not(:first-child),
.list ol ol {
  margin-top: 8px;
}

.list ol ol {
  list-style-type: lower-alpha;
}

/* BASE */
.list.type-base ul, .list.rte-bullets-type-base ul {
  margin-left: -4px;
}

.isSafari .list.type-base ul li, .isSafari .list.rte-bullets-type-base ul li,
.isIOS .list.type-base ul li,
.isIOS .list.rte-bullets-type-base ul li {
  padding-left: 2px;
}

.list.type-base ul ul, .list.rte-bullets-type-base ul ul {
  margin-left: -6px;
}

.isSafari .list.type-base ul ul, .isSafari .list.rte-bullets-type-base ul ul,
.isIOS .list.type-base ul ul,
.isIOS .list.rte-bullets-type-base ul ul {
  margin-left: -6px;
}

.isSafari .list.type-base ul ul li, .isSafari .list.rte-bullets-type-base ul ul li,
.isIOS .list.type-base ul ul li,
.isIOS .list.rte-bullets-type-base ul ul li {
  padding-left: 3px;
}

.list.type-base ul ol, .list.rte-bullets-type-base ul ol {
  margin-left: -10px;
}

.isSafari .list.type-base ul ol, .isSafari .list.rte-bullets-type-base ul ol,
.isIOS .list.type-base ul ol,
.isIOS .list.rte-bullets-type-base ul ol {
  margin-left: -4px;
}

.list.type-base ul ol li, .list.rte-bullets-type-base ul ol li {
  padding-left: 4px;
}

.isSafari .list.type-base ul ol li, .isSafari .list.rte-bullets-type-base ul ol li,
.isIOS .list.type-base ul ol li,
.isIOS .list.rte-bullets-type-base ul ol li {
  padding-left: 1px;
}

.list.type-base ol, .list.rte-bullets-type-base ol {
  margin-left: -6px;
}

.isSafari .list.type-base ol, .isSafari .list.rte-bullets-type-base ol,
.isIOS .list.type-base ol,
.isIOS .list.rte-bullets-type-base ol {
  margin-left: -2px;
}

.list.type-base ol li, .list.rte-bullets-type-base ol li {
  padding-left: 2px;
}

.isSafari .list.type-base ol li, .isSafari .list.rte-bullets-type-base ol li,
.isIOS .list.type-base ol li,
.isIOS .list.rte-bullets-type-base ol li {
  padding-left: 0;
}

.list.type-base ol ol, .list.rte-bullets-type-base ol ol {
  margin-left: -9px;
  list-style-type: lower-alpha;
}

.isSafari .list.type-base ol ol, .isSafari .list.rte-bullets-type-base ol ol {
  margin-left: -3px;
}

.isIOS .list.type-base ol ol, .isIOS .list.rte-bullets-type-base ol ol {
  margin-left: -4px;
}

.list.type-base ol ol li, .list.rte-bullets-type-base ol ol li {
  padding-left: 3px;
}

.isIOS .list.type-base ol ol li, .isIOS .list.rte-bullets-type-base ol ol li {
  padding-left: 1px;
}

.list.type-base ol ul, .list.rte-bullets-type-base ol ul {
  margin-left: -6px;
}

.isSafari .list.type-base ol ul li, .isSafari .list.rte-bullets-type-base ol ul li,
.isIOS .list.type-base ol ul li,
.isIOS .list.rte-bullets-type-base ol ul li {
  padding-left: 3px;
}

.list.type-base ol ul li, .list.rte-bullets-type-base ol ul li {
  padding-left: 0;
}

/* SM */
.list.type-sm ul, .list.rte-bullets-type-sm ul {
  margin-left: -4px;
}

.list.type-sm ol, .list.rte-bullets-type-sm ol {
  margin-left: -8px;
}

.isSafari .list.type-sm ol, .isSafari .list.rte-bullets-type-sm ol,
.isIOS .list.type-sm ol,
.isIOS .list.rte-bullets-type-sm ol {
  margin-left: -4px;
}

.list.type-sm ol li, .list.rte-bullets-type-sm ol li {
  padding-left: 4px;
}

.isSafari .list.type-sm ol li, .isSafari .list.rte-bullets-type-sm ol li,
.isIOS .list.type-sm ol li,
.isIOS .list.rte-bullets-type-sm ol li {
  padding-left: 0px;
}

.list.type-sm ul ul, .list.rte-bullets-type-sm ul ul,
.list.type-sm ol ul,
.list.rte-bullets-type-sm ol ul {
  margin-left: -8px;
}

.list.type-sm ul ol, .list.rte-bullets-type-sm ul ol,
.list.type-sm ol ol,
.list.rte-bullets-type-sm ol ol {
  margin-left: -12px;
}

.isIOS .list.type-sm ul ol, .isIOS .list.rte-bullets-type-sm ul ol,
.isSafari .list.type-sm ul ol,
.isSafari .list.rte-bullets-type-sm ul ol,
.isSafari .list.type-sm ol ol,
.isSafari .list.rte-bullets-type-sm ol ol,
.isIOS .list.type-sm ol ol,
.isIOS .list.rte-bullets-type-sm ol ol {
  margin-left: -8px;
}

.list.type-sm ul ol li, .list.rte-bullets-type-sm ul ol li {
  padding-left: 4px;
}

.isSafari .list.type-sm ul ol li, .isSafari .list.rte-bullets-type-sm ul ol li,
.isIOS .list.type-sm ul ol li,
.isIOS .list.rte-bullets-type-sm ul ol li {
  padding-left: 0px;
}

.list.type-sm ol ul li, .list.rte-bullets-type-sm ol ul li {
  padding-left: 0;
}

/* XS */
.list.type-xs ul, .list.rte-bullets-type-xs ul {
  margin-left: -4px;
}

.list.type-xs ol, .list.rte-bullets-type-xs ol {
  margin-left: -8px;
}

.isSafari .list.type-xs ol, .isSafari .list.rte-bullets-type-xs ol,
.isIOS .list.type-xs ol,
.isIOS .list.rte-bullets-type-xs ol {
  margin-left: -4px;
}

.list.type-xs ol li, .list.rte-bullets-type-xs ol li {
  padding-left: 4px;
}

.isSafari .list.type-xs ol li, .isSafari .list.rte-bullets-type-xs ol li,
.isIOS .list.type-xs ol li,
.isIOS .list.rte-bullets-type-xs ol li {
  padding-left: 0;
}

.list.type-xs ul ol, .list.rte-bullets-type-xs ul ol,
.list.type-xs ol ol,
.list.rte-bullets-type-xs ol ol {
  margin-left: -12px;
}

.isSafari .list.type-xs ul ol, .isSafari .list.rte-bullets-type-xs ul ol,
.isIOS .list.type-xs ul ol,
.isIOS .list.rte-bullets-type-xs ul ol,
.isSafari .list.type-xs ol ol,
.isSafari .list.rte-bullets-type-xs ol ol,
.isIOS .list.type-xs ol ol,
.isIOS .list.rte-bullets-type-xs ol ol {
  margin-left: -10px;
}

.list.type-xs ul ul, .list.rte-bullets-type-xs ul ul,
.list.type-xs ol ul,
.list.rte-bullets-type-xs ol ul {
  margin-left: -8px;
}

.list.type-xs ul ol li, .list.rte-bullets-type-xs ul ol li {
  padding-left: 4px;
}

.list.type-xs ol ul li, .list.rte-bullets-type-xs ol ul li {
  padding-left: 0;
}

.isSafari .list.type-xs ul ol li, .isSafari .list.rte-bullets-type-xs ul ol li,
.isIOS .list.type-xs ul ol li,
.isIOS .list.rte-bullets-type-xs ul ol li,
.isSafari .list.type-xs ol ol li,
.isSafari .list.rte-bullets-type-xs ol ol li,
.isIOS .list.type-xs ol ol li,
.isIOS .list.rte-bullets-type-xs ol ol li {
  padding-left: 2px;
}

.list.type-base.no-indent > ul, .list.no-indent.rte-bullets-type-base > ul,
.list.type-base.no-indent > ol,
.list.no-indent.rte-bullets-type-base > ol {
  margin-left: -20px;
}

.list.type-sm.no-indent > ul, .list.no-indent.rte-bullets-type-sm > ul,
.list.type-sm.no-indent > ol,
.list.no-indent.rte-bullets-type-sm > ol {
  margin-left: -22px;
}

.list.type-xs.no-indent > ul, .list.no-indent.rte-bullets-type-xs > ul,
.list.type-xs.no-indent > ol,
.list.no-indent.rte-bullets-type-xs > ol {
  margin-left: -24px;
}

/* SVG Bullets */
.list-svg li,
.list-svg[class*="rte-checkmark"] li {
  align-items: baseline;
  display: flex;
  position: relative;
  text-align: left;
}

.list-svg li:not(:last-child) {
  margin-bottom: 8px;
}

.list-svg svg,
.list-svg[class*="rte-checkmark"] li:before {
  display: flex;
  flex-shrink: 0;
  margin-right: 8px;
  position: relative;
}

.list-svg svg:not([class*="color-"]) {
  color: currentColor;
}

.list-svg.type-base svg, .list-svg.rte-bullets-type-base svg {
  height: 24px;
  width: 24px;
}

.list-svg.type-sm svg, .list-svg.rte-bullets-type-sm svg {
  height: 20px;
  width: 24px;
}

.list-svg.type-xs svg, .list-svg.rte-bullets-type-xs svg {
  height: 16px;
  width: 16px;
}

.list-svg.type-base svg, .list-svg.rte-bullets-type-base svg {
  top: 5px;
}

.list-svg.type-sm svg, .list-svg.rte-bullets-type-sm svg {
  top: 4px;
}

.list-svg.type-xs svg, .list-svg.rte-bullets-type-xs svg {
  top: 4px;
}

.list-svg[class*="rte-checkmark"] li:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M11.33 26.75l-10-10 1.42-1.42 8.62 8.63 18-18 1.42 1.41z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  content: "";
}

.list-svg.type-base[class*="rte-checkmark"] li:before, .list-svg.rte-bullets-type-base[class*="rte-checkmark"] li:before {
  height: 24px;
  width: 24px;
  top: 5px;
}

.list-svg.type-sm[class*="rte-checkmark"] li:before, .list-svg.rte-bullets-type-sm[class*="rte-checkmark"] li:before {
  height: 20px;
  width: 20px;
  top: 4px;
}

.list-svg.type-xs[class*="rte-checkmark"] li:before, .list-svg.rte-bullets-type-xs[class*="rte-checkmark"] li:before {
  height: 16px;
  width: 16px;
  top: 4px;
}

.list-svg.rte-checkmark-default li:before {
  background-color: #454b52;
}

.list-svg.rte-checkmark-att-blue li:before {
  background-color: #009fdb;
}

.list-svg.rte-checkmark-cobalt li:before,
.list-svg.rte-checkmark-func-blue li:before {
  background-color: #009fdb;
}

.list-svg.rte-checkmark-green li:before {
  background-color: #2d7e24;
}

.list.custom-number.type-base.no-indent ol, .list.custom-number.no-indent.rte-bullets-type-base ol {
  list-style: none;
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: -40px;
}

.list.custom-number.type-base.no-indent ol > li, .list.custom-number.no-indent.rte-bullets-type-base ol > li {
  counter-increment: item;
  position: relative;
  margin: 2px 0;
  padding-left: 40px;
}

.list.custom-number.type-base.no-indent ol > li:before, .list.custom-number.no-indent.rte-bullets-type-base ol > li:before {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 100%;
  color: currentColor;
  content: counter(item);
  font-family: font-bold;
  display: flex;
  font-size: 1.38rem;
  flex-shrink: 0;
  height: 2.6rem;
  justify-content: center;
  line-height: 0;
  width: 2.6rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) and (orientation: portrait) {
  .list.custom-number.type-base.no-indent ol > li, .list.custom-number.no-indent.rte-bullets-type-base ol > li {
    padding-left: 32px;
  }
  .list.custom-number.type-base.no-indent ol > li:before, .list.custom-number.no-indent.rte-bullets-type-base ol > li:before {
    top: -2px;
  }
}

.microbanner {
  max-width: 1176px;
  width: 100%;
}

.microbanner-pad {
  max-width: 1068px;
  padding-left: 12px;
  padding-right: 12px;
}

.microbanner-pad-r {
  padding-right: 12px;
}

@media (max-width: 767px) {
  .microbanner-pad,
  .microbanner-pad-r {
    padding-left: 0;
    padding-right: 20px;
  }
}

.river-card > *,
.microbanner > * {
  color: #1d2329;
}

.river-card .type-legal {
  color: #1d2329;
}

.price {
  color: var(--price-color, #1d2329);
}

.price-credit {
  color: var(--price-credit-color, #2d7e24);
}

.price-past-due {
  color: var(--price-past-due-color, #c70032);
}

.price .strikethrough {
  color: var(--price-strikethrough, #454b52);
}

.price-free-desc {
  color: var(--price-free-desc, #2d7e24);
}

.star-rating {
  color: #1d2329;
}

.star-rating-stars svg {
  margin-right: 1px;
  width: 16px;
  height: 16px;
}

.star-rating-stars svg:last-child {
  margin-right: 0;
}

.star-rating-divider {
  height: 12px;
  width: 1px;
}

@media (max-width: 767px) {
  .star-rating-stars svg {
    width: 12px;
    height: 12px;
  }
  .star-rating-divider {
    height: 11px;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.2 !important;
  border-radius: 2em;
  padding: 4px 10px;
  min-width: 48px;
  transition: background-color .2s linear, border-color .2s linear, color .2s linear;
  -webkit-user-select: none;
          user-select: none;
  position: relative;
}

.tag [class*="icon-close"] {
  height: 22px;
  width: 22px;
}

.tag:has(button .icon-close) {
  padding: 4px 32px 4px 10px;
}

.tag[aria-checked]:not([aria-disabled="true"]) {
  background-color: #fff;
  border: 1px solid currentColor;
}

.tag[aria-checked]:not([aria-disabled="true"]):hover {
  background-color: var(--tag-bgcolor-hover, #fff);
  border-color: #0074b3;
  color: #0074b3;
}

.tag:is([aria-checked="true"], :has(button .icon-close)):not([aria-disabled="true"]) {
  background-color: #0074b3;
  border-color: #0074b3;
  color: #fff;
}

.tag:is([aria-checked="true"], :has(button .icon-close)):not([aria-disabled="true"]):hover {
  background-color: #0057b8;
  border-color: #0057b8;
  color: #fff;
}

.tag:is([aria-disabled="true"]) {
  border: 1px solid #878c94;
  color: #878c94;
}

.is-tabbing .tag:focus {
  outline: 1px dashed var(--is-tabbing-outline-default, #000) !important;
  outline-offset: 2px !important;
}

.timer {
  color: #1d2329 !important;
}

.timer .svg-accent.timer-dial {
  color: #009fdb;
}

@media (min-width: 1025px) {
  .timer-width-lg {
    width: 64px;
  }
  .timer-width-sm {
    width: 56px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .timer-width-lg {
    width: 48px;
  }
  .timer-width-sm {
    width: 44px;
  }
}

@media (max-width: 767px) {
  .timer-width-lg {
    width: 40px;
  }
  .timer-width-sm {
    width: 40px;
  }
}

@media (max-width: 320px) {
  .row > [class*="grid-"] .timer {
    transform: scale(0.86075);
    transform-origin: left;
  }
}

.timer-dial {
  animation: timer-dial 5s linear infinite;
  transform-origin: 47.9px 53px;
  position: absolute;
}

@keyframes timer-dial {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.toggle-checkbox:not(:checked) ~ .toggle-msg-on,
.toggle-checkbox:checked ~ .toggle-msg-off {
  display: none;
}

.toggle-msg-on,
.toggle-msg-off {
  color: #1d2329;
  display: flex;
  line-height: normal;
  min-width: 2.8rem;
}

.toggle-switch {
  align-items: center;
  background-color: currentColor;
  border: 1px solid transparent;
  color: #0074b3;
  height: 21px;
  width: 34px;
}

.toggle-checkbox:not(:checked):not(:disabled) ~ .toggle-switch {
  background-color: var(--toggle-switch-off, #878c94);
}

.toggle-handle {
  background-color: #fff;
  height: 17px;
  margin-left: 1px;
  transition: transform 0.2s ease-in;
  width: 17px;
}

.toggle-checkbox:checked ~ .toggle-switch .toggle-handle {
  background-color: #fff;
  transform: translate3d(13px, 0, 0);
  transition: transform 0.2s ease-in;
}

.toggle-checkbox[disabled] {
  cursor: not-allowed;
}

.toggle-checkbox[disabled] ~ .toggle-switch {
  background-color: #dcdfe3;
  border-color: transparent;
}

.toggle-checkbox[disabled] ~ .toggle-switch .toggle-handle {
  background-color: #fff;
  border: 1px solid transparent;
}

.toggle-checkbox[disabled] ~ .toggle-msg-on,
.toggle-checkbox[disabled] ~ .toggle-msg-off {
  color: #878c94;
}

.is-tabbing .toggle-checkbox:focus ~ .toggle-switch:after {
  content: "";
  box-shadow: 0 0 0 1px white;
  outline: 1px dotted #000;
  outline-offset: 0;
  height: calc(100% + 8px);
  width: calc(100% + 8px);
  position: absolute;
  top: -4px;
  left: -4px;
}

.pop-trigger {
  /*reserved*/
}

.tooltip-trigger {
  position: relative;
  display: inline-flex;
  vertical-align: baseline;
  top: 3px;
}

.tooltip-icon {
  cursor: pointer;
  display: inline-block;
  height: 17px;
  width: 17px;
}

.list-svg.type-xs .tooltip-icon svg, .list-svg.rte-bullets-type-xs .tooltip-icon svg {
  top: 1px;
}

.list-svg.type-base .tooltip-trigger, .list-svg.rte-bullets-type-base .tooltip-trigger {
  top: 3px;
}

.list-svg .tooltip-icon svg {
  top: 0;
  height: 17px;
  width: 17px;
}

.tooltip-icon svg .tip-mark {
  fill: var(--gray700-white, #454b52);
}

.tooltip-icon svg {
  border-radius: 100%;
}

.tooltip-icon svg .tip-fill,
.tooltip-icon svg .tip-outline {
  fill-rule: evenodd;
  stroke-width: 0;
}

.tooltip-icon svg .tip-fill {
  fill: transparent;
}

.tooltip-icon svg .tip-outline {
  fill: var(--gray700-white, #454b52);
}

.tooltip-icon.solid svg .tip-fill {
  fill: var(--gray700-white, #454b52);
}

.tooltip-icon.solid svg .tip-mark {
  fill: var(--white-gray700, #fff);
}

.tooltip-icon.color-info svg .tip-fill {
  fill: transparent;
}

.tooltip-icon.color-info svg .tip-outline,
.tooltip-icon.color-info svg .tip-mark {
  fill: #0074b3;
}

.tooltip-icon.solid.color-info .tip-outline,
.tooltip-icon.solid.color-info .tip-fill {
  fill: #0074b3;
}

.tooltip-icon.solid.color-info .tip-mark {
  fill: var(--white-gray700, #fff);
}

.theme-att-2022 .theme-dark-bg-img .tooltip-icon .tip-outline,
.theme-att-2022 .theme-dark-bg-img .tooltip-icon .tip-fill {
  fill: #fff;
}

.theme-att-2022 .theme-dark-bg-img .tooltip-icon .tip-mark {
  fill: #454b52;
}

.theme-att-2022 .theme-light-bg-img .tooltip-icon:not(.color-info) .tip-outline,
.theme-att-2022 .theme-light-bg-img .tooltip-icon:not(.color-info) .tip-fill {
  fill: #454b52;
}

.theme-att-2022 .theme-light-bg-img .tooltip-icon:not(.color-info) .tip-mark {
  fill: #fff;
}

.theme-att-2022 .theme-light-bg-img .tooltip-icon.color-info .tip-outline,
.theme-att-2022 .theme-light-bg-img .tooltip-icon.color-info .tip-fill {
  fill: #0074b3;
}

.theme-att-2022 .theme-light-bg-img .tooltip-icon.color-info .tip-mark {
  fill: #fff;
}

.tooltip-icon.on-dark svg .tip-outline,
.tooltip-icon.on-dark svg .tip-mark,
.tooltip-icon.color-info.on-dark svg .tip-outline,
.tooltip-icon.color-info.on-dark svg .tip-mark {
  fill: #fff;
}

.tooltip-icon.solid.on-dark svg .tip-outline,
.tooltip-icon.solid.on-dark svg .tip-fill {
  fill: #fff;
}

.tooltip-icon.solid.on-dark svg .tip-mark {
  fill: #454b52;
}

.tooltip-trigger:before {
  content: '';
  display: block;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.is-tabbing .tooltip-trigger:focus:before,
.is-tabbing .pop-trigger:focus:before {
  box-shadow: 0 0 0 1px #000;
  outline: 1px dotted #fff;
  outline-offset: 0;
}

.pop-wrapper,
.tooltip-wrapper {
  background-color: #fff;
  border: 1px solid #dcdfe3;
  max-width: 300px;
  width: max-content;
  position: fixed;
  left: -9999px;
  top: -9999px;
  z-index: -1;
}

.tooltip-wrapper {
  visibility: hidden;
}

[class*="tooltip-notch"],
[class*="pop-notch"] {
  background-color: #fff;
  border-radius: 2px 0 !important;
  box-shadow: 1px 1px 0 0px #dcdfe3;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 7px);
  transform: rotate(45deg);
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.05));
}

.tooltip-notch-bottom,
.pop-notch-bottom {
  box-shadow: -1px -1px 0 0 #dcdfe3;
  top: -5px;
  filter: drop-shadow(-2px -2px 1px rgba(0, 0, 0, 0.05));
}

.pop-wrapper {
  min-width: 150px;
  max-width: 400px;
  width: max-content;
}

@media (max-width: 767px) {
  .pop-wrapper.fullscreen-sm {
    overflow: hidden;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    top: 0 !important;
    left: 0 !important;
    border-radius: 0 !important;
    border: none;
  }
  .pop-wrapper.fullscreen-sm > div {
    overflow-y: auto;
  }
  .pop-wrapper.fullscreen-sm .pop-notch {
    display: none;
  }
}

@media (max-width: 448px) {
  .pop-wrapper {
    min-width: 150px;
    max-width: 300px;
  }
}

/* ********** TYPOGRAPHY *********** */
.line-h-lg,
.line-h-loose {
  line-height: 1.6 !important;
}

.line-h-md,
.line-h-normal {
  line-height: 1.4 !important;
}

.line-h-base,
.line-h-tight {
  line-height: 1.2 !important;
}

.line-h-sm,
.line-h-reset,
.line-h-reset [class*="type-"]:not([class*="line-h-"]) {
  line-height: 1 !important;
}

.line-h-xs {
  line-height: 0.8 !important;
}

.line-h-0 {
  line-height: 0 !important;
}

a.on-dark:active {
  /* DEPRECATED */
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.word-wrap {
  word-break: break-word;
}

.word-spacing3 {
  word-spacing: 3px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .text-center-md {
    text-align: center;
  }
  .text-right-md {
    text-align: right;
  }
  .text-left-md {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .text-center-sm {
    text-align: center;
  }
  .text-right-sm {
    text-align: right;
  }
  .text-left-sm {
    text-align: left;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1.6rem;
  font-weight: normal;
}

:where(p:not([class*="mar-b-"]):not(.mar-none) + p:not([class*="mar-t-"]):not(.mar-none)) {
  margin-top: 1.2rem;
}

:is([class*="gap"]) :is(p, p + p) {
  margin-top: 0;
}

small {
  font-size: 80%;
}

p,
[class*="type-"] {
  line-height: 1.4;
}

[class*="line-h-"] [class*="type-"] {
  line-height: inherit;
}

.type-0 {
  font-size: 0rem;
}

.type-10 {
  font-size: 1.0rem;
}

.type-11 {
  font-size: 1.1rem;
}

.type-12 {
  font-size: 1.2rem;
}

.type-13 {
  font-size: 1.3rem;
}

.type-14 {
  font-size: 1.4rem;
}

.type-15 {
  font-size: 1.5rem;
}

.type-16 {
  font-size: 1.6rem;
}

.type-18 {
  font-size: 1.8rem;
}

.type-20 {
  font-size: 2.0rem;
}

.type-22 {
  font-size: 2.2rem;
}

.type-24 {
  font-size: 2.4rem;
}

.type-26 {
  font-size: 2.6rem;
}

.type-32 {
  font-size: 3.2rem;
}

.type-34 {
  font-size: 3.4rem;
}

.type-42 {
  font-size: 4.2rem;
}

.type-48 {
  font-size: 4.8rem;
}

.type-60 {
  font-size: 6.0rem;
}

.type-64 {
  font-size: 6.4rem;
}

.type-md,
.type-lg {
  font-size: 2.4rem;
}

.type-base, .rte-bullets-type-base {
  font-size: 1.8rem;
}

.type-sm, .rte-bullets-type-sm {
  font-size: 1.5rem;
}

.type-xs, .rte-bullets-type-xs {
  font-size: 1.2rem;
}

.type-xxs {
  font-size: 1.1rem;
}

.type-legal {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03rem;
}

[class*="type-eyebrow-"] {
  color: #1d2329;
  display: block;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.type-eyebrow-xxxl {
  font-size: 2.8rem;
}

.type-eyebrow-xxl {
  font-size: 2.6rem;
}

.type-eyebrow-xl {
  font-size: 2.4rem;
}

.type-eyebrow-lg {
  font-size: 2rem;
}

.type-eyebrow-md {
  font-size: 1.6rem;
}

.type-eyebrow-sm {
  font-size: 1.2rem;
}

[class*="type-eyebrow-"] + [class*="heading-"] {
  margin-top: 8px;
}

.type-eyebrow-sm + .heading-sm {
  margin-top: 4px;
}

[class*="heading-"] {
  display: block;
}

[class*="heading-"],
[class*="heading-"] a {
  color: #1d2329;
  font-family: font-bold, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-indent: -.05em;
}

[class*="heading-"] a.cta-overlay:hover {
  color: #1d2329;
  text-decoration: underline;
}

.heading-xxxl {
  font-size: 6rem;
}

.heading-xxl {
  font-size: 4.8rem;
}

.heading-xl {
  font-size: 4.2rem;
}

.heading-lg {
  font-size: 3.4rem;
}

.heading-md {
  font-size: 2.6rem;
}

.heading-sm {
  font-size: 2rem;
}

.heading-xs {
  font-size: 1.6rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .type-md,
  .type-lg {
    font-size: 2rem;
  }
  .type-base, .rte-bullets-type-base {
    font-size: 1.7rem;
  }
  .type-sm, .rte-bullets-type-sm {
    font-size: 1.5rem;
  }
  .type-xs, .rte-bullets-type-xs {
    font-size: 1.2rem;
  }
  .type-xxs {
    font-size: 1rem;
  }
  .type-legal {
    font-size: 1.2rem;
  }
  .type-eyebrow-xxxl {
    font-size: 2.6rem;
  }
  .type-eyebrow-xxl {
    font-size: 2.4rem;
  }
  .type-eyebrow-xl {
    font-size: 2.2rem;
  }
  .type-eyebrow-lg {
    font-size: 1.8rem;
  }
  .type-eyebrow-md {
    font-size: 1.6rem;
  }
  .type-eyebrow-sm {
    font-size: 1.2rem;
  }
  .heading-xxxl {
    font-size: 4.2rem;
  }
  .heading-xxl {
    font-size: 3.8rem;
  }
  .heading-xl {
    font-size: 3.4rem;
  }
  .heading-lg {
    font-size: 2.8rem;
  }
  .heading-md {
    font-size: 2.2rem;
  }
  .heading-sm {
    font-size: 1.8rem;
  }
  .heading-xs {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .type-md,
  .type-lg {
    font-size: 1.8rem;
  }
  .type-base, .rte-bullets-type-base {
    font-size: 1.6rem;
  }
  .type-sm, .rte-bullets-type-sm {
    font-size: 1.4rem;
  }
  .type-xs, .rte-bullets-type-xs {
    font-size: 1.1rem;
  }
  .type-xxs {
    font-size: 1rem;
  }
  .type-legal {
    font-size: 1.1rem;
  }
  .type-eyebrow-xxxl {
    font-size: 2.4rem;
  }
  .type-eyebrow-xxl {
    font-size: 2.2rem;
  }
  .type-eyebrow-xl {
    font-size: 2rem;
  }
  .type-eyebrow-lg {
    font-size: 1.6rem;
  }
  .type-eyebrow-md {
    font-size: 1.4rem;
  }
  .type-eyebrow-sm {
    font-size: 1.1rem;
  }
  .heading-xxxl {
    font-size: 3.6rem;
  }
  .heading-xxl {
    font-size: 3.2rem;
  }
  .heading-xl {
    font-size: 2.8rem;
  }
  .heading-lg {
    font-size: 2.4rem;
  }
  .heading-md {
    font-size: 2rem;
  }
  .heading-sm {
    font-size: 1.6rem;
  }
  .heading-xs {
    font-size: 1.2rem;
  }
}

.type-legal {
  color: #454b52;
}

.type-legal a,
.type-legal button.btn-reset {
  color: currentColor;
  text-decoration: underline;
}

.type-legal button.btn-reset {
  font-size: inherit;
  vertical-align: baseline;
}

[class*="color-"] [class*="heading-"]:not([class*="color-"]),
[class*="color-"] [class*="type-eyebrow-"]:not([class*="color-"]),
[class*="color-"] .type-legal:not([class*="color-"]),
[class*="color-"] .type-legal:not([class*="color-"]) a {
  color: currentColor;
}

sup, sub {
  display: inline-block;
  font-style: inherit;
  line-height: 1;
  position: relative;
  top: -.75em;
  vertical-align: baseline;
}

sup.r {
  font-size: .75em;
  top: -.2em;
}

sup, sub {
  font-size: .5em;
}

sub {
  top: revert;
  bottom: -0.05em;
}

.type-sm sup.r, .rte-bullets-type-sm sup.r {
  top: -.25em;
}

[class*="heading-"] sup,
[class*="heading-"] sub {
  font-size: .37em;
  font-family: font-bold;
  letter-spacing: -0.06em;
  top: -2.2ch;
  padding-left: .2ch;
}

[class*="heading-"] sup.r {
  font-size: .55em;
  top: -.625em;
}

[class*="heading-"] sub {
  top: revert;
  bottom: 0em;
}

.underline {
  text-decoration: underline !important;
}

.no-underline {
  text-decoration: none !important;
}

.css-bold {
  font-weight: bold !important;
}

.css-reset.theme-att-2022 .css-bold {
  font-family: font-regular !important;
  font-weight: normal !important;
  -webkit-text-stroke: .055ch !important;
}

.italic {
  font-style: italic !important;
}

.wrap {
  white-space: normal !important;
}

.nowrap {
  white-space: nowrap !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.case-reset {
  text-transform: none !important;
}

.strikethrough {
  text-decoration: line-through !important;
}

.no-select {
  -webkit-user-select: none !important;
          user-select: none !important;
}

.letter-spacing-0 {
  letter-spacing: normal !important;
}

.letter-spacing-3 {
  letter-spacing: -.03em !important;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer:not(.list),
.list.shimmer ul li {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(125deg, #bdc2c7 4%, #878c94 25%, #bdc2c7 36%);
  background-size: 1000px 100%;
  border: 0px;
  color: transparent;
  opacity: .15;
  pointer-events: none;
  transition: all .6s ease-out;
}

.shimmer:not(.round):not([class*="btn-"]),
.list.shimmer li {
  border-radius: 0.8rem;
}

.shimmer:not(.list):before,
.list.shimmer ul li:before {
  content: '';
  display: block;
  height: 1.15em;
}

.list.shimmer ul {
  padding-left: 0;
}

.primary-cta.shimmer:after {
  display: none;
}

.shimmer:not([class*="width-"]):not([class*="btn-"]) {
  width: 100%;
}

.shimmer.width-full:not([class*="btn-"]):not(.round):not([class*="-all"][class*="-all"]) {
  max-width: 100%;
  flex-basis: 100%;
}

/* ********** GRID CONTAINERS :: DEFAULT ***************************** */
.absolute {
  position: absolute !important;
}

.absolute-fill {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  overflow: hidden;
  border-radius: inherit;
}

.fixed {
  position: fixed !important;
}

.static {
  position: static !important;
}

.sticky {
  position: sticky !important;
}

.rel {
  position: relative !important;
}

.full-width-container,
.full-width-background {
  position: relative;
}

.max-width-container,
.max-width-background {
  margin: auto;
  max-width: 160.0rem;
  position: relative;
}

@media (min-width: 1601px) {
  .max-width-background {
    border-radius: 1.6rem;
  }
  .max-width-background:not([class*="mar-t-"]) {
    margin-top: 32px;
  }
  .max-width-background:not([class*="mar-b-"]) {
    margin-bottom: 24px;
  }
}

@media (max-width: 1600px) {
  .max-width-background[class*="radius-"] {
    border-radius: 0;
  }
}

.container {
  width: 100%;
  margin: auto;
  max-width: 132.4rem;
  padding: 0 16px;
}

/* White section - SMALL spacing */
.container.mar-t-sm + .container.mar-t-sm {
  margin-top: 16px;
}

.container.mar-t-sm + .max-width-background:not([class*="mar-t-"]) {
  margin-top: 24px;
}

/* White section - MEDIUM spacing */
.container.mar-t-md + .container.mar-t-md {
  margin-top: 24px;
}

.container.mar-t-md + .max-width-background:not([class*="mar-t-"]) {
  margin-top: 32px;
}

/* White section - LARGE spacing */
.container.mar-t-lg + .container.mar-t-lg {
  margin-top: 32px;
}

.container.mar-t-lg + .max-width-background:not([class*="mar-t-"]) {
  margin-top: 48px;
}

/* White section - XL spacing */
.container.mar-t-xl + .container.mar-t-xl {
  margin-top: 48px;
}

.container.mar-t-xl + .max-width-background:not([class*="mar-t-"]) {
  margin-top: 64px;
}

.row,
.row-nowrap {
  display: flex;
  width: 100%;
}

[class*="grid-"] {
  flex: 1 0 auto;
  padding: 16px;
}

.row.nopad > [class*="grid-"],
.row-nowrap.nopad > [class*="grid-"] {
  padding: 0;
}

[class*="grid-"].nopad {
  padding: 0;
}

.container.nopad {
  padding: 0;
}

.grid,
.grid-lg {
  display: grid !important;
}

.inline-grid,
.inline-grid-lg {
  display: inline-grid !important;
}

.flex,
.flex-lg {
  display: flex !important;
}

.inline-flex,
.inline-flex-lg {
  display: inline-flex !important;
}

.block,
.block-lg {
  display: block !important;
}

.inline-block,
.inline-block-lg {
  display: inline-block !important;
}

.flex-row {
  display: flex !important;
  flex-direction: row;
}

.flex-row.inline-flex {
  display: inline-flex !important;
}

.flex-column {
  display: flex !important;
  flex-direction: column;
}

.flex-column.inline-flex {
  display: inline-flex !important;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.align-all-right > * {
  text-align: right;
  justify-content: end;
}

.offset1 {
  margin-left: 8.3333333%;
}

.offset2 {
  margin-left: 16.6666667%;
}

.offset3 {
  margin-left: 25%;
}

.offset4 {
  margin-left: 33.3333333%;
}

.offset5 {
  margin-left: 41.6666667%;
}

.offset6 {
  margin-left: 50%;
}

.offset7 {
  margin-left: 58.3333333%;
}

.offset8 {
  margin-left: 66.6666667%;
}

.offset9 {
  margin-left: 75%;
}

.offset10 {
  margin-left: 83.3333333%;
}

.offset11 {
  margin-left: 91.6666667%;
}

.grid-col-1 {
  flex-basis: 8.3333333%;
  max-width: 8.3333333%;
}

.grid-col-2 {
  flex-basis: 16.6666667%;
  max-width: 16.6666667%;
}

.grid-col-2_5 {
  flex-basis: 20%;
  max-width: 20%;
}

.grid-col-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.grid-col-4 {
  flex-basis: 33.3333333%;
  max-width: 33.3333333%;
}

.grid-col-5 {
  flex-basis: 41.6666667%;
  max-width: 41.6666667%;
}

.grid-col-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.grid-col-7 {
  flex-basis: 58.3333333%;
  max-width: 58.3333333%;
}

.grid-col-8 {
  flex-basis: 66.6666667%;
  max-width: 66.6666667%;
}

.grid-col-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.grid-col-10 {
  flex-basis: 83.3333333%;
  max-width: 83.3333333%;
}

.grid-col-11 {
  flex-basis: 91.6666667%;
  max-width: 91.6666667%;
}

.grid-col-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.columns2 {
  columns: 2;
}

.columns3 {
  columns: 3;
}

.max-width,
[class*="grid-"]:not([class*="grid-col-"]):not(.microbanner) {
  max-width: 100% !important;
}

.flex-auto {
  flex-basis: auto !important;
}

.flex-grow {
  flex-grow: 1 !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-shrink {
  flex-shrink: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-2 {
  flex: 2 !important;
}

.flex-3 {
  flex: 3 !important;
}

.flex-4 {
  flex: 4 !important;
}

.flex-column [class*="grid-col-"] {
  flex-basis: 100%;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.flex-items-baseline {
  align-items: baseline;
}

.flex-items-top {
  align-items: flex-start;
}

.flex-items-bottom {
  align-items: flex-end;
}

.flex-items-center {
  align-items: center;
}

.flex-items-stretch {
  align-items: stretch;
}

.flex-content-center {
  align-content: center;
}

.flex-self-top {
  align-self: flex-start;
}

.flex-self-center {
  align-self: center;
}

.flex-self-bottom {
  align-self: flex-end;
}

.flex-self-stretch {
  align-self: stretch;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.order1,
.order1-lg {
  order: 1;
}

.order2,
.order2-lg {
  order: 2;
}

.order3,
.order3-lg {
  order: 3;
}

.order4,
.order4-lg {
  order: 4;
}

.order5,
.order5-lg {
  order: 5;
}

.order6,
.order6-lg {
  order: 6;
}

.order7,
.order7-lg {
  order: 7;
}

.order8,
.order8-lg {
  order: 8;
}

.order9,
.order9-lg {
  order: 9;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.width-full {
  width: 100%;
}

.width-auto {
  width: auto;
}

.width-inherit {
  width: inherit;
}

.reading-width {
  max-width: 1068px;
}

.fit-content {
  width: fit-content;
}

.height-full {
  height: 100%;
}

.height-auto {
  height: auto;
}

.height-0 {
  height: 0;
}

.flex-centered {
  align-items: center;
  justify-content: center;
}

.gap1 {
  gap: 1px;
}

.col-gap1 {
  column-gap: 1px;
}

.gap4 {
  gap: 4px;
}

.row-gap4 {
  row-gap: 4px;
}

.col-gap4 {
  column-gap: 4px;
}

.gap8 {
  gap: 8px;
}

.row-gap8 {
  row-gap: 8px;
}

.col-gap8 {
  column-gap: 8px;
}

.gap16 {
  gap: 16px;
}

.row-gap16 {
  row-gap: 16px;
}

.col-gap16 {
  column-gap: 16px;
}

.gap24 {
  gap: 24px;
}

.row-gap24 {
  row-gap: 24px;
}

.col-gap24 {
  column-gap: 24px;
}

.gap32 {
  gap: 32px;
}

.row-gap32 {
  row-gap: 32px;
}

.col-gap32 {
  column-gap: 32px;
}

.gap48 {
  gap: 48px;
}

.row-gap48 {
  row-gap: 48px;
}

.col-gap48 {
  column-gap: 48px;
}

.gap64 {
  gap: 64px;
}

.row-gap64 {
  row-gap: 64px;
}

.col-gap64 {
  column-gap: 64px;
}

.width-xxxl,
.width-xxxl-lg,
.width-xxxl-all {
  width: 128px;
}

.width-xxl,
.width-xxl-lg,
.width-xxl-all {
  width: 96px;
}

.width-xl,
.width-xl-lg,
.width-xl-all {
  width: 64px;
}

.width-lg,
.width-lg-lg,
.width-lg-all {
  width: 48px;
}

.width-md,
.width-md-lg,
.width-md-all {
  width: 32px;
}

.width-sm,
.width-sm-lg,
.width-sm-all {
  width: 24px;
}

.width-xs,
.width-xs-lg {
  width: 16px;
}

.width-xxs,
.width-xxs-lg {
  width: 8px;
}

.width-xxxs,
.width-xxxs-lg {
  width: 4px;
}

.height-xxxl,
.height-xxxl-lg,
.height-xxxl-all {
  height: 128px;
}

.height-xxl,
.height-xxl-lg,
.height-xxl-all {
  height: 96px;
}

.height-xl,
.height-xl-lg,
.height-xl-all {
  height: 64px;
}

.height-lg,
.height-lg-lg,
.height-lg-all {
  height: 48px;
}

.height-md,
.height-md-lg,
.height-md-all {
  height: 32px;
}

.height-sm,
.height-sm-lg,
.height-sm-all {
  height: 24px;
}

.height-xs,
.height-xs-lg {
  height: 16px;
}

.height-xxs,
.height-xxs-lg {
  height: 8px;
}

.height-xxxs,
.height-xxxs-lg {
  height: 4px;
}

.mar-xxxl,
.mar-xxxl-lg,
.mar-xxxl-all {
  margin: 128px;
}

.mar-xxl,
.mar-xxl-lg,
.mar-xxl-all {
  margin: 96px;
}

.mar-xl,
.mar-xl-lg,
.mar-xl-all {
  margin: 64px;
}

.mar-lg,
.mar-lg-lg,
.mar-lg-all {
  margin: 48px;
}

.mar-md,
.mar-md-lg,
.mar-md-all {
  margin: 32px;
}

.mar-sm,
.mar-sm-lg,
.mar-sm-all {
  margin: 24px;
}

.mar-xs,
.mar-xs-lg {
  margin: 16px;
}

.mar-xxs,
.mar-xxs-lg {
  margin: 8px;
}

.mar-xxxs,
.mar-xxxs-lg {
  margin: 4px;
}

.mar-none,
.mar-none-lg {
  margin: 0;
}

.mar-t-xxxl,
.mar-t-xxxl-lg,
.mar-t-xxxl-all {
  margin-top: 128px;
}

.mar-t-xxl,
.mar-t-xxl-lg,
.mar-t-xxl-all {
  margin-top: 96px;
}

.mar-t-xl,
.mar-t-xl-lg,
.mar-t-xl-all {
  margin-top: 64px;
}

.mar-t-lg,
.mar-t-lg-lg,
.mar-t-lg-all {
  margin-top: 48px;
}

.mar-t-md,
.mar-t-md-lg,
.mar-t-md-all {
  margin-top: 32px;
}

.mar-t-sm,
.mar-t-sm-lg,
.mar-t-sm-all {
  margin-top: 24px;
}

.mar-t-xs,
.mar-t-xs-lg {
  margin-top: 16px;
}

.mar-t-xxs,
.mar-t-xxs-lg {
  margin-top: 8px;
}

.mar-t-xxxs,
.mar-t-xxxs-lg {
  margin-top: 4px;
}

.mar-t-2,
.mar-t-2-lg {
  margin-top: 2px;
}

.mar-t-1,
.mar-t-1-lg {
  margin-top: 1px;
}

.mar-t-none,
.mar-t-none-lg {
  margin-top: 0;
}

.mar-r-xxxl,
.mar-r-xxxl-lg,
.mar-r-xxxl-all {
  margin-right: 128px;
}

.mar-r-xxl,
.mar-r-xxl-lg,
.mar-r-xxl-all {
  margin-right: 96px;
}

.mar-r-xl,
.mar-r-xl-lg,
.mar-r-xl-all {
  margin-right: 64px;
}

.mar-r-lg,
.mar-r-lg-lg,
.mar-r-lg-all {
  margin-right: 48px;
}

.mar-r-md,
.mar-r-md-lg,
.mar-r-md-all {
  margin-right: 32px;
}

.mar-r-sm,
.mar-r-sm-lg,
.mar-r-sm-all {
  margin-right: 24px;
}

.mar-r-xs,
.mar-r-xs-lg {
  margin-right: 16px;
}

.mar-r-xxs,
.mar-r-xxs-lg {
  margin-right: 8px;
}

.mar-r-xxxs,
.mar-r-xxxs-lg {
  margin-right: 4px;
}

.mar-r-none,
.mar-r-none-lg {
  margin-right: 0;
}

.mar-b-xxxl,
.mar-b-xxxl-lg,
.mar-b-xxxl-all {
  margin-bottom: 128px;
}

.mar-b-xxl,
.mar-b-xxl-lg,
.mar-b-xxl-all {
  margin-bottom: 96px;
}

.mar-b-xl,
.mar-b-xl-lg,
.mar-b-xl-all {
  margin-bottom: 64px;
}

.mar-b-lg,
.mar-b-lg-lg,
.mar-b-lg-all {
  margin-bottom: 48px;
}

.mar-b-md,
.mar-b-md-lg,
.mar-b-md-all {
  margin-bottom: 32px;
}

.mar-b-sm,
.mar-b-sm-lg,
.mar-b-sm-all {
  margin-bottom: 24px;
}

.mar-b-xs,
.mar-b-xs-lg {
  margin-bottom: 16px;
}

.mar-b-xxs,
.mar-b-xxs-lg {
  margin-bottom: 8px;
}

.mar-b-xxxs,
.mar-b-xxxs-lg {
  margin-bottom: 4px;
}

.mar-b-2,
.mar-b-2-lg {
  margin-bottom: 2px;
}

.mar-b-1,
.mar-b-1-lg {
  margin-bottom: 1px;
}

.mar-b-none,
.mar-b-none-lg {
  margin-bottom: 0;
}

.mar-l-xxxl,
.mar-l-xxxl-lg,
.mar-l-xxxl-all {
  margin-left: 128px;
}

.mar-l-xxl,
.mar-l-xxl-lg,
.mar-l-xxl-all {
  margin-left: 96px;
}

.mar-l-xl,
.mar-l-xl-lg,
.mar-l-xl-all {
  margin-left: 64px;
}

.mar-l-lg,
.mar-l-lg-lg,
.mar-l-lg-all {
  margin-left: 48px;
}

.mar-l-md,
.mar-l-md-lg,
.mar-l-md-all {
  margin-left: 32px;
}

.mar-l-sm,
.mar-l-sm-lg,
.mar-l-sm-all {
  margin-left: 24px;
}

.mar-l-xs,
.mar-l-xs-lg {
  margin-left: 16px;
}

.mar-l-xxs,
.mar-l-xxs-lg {
  margin-left: 8px;
}

.mar-l-xxxs,
.mar-l-xxxs-lg {
  margin-left: 4px;
}

.mar-l-none,
.mar-l-none-lg {
  margin-left: 0;
}

.pad-xxxl,
.pad-xxxl-lg,
.pad-xxxl-all {
  padding: 128px;
}

.pad-xxl,
.pad-xxl-lg,
.pad-xxl-all {
  padding: 96px;
}

.pad-xl,
.pad-xl-lg,
.pad-xl-all {
  padding: 64px;
}

.pad-lg,
.pad-lg-lg,
.pad-lg-all {
  padding: 48px;
}

.pad-md,
.pad-md-lg,
.pad-md-all {
  padding: 32px;
}

.pad-sm,
.pad-sm-lg,
.pad-sm-all {
  padding: 24px;
}

.pad-xs,
.pad-xs-lg {
  padding: 16px;
}

.pad-xxs,
.pad-xxs-lg {
  padding: 8px;
}

.pad-xxxs,
.pad-xxxs-lg {
  padding: 4px;
}

.pad-xxxxs,
.pad-xxxxs-lg {
  padding: 2px;
}

.nopad,
.pad-none,
.pad-none-lg {
  padding: 0;
}

.pad-t-xxxl,
.pad-t-xxxl-lg,
.pad-t-xxxl-all {
  padding-top: 128px;
}

.pad-t-xxl,
.pad-t-xxl-lg,
.pad-t-xxl-all {
  padding-top: 96px;
}

.pad-t-xl,
.pad-t-xl-lg,
.pad-t-xl-all {
  padding-top: 64px;
}

.pad-t-lg,
.pad-t-lg-lg,
.pad-t-lg-all {
  padding-top: 48px;
}

.pad-t-md,
.pad-t-md-lg,
.pad-t-md-all {
  padding-top: 32px;
}

.pad-t-sm,
.pad-t-sm-lg,
.pad-t-sm-all {
  padding-top: 24px;
}

.pad-t-xs,
.pad-t-xs-lg {
  padding-top: 16px;
}

.pad-t-xxs,
.pad-t-xxs-lg {
  padding-top: 8px;
}

.pad-t-xxxs,
.pad-t-xxxs-lg {
  padding-top: 4px;
}

.pad-t-xxxxs,
.pad-t-xxxxs-lg {
  padding-top: 2px;
}

.pad-t-none,
.pad-t-none-lg {
  padding-top: 0;
}

.pad-r-xxxl,
.pad-r-xxxl-lg,
.pad-r-xxxl-all {
  padding-right: 128px;
}

.pad-r-xxl,
.pad-r-xxl-lg,
.pad-r-xxl-all {
  padding-right: 96px;
}

.pad-r-xl,
.pad-r-xl-lg,
.pad-r-xl-all {
  padding-right: 64px;
}

.pad-r-lg,
.pad-r-lg-lg,
.pad-r-lg-all {
  padding-right: 48px;
}

.pad-r-md,
.pad-r-md-lg,
.pad-r-md-all {
  padding-right: 32px;
}

.pad-r-sm,
.pad-r-sm-lg,
.pad-r-sm-all {
  padding-right: 24px;
}

.pad-r-xs,
.pad-r-xs-lg {
  padding-right: 16px;
}

.pad-r-xxs,
.pad-r-xxs-lg {
  padding-right: 8px;
}

.pad-r-xxxs,
.pad-r-xxxs-lg {
  padding-right: 4px;
}

.pad-r-xxxxs,
.pad-r-xxxxs-lg {
  padding-right: 2px;
}

.pad-r-none,
.pad-r-none-lg {
  padding-right: 0;
}

.pad-b-xxxl,
.pad-b-xxxl-lg,
.pad-b-xxxl-all {
  padding-bottom: 128px;
}

.pad-b-xxl,
.pad-b-xxl-lg,
.pad-b-xxl-all {
  padding-bottom: 96px;
}

.pad-b-xl,
.pad-b-xl-lg,
.pad-b-xl-all {
  padding-bottom: 64px;
}

.pad-b-lg,
.pad-b-lg-lg,
.pad-b-lg-all {
  padding-bottom: 48px;
}

.pad-b-md,
.pad-b-md-lg,
.pad-b-md-all {
  padding-bottom: 32px;
}

.pad-b-sm,
.pad-b-sm-lg,
.pad-b-sm-all {
  padding-bottom: 24px;
}

.pad-b-xs,
.pad-b-xs-lg {
  padding-bottom: 16px;
}

.pad-b-xxs,
.pad-b-xxs-lg {
  padding-bottom: 8px;
}

.pad-b-xxxs,
.pad-b-xxxs-lg {
  padding-bottom: 4px;
}

.pad-b-xxxxs,
.pad-b-xxxxs-lg {
  padding-bottom: 2px;
}

.pad-b-none,
.pad-b-none-lg {
  padding-bottom: 0;
}

.pad-l-xxxl,
.pad-l-xxxl-lg,
.pad-l-xxxl-all {
  padding-left: 128px;
}

.pad-l-xxl,
.pad-l-xxl-lg,
.pad-l-xxl-all {
  padding-left: 96px;
}

.pad-l-xl,
.pad-l-xl-lg,
.pad-l-xl-all {
  padding-left: 64px;
}

.pad-l-lg,
.pad-l-lg-lg,
.pad-l-lg-all {
  padding-left: 48px;
}

.pad-l-md,
.pad-l-md-lg,
.pad-l-md-all {
  padding-left: 32px;
}

.pad-l-sm,
.pad-l-sm-lg,
.pad-l-sm-all {
  padding-left: 24px;
}

.pad-l-xs,
.pad-l-xs-lg {
  padding-left: 16px;
}

.pad-l-xxs,
.pad-l-xxs-lg {
  padding-left: 8px;
}

.pad-l-xxxs,
.pad-l-xxxs-lg {
  padding-left: 4px;
}

.pad-l-xxxxs,
.pad-l-xxxxs-lg {
  padding-left: 2px;
}

.pad-l-none,
.pad-l-none-lg {
  padding-left: 0;
}

@media (min-width: 1025px) {
  .hide-lg,
  .hidden-desktop,
  .visible-tablet,
  .visible-mobile {
    display: none !important;
  }
  .rel-lg {
    position: relative !important;
  }
  .gap1-lg {
    gap: 1px;
  }
  .gap4-lg {
    gap: 4px;
  }
  .row-gap4-lg {
    row-gap: 4px;
  }
  .col-gap4-lg {
    column-gap: 4px;
  }
  .gap8-lg {
    gap: 8px;
  }
  .row-gap8-lg {
    row-gap: 8px;
  }
  .col-gap8-lg {
    column-gap: 8px;
  }
  .gap16-lg {
    gap: 16px;
  }
  .row-gap16-lg {
    row-gap: 16px;
  }
  .col-gap16-lg {
    column-gap: 16px;
  }
  .gap24-lg {
    gap: 24px;
  }
  .row-gap24-lg {
    row-gap: 24px;
  }
  .col-gap24-lg {
    column-gap: 24px;
  }
  .gap32-lg {
    gap: 32px;
  }
  .row-gap32-lg {
    row-gap: 32px;
  }
  .col-gap32-lg {
    column-gap: 32px;
  }
  .gap48-lg {
    gap: 48px;
  }
  .row-gap48-lg {
    row-gap: 48px;
  }
  .col-gap48-lg {
    column-gap: 48px;
  }
  .gap64-lg {
    gap: 64px;
  }
  .row-gap64-lg {
    row-gap: 64px;
  }
  .col-gap64-lg {
    column-gap: 64px;
  }
  .cta-container.mar-t-none-lg {
    margin-top: 0 !important;
  }
  .justify-center-lg {
    justify-content: center;
  }
}

/* ********** BREAKPOINT :: MEDIUM ************** */
@media (min-width: 768px) and (max-width: 1024px) {
  .absolute-md {
    position: absolute !important;
  }
  .fixed-md {
    position: fixed !important;
  }
  .sticky-md {
    position: sticky !important;
  }
  .rel-md {
    position: relative !important;
  }
  .grid-md {
    display: grid !important;
  }
  .inline-grid-md {
    display: inline-grid !important;
  }
  .flex-md {
    display: flex !important;
  }
  .inline-flex-md {
    display: inline-flex !important;
  }
  .block-md {
    display: block !important;
  }
  .inline-block-md {
    display: inline-block !important;
  }
  .flex-row-md {
    display: flex;
    flex-direction: row;
  }
  .row.nopad-md > [class*="grid-"],
  .row-nowrap.nopad-md > [class*="grid-"] {
    padding: 0;
  }
  /* White section - SMALL spacing */
  .container.mar-t-sm + .container.mar-t-sm {
    margin-top: 8px;
  }
  .container.mar-t-sm + .max-width-background {
    margin-top: 16px;
  }
  /* White section - MD spacing */
  .container.mar-t-md + .container.mar-t-md {
    margin-top: 16px;
  }
  .container.mar-t-md + .max-width-background {
    margin-top: 24px;
  }
  /* White section - LG spacing */
  .container.mar-t-lg + .container.mar-t-lg {
    margin-top: 24px;
  }
  .container.mar-t-lg + .max-width-background {
    margin-top: 32px;
  }
  /* White section - XL spacing */
  .container.mar-t-xl + .container.mar-t-xl {
    margin-top: 32px;
  }
  .container.mar-t-xl + .max-width-background {
    margin-top: 48px;
  }
  .offset0-md {
    margin-left: 0;
  }
  .offset1-md {
    margin-left: 8.3333333%;
  }
  .offset2-md {
    margin-left: 16.6666667%;
  }
  .offset3-md {
    margin-left: 25%;
  }
  .offset4-md {
    margin-left: 33.3333333%;
  }
  .offset5-md {
    margin-left: 41.6666667%;
  }
  .offset6-md {
    margin-left: 50%;
  }
  .offset7-md {
    margin-left: 58.3333333%;
  }
  .offset8-md {
    margin-left: 66.6666667%;
  }
  .offset9-md {
    margin-left: 75%;
  }
  .offset10-md {
    margin-left: 83.3333333%;
  }
  .offset11-md {
    margin-left: 91.6666667%;
  }
  .grid-col-1-md {
    flex-basis: 8.3333333%;
    max-width: 8.3333333%;
  }
  .grid-col-2-md {
    flex-basis: 16.6666667%;
    max-width: 16.6666667%;
  }
  .grid-col-2_5-md {
    flex-basis: 20%;
    max-width: 20%;
  }
  .grid-col-3-md {
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid-col-4-md {
    flex-basis: 33.3333333%;
    max-width: 33.3333333%;
  }
  .grid-col-5-md {
    flex-basis: 41.6666667%;
    max-width: 41.6666667%;
  }
  .grid-col-6-md {
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid-col-7-md {
    flex-basis: 58.3333333%;
    max-width: 58.3333333%;
  }
  .grid-col-8-md {
    flex-basis: 66.6666667%;
    max-width: 66.6666667%;
  }
  .grid-col-9-md {
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid-col-10-md {
    flex-basis: 83.3333333%;
    max-width: 83.3333333%;
  }
  .grid-col-11-md {
    flex-basis: 91.6666667%;
    max-width: 91.6666667%;
  }
  .grid-col-12-md {
    flex-basis: 100%;
    max-width: 100%;
  }
  .columns2-md {
    columns: 2;
  }
  .columns3-md {
    columns: 3;
  }
  .centered-md {
    margin-left: auto;
    margin-right: auto;
  }
  .flex-column-md {
    flex-direction: column;
  }
  .flex-column-md.inline-flex {
    display: inline-flex;
  }
  .flex-items-baseline-md {
    align-items: baseline;
  }
  .flex-items-top-md {
    align-items: flex-start;
  }
  .flex-items-bottom-md {
    align-items: flex-end;
  }
  .flex-items-center-md {
    align-items: center;
  }
  .flex-items-stretch-md {
    align-items: stretch;
    height: 100%;
  }
  .flex-content-center-md {
    align-content: center;
  }
  .flex-self-top-md {
    align-self: flex-start;
  }
  .flex-self-center-md {
    align-self: center;
  }
  .flex-self-bottom-md {
    align-self: flex-end;
  }
  .flex-self-stretch-md {
    align-self: stretch;
  }
  .flex-wrap-md {
    flex-wrap: wrap;
  }
  .flex-nowrap-md {
    flex-wrap: nowrap;
  }
  .flex-wrap-reverse-md {
    flex-wrap: wrap-reverse;
  }
  .order1-md {
    order: 1;
  }
  .order2-md {
    order: 2;
  }
  .order3-md {
    order: 3;
  }
  .order4-md {
    order: 4;
  }
  .order5-md {
    order: 5;
  }
  .order6-md {
    order: 6;
  }
  .order7-md {
    order: 7;
  }
  .order8-md {
    order: 8;
  }
  .order9-md {
    order: 9;
  }
  .justify-start-md {
    justify-content: flex-start;
  }
  .justify-end-md {
    justify-content: flex-end;
  }
  .justify-center-md {
    justify-content: center;
  }
  .justify-between-md {
    justify-content: space-between;
  }
  .gap1-md {
    gap: 1px;
  }
  .gap4-md {
    gap: 4px;
  }
  .row-gap4-md {
    row-gap: 4px;
  }
  .col-gap4-md {
    column-gap: 4px;
  }
  .gap8-md {
    gap: 8px;
  }
  .row-gap8-md {
    row-gap: 8px;
  }
  .col-gap8-md {
    column-gap: 8px;
  }
  .gap16-md {
    gap: 16px;
  }
  .row-gap16-md {
    row-gap: 16px;
  }
  .col-gap16-md {
    column-gap: 16px;
  }
  .gap24-md {
    gap: 24px;
  }
  .row-gap24-md {
    row-gap: 24px;
  }
  .col-gap24-md {
    column-gap: 24px;
  }
  .gap32-md {
    gap: 32px;
  }
  .row-gap32-md {
    row-gap: 32px;
  }
  .col-gap32-md {
    column-gap: 32px;
  }
  .gap48-md {
    gap: 48px;
  }
  .row-gap48-md {
    row-gap: 48px;
  }
  .col-gap48-md {
    column-gap: 48px;
  }
  .gap64-md {
    gap: 64px;
  }
  .row-gap64-md {
    row-gap: 64px;
  }
  .col-gap64-md {
    column-gap: 64px;
  }
  .width-full-md {
    width: 100%;
  }
  .width-xxxl,
  .width-xxxl-md {
    width: 96px;
  }
  .width-xxl,
  .width-xxl-md {
    width: 64px;
  }
  .width-xl,
  .width-xl-md {
    width: 48px;
  }
  .width-lg,
  .width-lg-md {
    width: 32px;
  }
  .width-md,
  .width-md-md {
    width: 24px;
  }
  .width-sm,
  .width-sm-md {
    width: 16px;
  }
  .width-xs,
  .width-xs-md {
    width: 16px;
  }
  .width-xxs,
  .width-xxs-md {
    width: 8px;
  }
  .width-xxxs,
  .width-xxxs-md {
    width: 4px;
  }
  .height-xxxl,
  .height-xxxl-md {
    height: 96px;
  }
  .height-xxl,
  .height-xxl-md {
    height: 64px;
  }
  .height-xl,
  .height-xl-md {
    height: 48px;
  }
  .height-lg,
  .height-lg-md {
    height: 32px;
  }
  .height-md,
  .height-md-md {
    height: 24px;
  }
  .height-sm,
  .height-sm-md {
    height: 16px;
  }
  .height-xs,
  .height-xs-md {
    height: 16px;
  }
  .height-xxs,
  .height-xxs-md {
    height: 8px;
  }
  .height-xxxs,
  .height-xxxs-md {
    height: 4px;
  }
  .mar-xxxl,
  .mar-xxxl-md {
    margin: 96px;
  }
  .mar-xxl,
  .mar-xxl-md {
    margin: 64px;
  }
  .mar-xl,
  .mar-xl-md {
    margin: 48px;
  }
  .mar-lg,
  .mar-lg-md {
    margin: 32px;
  }
  .mar-md,
  .mar-md-md {
    margin: 24px;
  }
  .mar-sm,
  .mar-sm-md {
    margin: 16px;
  }
  .mar-xs,
  .mar-xs-md {
    margin: 16px;
  }
  .mar-xxs,
  .mar-xxs-md {
    margin: 8px;
  }
  .mar-xxxs,
  .mar-xxxs-md {
    margin: 4px;
  }
  .mar-none,
  .mar-none-md {
    margin: 0;
  }
  .mar-t-xxxl,
  .mar-t-xxxl-md {
    margin-top: 96px;
  }
  .mar-t-xxl,
  .mar-t-xxl-md {
    margin-top: 64px;
  }
  .mar-t-xl,
  .mar-t-xl-md {
    margin-top: 48px;
  }
  .mar-t-lg,
  .mar-t-lg-md {
    margin-top: 32px;
  }
  .mar-t-md,
  .mar-t-md-md {
    margin-top: 24px;
  }
  .mar-t-sm,
  .mar-t-sm-md {
    margin-top: 16px;
  }
  .mar-t-xs,
  .mar-t-xs-md {
    margin-top: 16px;
  }
  .mar-t-xxs,
  .mar-t-xxs-md {
    margin-top: 8px;
  }
  .mar-t-xxxs,
  .mar-t-xxxs-md {
    margin-top: 4px;
  }
  .mar-t-2,
  .mar-t-2-md {
    margin-top: 2px;
  }
  .mar-t-1,
  .mar-t-1-md {
    margin-top: 1px;
  }
  .mar-t-none,
  .mar-t-none-md {
    margin-top: 0;
  }
  .mar-r-xxxl,
  .mar-r-xxxl-md {
    margin-right: 96px;
  }
  .mar-r-xxl,
  .mar-r-xxl-md {
    margin-right: 64px;
  }
  .mar-r-xl,
  .mar-r-xl-md {
    margin-right: 48px;
  }
  .mar-r-lg,
  .mar-r-lg-md {
    margin-right: 32px;
  }
  .mar-r-md,
  .mar-r-md-md {
    margin-right: 24px;
  }
  .mar-r-sm,
  .mar-r-sm-md {
    margin-right: 16px;
  }
  .mar-r-xs-md {
    margin-right: 16px;
  }
  .mar-r-xxs-md {
    margin-right: 8px;
  }
  .mar-r-xxxs,
  .mar-r-xxxs-md {
    margin-right: 4px;
  }
  .mar-r-none,
  .mar-r-none-md {
    margin-right: 0;
  }
  .mar-b-xxxl,
  .mar-b-xxxl-md {
    margin-bottom: 96px;
  }
  .mar-b-xxl,
  .mar-b-xxl-md {
    margin-bottom: 64px;
  }
  .mar-b-xl,
  .mar-b-xl-md {
    margin-bottom: 48px;
  }
  .mar-b-lg,
  .mar-b-lg-md {
    margin-bottom: 32px;
  }
  .mar-b-md,
  .mar-b-md-md {
    margin-bottom: 24px;
  }
  .mar-b-sm,
  .mar-b-sm-md {
    margin-bottom: 16px;
  }
  .mar-b-xs,
  .mar-b-xs-md {
    margin-bottom: 16px;
  }
  .mar-b-xxs,
  .mar-b-xxs-md {
    margin-bottom: 8px;
  }
  .mar-b-xxxs,
  .mar-b-xxxs-md {
    margin-bottom: 4px;
  }
  .mar-b-2,
  .mar-b-2-md {
    margin-bottom: 2px;
  }
  .mar-b-1,
  .mar-b-1-md {
    margin-bottom: 1px;
  }
  .mar-b-none,
  .mar-b-none-md {
    margin-bottom: 0;
  }
  .mar-l-xxxl,
  .mar-l-xxxl-md {
    margin-left: 96px;
  }
  .mar-l-xxl,
  .mar-l-xxl-md {
    margin-left: 64px;
  }
  .mar-l-xl,
  .mar-l-xl-md {
    margin-left: 48px;
  }
  .mar-l-lg,
  .mar-l-lg-md {
    margin-left: 32px;
  }
  .mar-l-md,
  .mar-l-md-md {
    margin-left: 24px;
  }
  .mar-l-sm,
  .mar-l-sm-md {
    margin-left: 16px;
  }
  .mar-l-xs,
  .mar-l-xs-md {
    margin-left: 16px;
  }
  .mar-l-xxs,
  .mar-l-xxs-md {
    margin-left: 8px;
  }
  .mar-l-xxxs,
  .mar-l-xxxs-md {
    margin-left: 4px;
  }
  .mar-l-none,
  .mar-l-none-md {
    margin-left: 0;
  }
  .pad-xxxl,
  .pad-xxxl-md {
    padding: 96px;
  }
  .pad-xxl,
  .pad-xxl-md {
    padding: 64px;
  }
  .pad-xl,
  .pad-xl-md {
    padding: 48px;
  }
  .pad-lg,
  .pad-lg-md {
    padding: 32px;
  }
  .pad-md,
  .pad-md-md {
    padding: 24px;
  }
  .pad-sm,
  .pad-sm-md {
    padding: 16px;
  }
  .pad-xs,
  .pad-xs-md {
    padding: 16px;
  }
  .pad-xxs,
  .pad-xxs-md {
    padding: 8px;
  }
  .pad-xxxs,
  .pad-xxxs-md {
    padding: 4px;
  }
  .pad-xxxxs,
  .pad-xxxxs-md {
    padding: 2px;
  }
  .pad-none,
  .nopad-md,
  .pad-none-md {
    padding: 0;
  }
  .pad-t-xxxl,
  .pad-t-xxxl-md {
    padding-top: 96px;
  }
  .pad-t-xxl,
  .pad-t-xxl-md {
    padding-top: 64px;
  }
  .pad-t-xl,
  .pad-t-xl-md {
    padding-top: 48px;
  }
  .pad-t-lg,
  .pad-t-lg-md {
    padding-top: 32px;
  }
  .pad-t-md,
  .pad-t-md-md {
    padding-top: 24px;
  }
  .pad-t-sm,
  .pad-t-sm-md {
    padding-top: 16px;
  }
  .pad-t-xs,
  .pad-t-xs-md {
    padding-top: 16px;
  }
  .pad-t-xxs,
  .pad-t-xxs-md {
    padding-top: 8px;
  }
  .pad-t-xxxs,
  .pad-t-xxxs-md {
    padding-top: 4px;
  }
  .pad-t-xxxxs,
  .pad-t-xxxxs-md {
    padding-top: 2px;
  }
  .pad-t-none,
  .pad-t-none-md {
    padding-top: 0;
  }
  .pad-r-xxxl,
  .pad-r-xxxl-md {
    padding-right: 96px;
  }
  .pad-r-xxl,
  .pad-r-xxl-md {
    padding-right: 64px;
  }
  .pad-r-xl,
  .pad-r-xl-md {
    padding-right: 48px;
  }
  .pad-r-lg,
  .pad-r-lg-md {
    padding-right: 32px;
  }
  .pad-r-md,
  .pad-r-md-md {
    padding-right: 24px;
  }
  .pad-r-sm,
  .pad-r-sm-md {
    padding-right: 16px;
  }
  .pad-r-xs,
  .pad-r-xs-md {
    padding-right: 16px;
  }
  .pad-r-xxs,
  .pad-r-xxs-md {
    padding-right: 8px;
  }
  .pad-r-xxxs,
  .pad-r-xxxs-md {
    padding-right: 4px;
  }
  .pad-r-xxxxs,
  .pad-r-xxxxs-md {
    padding-right: 2px;
  }
  .pad-r-none,
  .pad-r-none-md {
    padding-right: 0;
  }
  .pad-b-xxxl,
  .pad-b-xxxl-md {
    padding-bottom: 96px;
  }
  .pad-b-xxl,
  .pad-b-xxl-md {
    padding-bottom: 64px;
  }
  .pad-b-xl,
  .pad-b-xl-md {
    padding-bottom: 48px;
  }
  .pad-b-lg,
  .pad-b-lg-md {
    padding-bottom: 32px;
  }
  .pad-b-md,
  .pad-b-md-md {
    padding-bottom: 24px;
  }
  .pad-b-sm,
  .pad-b-sm-md {
    padding-bottom: 16px;
  }
  .pad-b-xs,
  .pad-b-xs-md {
    padding-bottom: 16px;
  }
  .pad-b-xxs,
  .pad-b-xxs-md {
    padding-bottom: 8px;
  }
  .pad-b-xxxs,
  .pad-b-xxxs-md {
    padding-bottom: 4px;
  }
  .pad-b-xxxxs,
  .pad-b-xxxxs-md {
    padding-bottom: 2px;
  }
  .pad-b-none,
  .pad-b-none-md {
    padding-bottom: 0;
  }
  .pad-l-xxxl,
  .pad-l-xxxl-md {
    padding-left: 96px;
  }
  .pad-l-xxl,
  .pad-l-xxl-md {
    padding-left: 64px;
  }
  .pad-l-xl,
  .pad-l-xl-md {
    padding-left: 48px;
  }
  .pad-l-lg,
  .pad-l-lg-md {
    padding-left: 32px;
  }
  .pad-l-md,
  .pad-l-md-md {
    padding-left: 24px;
  }
  .pad-l-sm,
  .pad-l-sm-md {
    padding-left: 16px;
  }
  .pad-l-xs,
  .pad-l-xs-md {
    padding-left: 16px;
  }
  .pad-l-xxs,
  .pad-l-xxs-md {
    padding-left: 8px;
  }
  .pad-l-xxxs,
  .pad-l-xxxs-md {
    padding-left: 4px;
  }
  .pad-l-none,
  .pad-l-none-md {
    padding-left: 0;
  }
  .hide-md,
  .hidden-tablet,
  .visible-desktop,
  .visible-mobile {
    display: none !important;
  }
  .no-radius-md {
    border-radius: 0 !important;
  }
}

/* ********** BREAKPOINT :: SMALL PORTRAIT & SMALL ************** */
@media (max-width: 767px) {
  .absolute-sm {
    position: absolute !important;
  }
  .fixed-sm {
    position: fixed !important;
  }
  .sticky-sm {
    position: sticky !important;
  }
  .rel-sm {
    position: relative !important;
  }
  .grid-sm {
    display: grid !important;
  }
  .inline-grid-sm {
    display: inline-grid !important;
  }
  .flex-sm {
    display: flex !important;
  }
  .inline-flex-sm {
    display: inline-flex !important;
  }
  .block-sm {
    display: block !important;
  }
  .inline-block-sm {
    display: inline-block !important;
  }
  .flex-row-sm {
    display: flex;
    flex-direction: row;
  }
  .container {
    padding: 0 12px;
  }
  /* White section - SMALL spacing */
  .container.mar-t-sm + .container.mar-t-sm {
    margin-top: 0px;
  }
  .container.mar-t-sm + .max-width-background {
    margin-top: 8px;
  }
  /* White section - MD spacing */
  .container.mar-t-md + .container.mar-t-md {
    margin-top: 8px;
  }
  .container.mar-t-md + .max-width-background {
    margin-top: 16px;
  }
  /* White section - LG spacing */
  .container.mar-t-lg + .container.mar-t-lg {
    margin-top: 16px;
  }
  .container.mar-t-lg + .max-width-background {
    margin-top: 24px;
  }
  /* White section - XL spacing */
  .container.mar-t-xl + .container.mar-t-xl {
    margin-top: 24px;
  }
  .container.mar-t-xl + .max-width-background {
    margin-top: 32px;
  }
  .row-nowrap-sm {
    display: flex !important;
  }
  .row {
    display: block;
  }
  .row:not(.flex-row) > [class*="grid-"] {
    max-width: 100%;
  }
  [class*="grid-"] {
    padding: 12px;
  }
  .row.nopad > [class*="grid-"],
  .row-nowrap.nopad > [class*="grid-"] {
    padding: 0;
  }
  [class*="grid-"].nopad-sm {
    padding: 0;
  }
  .container.nopad-sm {
    padding: 0;
  }
  .offset0-sm {
    margin-left: 0;
  }
  .offset1-sm {
    margin-left: 8.3333333%;
  }
  .offset2-sm {
    margin-left: 16.6666667%;
  }
  .offset3-sm {
    margin-left: 25%;
  }
  .offset4-sm {
    margin-left: 33.3333333%;
  }
  .offset5-sm {
    margin-left: 41.6666667%;
  }
  .offset6-sm {
    margin-left: 50%;
  }
  .offset7-sm {
    margin-left: 58.3333333%;
  }
  .offset8-sm {
    margin-left: 66.6666667%;
  }
  .offset9-sm {
    margin-left: 75%;
  }
  .offset10-sm {
    margin-left: 83.3333333%;
  }
  .offset11-sm {
    margin-left: 91.6666667%;
  }
  .grid-col-1-sm {
    flex-basis: 8.3333333%;
    max-width: 8.3333333%;
  }
  .grid-col-2-sm {
    flex-basis: 16.6666667%;
    max-width: 16.6666667%;
  }
  .grid-col-2_5-sm {
    flex-basis: 20%;
    max-width: 20%;
  }
  .grid-col-3-sm {
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid-col-4-sm {
    flex-basis: 33.3333333%;
    max-width: 33.3333333%;
  }
  .grid-col-5-sm {
    flex-basis: 41.6666667%;
    max-width: 41.6666667%;
  }
  .grid-col-6-sm {
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid-col-7-sm {
    flex-basis: 58.3333333%;
    max-width: 58.3333333%;
  }
  .grid-col-8-sm {
    flex-basis: 66.6666667%;
    max-width: 66.6666667%;
  }
  .grid-col-9-sm {
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid-col-10-sm {
    flex-basis: 83.3333333%;
    max-width: 83.3333333%;
  }
  .grid-col-11-sm {
    flex-basis: 91.6666667%;
    max-width: 91.6666667%;
  }
  .grid-col-12-sm {
    flex-basis: 100%;
    max-width: 100%;
  }
  .columns2-sm {
    columns: 2;
  }
  .columns3-sm {
    columns: 3;
  }
  .centered-sm {
    margin-left: auto;
    margin-right: auto;
  }
  .flex-column-sm {
    flex-direction: column;
  }
  .flex-column-sm.inline-flex {
    display: inline-flex;
  }
  .flex-items-baseline-sm {
    align-items: baseline;
  }
  .flex-items-top-sm {
    align-items: flex-start;
  }
  .flex-items-bottom-sm {
    align-items: flex-end;
  }
  .flex-items-center-sm {
    align-items: center;
  }
  .flex-items-stretch-sm {
    align-items: stretch;
    height: 100%;
  }
  .flex-content-center-sm {
    align-content: center;
  }
  .flex-self-top-sm {
    align-self: flex-start;
  }
  .flex-self-center-sm {
    align-self: center;
  }
  .flex-self-bottom-sm {
    align-self: flex-end;
  }
  .flex-self-stretch-sm {
    align-self: stretch;
  }
  .flex-nowrap-sm {
    flex-wrap: nowrap;
  }
  .flex-wrap-reverse-sm {
    flex-wrap: wrap-reverse;
  }
  .order1-sm {
    order: 1;
  }
  .order2-sm {
    order: 2;
  }
  .order3-sm {
    order: 3;
  }
  .order4-sm {
    order: 4;
  }
  .order5-sm {
    order: 5;
  }
  .order6-sm {
    order: 6;
  }
  .order7-sm {
    order: 7;
  }
  .order8-sm {
    order: 8;
  }
  .order9-sm {
    order: 9;
  }
  .justify-start-sm {
    justify-content: flex-start;
  }
  .justify-end-sm {
    justify-content: flex-end;
  }
  .justify-center-sm {
    justify-content: center;
  }
  .justify-between-sm {
    justify-content: space-between;
  }
  .width-full-sm {
    width: 100%;
  }
  .absolute-sm.width-full-sm {
    width: calc(100% - 24px);
  }
  .pad-reset-sm {
    padding: 12px !important;
  }
  .pad-t-reset-sm {
    padding-top: 12px !important;
  }
  .pad-r-reset-sm {
    padding-right: 12px !important;
  }
  .pad-b-reset-sm {
    padding-bottom: 12px !important;
  }
  .pad-l-reset-sm {
    padding-left: 12px !important;
  }
  .gap1-sm {
    gap: 1px;
  }
  .gap4-sm {
    gap: 4px;
  }
  .row-gap4-sm {
    row-gap: 4px;
  }
  .col-gap4-sm {
    column-gap: 4px;
  }
  .gap8-sm {
    gap: 8px;
  }
  .row-gap8-sm {
    row-gap: 8px;
  }
  .col-gap8-sm {
    column-gap: 8px;
  }
  .gap16-sm {
    gap: 16px;
  }
  .row-gap16-sm {
    row-gap: 16px;
  }
  .col-gap16-sm {
    column-gap: 16px;
  }
  .gap24-sm {
    gap: 24px;
  }
  .row-gap24-sm {
    row-gap: 24px;
  }
  .col-gap24-sm {
    column-gap: 24px;
  }
  .gap32-sm {
    gap: 32px;
  }
  .row-gap32-sm {
    row-gap: 32px;
  }
  .col-gap32-sm {
    column-gap: 32px;
  }
  .gap48-sm {
    gap: 48px;
  }
  .row-gap48-sm {
    row-gap: 48px;
  }
  .col-gap48-sm {
    column-gap: 48px;
  }
  .gap64-sm {
    gap: 64px;
  }
  .row-gap64-sm {
    row-gap: 64px;
  }
  .col-gap64-sm {
    column-gap: 64px;
  }
  .width-xxxl,
  .width-xxxl-sm {
    width: 64px;
  }
  .width-xxl,
  .width-xxl-sm {
    width: 48px;
  }
  .width-xl,
  .width-xl-sm {
    width: 32px;
  }
  .width-lg,
  .width-lg-sm {
    width: 24px;
  }
  .width-md,
  .width-md-sm {
    width: 16px;
  }
  .width-sm,
  .width-sm-sm {
    width: 8px;
  }
  .width-xs,
  .width-xs-sm {
    width: 16px;
  }
  .width-xxs,
  .width-xxs-sm {
    width: 8px;
  }
  .width-xxxs,
  .width-xxxs-sm {
    width: 4px;
  }
  .height-xxxl,
  .height-xxxl-sm {
    height: 64px;
  }
  .height-xxl,
  .height-xxl-sm {
    height: 48px;
  }
  .height-xl,
  .height-xl-sm {
    height: 32px;
  }
  .height-lg,
  .height-lg-sm {
    height: 24px;
  }
  .height-md,
  .height-md-sm {
    height: 16px;
  }
  .height-sm,
  .height-sm-sm {
    height: 8px;
  }
  .height-xs,
  .height-xs-sm {
    height: 16px;
  }
  .height-xxs,
  .height-xxs-sm {
    height: 8px;
  }
  .height-xxxs,
  .height-xxxs-sm {
    height: 4px;
  }
  .mar-xxxl,
  .mar-xxxl-sm {
    margin: 64px;
  }
  .mar-xxl,
  .mar-xxl-sm {
    margin: 48px;
  }
  .mar-xl,
  .mar-xl-sm {
    margin: 32px;
  }
  .mar-lg,
  .mar-lg-sm {
    margin: 24px;
  }
  .mar-md,
  .mar-md-sm {
    margin: 16px;
  }
  .mar-sm,
  .mar-sm-sm {
    margin: 8px;
  }
  .mar-xs,
  .mar-xs-sm {
    margin: 16px;
  }
  .mar-xxs,
  .mar-xxs-sm {
    margin: 8px;
  }
  .mar-xxxs,
  .mar-xxxs-sm {
    margin: 4px;
  }
  .mar-none,
  .mar-none-sm {
    margin: 0;
  }
  .mar-t-xxxl,
  .mar-t-xxxl-sm {
    margin-top: 64px;
  }
  .mar-t-xxl,
  .mar-t-xxl-sm {
    margin-top: 48px;
  }
  .mar-t-xl,
  .mar-t-xl-sm {
    margin-top: 32px;
  }
  .mar-t-lg,
  .mar-t-lg-sm {
    margin-top: 24px;
  }
  .mar-t-md,
  .mar-t-md-sm {
    margin-top: 16px;
  }
  .mar-t-sm,
  .mar-t-sm-sm {
    margin-top: 8px;
  }
  .mar-t-xs,
  .mar-t-xs-sm {
    margin-top: 16px;
  }
  .mar-t-xxs,
  .mar-t-xxs-sm {
    margin-top: 8px;
  }
  .mar-t-xxxs,
  .mar-t-xxxs-sm {
    margin-top: 4px;
  }
  .mar-t-2,
  .mar-t-2-sm {
    margin-top: 2px;
  }
  .mar-t-1,
  .mar-t-1-sm {
    margin-top: 1px;
  }
  .mar-t-none,
  .mar-t-none-sm {
    margin-top: 0;
  }
  .mar-r-xxxl,
  .mar-r-xxxl-sm {
    margin-right: 64px;
  }
  .mar-r-xxl,
  .mar-r-xxl-sm {
    margin-right: 48px;
  }
  .mar-r-xl,
  .mar-r-xl-sm {
    margin-right: 32px;
  }
  .mar-r-lg,
  .mar-r-lg-sm {
    margin-right: 24px;
  }
  .mar-r-md,
  .mar-r-md-sm {
    margin-right: 16px;
  }
  .mar-r-sm,
  .mar-r-sm-sm {
    margin-right: 8px;
  }
  .mar-r-xs,
  .mar-r-xs-sm {
    margin-right: 16px;
  }
  .mar-r-xxs,
  .mar-r-xxs-sm {
    margin-right: 8px;
  }
  .mar-r-xxxs,
  .mar-r-xxxs-sm {
    margin-right: 4px;
  }
  .mar-r-none,
  .mar-r-none-sm {
    margin-right: 0;
  }
  .mar-b-xxxl,
  .mar-b-xxxl-sm {
    margin-bottom: 64px;
  }
  .mar-b-xxl,
  .mar-b-xxl-sm {
    margin-bottom: 48px;
  }
  .mar-b-xl,
  .mar-b-xl-sm {
    margin-bottom: 32px;
  }
  .mar-b-lg,
  .mar-b-lg-sm {
    margin-bottom: 24px;
  }
  .mar-b-md,
  .mar-b-md-sm {
    margin-bottom: 16px;
  }
  .mar-b-sm,
  .mar-b-sm-sm {
    margin-bottom: 8px;
  }
  .mar-b-xs,
  .mar-b-xs-sm {
    margin-bottom: 16px;
  }
  .mar-b-xxs,
  .mar-b-xxs-sm {
    margin-bottom: 8px;
  }
  .mar-b-xxxs,
  .mar-b-xxxs-sm {
    margin-bottom: 4px;
  }
  .mar-b-2,
  .mar-b-2-sm {
    margin-bottom: 2px;
  }
  .mar-b-1,
  .mar-b-1-sm {
    margin-bottom: 1px;
  }
  .mar-b-none,
  .mar-b-none-sm {
    margin-bottom: 0;
  }
  .mar-l-xxxl,
  .mar-l-xxxl-sm {
    margin-left: 64px;
  }
  .mar-l-xxl,
  .mar-l-xxl-sm {
    margin-left: 48px;
  }
  .mar-l-xl,
  .mar-l-xl-sm {
    margin-left: 32px;
  }
  .mar-l-lg,
  .mar-l-lg-sm {
    margin-left: 24px;
  }
  .mar-l-md,
  .mar-l-md-sm {
    margin-left: 16px;
  }
  .mar-l-sm,
  .mar-l-sm-sm {
    margin-left: 8px;
  }
  .mar-l-xs,
  .mar-l-xs-sm {
    margin-left: 16px;
  }
  .mar-l-xxs,
  .mar-l-xxs-sm {
    margin-left: 8px;
  }
  .mar-l-xxxs,
  .mar-l-xxxs-sm {
    margin-left: 4px;
  }
  .mar-l-none,
  .mar-l-none-sm {
    margin-left: 0;
  }
  .pad-xxxl,
  .pad-xxxl-sm {
    padding: 64px;
  }
  .pad-xxl,
  .pad-xxl-sm {
    padding: 48px;
  }
  .pad-xl,
  .pad-xl-sm {
    padding: 32px;
  }
  .pad-lg,
  .pad-lg-sm {
    padding: 24px;
  }
  .pad-md,
  .pad-md-sm {
    padding: 16px;
  }
  .pad-sm,
  .pad-sm-sm {
    padding: 8px;
  }
  .pad-xs,
  .pad-xs-sm {
    padding: 16px;
  }
  .pad-xxs,
  .pad-xxs-sm {
    padding: 8px;
  }
  .pad-xxxs,
  .pad-xxxs-sm {
    padding: 4px;
  }
  .pad-xxxxs,
  .pad-xxxxs-sm {
    padding: 2px;
  }
  .pad-none,
  .nopad-sm,
  .pad-none-sm {
    padding: 0;
  }
  .pad-t-xxxl,
  .pad-t-xxxl-sm {
    padding-top: 64px;
  }
  .pad-t-xxl,
  .pad-t-xxl-sm {
    padding-top: 48px;
  }
  .pad-t-xl,
  .pad-t-xl-sm {
    padding-top: 32px;
  }
  .pad-t-lg,
  .pad-t-lg-sm {
    padding-top: 24px;
  }
  .pad-t-md,
  .pad-t-md-sm {
    padding-top: 16px;
  }
  .pad-t-sm,
  .pad-t-sm-sm {
    padding-top: 8px;
  }
  .pad-t-xs,
  .pad-t-xs-sm {
    padding-top: 16px;
  }
  .pad-t-xxs,
  .pad-t-xxs-sm {
    padding-top: 8px;
  }
  .pad-t-xxxs,
  .pad-t-xxxs-sm {
    padding-top: 4px;
  }
  .pad-t-xxxxs,
  .pad-t-xxxxs-sm {
    padding-top: 2px;
  }
  .pad-t-none,
  .pad-t-none-sm {
    padding-top: 0;
  }
  .pad-r-xxxl,
  .pad-r-xxxl-sm {
    padding-right: 64px;
  }
  .pad-r-xxl,
  .pad-r-xxl-sm {
    padding-right: 48px;
  }
  .pad-r-xl,
  .pad-r-xl-sm {
    padding-right: 32px;
  }
  .pad-r-lg,
  .pad-r-lg-sm {
    padding-right: 24px;
  }
  .pad-r-md,
  .pad-r-md-sm {
    padding-right: 16px;
  }
  .pad-r-12-sm {
    padding-right: 12px;
  }
  .pad-r-sm,
  .pad-r-sm-sm {
    padding-right: 8px;
  }
  .pad-r-xs,
  .pad-r-xs-sm {
    padding-right: 16px;
  }
  .pad-r-xxs,
  .pad-r-xxs-sm {
    padding-right: 8px;
  }
  .pad-r-xxxs,
  .pad-r-xxxs-sm {
    padding-right: 4px;
  }
  .pad-r-xxxxs,
  .pad-r-xxxxs-sm {
    padding-right: 2px;
  }
  .pad-r-none,
  .pad-r-none-sm {
    padding-right: 0;
  }
  .pad-b-xxxl,
  .pad-b-xxxl-sm {
    padding-bottom: 64px;
  }
  .pad-b-xxl,
  .pad-b-xxl-sm {
    padding-bottom: 48px;
  }
  .pad-b-xl,
  .pad-b-xl-sm {
    padding-bottom: 32px;
  }
  .pad-b-lg,
  .pad-b-lg-sm {
    padding-bottom: 24px;
  }
  .pad-b-md,
  .pad-b-md-sm {
    padding-bottom: 16px;
  }
  .pad-b-sm,
  .pad-b-sm-sm {
    padding-bottom: 8px;
  }
  .pad-b-xs,
  .pad-b-xs-sm {
    padding-bottom: 16px;
  }
  .pad-b-xxs,
  .pad-b-xxs-sm {
    padding-bottom: 8px;
  }
  .pad-b-xxxs,
  .pad-b-xxxs-sm {
    padding-bottom: 4px;
  }
  .pad-b-xxxxs,
  .pad-b-xxxxs-sm {
    padding-bottom: 2px;
  }
  .pad-b-none,
  .pad-b-none-sm {
    padding-bottom: 0;
  }
  .pad-l-xxxl,
  .pad-l-xxxl-sm {
    padding-left: 64px;
  }
  .pad-l-xxl,
  .pad-l-xxl-sm {
    padding-left: 48px;
  }
  .pad-l-xl,
  .pad-l-xl-sm {
    padding-left: 32px;
  }
  .pad-l-lg,
  .pad-l-lg-sm {
    padding-left: 24px;
  }
  .pad-l-md,
  .pad-l-md-sm {
    padding-left: 16px;
  }
  .pad-l-12-sm {
    padding-left: 12px;
  }
  .pad-l-sm,
  .pad-l-sm-sm {
    padding-left: 8px;
  }
  .pad-l-xs,
  .pad-l-xs-sm {
    padding-left: 16px;
  }
  .pad-l-xxs,
  .pad-l-xxs-sm {
    padding-left: 8px;
  }
  .pad-l-xxxs,
  .pad-l-xxxs-sm {
    padding-left: 4px;
  }
  .pad-l-xxxxs,
  .pad-l-xxxxs-sm {
    padding-left: 2px;
  }
  .pad-l-none,
  .pad-l-none-sm {
    padding-left: 0;
  }
  .hide-sm,
  .hidden-mobile,
  .visible-desktop,
  .visible-tablet {
    display: none !important;
  }
  .no-radius-sm {
    border-radius: 0 !important;
  }
  .btn-full-width-sm {
    min-width: 100%;
  }
}

.child-height-full > * {
  height: 100%;
}

.container-query {
  container-type: inline-size;
}

.show {
  display: inherit;
}

.hide {
  display: none !important;
}

.visible {
  visibility: visible !important;
}

.bg-art,
.hero-bg {
  border-radius: inherit;
}

.top {
  top: 0;
}

.top1 {
  top: 1px;
}

.top2 {
  top: 2px;
}

.top4 {
  top: 4px;
}

.top6 {
  top: 6px;
}

.top8 {
  top: 8px;
}

.top10 {
  top: 10px;
}

.top-1 {
  top: -1px;
}

.top-2 {
  top: -2px;
}

.top-4 {
  top: -4px;
}

.top-6 {
  top: -6px;
}

.top-8 {
  top: -8px;
}

.top-10 {
  top: -10px;
}

.top-12 {
  top: -12px;
}

.top-14 {
  top: -14px;
}

.right {
  right: 0;
}

.right2 {
  right: 2px;
}

.right4 {
  right: 4px;
}

.right6 {
  right: 6px;
}

.right8 {
  right: 8px;
}

.right10 {
  right: 10px;
}

.right-2 {
  right: -2px;
}

.right-4 {
  right: -4px;
}

.right-6 {
  right: -6px;
}

.right-8 {
  right: -8px;
}

.right-10 {
  right: -10px;
}

.right-12 {
  right: -12px;
}

.right-14 {
  right: -14px;
}

.left {
  left: 0;
}

.left2 {
  left: 2px;
}

.left4 {
  left: 4px;
}

.left6 {
  left: 6px;
}

.left8 {
  left: 8px;
}

.left10 {
  left: 10px;
}

.left-1 {
  left: -1px;
}

.left-2 {
  left: -2px;
}

.left-4 {
  left: -4px;
}

.left-6 {
  left: -6px;
}

.left-8 {
  left: -8px;
}

.left-10 {
  left: -10px;
}

.left-12 {
  left: -12px;
}

.left-14 {
  left: -14px;
}

.bottom {
  bottom: 0;
}

.bottom2 {
  bottom: 2px;
}

.bottom-6 {
  bottom: -6px;
}

.bottom-10 {
  bottom: -10px;
}

.row-reverse {
  flex-direction: row-reverse;
}

.zauto {
  z-index: auto;
}

.z-1 {
  z-index: -1;
}

.z-2 {
  z-index: -2;
}

.z-3 {
  z-index: -3;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.z6 {
  z-index: 6;
}

.z9999 {
  z-index: 9999;
}

.aspect-ratio-1 {
  aspect-ratio: 1/1;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16/9;
}

.aspect-ratio-8-5 {
  aspect-ratio: 8/5;
}

.aspect-ratio-8-3 {
  aspect-ratio: 8/3;
}

.aspect-ratio-4-3 {
  aspect-ratio: 4/3;
}

.obj-fit-cover {
  object-fit: cover;
}

.obj-fit-contain {
  object-fit: contain;
}

.obj-fit-fill {
  object-fit: fill;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.valign-top {
  vertical-align: top;
}

.valign-middle {
  vertical-align: middle;
}

.valign-bottom {
  vertical-align: bottom;
}

.touch-space {
  min-height: 44px;
  min-width: 44px;
}

.is-tabbing .focus-inset:focus {
  outline: 0 !important;
  position: relative;
}

.is-tabbing .focus-inset:focus:before {
  content: "";
  position: absolute;
  outline: 1px dotted #fff;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 1rem;
}

.outline-offset6 {
  outline-offset: 6px !important;
}

.outline-offset-1 {
  outline-offset: -1px !important;
}

.outline-offset-2 {
  outline-offset: -2px !important;
}

.outline-offset-3 {
  outline-offset: -3px !important;
}

.outline-offset-4 {
  outline-offset: -4px !important;
}

.outline-offset-5 {
  outline-offset: -5px !important;
}

.outline-offset-6 {
  outline-offset: -6px !important;
}

.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 1;
}

.fadeout {
  opacity: 0;
  transition: opacity .25s linear 0s !important;
}

.fadein {
  opacity: 1;
  transition: opacity .25s linear 0s !important;
}

.gpcoverlayvisibility {
  opacity: 1 !important;
  transition: opacity .25s linear 0s !important;
}

.transparent {
  background-color: rgba(0, 0, 0, 0) !important;
}

.next-visible-on-hover + * {
  visibility: hidden;
}

.next-visible-on-focus + * {
  visibility: hidden;
}

.next-visible-on-hover:hover + *,
.next-visible-on-focus:focus + * {
  visibility: visible !important;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.x-mandatory {
  scroll-snap-type: x mandatory;
}

.x-proximity {
  scroll-snap-type: x proximity;
}

.overflow-x-scroll.scroll-snap-start > * {
  scroll-snap-align: start;
}

.overflow-x-scroll.scroll-snap-center > * {
  scroll-snap-align: center;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.text-overflow {
  text-overflow: ellipsis;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rotate45,
.rotate45-before:before,
.rotate45-after:after {
  transform: rotate(45deg);
}

.rotate90,
.rotate90-before:before,
.rotate90-after:after {
  transform: rotate(90deg);
}

.rotate180,
.rotate180-before:before,
.rotate180-after:after {
  transform: rotate(180deg);
}

.rotate270,
.rotate270-before:before,
.rotate270-after:after {
  transform: rotate(270deg);
}

.animate[class*="rotate"],
.animate[class*="rotate"]:before,
.animate[class*="rotate"]:after {
  transition: transform 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.animate-slide-open,
.animate-slide-close {
  transition: max-height 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.animate-slide-close {
  max-height: 0;
}

.trans-color {
  transition: color .7s linear 0s;
}

.trans-bgcolor {
  transition: background-color .7s linear 0s;
}

.loading-spinner g {
  animation: loading-spinner 2.25s linear infinite;
  transform-origin: center;
}

@keyframes loading-spinner {
  to {
    transform: rotate(360deg);
    transform-origin: center center;
  }
}

.loading-spinner-outer {
  animation: loading-spinner-outer 1.6875s ease-in-out infinite;
}

@keyframes loading-spinner-outer {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  to {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}

.border {
  border: 1px solid #dcdfe3;
}

.border-top {
  border-top: 1px solid transparent;
}

.border-bottom {
  border-bottom: 1px solid transparent;
}

.border-left {
  border-left: 1px solid transparent;
}

.border-right {
  border-right: 1px solid transparent;
}

.border-left-none {
  border-left: none;
}

.border-none {
  border: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .border-top-none-md {
    border-top: none;
  }
  .border-right-none-md {
    border-right: none;
  }
  .border-bottom-none-md {
    border-bottom: none;
  }
  .border-left-none-md {
    border-left: none;
  }
  .border-top-md {
    border-top: 1px solid transparent;
  }
}

@media (max-width: 767px) {
  .border-top-none-sm {
    border-top: none;
  }
  .border-right-none-sm {
    border-right: none;
  }
  .border-bottom-none-sm {
    border-bottom: none;
  }
  .border-left-none-sm {
    border-left: none;
  }
  .border-top-sm {
    border-top: 1px solid transparent;
  }
}

.border-black {
  border-color: #000;
}

.border-ui-black,
.border-gray-800 {
  border-color: #1d2329;
}

.border-dark-gray,
.border-gray-700 {
  border-color: #454b52;
}

.border-medium-gray,
.border-gray-600 {
  border-color: #686e74;
}

.border-gray-500 {
  border-color: #878c94;
}

.border-gray-400 {
  border-color: #bdc2c7;
}

.border-light-gray,
.border-gray-300 {
  border-color: #dcdfe3;
}

.border-background-gray,
.border-gray-200 {
  border-color: #f3f4f6;
}

.border-white {
  border-color: #fff;
}

.border-transparent {
  border-color: transparent;
}

.border-cobalt-400 {
  border-color: #007ae2;
}

.border-cobalt,
.border-cobalt-600 {
  border-color: #0057b8;
}

.border-func-blue {
  border-color: #0074b3;
}

.border-att-cobalt {
  border-color: #00388f;
}

.border-att-blue {
  border-color: #009fdb;
}

.border-att-blue-000 {
  border-color: #f2fafd;
}

.border-att-blue-100 {
  border-color: #dcf3fa;
}

.box-shadow1 {
  box-shadow: 0px 1px 4px 0px #25303a1a, 0px 1px 8px 0px #25303a14, 0px 2px 2px -1px #25303a1a;
}

.box-shadow2 {
  box-shadow: 0px 2px 12px 0px #25303a0f, 0px 2px 4px -1px #25303a0f, 0px 2px 8px 0px #25303a1e;
}

.box-shadow2-bot {
  box-shadow: 0px -2px 12px 0px #25303a0f, 0px -2px 4px -1px #25303a0f, 0px -2px 8px 0px #25303a1e;
}

.box-shadow3 {
  box-shadow: 0px 2px 5px 0px #25303A29, 0px 4px 3px -2px #25303A0F, 0px 8px 13px 0px #25303A0D;
}

.box-shadow4 {
  box-shadow: 0px 4px 12px 0px #25303A29, 0px 6px 8px -2px #25303A0F, 0px 10px 10px 0px #25303A0D;
}

.box-shadow4-bot {
  box-shadow: 0px -4px 12px 0px #25303A29, 0px -6px 8px -2px #25303A0F, 0px -10px 10px 0px #25303A0D;
}

.drawer-shadow {
  box-shadow: 0px 0px 20px 6px #25303a1a, 0px 0px 10px 1px #25303a1f, 0px 0px 12px 2px #25303a33;
}

.border-shadow {
  box-shadow: 0 0 0 1px #dcdfe3;
}

.round,
.round:before,
.round:after {
  border-radius: 100%;
}

.radius-sm,
.radius-sm:before,
.radius-sm:after {
  border-radius: 0.4rem;
}

.radius-sm-tl {
  border-top-left-radius: 0.4rem;
}

.radius-sm-bl {
  border-bottom-left-radius: 0.4rem;
}

.radius-md,
.radius-md:before,
.radius-md:after {
  border-radius: 0.8rem;
}

.radius-lg,
.radius-lg:before,
.radius-lg:after {
  border-radius: 1.6rem;
}

.radius-lg-tr {
  border-top-right-radius: 1.6rem;
}

.radius-lg-tl {
  border-top-left-radius: 1.6rem;
}

.radius-lg-bl {
  border-bottom-left-radius: 1.6rem;
}

.radius-lg-br {
  border-bottom-right-radius: 1.6rem;
}

.radius-b-none {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.radius-t-none {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.radius-none {
  border-radius: 0;
}

.radius-top-inherit {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.radius-bottom-inherit {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.radius-left-inherit {
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}

.radius-right-inherit {
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

.radius-bugfix {
  background-clip: content-box;
  padding: 1px;
}

.pill-radius {
  border-radius: 2em;
}

.pill-end-caps > *:first-child {
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
}

.pill-end-caps > *:last-child {
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
}

@media (max-width: 1324px) {
  .container[class*="radius-"] {
    border-radius: 0;
  }
}

:not([class*="color-"]) .svg-accent,
svg .currentColor,
svg .svg-base {
  fill: currentColor !important;
}

svg .currentStrokeColor {
  stroke: currentColor !important;
}

.color-gray800-white.svg-accent-att-blue .svg-accent,
.color-white.svg-accent-att-blue .svg-accent,
.color-ui-white.svg-accent-att-blue .svg-accent,
.color-black.svg-accent-att-blue .svg-accent,
.color-gray-800.svg-accent-att-blue .svg-accent,
.svg-gray-800.svg-accent-att-blue .svg-accent {
  fill: #009fdb !important;
}

.checkbox.cta-overlay,
.radio.cta-overlay {
  position: static;
}

.cta-overlay:before {
  background-color: transparent;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.checkbox.cta-overlay input,
.radio.cta-overlay input {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.zoom-on-hover:hover .zoomable {
  transform: scale(1.03);
  transition: transform 1s ease 0s;
}

.zoomable {
  backface-visibility: hidden;
  transform: scale(1);
  transition: transform 1s ease 0s;
}

.blur-on-hover:hover .blurable {
  filter: blur(10px);
  transition: filter .5s ease 0s;
}

.blurable {
  transition: filter .5s ease 0s;
}

.cta-container:not([class*="mar-b"]) + *:not([class*="mar-t"]),
*:not([class*="mar-b"]) + .cta-container:not([class*="mar-t"]) {
  margin-top: 24px;
}

*:not(:focus-within) + .prev-focus-within {
  display: none;
}

*:focus-within + .prev-focus-within {
  display: block;
}

.hidden-spoken {
  border: none !important;
  clip-path: inset(50%) !important;
  display: block !important;
  letter-spacing: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
}

.hidden-spoken.rel {
  position: relative !important;
}

.color-urgent {
  color: var(--color-urgent, #c70032);
}

.color-warn {
  color: var(--color-warn, #ea712f);
}

.color-success {
  color: var(--color-success, #2d7e24);
}

.color-info {
  color: var(--color-info, #0074b3);
}

.svg-gray-800,
.color-gray800-white {
  color: #1d2329;
}

.svg-gray-700,
.color-gray700-white {
  color: #454b52;
}

.color-att-blue {
  color: #009fdb;
}

.color-att-blue-000 {
  color: #f2fafd;
}

.color-att-blue-100 {
  color: #dcf3fa;
}

.color-att-blue-200 {
  color: #baeefc;
}

.color-cobalt-100 {
  color: #e5eef8;
}

.color-cobalt-400 {
  color: #007ae2;
}

.color-func-blue {
  color: #0074b3;
}

.color-funcBlue-white {
  color: #0074b3;
}

.color-cobalt,
.color-cobalt-600,
.color-functional-blue,
.color-button-focus {
  color: #0057b8;
}

.color-cobalt600-white {
  color: #0057b8;
}

.color-att-cobalt {
  color: #00388f;
}

/*need theme responsive att cobalt*/
.color-cobalt-800 {
  color: #25303a;
}

.color-functional-lt-green,
.color-green-400 {
  color: #3dab3f;
}

.color-functional-dk-green,
.color-green-600 {
  color: #2d7e24;
}

.color-functional-lt-orange,
.color-orange-400 {
  color: #ff8500;
}

.color-functional-dk-orange,
.color-orange-600 {
  color: #ea712f;
}

.color-functional-lt-red,
.color-red-400 {
  color: #ff605d;
}

.color-functional-dk-red,
.color-red-600 {
  color: #c70032;
}

.color-berry {
  color: #ff585d;
}

.color-lime {
  color: #91dc00;
}

.color-mint {
  color: #49eedc;
}

.color-purple {
  color: #af29bb;
}

.color-tangerine {
  color: #ffb000;
}

.color-black {
  color: #000;
}

.color-ui-white,
.color-white {
  color: #fff;
}

.color-gray-100 {
  color: #f8fafb;
}

.color-ui-background-gray,
.color-gray-200 {
  color: #f3f4f6;
}

.color-ui-light-gray,
.color-gray-300 {
  color: #dcdfe3;
}

.color-gray-400 {
  color: #bdc2c7;
}

.color-ui-gray,
.color-gray-500 {
  color: #878c94;
}

.color-ui-medium-gray,
.color-gray-600 {
  color: #686e74;
}

.color-ui-dark-gray,
.color-gray-700 {
  color: #454b52;
}

.color-ui-black,
.color-gray-800 {
  color: #1d2329;
}

.color-gray-900 {
  color: #13171b;
}

.bg-urgent {
  background-color: var(--color-urgent, #c70032);
}

.bg-warn {
  background-color: var(--color-warn, #ea712f);
}

.bg-success {
  background-color: var(--color-success, #2d7e24);
}

.bg-info {
  background-color: var(--color-info, #0074b3);
}

:hover > .hover-bg-info {
  background-color: var(--color-info-hover, #007ae2);
}

.bg-transparent {
  background-color: rgba(0, 0, 0, 0);
}

.bg-brand-hbomax {
  background-color: #4511a5;
}

.bg-att-blue {
  background-color: #009fdb;
}

.bg-att-blue-000 {
  background-color: #f2fafd;
}

.bg-att-blue-100 {
  background-color: #dcf3fa;
}

.bg-att-blue-200 {
  background-color: #baeefc;
}

.bg-cobalt-100 {
  background-color: #e5eef8;
}

.bg-cobalt-400,
.hover-bg-cobalt-400:hover,
:hover > .hover-bg-cobalt-400 {
  background-color: #007ae2;
}

.bg-cobalt,
.bg-cobalt-600,
.bg-functional-blue,
.hover-bg-cobalt-600,
:hover > .hover-bg-cobalt-600 {
  background-color: #0057b8;
}

.bg-att-cobalt {
  background-color: #00388f;
}

.bg-func-blue {
  background-color: #0074b3;
}

.bg-cobalt-800,
.bg-dark-accent {
  background-color: #25303a;
}

.bg-functional-lt-green,
.bg-green-400 {
  background-color: #3dab3f;
}

.bg-functional-dk-green,
.bg-green-600 {
  background-color: #2d7e24;
}

.bg-functional-lt-orange,
.bg-orange-400 {
  background-color: #ff8500;
}

.bg-functional-dk-orange,
.bg-orange-600 {
  background-color: #ea712f;
}

.bg-functional-lt-red,
.bg-red-400 {
  background-color: #ff605d;
}

.bg-functional-dk-red,
.bg-red-600 {
  background-color: #c70032;
}

.bg-black {
  background-color: #000;
}

.bg-ui-white,
.bg-white {
  background-color: #fff;
}

.bg-berry {
  background-color: #ff585d;
}

.bg-lime {
  background-color: #91dc00;
}

.bg-mint {
  background-color: #49eedc;
}

.bg-purple {
  background-color: #af29bb;
}

.bg-tangerine {
  background-color: #ffb000;
}

.bg-gray-100 {
  background-color: #f8fafb;
}

.bg-ui-background-gray,
.hover-background-gray:hover,
.bg-gray-200,
.hover-bg-gray-200:hover,
:hover > .hover-bg-gray-200 {
  background-color: #f3f4f6;
}

.bg-ui-light-gray,
.bg-gray-300 {
  background-color: #dcdfe3;
}

.bg-gray-400 {
  background-color: #bdc2c7;
}

.bg-ui-gray,
.bg-gray-500 {
  background-color: #878c94;
}

.bg-ui-medium-gray,
.bg-gray-600 {
  background-color: #686e74;
}

.bg-ui-dark-gray,
.bg-gray-700 {
  background-color: #454b52;
}

.bg-ui-black,
.bg-gray-800 {
  background-color: #1d2329;
}

.bg-gray-900 {
  background-color: #13171b;
}

.bg-rgba-cobalt-10,
.bg-cobalt-100 {
  background-color: #e5eef8;
}

.bg-rgba-white-85,
.scrim-light {
  background-color: rgba(255, 255, 255, 0.85);
}

.bg-rgba-black-85,
.scrim-dark {
  background-color: rgba(0, 0, 0, 0.85);
}

[class*="grad-att-blue-"] {
  background-color: #0057b8;
}

.grad-att-blue-90 {
  background-image: linear-gradient(90deg, #0079b1, #00c9ff);
}

[class*="grad-berry-tangerine-"] {
  background-color: #ffb000;
}

.grad-berry-tangerine-90 {
  background-image: linear-gradient(90deg, #ff585d, #ffb000);
}

[class*="grad-lime-mint-"] {
  background-color: #49eedc;
}

.grad-lime-mint-90 {
  background-image: linear-gradient(90deg, #91dc00, #49eedc);
}

[class*="grad-cobalt-purple-"] {
  background-color: #af29bb;
}

.grad-cobalt-purple-90 {
  background-image: linear-gradient(90deg, #0057b8, #af29bb);
}

.grad-1-bottom {
  background-color: #f2fafd;
  background-image: linear-gradient(180deg, #f2fafd, #baeefc);
}

.selected-card-bg {
  background-image: linear-gradient(180deg, #009FDB 0%, #0079B1 25.56%);
}

.text-gradient {
  /*need to remove ".text-gradient sup" and uncomment fix below */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(var(--text-grad-angle, 180deg), var(--text-grad-color1, #1d2329) 0%, var(--text-grad-color2, #1d2329) 100%);
  background-repeat: no-repeat;
  padding-bottom: .06ch;
  width: fit-content;
}

.text-gradient sup {
  position: static;
  margin-top: .65ch;
  vertical-align: top;
}

.grad-apple-purple {
  background-image: linear-gradient(var(--text-grad-angle, 180deg), #ffb6ff 0%, #b344ff 100%);
}

.grad-apple-orange {
  background-image: linear-gradient(var(--text-grad-angle, 180deg), #f0b02a 0%, #f96b60 100%);
}

.currentColor {
  color: currentColor;
}

[class*="icon-chevron"]:after {
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  content: "";
  display: inline-block;
  height: 100%;
  min-height: 16px;
  width: 100%;
  min-width: 16px;
  position: relative;
}

[class*="icon-chevron"]:after,
.accordion-cta .icon-chevron:after,
.collapse-cta .icon-chevron:after,
.primary-cta.font-regular:after,
.primary-cta-list .primary-cta:after,
.rte-styles span.primary-cta + a:after,
.dropdown-button:not(.btn-reset):after,
.dropdown-link:not(.btn-reset):after,
.select-skin:after,
[class*="link-utility-"]:after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.7 13.5l-.7-.72L9.6 8 5 3.22l.7-.72L11 8z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.collapse-cta .icon-chevron:after,
.dropdown-button:not(.btn-reset):after,
.dropdown-link:not(.btn-reset):after,
.select-skin:after,
[class*="link-utility-"]:after {
  background-color: #686e74;
}

.icon-chevron:after,
.primary-cta.font-regular:after,
.primary-cta-list .primary-cta:after,
.rte-styles span.primary-cta + a:after,
.icon-chevron-blue:after,
.link-utility-primary:not(.on-dark):after,
.link-utility-secondary:not(.on-dark):is(:hover, :focus):after {
  background-color: #0074b3;
}

.icon-chevron-gray:after,
.awd-select[disabled] + .select-skin:after,
.dropdown-button:not(.btn-reset)[disabled]:after,
.dropdown-link:not(.btn-reset)[disabled]:after,
.dropdown-[disabled] .icon-chevron-bold:after {
  background-color: #878c94 !important;
}

.icon-chevron-white:after,
.color-white .primary-cta.font-regular:after,
.color-white .primary-cta-list .primary-cta:after,
.color-white.rte-styles span.primary-cta + a:after,
.link-utility-primary.on-dark:after,
.link-utility-secondary.on-dark:after,
[class*="link-utility"].on-dark:after {
  background-color: #fff;
}

.accordion-cta .icon-chevron:after,
.icon-chevron.color-gray-800:after {
  background-color: #1d2329;
}

@media (min-width: 1025px) {
  .accordion-cta .icon-chevron:not([class*="height-"]):after {
    height: 20px;
    width: 20px;
    top: 1px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .accordion-cta .icon-chevron:not([class*="height-"]):after {
    top: 2px;
  }
}

@media (max-width: 767px) {
  .accordion-cta .icon-chevron:not([class*="height-"]):after {
    top: 3px;
  }
}

.icon-chevron-bold:after,
.primary-cta:after,
.dropdown-link:after,
.breadcrumbs li:not(:last-child):after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.18535 12.4935L5.02612 11.3012L8.20922 7.9935L5.02612 4.68585L6.18535 3.4935L10.5217 7.9935L6.18535 12.4935Z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #0074b3;
}

.breadcrumbs li:not(:last-child):after {
  background-color: #454b52;
}

.color-white .primary-cta:after {
  background-color: #fff;
}

[class*="dropdown-"].btn-secondary:hover .icon-chevron-bold:after {
  background-color: #f2fafd;
}

.icon-link-arrow:not(.on-dark):after,
.icon-link-arrow-sm:not(.on-dark):after,
[class*="link-tertiary-"]:after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 10'%3E%3Cpath d='M21.12 0L26 5l-4.88 5-.97-1 3.2-3.3H0V4.3h23.36L20.15 1l.97-1z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #1d2329;
}

[class*="link-tertiary-"].on-dark:after {
  background-color: #fff;
}

[class*="link-tertiary-"][class*="color-"]:not(.on-dark):after,
[class*="link-tertiary-"][class*="color-"]:not(.on-dark):is(:hover, :focus):after,
[class*="link-tertiary-"]:not(.on-dark):is(:hover, :focus):after {
  background-color: currentColor;
}

.icon-close:after {
  align-self: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M17.5 16l4.5 4.5-1.5 1.5-4.5-4.5-4.5 4.5-1.5-1.5 4.5-4.5-4.5-4.5 1.5-1.5 4.5 4.5 4.5-4.5 1.5 1.5z' fill-rule='evenodd'/%3E%3C/svg%3E");
  content: "";
  display: flex;
  height: 100%;
  width: 100%;
}

.icon-close:after,
.icon-close.round.bg-white:after {
  background-color: var(--icon-close-color, #1d2329);
}

.selectWrap .icon-close:after {
  background-color: var(--text-clear-color, #1d2329);
}

.icon-close.color-white:after,
.icon-close.color-ui-white:after {
  background-color: #fff;
}

[class*="wrap-around-close"]:before {
  content: "";
  display: block;
  height: 1em;
  width: 48px;
  float: right;
  margin-right: -24px;
  margin-bottom: 3px;
}

.wrap-around-close-16:before {
  margin-right: -16px;
  margin-bottom: 2px;
}

.wrap-around-close-32:before {
  margin-right: -32px;
}

/* FONTS ********************* */
@font-face {
  font-display: swap;
  font-family: 'font-regular';
  src: url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Rg.woff2") format("woff2"), url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Rg.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: 'font-bold';
  src: url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Bd.woff2") format("woff2"), url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Bd.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: 'font-medium';
  src: url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Md.woff2") format("woff2"), url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Md.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: 'font-thin';
  src: url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Th.woff2") format("woff2"), url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Th.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: 'font-light';
  src: url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Lt.woff2") format("woff2"), url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Lt.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: 'font-black';
  src: url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Blk.woff2") format("woff2"), url("https://www.att.com/es-us/ui/frameworks/fonts/ATTAleckSans_W_Blk.woff") format("woff");
}

.font-regular,
.font-italic {
  font-family: font-regular, sans-serif;
}

.font-italic {
  font-style: italic;
}

.font-bold,
.font-bold-italic {
  font-family: font-bold, sans-serif;
  text-indent: -.05em;
}

.font-bold-italic {
  font-style: italic;
}

.font-medium,
.font-medium-italic {
  font-family: font-medium, sans-serif;
}

.font-medium-italic {
  font-style: italic;
}

.font-thin,
.font-thin-italic {
  font-family: font-thin, sans-serif;
}

.font-thin-italic {
  font-style: italic;
}

.font-light,
.font-light-italic {
  font-family: font-light, sans-serif;
}

.font-light-italic {
  font-style: italic;
}

.font-black,
.font-black-italic {
  font-family: font-black, sans-serif;
}

.font-black-italic {
  font-style: italic;
}

.theme-att-2022 :is([class*="theme-"]) .theme-base-bg:has(.tabs-panel-small) .tabs-bar {
  --tab-lr-shadow: #fff;
  --tab-lr-arrow: #878c94;
}

.theme-att-2022 :is([class*="theme-"]) .theme-accent-bg:has(.tabs-panel-small) .tabs-bar {
  --tab-lr-shadow: #f2fafd;
  --tab-lr-arrow: #878c94;
}

.theme-att-2022 :is([class*="theme-"]) .theme-neutral-bg:has(.tabs-panel-small) .tabs-bar {
  --tab-lr-shadow: #f3f4f6;
  --tab-lr-arrow: #878c94;
}

.theme-att-2022 :is([class*="theme-"]) [class*="theme-dark"]:has(.tabs-panel-small) .tabs-bar {
  --tab-lr-shadow: #25303a;
  --tab-lr-arrow: #bdc2c7;
}

.theme-att-2022 .theme-base-bg:has(.tabs-panel-large) .tabs-bar {
  --tab-lr-shadow: #fff;
  --tab-lr-arrow: #878c94;
}

.theme-att-2022 .theme-accent-bg:has(.tabs-panel-large) .tabs-bar {
  --tab-lr-shadow: #f2fafd;
  --tab-lr-arrow: #878c94;
}

.theme-att-2022 .theme-neutral-bg:has(.tabs-panel-large) .tabs-bar {
  --tab-lr-shadow: #f3f4f6;
  --tab-lr-arrow: #878c94;
}

.theme-att-2022 [class*="theme-dark"]:has(.tabs-panel-large) .tabs-bar {
  --tab-lr-shadow: #25303a;
  --tab-lr-arrow: #bdc2c7;
}

.tabs-bar[class*="bg-"] {
  background-color: transparent;
}

.tabs-bar.border {
  border: 0;
}

.tabs-bar.pill-radius {
  border-radius: initial;
}

.tabs-bar:is(.pad-l-xxs, .pad-r-xxs) {
  padding-left: 0;
  padding-right: 0;
}

:is(.tabs-left-arrow, .tabs-right-arrow):is([class*="pad-t"], [class*="pad-b"]) {
  padding-top: 0;
  padding-bottom: 0;
}

:is(.tabs-left-arrow, .tabs-right-arrow) button.border-left,
:is(.tabs-left-arrow, .tabs-right-arrow) button.border-right {
  border: 0;
  z-index: 4;
}

:is(.tabs-left-arrow, .tabs-right-arrow) button > span {
  color: var(--tab-lr-arrow, #878c94);
  height: 24px !important;
}

.tabs-bar .tabs {
  box-shadow: 0 -1px 0px 0px #bdc2c7 inset;
}

.tabs-bar .tabs:is([class*="pad-"]) {
  padding-top: 0;
  padding-bottom: 0;
}

.tabs-bar .tabs:is([class*="color-"]) {
  color: unset;
}

.tabs-panel-large :is(.tabs-left-arrow, .tabs-right-arrow) button > * {
  box-shadow: -15px 0px 15px 0px var(--tab-lr-shadow, white);
  color: var(--tab-lr-arrow, #878c94);
}

.tabs-panel-small :is(.tabs-left-arrow, .tabs-right-arrow) button > * {
  box-shadow: -5px 0px 10px 0px var(--tab-lr-shadow, white);
}

[class*="tabs-panel-"] .tabs :is(a, button) {
  color: var(--tabs-button, #0074b3);
  font-family: font-bold, sans-serif;
}

[class*="tabs-panel-"] .tabs :is(a, button)[aria-selected="true"] {
  background-color: transparent;
  color: var(--tabs-button-selected, #1d2329);
}

.sticky:has([id*="fauxStickyShadow"]) [id*="fauxStickyShadow"] {
  opacity: .95 !important;
}

.sticky:has([id*="fauxStickyShadow"]:not([class*="theme-dark"])) [id*="fauxStickyShadow"] {
  background-color: #fff !important;
}

.sticky:has([id*="fauxStickyShadow"]:not(.hide)) .tabs-bar .tabs {
  box-shadow: none;
}

[class*="tabs-panel-"] .tabs > .tabs-sliding-bg {
  color: transparent;
  background-color: transparent;
}

[class*="tabs-panel-"] .tabs > .tabs-sliding-bg.border {
  border: 0;
}

[class*="tabs-panel-"] .tabs > .tabs-sliding-bg:after,
[class*="tabs-panel-"] .tabs > a[aria-selected="true"].pill-radius:after {
  background-color: #009fdb;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 3px 3px 0 0;
  transform: translateZ(0);
}

.tabs-panel-small .tabs > :is(a, button, .tabs-sliding-bg) {
  padding-bottom: 8px;
}

.tabs-panel-small :is(.tabs-left-arrow, .tabs-right-arrow) {
  padding: 0 0 8px 0;
}

.is-tabbing .tabs-panel-large .tabs button:focus ~ .tabs-sliding-bg.color-white,
.is-tabbing .tabs-panel-small .tabs button:focus ~ .tabs-sliding-bg.color-white {
  box-shadow: none !important;
  outline: 1px dotted black;
  outline-offset: -1px;
  border-radius: 0;
}

/* TAB TRAY */
@media (max-width: 767px) {
  :is(.tabs-left-arrow, .tabs-right-arrow) button > * {
    box-shadow: -5px 0px 5px 0px var(--tab-lr-shadow, white);
  }
}
