@charset "UTF-8";
/**
 * @file
 * Main SCSS file for MVP VADS theme.
 * This file imports many component SCSS & CSS files.
 * Note: VADS core CSS files are loaded directly in mvp_vads.libraries.yml
 */
/**
 * @file
 * CSS reset and base styles for MVP VADS theme.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, blockquote, pre,
figure, hr {
  font-family: var(--vads-font-family-sans);
}

ul,
ol {
  padding-left: var(--vads-space-3);
}

a {
  color: var(--vads-color-link-default);
  text-decoration: underline;
}
a:hover, a:focus {
  color: var(--vads-color-link-hover);
}
a:visited {
  color: var(--vads-color-link-visited);
}

*:focus {
  outline: var(--vads-focus-outline);
  outline-offset: var(--vads-focus-outline-offset);
}

.visually-hidden {
  padding: 0 !important;
  margin: -1px !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden.focusable:active, .visually-hidden.focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: inherit !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: inherit !important;
}

/**
 * @file
 * Typography utilities and classes for MVP VADS theme.
 */
.vads-u-font-family--sans {
  font-family: var(--font-family-sans, "Source Sans Pro", system-ui, sans-serif) !important;
}

.vads-u-font-size--xs {
  font-size: var(--vads-font-size-xs) !important;
}

.vads-u-font-size--sm {
  font-size: var(--vads-font-size-sm) !important;
}

.vads-u-font-size--base {
  font-size: var(--vads-font-size-base) !important;
}

.vads-u-font-size--md {
  font-size: var(--vads-font-size-md) !important;
}

.vads-u-font-size--lg {
  font-size: var(--vads-font-size-lg) !important;
}

.vads-u-font-size--xl {
  font-size: var(--vads-font-size-xl) !important;
}

.vads-u-font-size--2xl {
  font-size: var(--vads-font-size-2xl) !important;
}

.vads-u-font-weight--normal {
  font-weight: var(--vads-font-weight-normal) !important;
}

.vads-u-font-weight--bold {
  font-weight: var(--vads-font-weight-bold) !important;
}

.vads-u-text-align--left {
  text-align: left !important;
}
.vads-u-text-align--center {
  text-align: center !important;
}
.vads-u-text-align--right {
  text-align: right !important;
}

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

.vads-u-text-transform--uppercase {
  text-transform: uppercase !important;
}
.vads-u-text-transform--lowercase {
  text-transform: lowercase !important;
}
.vads-u-text-transform--capitalize {
  text-transform: capitalize !important;
}

.vads-u-line-height--1 {
  line-height: 1 !important;
}

.vads-u-line-height--2 {
  line-height: var(--vads-line-height-heading) !important;
}

.vads-u-line-height--3 {
  line-height: var(--vads-line-height-base) !important;
}

.vads-u-line-height--4 {
  line-height: 1.8 !important;
}

.vads-u-letter-spacing--tight {
  letter-spacing: -0.025em !important;
}
.vads-u-letter-spacing--normal {
  letter-spacing: 0 !important;
}
.vads-u-letter-spacing--wide {
  letter-spacing: 0.05em !important;
}

.vads-top--margin-xs {
  margin-top: 5px !important;
}
.vads-top--margin-sm {
  margin-top: 10px !important;
}
.vads-top--margin-medium {
  margin-top: 20px !important;
}
.vads-top--margin-l {
  margin-top: 30px !important;
}
.vads-top--margin-xl {
  margin-top: 40px !important;
}

.vads-bottom--margin-xs {
  margin-bottom: 5px !important;
}
.vads-bottom--margin-sm {
  margin-bottom: 10px !important;
}
.vads-bottom--margin-medium {
  margin-bottom: 20px !important;
}
.vads-bottom--margin-l {
  margin-bottom: 30px !important;
}
.vads-bottom--margin-xl {
  margin-bottom: 40px !important;
}

.vads-u-color--base {
  color: var(--vads-color-base, #323A45) !important;
}

.vads-u-color--base-darkest {
  color: var(--vads-color-base-darkest, #212121) !important;
}

.vads-u-color--primary {
  color: var(--vads-color-primary, #005EA2) !important;
}

.vads-u-color--secondary {
  color: var(--vads-color-secondary, #B51D09) !important;
}

.vads-u-color--success {
  color: var(--vads-color-success, #00a91c) !important;
}

.vads-u-color--warning {
  color: var(--vads-color-warning, #ffbe2e) !important;
}

.vads-u-color--error {
  color: var(--vads-color-error, #e31c3d) !important;
}

.vads-u-color--white {
  color: var(--vads-color-white, #ffffff) !important;
}

/**
 * @file
 * Base element styles for MVP VADS theme using VA Design System.
 */
h1,
.h1 {
  font-size: var(--vads-font-size-3xl);
}

h2,
.h2 {
  font-size: var(--vads-font-size-xl);
}

h3,
.h3 {
  font-size: var(--vads-font-size-lg);
}

h4,
.h4 {
  font-size: var(--vads-font-size-md);
}

h5,
.h5 {
  font-size: var(--vads-font-size-base);
}

h6,
.h6 {
  font-size: var(--vads-font-size-sm);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: var(--vads-font-weight-bold);
  line-height: var(--vads-line-height-heading);
  margin-bottom: 0.75em;
  margin-top: 0.75em;
}

p,
.body-text,
body {
  font-size: var(--vads-font-size-base);
}

.lead {
  font-size: var(--vads-font-size-lg);
  line-height: var(--vads-line-height-base);
  margin-bottom: var(--vads-space-2);
}

small,
.small {
  font-size: var(--vads-font-size-sm);
}

blockquote {
  font-size: var(--vads-font-size-lg);
  line-height: var(--vads-line-height-base);
  margin: var(--vads-space-2) 0;
  padding-left: var(--vads-space-2);
  border-left: 4px solid var(--vads-color-primary);
  font-style: italic;
}

hr {
  border: 0;
  height: 1px;
  background-color: var(--vads-color-base-light);
  margin: var(--vads-space-2) 0;
}

.margin-top-margin-xs {
  margin-top: var(--vads-spacing-1);
}
.margin-top-margin-sm {
  margin-top: var(--vads-spacing-2);
}
.margin-top-margin-medium {
  margin-top: var(--vads-spacing-3);
}
.margin-top-margin-l {
  margin-top: var(--vads-spacing-4);
}
.margin-top-margin-xl {
  margin-top: var(--vads-spacing-5);
}

.margin-bottom-margin-xs {
  margin-bottom: var(--vads-spacing-1);
}
.margin-bottom-margin-sm {
  margin-bottom: var(--vads-spacing-2);
}
.margin-bottom-margin-medium {
  margin-bottom: var(--vads-spacing-3);
}
.margin-bottom-margin-l {
  margin-bottom: var(--vads-spacing-4);
}
.margin-bottom-margin-xl {
  margin-bottom: var(--vads-spacing-5);
}

/**
 * @file
 * VADS-style sizing utilities for width and height.
 * Based on the VADS spacing scale (8px base units).
 * This file generates utility classes for width, height, min-width, max-width,
 * min-height, and max-height, as well as responsive variants for each breakpoint.
 */
.vads-u-width--0 {
  width: 0 !important;
}

.vads-u-width--0p5 {
  width: 0.25rem !important;
}

.vads-u-width--1 {
  width: 0.5rem !important;
}

.vads-u-width--1p5 {
  width: 0.75rem !important;
}

.vads-u-width--2 {
  width: 1rem !important;
}

.vads-u-width--2p5 {
  width: 1.25rem !important;
}

.vads-u-width--3 {
  width: 1.5rem !important;
}

.vads-u-width--4 {
  width: 2rem !important;
}

.vads-u-width--5 {
  width: 2.5rem !important;
}

.vads-u-width--6 {
  width: 3rem !important;
}

.vads-u-width--7 {
  width: 3.5rem !important;
}

.vads-u-width--8 {
  width: 4rem !important;
}

.vads-u-width--9 {
  width: 4.5rem !important;
}

.vads-u-width--10 {
  width: 5rem !important;
}

.vads-u-width--11 {
  width: 5.5rem !important;
}

.vads-u-width--12 {
  width: 6rem !important;
}

.vads-u-width--13 {
  width: 6.5rem !important;
}

.vads-u-width--14 {
  width: 7rem !important;
}

.vads-u-width--15 {
  width: 7.5rem !important;
}

.vads-u-width--16 {
  width: 8rem !important;
}

.vads-u-width--17 {
  width: 8.5rem !important;
}

.vads-u-width--18 {
  width: 9rem !important;
}

.vads-u-width--19 {
  width: 9.5rem !important;
}

.vads-u-width--20 {
  width: 10rem !important;
}

.vads-u-width--21 {
  width: 10.5rem !important;
}

.vads-u-width--22 {
  width: 11rem !important;
}

.vads-u-width--23 {
  width: 11.5rem !important;
}

.vads-u-width--24 {
  width: 12rem !important;
}

.vads-u-width--25 {
  width: 12.5rem !important;
}

.vads-u-width--26 {
  width: 13rem !important;
}

.vads-u-width--27 {
  width: 13.5rem !important;
}

.vads-u-width--28 {
  width: 14rem !important;
}

.vads-u-width--29 {
  width: 14.5rem !important;
}

.vads-u-width--30 {
  width: 15rem !important;
}

.vads-u-width--31 {
  width: 15.5rem !important;
}

.vads-u-width--32 {
  width: 16rem !important;
}

.vads-u-width--auto {
  width: auto !important;
}

.vads-u-width--full {
  width: 100% !important;
}

.vads-u-width--screen {
  width: 100vw !important;
}

.vads-u-height--0 {
  height: 0 !important;
}

.vads-u-height--0p5 {
  height: 0.25rem !important;
}

.vads-u-height--1 {
  height: 0.5rem !important;
}

.vads-u-height--1p5 {
  height: 0.75rem !important;
}

.vads-u-height--2 {
  height: 1rem !important;
}

.vads-u-height--2p5 {
  height: 1.25rem !important;
}

.vads-u-height--3 {
  height: 1.5rem !important;
}

.vads-u-height--4 {
  height: 2rem !important;
}

.vads-u-height--5 {
  height: 2.5rem !important;
}

.vads-u-height--6 {
  height: 3rem !important;
}

.vads-u-height--7 {
  height: 3.5rem !important;
}

.vads-u-height--8 {
  height: 4rem !important;
}

.vads-u-height--9 {
  height: 4.5rem !important;
}

.vads-u-height--10 {
  height: 5rem !important;
}

.vads-u-height--11 {
  height: 5.5rem !important;
}

.vads-u-height--12 {
  height: 6rem !important;
}

.vads-u-height--13 {
  height: 6.5rem !important;
}

.vads-u-height--14 {
  height: 7rem !important;
}

.vads-u-height--15 {
  height: 7.5rem !important;
}

.vads-u-height--16 {
  height: 8rem !important;
}

.vads-u-height--17 {
  height: 8.5rem !important;
}

.vads-u-height--18 {
  height: 9rem !important;
}

.vads-u-height--19 {
  height: 9.5rem !important;
}

.vads-u-height--20 {
  height: 10rem !important;
}

.vads-u-height--21 {
  height: 10.5rem !important;
}

.vads-u-height--22 {
  height: 11rem !important;
}

.vads-u-height--23 {
  height: 11.5rem !important;
}

.vads-u-height--24 {
  height: 12rem !important;
}

.vads-u-height--25 {
  height: 12.5rem !important;
}

.vads-u-height--26 {
  height: 13rem !important;
}

.vads-u-height--27 {
  height: 13.5rem !important;
}

.vads-u-height--28 {
  height: 14rem !important;
}

.vads-u-height--29 {
  height: 14.5rem !important;
}

.vads-u-height--30 {
  height: 15rem !important;
}

.vads-u-height--31 {
  height: 15.5rem !important;
}

.vads-u-height--32 {
  height: 16rem !important;
}

.vads-u-height--auto {
  height: auto !important;
}

.vads-u-height--full {
  height: 100% !important;
}

.vads-u-height--viewport {
  height: 100vh !important;
}

.vads-u-min-width--0 {
  min-width: 0 !important;
}

.vads-u-min-width--0p5 {
  min-width: 0.25rem !important;
}

.vads-u-min-width--1 {
  min-width: 0.5rem !important;
}

.vads-u-min-width--1p5 {
  min-width: 0.75rem !important;
}

.vads-u-min-width--2 {
  min-width: 1rem !important;
}

.vads-u-min-width--2p5 {
  min-width: 1.25rem !important;
}

.vads-u-min-width--3 {
  min-width: 1.5rem !important;
}

.vads-u-min-width--4 {
  min-width: 2rem !important;
}

.vads-u-min-width--5 {
  min-width: 2.5rem !important;
}

.vads-u-min-width--6 {
  min-width: 3rem !important;
}

.vads-u-min-width--7 {
  min-width: 3.5rem !important;
}

.vads-u-min-width--8 {
  min-width: 4rem !important;
}

.vads-u-min-width--9 {
  min-width: 4.5rem !important;
}

.vads-u-min-width--10 {
  min-width: 5rem !important;
}

.vads-u-min-width--11 {
  min-width: 5.5rem !important;
}

.vads-u-min-width--12 {
  min-width: 6rem !important;
}

.vads-u-min-width--13 {
  min-width: 6.5rem !important;
}

.vads-u-min-width--14 {
  min-width: 7rem !important;
}

.vads-u-min-width--15 {
  min-width: 7.5rem !important;
}

.vads-u-min-width--16 {
  min-width: 8rem !important;
}

.vads-u-min-width--17 {
  min-width: 8.5rem !important;
}

.vads-u-min-width--18 {
  min-width: 9rem !important;
}

.vads-u-min-width--19 {
  min-width: 9.5rem !important;
}

.vads-u-min-width--20 {
  min-width: 10rem !important;
}

.vads-u-min-width--21 {
  min-width: 10.5rem !important;
}

.vads-u-min-width--22 {
  min-width: 11rem !important;
}

.vads-u-min-width--23 {
  min-width: 11.5rem !important;
}

.vads-u-min-width--24 {
  min-width: 12rem !important;
}

.vads-u-min-width--25 {
  min-width: 12.5rem !important;
}

.vads-u-min-width--26 {
  min-width: 13rem !important;
}

.vads-u-min-width--27 {
  min-width: 13.5rem !important;
}

.vads-u-min-width--28 {
  min-width: 14rem !important;
}

.vads-u-min-width--29 {
  min-width: 14.5rem !important;
}

.vads-u-min-width--30 {
  min-width: 15rem !important;
}

.vads-u-min-width--31 {
  min-width: 15.5rem !important;
}

.vads-u-min-width--32 {
  min-width: 16rem !important;
}

.vads-u-min-width--none {
  min-width: none !important;
}

.vads-u-min-width--full {
  min-width: 100% !important;
}

.vads-u-max-width--0 {
  max-width: 0 !important;
}

.vads-u-max-width--0p5 {
  max-width: 0.25rem !important;
}

.vads-u-max-width--1 {
  max-width: 0.5rem !important;
}

.vads-u-max-width--1p5 {
  max-width: 0.75rem !important;
}

.vads-u-max-width--2 {
  max-width: 1rem !important;
}

.vads-u-max-width--2p5 {
  max-width: 1.25rem !important;
}

.vads-u-max-width--3 {
  max-width: 1.5rem !important;
}

.vads-u-max-width--4 {
  max-width: 2rem !important;
}

.vads-u-max-width--5 {
  max-width: 2.5rem !important;
}

.vads-u-max-width--6 {
  max-width: 3rem !important;
}

.vads-u-max-width--7 {
  max-width: 3.5rem !important;
}

.vads-u-max-width--8 {
  max-width: 4rem !important;
}

.vads-u-max-width--9 {
  max-width: 4.5rem !important;
}

.vads-u-max-width--10 {
  max-width: 5rem !important;
}

.vads-u-max-width--11 {
  max-width: 5.5rem !important;
}

.vads-u-max-width--12 {
  max-width: 6rem !important;
}

.vads-u-max-width--13 {
  max-width: 6.5rem !important;
}

.vads-u-max-width--14 {
  max-width: 7rem !important;
}

.vads-u-max-width--15 {
  max-width: 7.5rem !important;
}

.vads-u-max-width--16 {
  max-width: 8rem !important;
}

.vads-u-max-width--17 {
  max-width: 8.5rem !important;
}

.vads-u-max-width--18 {
  max-width: 9rem !important;
}

.vads-u-max-width--19 {
  max-width: 9.5rem !important;
}

.vads-u-max-width--20 {
  max-width: 10rem !important;
}

.vads-u-max-width--21 {
  max-width: 10.5rem !important;
}

.vads-u-max-width--22 {
  max-width: 11rem !important;
}

.vads-u-max-width--23 {
  max-width: 11.5rem !important;
}

.vads-u-max-width--24 {
  max-width: 12rem !important;
}

.vads-u-max-width--25 {
  max-width: 12.5rem !important;
}

.vads-u-max-width--26 {
  max-width: 13rem !important;
}

.vads-u-max-width--27 {
  max-width: 13.5rem !important;
}

.vads-u-max-width--28 {
  max-width: 14rem !important;
}

.vads-u-max-width--29 {
  max-width: 14.5rem !important;
}

.vads-u-max-width--30 {
  max-width: 15rem !important;
}

.vads-u-max-width--31 {
  max-width: 15.5rem !important;
}

.vads-u-max-width--32 {
  max-width: 16rem !important;
}

.vads-u-max-width--none {
  max-width: none !important;
}

.vads-u-max-width--full {
  max-width: 100% !important;
}

.vads-u-min-height--0 {
  min-height: 0 !important;
}

.vads-u-min-height--0p5 {
  min-height: 0.25rem !important;
}

.vads-u-min-height--1 {
  min-height: 0.5rem !important;
}

.vads-u-min-height--1p5 {
  min-height: 0.75rem !important;
}

.vads-u-min-height--2 {
  min-height: 1rem !important;
}

.vads-u-min-height--2p5 {
  min-height: 1.25rem !important;
}

.vads-u-min-height--3 {
  min-height: 1.5rem !important;
}

.vads-u-min-height--4 {
  min-height: 2rem !important;
}

.vads-u-min-height--5 {
  min-height: 2.5rem !important;
}

.vads-u-min-height--6 {
  min-height: 3rem !important;
}

.vads-u-min-height--7 {
  min-height: 3.5rem !important;
}

.vads-u-min-height--8 {
  min-height: 4rem !important;
}

.vads-u-min-height--9 {
  min-height: 4.5rem !important;
}

.vads-u-min-height--10 {
  min-height: 5rem !important;
}

.vads-u-min-height--11 {
  min-height: 5.5rem !important;
}

.vads-u-min-height--12 {
  min-height: 6rem !important;
}

.vads-u-min-height--13 {
  min-height: 6.5rem !important;
}

.vads-u-min-height--14 {
  min-height: 7rem !important;
}

.vads-u-min-height--15 {
  min-height: 7.5rem !important;
}

.vads-u-min-height--16 {
  min-height: 8rem !important;
}

.vads-u-min-height--17 {
  min-height: 8.5rem !important;
}

.vads-u-min-height--18 {
  min-height: 9rem !important;
}

.vads-u-min-height--19 {
  min-height: 9.5rem !important;
}

.vads-u-min-height--20 {
  min-height: 10rem !important;
}

.vads-u-min-height--21 {
  min-height: 10.5rem !important;
}

.vads-u-min-height--22 {
  min-height: 11rem !important;
}

.vads-u-min-height--23 {
  min-height: 11.5rem !important;
}

.vads-u-min-height--24 {
  min-height: 12rem !important;
}

.vads-u-min-height--25 {
  min-height: 12.5rem !important;
}

.vads-u-min-height--26 {
  min-height: 13rem !important;
}

.vads-u-min-height--27 {
  min-height: 13.5rem !important;
}

.vads-u-min-height--28 {
  min-height: 14rem !important;
}

.vads-u-min-height--29 {
  min-height: 14.5rem !important;
}

.vads-u-min-height--30 {
  min-height: 15rem !important;
}

.vads-u-min-height--31 {
  min-height: 15.5rem !important;
}

.vads-u-min-height--32 {
  min-height: 16rem !important;
}

.vads-u-min-height--none {
  min-height: none !important;
}

.vads-u-min-height--full {
  min-height: 100% !important;
}

.vads-u-min-height--viewport {
  min-height: 100vh !important;
}

.vads-u-max-height--0 {
  max-height: 0 !important;
}

.vads-u-max-height--0p5 {
  max-height: 0.25rem !important;
}

.vads-u-max-height--1 {
  max-height: 0.5rem !important;
}

.vads-u-max-height--1p5 {
  max-height: 0.75rem !important;
}

.vads-u-max-height--2 {
  max-height: 1rem !important;
}

.vads-u-max-height--2p5 {
  max-height: 1.25rem !important;
}

.vads-u-max-height--3 {
  max-height: 1.5rem !important;
}

.vads-u-max-height--4 {
  max-height: 2rem !important;
}

.vads-u-max-height--5 {
  max-height: 2.5rem !important;
}

.vads-u-max-height--6 {
  max-height: 3rem !important;
}

.vads-u-max-height--7 {
  max-height: 3.5rem !important;
}

.vads-u-max-height--8 {
  max-height: 4rem !important;
}

.vads-u-max-height--9 {
  max-height: 4.5rem !important;
}

.vads-u-max-height--10 {
  max-height: 5rem !important;
}

.vads-u-max-height--11 {
  max-height: 5.5rem !important;
}

.vads-u-max-height--12 {
  max-height: 6rem !important;
}

.vads-u-max-height--13 {
  max-height: 6.5rem !important;
}

.vads-u-max-height--14 {
  max-height: 7rem !important;
}

.vads-u-max-height--15 {
  max-height: 7.5rem !important;
}

.vads-u-max-height--16 {
  max-height: 8rem !important;
}

.vads-u-max-height--17 {
  max-height: 8.5rem !important;
}

.vads-u-max-height--18 {
  max-height: 9rem !important;
}

.vads-u-max-height--19 {
  max-height: 9.5rem !important;
}

.vads-u-max-height--20 {
  max-height: 10rem !important;
}

.vads-u-max-height--21 {
  max-height: 10.5rem !important;
}

.vads-u-max-height--22 {
  max-height: 11rem !important;
}

.vads-u-max-height--23 {
  max-height: 11.5rem !important;
}

.vads-u-max-height--24 {
  max-height: 12rem !important;
}

.vads-u-max-height--25 {
  max-height: 12.5rem !important;
}

.vads-u-max-height--26 {
  max-height: 13rem !important;
}

.vads-u-max-height--27 {
  max-height: 13.5rem !important;
}

.vads-u-max-height--28 {
  max-height: 14rem !important;
}

.vads-u-max-height--29 {
  max-height: 14.5rem !important;
}

.vads-u-max-height--30 {
  max-height: 15rem !important;
}

.vads-u-max-height--31 {
  max-height: 15.5rem !important;
}

.vads-u-max-height--32 {
  max-height: 16rem !important;
}

.vads-u-max-height--none {
  max-height: none !important;
}

.vads-u-max-height--full {
  max-height: 100% !important;
}

.vads-u-max-height--viewport {
  max-height: 100vh !important;
}

@media all and (min-width: 20em) {
  .mobile\:vads-u-width--0 {
    width: 0 !important;
  }
  .mobile\:vads-u-width--0p5 {
    width: 0.25rem !important;
  }
  .mobile\:vads-u-width--1 {
    width: 0.5rem !important;
  }
  .mobile\:vads-u-width--1p5 {
    width: 0.75rem !important;
  }
  .mobile\:vads-u-width--2 {
    width: 1rem !important;
  }
  .mobile\:vads-u-width--2p5 {
    width: 1.25rem !important;
  }
  .mobile\:vads-u-width--3 {
    width: 1.5rem !important;
  }
  .mobile\:vads-u-width--4 {
    width: 2rem !important;
  }
  .mobile\:vads-u-width--5 {
    width: 2.5rem !important;
  }
  .mobile\:vads-u-width--6 {
    width: 3rem !important;
  }
  .mobile\:vads-u-width--7 {
    width: 3.5rem !important;
  }
  .mobile\:vads-u-width--8 {
    width: 4rem !important;
  }
  .mobile\:vads-u-width--9 {
    width: 4.5rem !important;
  }
  .mobile\:vads-u-width--10 {
    width: 5rem !important;
  }
  .mobile\:vads-u-width--11 {
    width: 5.5rem !important;
  }
  .mobile\:vads-u-width--12 {
    width: 6rem !important;
  }
  .mobile\:vads-u-width--13 {
    width: 6.5rem !important;
  }
  .mobile\:vads-u-width--14 {
    width: 7rem !important;
  }
  .mobile\:vads-u-width--15 {
    width: 7.5rem !important;
  }
  .mobile\:vads-u-width--16 {
    width: 8rem !important;
  }
  .mobile\:vads-u-width--17 {
    width: 8.5rem !important;
  }
  .mobile\:vads-u-width--18 {
    width: 9rem !important;
  }
  .mobile\:vads-u-width--19 {
    width: 9.5rem !important;
  }
  .mobile\:vads-u-width--20 {
    width: 10rem !important;
  }
  .mobile\:vads-u-width--21 {
    width: 10.5rem !important;
  }
  .mobile\:vads-u-width--22 {
    width: 11rem !important;
  }
  .mobile\:vads-u-width--23 {
    width: 11.5rem !important;
  }
  .mobile\:vads-u-width--24 {
    width: 12rem !important;
  }
  .mobile\:vads-u-width--25 {
    width: 12.5rem !important;
  }
  .mobile\:vads-u-width--26 {
    width: 13rem !important;
  }
  .mobile\:vads-u-width--27 {
    width: 13.5rem !important;
  }
  .mobile\:vads-u-width--28 {
    width: 14rem !important;
  }
  .mobile\:vads-u-width--29 {
    width: 14.5rem !important;
  }
  .mobile\:vads-u-width--30 {
    width: 15rem !important;
  }
  .mobile\:vads-u-width--31 {
    width: 15.5rem !important;
  }
  .mobile\:vads-u-width--32 {
    width: 16rem !important;
  }
  .mobile\:vads-u-width--auto {
    width: auto !important;
  }
  .mobile\:vads-u-width--full {
    width: 100% !important;
  }
  .mobile\:vads-u-width--screen {
    width: 100vw !important;
  }
  .mobile\:vads-u-min-width--0 {
    min-width: 0 !important;
  }
  .mobile\:vads-u-min-width--0p5 {
    min-width: 0.25rem !important;
  }
  .mobile\:vads-u-min-width--1 {
    min-width: 0.5rem !important;
  }
  .mobile\:vads-u-min-width--1p5 {
    min-width: 0.75rem !important;
  }
  .mobile\:vads-u-min-width--2 {
    min-width: 1rem !important;
  }
  .mobile\:vads-u-min-width--2p5 {
    min-width: 1.25rem !important;
  }
  .mobile\:vads-u-min-width--3 {
    min-width: 1.5rem !important;
  }
  .mobile\:vads-u-min-width--4 {
    min-width: 2rem !important;
  }
  .mobile\:vads-u-min-width--5 {
    min-width: 2.5rem !important;
  }
  .mobile\:vads-u-min-width--6 {
    min-width: 3rem !important;
  }
  .mobile\:vads-u-min-width--7 {
    min-width: 3.5rem !important;
  }
  .mobile\:vads-u-min-width--8 {
    min-width: 4rem !important;
  }
  .mobile\:vads-u-min-width--9 {
    min-width: 4.5rem !important;
  }
  .mobile\:vads-u-min-width--10 {
    min-width: 5rem !important;
  }
  .mobile\:vads-u-min-width--11 {
    min-width: 5.5rem !important;
  }
  .mobile\:vads-u-min-width--12 {
    min-width: 6rem !important;
  }
  .mobile\:vads-u-min-width--13 {
    min-width: 6.5rem !important;
  }
  .mobile\:vads-u-min-width--14 {
    min-width: 7rem !important;
  }
  .mobile\:vads-u-min-width--15 {
    min-width: 7.5rem !important;
  }
  .mobile\:vads-u-min-width--16 {
    min-width: 8rem !important;
  }
  .mobile\:vads-u-min-width--17 {
    min-width: 8.5rem !important;
  }
  .mobile\:vads-u-min-width--18 {
    min-width: 9rem !important;
  }
  .mobile\:vads-u-min-width--19 {
    min-width: 9.5rem !important;
  }
  .mobile\:vads-u-min-width--20 {
    min-width: 10rem !important;
  }
  .mobile\:vads-u-min-width--21 {
    min-width: 10.5rem !important;
  }
  .mobile\:vads-u-min-width--22 {
    min-width: 11rem !important;
  }
  .mobile\:vads-u-min-width--23 {
    min-width: 11.5rem !important;
  }
  .mobile\:vads-u-min-width--24 {
    min-width: 12rem !important;
  }
  .mobile\:vads-u-min-width--25 {
    min-width: 12.5rem !important;
  }
  .mobile\:vads-u-min-width--26 {
    min-width: 13rem !important;
  }
  .mobile\:vads-u-min-width--27 {
    min-width: 13.5rem !important;
  }
  .mobile\:vads-u-min-width--28 {
    min-width: 14rem !important;
  }
  .mobile\:vads-u-min-width--29 {
    min-width: 14.5rem !important;
  }
  .mobile\:vads-u-min-width--30 {
    min-width: 15rem !important;
  }
  .mobile\:vads-u-min-width--31 {
    min-width: 15.5rem !important;
  }
  .mobile\:vads-u-min-width--32 {
    min-width: 16rem !important;
  }
  .mobile\:vads-u-min-width--none {
    min-width: none !important;
  }
  .mobile\:vads-u-min-width--full {
    min-width: 100% !important;
  }
  .mobile\:vads-u-max-width--0 {
    max-width: 0 !important;
  }
  .mobile\:vads-u-max-width--0p5 {
    max-width: 0.25rem !important;
  }
  .mobile\:vads-u-max-width--1 {
    max-width: 0.5rem !important;
  }
  .mobile\:vads-u-max-width--1p5 {
    max-width: 0.75rem !important;
  }
  .mobile\:vads-u-max-width--2 {
    max-width: 1rem !important;
  }
  .mobile\:vads-u-max-width--2p5 {
    max-width: 1.25rem !important;
  }
  .mobile\:vads-u-max-width--3 {
    max-width: 1.5rem !important;
  }
  .mobile\:vads-u-max-width--4 {
    max-width: 2rem !important;
  }
  .mobile\:vads-u-max-width--5 {
    max-width: 2.5rem !important;
  }
  .mobile\:vads-u-max-width--6 {
    max-width: 3rem !important;
  }
  .mobile\:vads-u-max-width--7 {
    max-width: 3.5rem !important;
  }
  .mobile\:vads-u-max-width--8 {
    max-width: 4rem !important;
  }
  .mobile\:vads-u-max-width--9 {
    max-width: 4.5rem !important;
  }
  .mobile\:vads-u-max-width--10 {
    max-width: 5rem !important;
  }
  .mobile\:vads-u-max-width--11 {
    max-width: 5.5rem !important;
  }
  .mobile\:vads-u-max-width--12 {
    max-width: 6rem !important;
  }
  .mobile\:vads-u-max-width--13 {
    max-width: 6.5rem !important;
  }
  .mobile\:vads-u-max-width--14 {
    max-width: 7rem !important;
  }
  .mobile\:vads-u-max-width--15 {
    max-width: 7.5rem !important;
  }
  .mobile\:vads-u-max-width--16 {
    max-width: 8rem !important;
  }
  .mobile\:vads-u-max-width--17 {
    max-width: 8.5rem !important;
  }
  .mobile\:vads-u-max-width--18 {
    max-width: 9rem !important;
  }
  .mobile\:vads-u-max-width--19 {
    max-width: 9.5rem !important;
  }
  .mobile\:vads-u-max-width--20 {
    max-width: 10rem !important;
  }
  .mobile\:vads-u-max-width--21 {
    max-width: 10.5rem !important;
  }
  .mobile\:vads-u-max-width--22 {
    max-width: 11rem !important;
  }
  .mobile\:vads-u-max-width--23 {
    max-width: 11.5rem !important;
  }
  .mobile\:vads-u-max-width--24 {
    max-width: 12rem !important;
  }
  .mobile\:vads-u-max-width--25 {
    max-width: 12.5rem !important;
  }
  .mobile\:vads-u-max-width--26 {
    max-width: 13rem !important;
  }
  .mobile\:vads-u-max-width--27 {
    max-width: 13.5rem !important;
  }
  .mobile\:vads-u-max-width--28 {
    max-width: 14rem !important;
  }
  .mobile\:vads-u-max-width--29 {
    max-width: 14.5rem !important;
  }
  .mobile\:vads-u-max-width--30 {
    max-width: 15rem !important;
  }
  .mobile\:vads-u-max-width--31 {
    max-width: 15.5rem !important;
  }
  .mobile\:vads-u-max-width--32 {
    max-width: 16rem !important;
  }
  .mobile\:vads-u-max-width--none {
    max-width: none !important;
  }
  .mobile\:vads-u-max-width--full {
    max-width: 100% !important;
  }
}
@media all and (min-width: 30em) {
  .mobile-lg\:vads-u-width--0 {
    width: 0 !important;
  }
  .mobile-lg\:vads-u-width--0p5 {
    width: 0.25rem !important;
  }
  .mobile-lg\:vads-u-width--1 {
    width: 0.5rem !important;
  }
  .mobile-lg\:vads-u-width--1p5 {
    width: 0.75rem !important;
  }
  .mobile-lg\:vads-u-width--2 {
    width: 1rem !important;
  }
  .mobile-lg\:vads-u-width--2p5 {
    width: 1.25rem !important;
  }
  .mobile-lg\:vads-u-width--3 {
    width: 1.5rem !important;
  }
  .mobile-lg\:vads-u-width--4 {
    width: 2rem !important;
  }
  .mobile-lg\:vads-u-width--5 {
    width: 2.5rem !important;
  }
  .mobile-lg\:vads-u-width--6 {
    width: 3rem !important;
  }
  .mobile-lg\:vads-u-width--7 {
    width: 3.5rem !important;
  }
  .mobile-lg\:vads-u-width--8 {
    width: 4rem !important;
  }
  .mobile-lg\:vads-u-width--9 {
    width: 4.5rem !important;
  }
  .mobile-lg\:vads-u-width--10 {
    width: 5rem !important;
  }
  .mobile-lg\:vads-u-width--11 {
    width: 5.5rem !important;
  }
  .mobile-lg\:vads-u-width--12 {
    width: 6rem !important;
  }
  .mobile-lg\:vads-u-width--13 {
    width: 6.5rem !important;
  }
  .mobile-lg\:vads-u-width--14 {
    width: 7rem !important;
  }
  .mobile-lg\:vads-u-width--15 {
    width: 7.5rem !important;
  }
  .mobile-lg\:vads-u-width--16 {
    width: 8rem !important;
  }
  .mobile-lg\:vads-u-width--17 {
    width: 8.5rem !important;
  }
  .mobile-lg\:vads-u-width--18 {
    width: 9rem !important;
  }
  .mobile-lg\:vads-u-width--19 {
    width: 9.5rem !important;
  }
  .mobile-lg\:vads-u-width--20 {
    width: 10rem !important;
  }
  .mobile-lg\:vads-u-width--21 {
    width: 10.5rem !important;
  }
  .mobile-lg\:vads-u-width--22 {
    width: 11rem !important;
  }
  .mobile-lg\:vads-u-width--23 {
    width: 11.5rem !important;
  }
  .mobile-lg\:vads-u-width--24 {
    width: 12rem !important;
  }
  .mobile-lg\:vads-u-width--25 {
    width: 12.5rem !important;
  }
  .mobile-lg\:vads-u-width--26 {
    width: 13rem !important;
  }
  .mobile-lg\:vads-u-width--27 {
    width: 13.5rem !important;
  }
  .mobile-lg\:vads-u-width--28 {
    width: 14rem !important;
  }
  .mobile-lg\:vads-u-width--29 {
    width: 14.5rem !important;
  }
  .mobile-lg\:vads-u-width--30 {
    width: 15rem !important;
  }
  .mobile-lg\:vads-u-width--31 {
    width: 15.5rem !important;
  }
  .mobile-lg\:vads-u-width--32 {
    width: 16rem !important;
  }
  .mobile-lg\:vads-u-width--auto {
    width: auto !important;
  }
  .mobile-lg\:vads-u-width--full {
    width: 100% !important;
  }
  .mobile-lg\:vads-u-width--screen {
    width: 100vw !important;
  }
  .mobile-lg\:vads-u-min-width--0 {
    min-width: 0 !important;
  }
  .mobile-lg\:vads-u-min-width--0p5 {
    min-width: 0.25rem !important;
  }
  .mobile-lg\:vads-u-min-width--1 {
    min-width: 0.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--1p5 {
    min-width: 0.75rem !important;
  }
  .mobile-lg\:vads-u-min-width--2 {
    min-width: 1rem !important;
  }
  .mobile-lg\:vads-u-min-width--2p5 {
    min-width: 1.25rem !important;
  }
  .mobile-lg\:vads-u-min-width--3 {
    min-width: 1.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--4 {
    min-width: 2rem !important;
  }
  .mobile-lg\:vads-u-min-width--5 {
    min-width: 2.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--6 {
    min-width: 3rem !important;
  }
  .mobile-lg\:vads-u-min-width--7 {
    min-width: 3.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--8 {
    min-width: 4rem !important;
  }
  .mobile-lg\:vads-u-min-width--9 {
    min-width: 4.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--10 {
    min-width: 5rem !important;
  }
  .mobile-lg\:vads-u-min-width--11 {
    min-width: 5.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--12 {
    min-width: 6rem !important;
  }
  .mobile-lg\:vads-u-min-width--13 {
    min-width: 6.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--14 {
    min-width: 7rem !important;
  }
  .mobile-lg\:vads-u-min-width--15 {
    min-width: 7.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--16 {
    min-width: 8rem !important;
  }
  .mobile-lg\:vads-u-min-width--17 {
    min-width: 8.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--18 {
    min-width: 9rem !important;
  }
  .mobile-lg\:vads-u-min-width--19 {
    min-width: 9.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--20 {
    min-width: 10rem !important;
  }
  .mobile-lg\:vads-u-min-width--21 {
    min-width: 10.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--22 {
    min-width: 11rem !important;
  }
  .mobile-lg\:vads-u-min-width--23 {
    min-width: 11.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--24 {
    min-width: 12rem !important;
  }
  .mobile-lg\:vads-u-min-width--25 {
    min-width: 12.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--26 {
    min-width: 13rem !important;
  }
  .mobile-lg\:vads-u-min-width--27 {
    min-width: 13.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--28 {
    min-width: 14rem !important;
  }
  .mobile-lg\:vads-u-min-width--29 {
    min-width: 14.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--30 {
    min-width: 15rem !important;
  }
  .mobile-lg\:vads-u-min-width--31 {
    min-width: 15.5rem !important;
  }
  .mobile-lg\:vads-u-min-width--32 {
    min-width: 16rem !important;
  }
  .mobile-lg\:vads-u-min-width--none {
    min-width: none !important;
  }
  .mobile-lg\:vads-u-min-width--full {
    min-width: 100% !important;
  }
  .mobile-lg\:vads-u-max-width--0 {
    max-width: 0 !important;
  }
  .mobile-lg\:vads-u-max-width--0p5 {
    max-width: 0.25rem !important;
  }
  .mobile-lg\:vads-u-max-width--1 {
    max-width: 0.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--1p5 {
    max-width: 0.75rem !important;
  }
  .mobile-lg\:vads-u-max-width--2 {
    max-width: 1rem !important;
  }
  .mobile-lg\:vads-u-max-width--2p5 {
    max-width: 1.25rem !important;
  }
  .mobile-lg\:vads-u-max-width--3 {
    max-width: 1.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--4 {
    max-width: 2rem !important;
  }
  .mobile-lg\:vads-u-max-width--5 {
    max-width: 2.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--6 {
    max-width: 3rem !important;
  }
  .mobile-lg\:vads-u-max-width--7 {
    max-width: 3.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--8 {
    max-width: 4rem !important;
  }
  .mobile-lg\:vads-u-max-width--9 {
    max-width: 4.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--10 {
    max-width: 5rem !important;
  }
  .mobile-lg\:vads-u-max-width--11 {
    max-width: 5.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--12 {
    max-width: 6rem !important;
  }
  .mobile-lg\:vads-u-max-width--13 {
    max-width: 6.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--14 {
    max-width: 7rem !important;
  }
  .mobile-lg\:vads-u-max-width--15 {
    max-width: 7.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--16 {
    max-width: 8rem !important;
  }
  .mobile-lg\:vads-u-max-width--17 {
    max-width: 8.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--18 {
    max-width: 9rem !important;
  }
  .mobile-lg\:vads-u-max-width--19 {
    max-width: 9.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--20 {
    max-width: 10rem !important;
  }
  .mobile-lg\:vads-u-max-width--21 {
    max-width: 10.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--22 {
    max-width: 11rem !important;
  }
  .mobile-lg\:vads-u-max-width--23 {
    max-width: 11.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--24 {
    max-width: 12rem !important;
  }
  .mobile-lg\:vads-u-max-width--25 {
    max-width: 12.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--26 {
    max-width: 13rem !important;
  }
  .mobile-lg\:vads-u-max-width--27 {
    max-width: 13.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--28 {
    max-width: 14rem !important;
  }
  .mobile-lg\:vads-u-max-width--29 {
    max-width: 14.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--30 {
    max-width: 15rem !important;
  }
  .mobile-lg\:vads-u-max-width--31 {
    max-width: 15.5rem !important;
  }
  .mobile-lg\:vads-u-max-width--32 {
    max-width: 16rem !important;
  }
  .mobile-lg\:vads-u-max-width--none {
    max-width: none !important;
  }
  .mobile-lg\:vads-u-max-width--full {
    max-width: 100% !important;
  }
}
@media all and (min-width: 40em) {
  .tablet\:vads-u-width--0 {
    width: 0 !important;
  }
  .tablet\:vads-u-width--0p5 {
    width: 0.25rem !important;
  }
  .tablet\:vads-u-width--1 {
    width: 0.5rem !important;
  }
  .tablet\:vads-u-width--1p5 {
    width: 0.75rem !important;
  }
  .tablet\:vads-u-width--2 {
    width: 1rem !important;
  }
  .tablet\:vads-u-width--2p5 {
    width: 1.25rem !important;
  }
  .tablet\:vads-u-width--3 {
    width: 1.5rem !important;
  }
  .tablet\:vads-u-width--4 {
    width: 2rem !important;
  }
  .tablet\:vads-u-width--5 {
    width: 2.5rem !important;
  }
  .tablet\:vads-u-width--6 {
    width: 3rem !important;
  }
  .tablet\:vads-u-width--7 {
    width: 3.5rem !important;
  }
  .tablet\:vads-u-width--8 {
    width: 4rem !important;
  }
  .tablet\:vads-u-width--9 {
    width: 4.5rem !important;
  }
  .tablet\:vads-u-width--10 {
    width: 5rem !important;
  }
  .tablet\:vads-u-width--11 {
    width: 5.5rem !important;
  }
  .tablet\:vads-u-width--12 {
    width: 6rem !important;
  }
  .tablet\:vads-u-width--13 {
    width: 6.5rem !important;
  }
  .tablet\:vads-u-width--14 {
    width: 7rem !important;
  }
  .tablet\:vads-u-width--15 {
    width: 7.5rem !important;
  }
  .tablet\:vads-u-width--16 {
    width: 8rem !important;
  }
  .tablet\:vads-u-width--17 {
    width: 8.5rem !important;
  }
  .tablet\:vads-u-width--18 {
    width: 9rem !important;
  }
  .tablet\:vads-u-width--19 {
    width: 9.5rem !important;
  }
  .tablet\:vads-u-width--20 {
    width: 10rem !important;
  }
  .tablet\:vads-u-width--21 {
    width: 10.5rem !important;
  }
  .tablet\:vads-u-width--22 {
    width: 11rem !important;
  }
  .tablet\:vads-u-width--23 {
    width: 11.5rem !important;
  }
  .tablet\:vads-u-width--24 {
    width: 12rem !important;
  }
  .tablet\:vads-u-width--25 {
    width: 12.5rem !important;
  }
  .tablet\:vads-u-width--26 {
    width: 13rem !important;
  }
  .tablet\:vads-u-width--27 {
    width: 13.5rem !important;
  }
  .tablet\:vads-u-width--28 {
    width: 14rem !important;
  }
  .tablet\:vads-u-width--29 {
    width: 14.5rem !important;
  }
  .tablet\:vads-u-width--30 {
    width: 15rem !important;
  }
  .tablet\:vads-u-width--31 {
    width: 15.5rem !important;
  }
  .tablet\:vads-u-width--32 {
    width: 16rem !important;
  }
  .tablet\:vads-u-width--auto {
    width: auto !important;
  }
  .tablet\:vads-u-width--full {
    width: 100% !important;
  }
  .tablet\:vads-u-width--screen {
    width: 100vw !important;
  }
  .tablet\:vads-u-min-width--0 {
    min-width: 0 !important;
  }
  .tablet\:vads-u-min-width--0p5 {
    min-width: 0.25rem !important;
  }
  .tablet\:vads-u-min-width--1 {
    min-width: 0.5rem !important;
  }
  .tablet\:vads-u-min-width--1p5 {
    min-width: 0.75rem !important;
  }
  .tablet\:vads-u-min-width--2 {
    min-width: 1rem !important;
  }
  .tablet\:vads-u-min-width--2p5 {
    min-width: 1.25rem !important;
  }
  .tablet\:vads-u-min-width--3 {
    min-width: 1.5rem !important;
  }
  .tablet\:vads-u-min-width--4 {
    min-width: 2rem !important;
  }
  .tablet\:vads-u-min-width--5 {
    min-width: 2.5rem !important;
  }
  .tablet\:vads-u-min-width--6 {
    min-width: 3rem !important;
  }
  .tablet\:vads-u-min-width--7 {
    min-width: 3.5rem !important;
  }
  .tablet\:vads-u-min-width--8 {
    min-width: 4rem !important;
  }
  .tablet\:vads-u-min-width--9 {
    min-width: 4.5rem !important;
  }
  .tablet\:vads-u-min-width--10 {
    min-width: 5rem !important;
  }
  .tablet\:vads-u-min-width--11 {
    min-width: 5.5rem !important;
  }
  .tablet\:vads-u-min-width--12 {
    min-width: 6rem !important;
  }
  .tablet\:vads-u-min-width--13 {
    min-width: 6.5rem !important;
  }
  .tablet\:vads-u-min-width--14 {
    min-width: 7rem !important;
  }
  .tablet\:vads-u-min-width--15 {
    min-width: 7.5rem !important;
  }
  .tablet\:vads-u-min-width--16 {
    min-width: 8rem !important;
  }
  .tablet\:vads-u-min-width--17 {
    min-width: 8.5rem !important;
  }
  .tablet\:vads-u-min-width--18 {
    min-width: 9rem !important;
  }
  .tablet\:vads-u-min-width--19 {
    min-width: 9.5rem !important;
  }
  .tablet\:vads-u-min-width--20 {
    min-width: 10rem !important;
  }
  .tablet\:vads-u-min-width--21 {
    min-width: 10.5rem !important;
  }
  .tablet\:vads-u-min-width--22 {
    min-width: 11rem !important;
  }
  .tablet\:vads-u-min-width--23 {
    min-width: 11.5rem !important;
  }
  .tablet\:vads-u-min-width--24 {
    min-width: 12rem !important;
  }
  .tablet\:vads-u-min-width--25 {
    min-width: 12.5rem !important;
  }
  .tablet\:vads-u-min-width--26 {
    min-width: 13rem !important;
  }
  .tablet\:vads-u-min-width--27 {
    min-width: 13.5rem !important;
  }
  .tablet\:vads-u-min-width--28 {
    min-width: 14rem !important;
  }
  .tablet\:vads-u-min-width--29 {
    min-width: 14.5rem !important;
  }
  .tablet\:vads-u-min-width--30 {
    min-width: 15rem !important;
  }
  .tablet\:vads-u-min-width--31 {
    min-width: 15.5rem !important;
  }
  .tablet\:vads-u-min-width--32 {
    min-width: 16rem !important;
  }
  .tablet\:vads-u-min-width--none {
    min-width: none !important;
  }
  .tablet\:vads-u-min-width--full {
    min-width: 100% !important;
  }
  .tablet\:vads-u-max-width--0 {
    max-width: 0 !important;
  }
  .tablet\:vads-u-max-width--0p5 {
    max-width: 0.25rem !important;
  }
  .tablet\:vads-u-max-width--1 {
    max-width: 0.5rem !important;
  }
  .tablet\:vads-u-max-width--1p5 {
    max-width: 0.75rem !important;
  }
  .tablet\:vads-u-max-width--2 {
    max-width: 1rem !important;
  }
  .tablet\:vads-u-max-width--2p5 {
    max-width: 1.25rem !important;
  }
  .tablet\:vads-u-max-width--3 {
    max-width: 1.5rem !important;
  }
  .tablet\:vads-u-max-width--4 {
    max-width: 2rem !important;
  }
  .tablet\:vads-u-max-width--5 {
    max-width: 2.5rem !important;
  }
  .tablet\:vads-u-max-width--6 {
    max-width: 3rem !important;
  }
  .tablet\:vads-u-max-width--7 {
    max-width: 3.5rem !important;
  }
  .tablet\:vads-u-max-width--8 {
    max-width: 4rem !important;
  }
  .tablet\:vads-u-max-width--9 {
    max-width: 4.5rem !important;
  }
  .tablet\:vads-u-max-width--10 {
    max-width: 5rem !important;
  }
  .tablet\:vads-u-max-width--11 {
    max-width: 5.5rem !important;
  }
  .tablet\:vads-u-max-width--12 {
    max-width: 6rem !important;
  }
  .tablet\:vads-u-max-width--13 {
    max-width: 6.5rem !important;
  }
  .tablet\:vads-u-max-width--14 {
    max-width: 7rem !important;
  }
  .tablet\:vads-u-max-width--15 {
    max-width: 7.5rem !important;
  }
  .tablet\:vads-u-max-width--16 {
    max-width: 8rem !important;
  }
  .tablet\:vads-u-max-width--17 {
    max-width: 8.5rem !important;
  }
  .tablet\:vads-u-max-width--18 {
    max-width: 9rem !important;
  }
  .tablet\:vads-u-max-width--19 {
    max-width: 9.5rem !important;
  }
  .tablet\:vads-u-max-width--20 {
    max-width: 10rem !important;
  }
  .tablet\:vads-u-max-width--21 {
    max-width: 10.5rem !important;
  }
  .tablet\:vads-u-max-width--22 {
    max-width: 11rem !important;
  }
  .tablet\:vads-u-max-width--23 {
    max-width: 11.5rem !important;
  }
  .tablet\:vads-u-max-width--24 {
    max-width: 12rem !important;
  }
  .tablet\:vads-u-max-width--25 {
    max-width: 12.5rem !important;
  }
  .tablet\:vads-u-max-width--26 {
    max-width: 13rem !important;
  }
  .tablet\:vads-u-max-width--27 {
    max-width: 13.5rem !important;
  }
  .tablet\:vads-u-max-width--28 {
    max-width: 14rem !important;
  }
  .tablet\:vads-u-max-width--29 {
    max-width: 14.5rem !important;
  }
  .tablet\:vads-u-max-width--30 {
    max-width: 15rem !important;
  }
  .tablet\:vads-u-max-width--31 {
    max-width: 15.5rem !important;
  }
  .tablet\:vads-u-max-width--32 {
    max-width: 16rem !important;
  }
  .tablet\:vads-u-max-width--none {
    max-width: none !important;
  }
  .tablet\:vads-u-max-width--full {
    max-width: 100% !important;
  }
}
@media all and (min-width: 64em) {
  .desktop\:vads-u-width--0 {
    width: 0 !important;
  }
  .desktop\:vads-u-width--0p5 {
    width: 0.25rem !important;
  }
  .desktop\:vads-u-width--1 {
    width: 0.5rem !important;
  }
  .desktop\:vads-u-width--1p5 {
    width: 0.75rem !important;
  }
  .desktop\:vads-u-width--2 {
    width: 1rem !important;
  }
  .desktop\:vads-u-width--2p5 {
    width: 1.25rem !important;
  }
  .desktop\:vads-u-width--3 {
    width: 1.5rem !important;
  }
  .desktop\:vads-u-width--4 {
    width: 2rem !important;
  }
  .desktop\:vads-u-width--5 {
    width: 2.5rem !important;
  }
  .desktop\:vads-u-width--6 {
    width: 3rem !important;
  }
  .desktop\:vads-u-width--7 {
    width: 3.5rem !important;
  }
  .desktop\:vads-u-width--8 {
    width: 4rem !important;
  }
  .desktop\:vads-u-width--9 {
    width: 4.5rem !important;
  }
  .desktop\:vads-u-width--10 {
    width: 5rem !important;
  }
  .desktop\:vads-u-width--11 {
    width: 5.5rem !important;
  }
  .desktop\:vads-u-width--12 {
    width: 6rem !important;
  }
  .desktop\:vads-u-width--13 {
    width: 6.5rem !important;
  }
  .desktop\:vads-u-width--14 {
    width: 7rem !important;
  }
  .desktop\:vads-u-width--15 {
    width: 7.5rem !important;
  }
  .desktop\:vads-u-width--16 {
    width: 8rem !important;
  }
  .desktop\:vads-u-width--17 {
    width: 8.5rem !important;
  }
  .desktop\:vads-u-width--18 {
    width: 9rem !important;
  }
  .desktop\:vads-u-width--19 {
    width: 9.5rem !important;
  }
  .desktop\:vads-u-width--20 {
    width: 10rem !important;
  }
  .desktop\:vads-u-width--21 {
    width: 10.5rem !important;
  }
  .desktop\:vads-u-width--22 {
    width: 11rem !important;
  }
  .desktop\:vads-u-width--23 {
    width: 11.5rem !important;
  }
  .desktop\:vads-u-width--24 {
    width: 12rem !important;
  }
  .desktop\:vads-u-width--25 {
    width: 12.5rem !important;
  }
  .desktop\:vads-u-width--26 {
    width: 13rem !important;
  }
  .desktop\:vads-u-width--27 {
    width: 13.5rem !important;
  }
  .desktop\:vads-u-width--28 {
    width: 14rem !important;
  }
  .desktop\:vads-u-width--29 {
    width: 14.5rem !important;
  }
  .desktop\:vads-u-width--30 {
    width: 15rem !important;
  }
  .desktop\:vads-u-width--31 {
    width: 15.5rem !important;
  }
  .desktop\:vads-u-width--32 {
    width: 16rem !important;
  }
  .desktop\:vads-u-width--auto {
    width: auto !important;
  }
  .desktop\:vads-u-width--full {
    width: 100% !important;
  }
  .desktop\:vads-u-width--screen {
    width: 100vw !important;
  }
  .desktop\:vads-u-min-width--0 {
    min-width: 0 !important;
  }
  .desktop\:vads-u-min-width--0p5 {
    min-width: 0.25rem !important;
  }
  .desktop\:vads-u-min-width--1 {
    min-width: 0.5rem !important;
  }
  .desktop\:vads-u-min-width--1p5 {
    min-width: 0.75rem !important;
  }
  .desktop\:vads-u-min-width--2 {
    min-width: 1rem !important;
  }
  .desktop\:vads-u-min-width--2p5 {
    min-width: 1.25rem !important;
  }
  .desktop\:vads-u-min-width--3 {
    min-width: 1.5rem !important;
  }
  .desktop\:vads-u-min-width--4 {
    min-width: 2rem !important;
  }
  .desktop\:vads-u-min-width--5 {
    min-width: 2.5rem !important;
  }
  .desktop\:vads-u-min-width--6 {
    min-width: 3rem !important;
  }
  .desktop\:vads-u-min-width--7 {
    min-width: 3.5rem !important;
  }
  .desktop\:vads-u-min-width--8 {
    min-width: 4rem !important;
  }
  .desktop\:vads-u-min-width--9 {
    min-width: 4.5rem !important;
  }
  .desktop\:vads-u-min-width--10 {
    min-width: 5rem !important;
  }
  .desktop\:vads-u-min-width--11 {
    min-width: 5.5rem !important;
  }
  .desktop\:vads-u-min-width--12 {
    min-width: 6rem !important;
  }
  .desktop\:vads-u-min-width--13 {
    min-width: 6.5rem !important;
  }
  .desktop\:vads-u-min-width--14 {
    min-width: 7rem !important;
  }
  .desktop\:vads-u-min-width--15 {
    min-width: 7.5rem !important;
  }
  .desktop\:vads-u-min-width--16 {
    min-width: 8rem !important;
  }
  .desktop\:vads-u-min-width--17 {
    min-width: 8.5rem !important;
  }
  .desktop\:vads-u-min-width--18 {
    min-width: 9rem !important;
  }
  .desktop\:vads-u-min-width--19 {
    min-width: 9.5rem !important;
  }
  .desktop\:vads-u-min-width--20 {
    min-width: 10rem !important;
  }
  .desktop\:vads-u-min-width--21 {
    min-width: 10.5rem !important;
  }
  .desktop\:vads-u-min-width--22 {
    min-width: 11rem !important;
  }
  .desktop\:vads-u-min-width--23 {
    min-width: 11.5rem !important;
  }
  .desktop\:vads-u-min-width--24 {
    min-width: 12rem !important;
  }
  .desktop\:vads-u-min-width--25 {
    min-width: 12.5rem !important;
  }
  .desktop\:vads-u-min-width--26 {
    min-width: 13rem !important;
  }
  .desktop\:vads-u-min-width--27 {
    min-width: 13.5rem !important;
  }
  .desktop\:vads-u-min-width--28 {
    min-width: 14rem !important;
  }
  .desktop\:vads-u-min-width--29 {
    min-width: 14.5rem !important;
  }
  .desktop\:vads-u-min-width--30 {
    min-width: 15rem !important;
  }
  .desktop\:vads-u-min-width--31 {
    min-width: 15.5rem !important;
  }
  .desktop\:vads-u-min-width--32 {
    min-width: 16rem !important;
  }
  .desktop\:vads-u-min-width--none {
    min-width: none !important;
  }
  .desktop\:vads-u-min-width--full {
    min-width: 100% !important;
  }
  .desktop\:vads-u-max-width--0 {
    max-width: 0 !important;
  }
  .desktop\:vads-u-max-width--0p5 {
    max-width: 0.25rem !important;
  }
  .desktop\:vads-u-max-width--1 {
    max-width: 0.5rem !important;
  }
  .desktop\:vads-u-max-width--1p5 {
    max-width: 0.75rem !important;
  }
  .desktop\:vads-u-max-width--2 {
    max-width: 1rem !important;
  }
  .desktop\:vads-u-max-width--2p5 {
    max-width: 1.25rem !important;
  }
  .desktop\:vads-u-max-width--3 {
    max-width: 1.5rem !important;
  }
  .desktop\:vads-u-max-width--4 {
    max-width: 2rem !important;
  }
  .desktop\:vads-u-max-width--5 {
    max-width: 2.5rem !important;
  }
  .desktop\:vads-u-max-width--6 {
    max-width: 3rem !important;
  }
  .desktop\:vads-u-max-width--7 {
    max-width: 3.5rem !important;
  }
  .desktop\:vads-u-max-width--8 {
    max-width: 4rem !important;
  }
  .desktop\:vads-u-max-width--9 {
    max-width: 4.5rem !important;
  }
  .desktop\:vads-u-max-width--10 {
    max-width: 5rem !important;
  }
  .desktop\:vads-u-max-width--11 {
    max-width: 5.5rem !important;
  }
  .desktop\:vads-u-max-width--12 {
    max-width: 6rem !important;
  }
  .desktop\:vads-u-max-width--13 {
    max-width: 6.5rem !important;
  }
  .desktop\:vads-u-max-width--14 {
    max-width: 7rem !important;
  }
  .desktop\:vads-u-max-width--15 {
    max-width: 7.5rem !important;
  }
  .desktop\:vads-u-max-width--16 {
    max-width: 8rem !important;
  }
  .desktop\:vads-u-max-width--17 {
    max-width: 8.5rem !important;
  }
  .desktop\:vads-u-max-width--18 {
    max-width: 9rem !important;
  }
  .desktop\:vads-u-max-width--19 {
    max-width: 9.5rem !important;
  }
  .desktop\:vads-u-max-width--20 {
    max-width: 10rem !important;
  }
  .desktop\:vads-u-max-width--21 {
    max-width: 10.5rem !important;
  }
  .desktop\:vads-u-max-width--22 {
    max-width: 11rem !important;
  }
  .desktop\:vads-u-max-width--23 {
    max-width: 11.5rem !important;
  }
  .desktop\:vads-u-max-width--24 {
    max-width: 12rem !important;
  }
  .desktop\:vads-u-max-width--25 {
    max-width: 12.5rem !important;
  }
  .desktop\:vads-u-max-width--26 {
    max-width: 13rem !important;
  }
  .desktop\:vads-u-max-width--27 {
    max-width: 13.5rem !important;
  }
  .desktop\:vads-u-max-width--28 {
    max-width: 14rem !important;
  }
  .desktop\:vads-u-max-width--29 {
    max-width: 14.5rem !important;
  }
  .desktop\:vads-u-max-width--30 {
    max-width: 15rem !important;
  }
  .desktop\:vads-u-max-width--31 {
    max-width: 15.5rem !important;
  }
  .desktop\:vads-u-max-width--32 {
    max-width: 16rem !important;
  }
  .desktop\:vads-u-max-width--none {
    max-width: none !important;
  }
  .desktop\:vads-u-max-width--full {
    max-width: 100% !important;
  }
}
@media all and (min-width: 75em) {
  .desktop-lg\:vads-u-width--0 {
    width: 0 !important;
  }
  .desktop-lg\:vads-u-width--0p5 {
    width: 0.25rem !important;
  }
  .desktop-lg\:vads-u-width--1 {
    width: 0.5rem !important;
  }
  .desktop-lg\:vads-u-width--1p5 {
    width: 0.75rem !important;
  }
  .desktop-lg\:vads-u-width--2 {
    width: 1rem !important;
  }
  .desktop-lg\:vads-u-width--2p5 {
    width: 1.25rem !important;
  }
  .desktop-lg\:vads-u-width--3 {
    width: 1.5rem !important;
  }
  .desktop-lg\:vads-u-width--4 {
    width: 2rem !important;
  }
  .desktop-lg\:vads-u-width--5 {
    width: 2.5rem !important;
  }
  .desktop-lg\:vads-u-width--6 {
    width: 3rem !important;
  }
  .desktop-lg\:vads-u-width--7 {
    width: 3.5rem !important;
  }
  .desktop-lg\:vads-u-width--8 {
    width: 4rem !important;
  }
  .desktop-lg\:vads-u-width--9 {
    width: 4.5rem !important;
  }
  .desktop-lg\:vads-u-width--10 {
    width: 5rem !important;
  }
  .desktop-lg\:vads-u-width--11 {
    width: 5.5rem !important;
  }
  .desktop-lg\:vads-u-width--12 {
    width: 6rem !important;
  }
  .desktop-lg\:vads-u-width--13 {
    width: 6.5rem !important;
  }
  .desktop-lg\:vads-u-width--14 {
    width: 7rem !important;
  }
  .desktop-lg\:vads-u-width--15 {
    width: 7.5rem !important;
  }
  .desktop-lg\:vads-u-width--16 {
    width: 8rem !important;
  }
  .desktop-lg\:vads-u-width--17 {
    width: 8.5rem !important;
  }
  .desktop-lg\:vads-u-width--18 {
    width: 9rem !important;
  }
  .desktop-lg\:vads-u-width--19 {
    width: 9.5rem !important;
  }
  .desktop-lg\:vads-u-width--20 {
    width: 10rem !important;
  }
  .desktop-lg\:vads-u-width--21 {
    width: 10.5rem !important;
  }
  .desktop-lg\:vads-u-width--22 {
    width: 11rem !important;
  }
  .desktop-lg\:vads-u-width--23 {
    width: 11.5rem !important;
  }
  .desktop-lg\:vads-u-width--24 {
    width: 12rem !important;
  }
  .desktop-lg\:vads-u-width--25 {
    width: 12.5rem !important;
  }
  .desktop-lg\:vads-u-width--26 {
    width: 13rem !important;
  }
  .desktop-lg\:vads-u-width--27 {
    width: 13.5rem !important;
  }
  .desktop-lg\:vads-u-width--28 {
    width: 14rem !important;
  }
  .desktop-lg\:vads-u-width--29 {
    width: 14.5rem !important;
  }
  .desktop-lg\:vads-u-width--30 {
    width: 15rem !important;
  }
  .desktop-lg\:vads-u-width--31 {
    width: 15.5rem !important;
  }
  .desktop-lg\:vads-u-width--32 {
    width: 16rem !important;
  }
  .desktop-lg\:vads-u-width--auto {
    width: auto !important;
  }
  .desktop-lg\:vads-u-width--full {
    width: 100% !important;
  }
  .desktop-lg\:vads-u-width--screen {
    width: 100vw !important;
  }
  .desktop-lg\:vads-u-min-width--0 {
    min-width: 0 !important;
  }
  .desktop-lg\:vads-u-min-width--0p5 {
    min-width: 0.25rem !important;
  }
  .desktop-lg\:vads-u-min-width--1 {
    min-width: 0.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--1p5 {
    min-width: 0.75rem !important;
  }
  .desktop-lg\:vads-u-min-width--2 {
    min-width: 1rem !important;
  }
  .desktop-lg\:vads-u-min-width--2p5 {
    min-width: 1.25rem !important;
  }
  .desktop-lg\:vads-u-min-width--3 {
    min-width: 1.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--4 {
    min-width: 2rem !important;
  }
  .desktop-lg\:vads-u-min-width--5 {
    min-width: 2.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--6 {
    min-width: 3rem !important;
  }
  .desktop-lg\:vads-u-min-width--7 {
    min-width: 3.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--8 {
    min-width: 4rem !important;
  }
  .desktop-lg\:vads-u-min-width--9 {
    min-width: 4.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--10 {
    min-width: 5rem !important;
  }
  .desktop-lg\:vads-u-min-width--11 {
    min-width: 5.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--12 {
    min-width: 6rem !important;
  }
  .desktop-lg\:vads-u-min-width--13 {
    min-width: 6.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--14 {
    min-width: 7rem !important;
  }
  .desktop-lg\:vads-u-min-width--15 {
    min-width: 7.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--16 {
    min-width: 8rem !important;
  }
  .desktop-lg\:vads-u-min-width--17 {
    min-width: 8.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--18 {
    min-width: 9rem !important;
  }
  .desktop-lg\:vads-u-min-width--19 {
    min-width: 9.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--20 {
    min-width: 10rem !important;
  }
  .desktop-lg\:vads-u-min-width--21 {
    min-width: 10.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--22 {
    min-width: 11rem !important;
  }
  .desktop-lg\:vads-u-min-width--23 {
    min-width: 11.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--24 {
    min-width: 12rem !important;
  }
  .desktop-lg\:vads-u-min-width--25 {
    min-width: 12.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--26 {
    min-width: 13rem !important;
  }
  .desktop-lg\:vads-u-min-width--27 {
    min-width: 13.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--28 {
    min-width: 14rem !important;
  }
  .desktop-lg\:vads-u-min-width--29 {
    min-width: 14.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--30 {
    min-width: 15rem !important;
  }
  .desktop-lg\:vads-u-min-width--31 {
    min-width: 15.5rem !important;
  }
  .desktop-lg\:vads-u-min-width--32 {
    min-width: 16rem !important;
  }
  .desktop-lg\:vads-u-min-width--none {
    min-width: none !important;
  }
  .desktop-lg\:vads-u-min-width--full {
    min-width: 100% !important;
  }
  .desktop-lg\:vads-u-max-width--0 {
    max-width: 0 !important;
  }
  .desktop-lg\:vads-u-max-width--0p5 {
    max-width: 0.25rem !important;
  }
  .desktop-lg\:vads-u-max-width--1 {
    max-width: 0.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--1p5 {
    max-width: 0.75rem !important;
  }
  .desktop-lg\:vads-u-max-width--2 {
    max-width: 1rem !important;
  }
  .desktop-lg\:vads-u-max-width--2p5 {
    max-width: 1.25rem !important;
  }
  .desktop-lg\:vads-u-max-width--3 {
    max-width: 1.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--4 {
    max-width: 2rem !important;
  }
  .desktop-lg\:vads-u-max-width--5 {
    max-width: 2.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--6 {
    max-width: 3rem !important;
  }
  .desktop-lg\:vads-u-max-width--7 {
    max-width: 3.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--8 {
    max-width: 4rem !important;
  }
  .desktop-lg\:vads-u-max-width--9 {
    max-width: 4.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--10 {
    max-width: 5rem !important;
  }
  .desktop-lg\:vads-u-max-width--11 {
    max-width: 5.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--12 {
    max-width: 6rem !important;
  }
  .desktop-lg\:vads-u-max-width--13 {
    max-width: 6.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--14 {
    max-width: 7rem !important;
  }
  .desktop-lg\:vads-u-max-width--15 {
    max-width: 7.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--16 {
    max-width: 8rem !important;
  }
  .desktop-lg\:vads-u-max-width--17 {
    max-width: 8.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--18 {
    max-width: 9rem !important;
  }
  .desktop-lg\:vads-u-max-width--19 {
    max-width: 9.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--20 {
    max-width: 10rem !important;
  }
  .desktop-lg\:vads-u-max-width--21 {
    max-width: 10.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--22 {
    max-width: 11rem !important;
  }
  .desktop-lg\:vads-u-max-width--23 {
    max-width: 11.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--24 {
    max-width: 12rem !important;
  }
  .desktop-lg\:vads-u-max-width--25 {
    max-width: 12.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--26 {
    max-width: 13rem !important;
  }
  .desktop-lg\:vads-u-max-width--27 {
    max-width: 13.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--28 {
    max-width: 14rem !important;
  }
  .desktop-lg\:vads-u-max-width--29 {
    max-width: 14.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--30 {
    max-width: 15rem !important;
  }
  .desktop-lg\:vads-u-max-width--31 {
    max-width: 15.5rem !important;
  }
  .desktop-lg\:vads-u-max-width--32 {
    max-width: 16rem !important;
  }
  .desktop-lg\:vads-u-max-width--none {
    max-width: none !important;
  }
  .desktop-lg\:vads-u-max-width--full {
    max-width: 100% !important;
  }
}
@media all and (min-width: 87.5em) {
  .widescreen\:vads-u-width--0 {
    width: 0 !important;
  }
  .widescreen\:vads-u-width--0p5 {
    width: 0.25rem !important;
  }
  .widescreen\:vads-u-width--1 {
    width: 0.5rem !important;
  }
  .widescreen\:vads-u-width--1p5 {
    width: 0.75rem !important;
  }
  .widescreen\:vads-u-width--2 {
    width: 1rem !important;
  }
  .widescreen\:vads-u-width--2p5 {
    width: 1.25rem !important;
  }
  .widescreen\:vads-u-width--3 {
    width: 1.5rem !important;
  }
  .widescreen\:vads-u-width--4 {
    width: 2rem !important;
  }
  .widescreen\:vads-u-width--5 {
    width: 2.5rem !important;
  }
  .widescreen\:vads-u-width--6 {
    width: 3rem !important;
  }
  .widescreen\:vads-u-width--7 {
    width: 3.5rem !important;
  }
  .widescreen\:vads-u-width--8 {
    width: 4rem !important;
  }
  .widescreen\:vads-u-width--9 {
    width: 4.5rem !important;
  }
  .widescreen\:vads-u-width--10 {
    width: 5rem !important;
  }
  .widescreen\:vads-u-width--11 {
    width: 5.5rem !important;
  }
  .widescreen\:vads-u-width--12 {
    width: 6rem !important;
  }
  .widescreen\:vads-u-width--13 {
    width: 6.5rem !important;
  }
  .widescreen\:vads-u-width--14 {
    width: 7rem !important;
  }
  .widescreen\:vads-u-width--15 {
    width: 7.5rem !important;
  }
  .widescreen\:vads-u-width--16 {
    width: 8rem !important;
  }
  .widescreen\:vads-u-width--17 {
    width: 8.5rem !important;
  }
  .widescreen\:vads-u-width--18 {
    width: 9rem !important;
  }
  .widescreen\:vads-u-width--19 {
    width: 9.5rem !important;
  }
  .widescreen\:vads-u-width--20 {
    width: 10rem !important;
  }
  .widescreen\:vads-u-width--21 {
    width: 10.5rem !important;
  }
  .widescreen\:vads-u-width--22 {
    width: 11rem !important;
  }
  .widescreen\:vads-u-width--23 {
    width: 11.5rem !important;
  }
  .widescreen\:vads-u-width--24 {
    width: 12rem !important;
  }
  .widescreen\:vads-u-width--25 {
    width: 12.5rem !important;
  }
  .widescreen\:vads-u-width--26 {
    width: 13rem !important;
  }
  .widescreen\:vads-u-width--27 {
    width: 13.5rem !important;
  }
  .widescreen\:vads-u-width--28 {
    width: 14rem !important;
  }
  .widescreen\:vads-u-width--29 {
    width: 14.5rem !important;
  }
  .widescreen\:vads-u-width--30 {
    width: 15rem !important;
  }
  .widescreen\:vads-u-width--31 {
    width: 15.5rem !important;
  }
  .widescreen\:vads-u-width--32 {
    width: 16rem !important;
  }
  .widescreen\:vads-u-width--auto {
    width: auto !important;
  }
  .widescreen\:vads-u-width--full {
    width: 100% !important;
  }
  .widescreen\:vads-u-width--screen {
    width: 100vw !important;
  }
  .widescreen\:vads-u-min-width--0 {
    min-width: 0 !important;
  }
  .widescreen\:vads-u-min-width--0p5 {
    min-width: 0.25rem !important;
  }
  .widescreen\:vads-u-min-width--1 {
    min-width: 0.5rem !important;
  }
  .widescreen\:vads-u-min-width--1p5 {
    min-width: 0.75rem !important;
  }
  .widescreen\:vads-u-min-width--2 {
    min-width: 1rem !important;
  }
  .widescreen\:vads-u-min-width--2p5 {
    min-width: 1.25rem !important;
  }
  .widescreen\:vads-u-min-width--3 {
    min-width: 1.5rem !important;
  }
  .widescreen\:vads-u-min-width--4 {
    min-width: 2rem !important;
  }
  .widescreen\:vads-u-min-width--5 {
    min-width: 2.5rem !important;
  }
  .widescreen\:vads-u-min-width--6 {
    min-width: 3rem !important;
  }
  .widescreen\:vads-u-min-width--7 {
    min-width: 3.5rem !important;
  }
  .widescreen\:vads-u-min-width--8 {
    min-width: 4rem !important;
  }
  .widescreen\:vads-u-min-width--9 {
    min-width: 4.5rem !important;
  }
  .widescreen\:vads-u-min-width--10 {
    min-width: 5rem !important;
  }
  .widescreen\:vads-u-min-width--11 {
    min-width: 5.5rem !important;
  }
  .widescreen\:vads-u-min-width--12 {
    min-width: 6rem !important;
  }
  .widescreen\:vads-u-min-width--13 {
    min-width: 6.5rem !important;
  }
  .widescreen\:vads-u-min-width--14 {
    min-width: 7rem !important;
  }
  .widescreen\:vads-u-min-width--15 {
    min-width: 7.5rem !important;
  }
  .widescreen\:vads-u-min-width--16 {
    min-width: 8rem !important;
  }
  .widescreen\:vads-u-min-width--17 {
    min-width: 8.5rem !important;
  }
  .widescreen\:vads-u-min-width--18 {
    min-width: 9rem !important;
  }
  .widescreen\:vads-u-min-width--19 {
    min-width: 9.5rem !important;
  }
  .widescreen\:vads-u-min-width--20 {
    min-width: 10rem !important;
  }
  .widescreen\:vads-u-min-width--21 {
    min-width: 10.5rem !important;
  }
  .widescreen\:vads-u-min-width--22 {
    min-width: 11rem !important;
  }
  .widescreen\:vads-u-min-width--23 {
    min-width: 11.5rem !important;
  }
  .widescreen\:vads-u-min-width--24 {
    min-width: 12rem !important;
  }
  .widescreen\:vads-u-min-width--25 {
    min-width: 12.5rem !important;
  }
  .widescreen\:vads-u-min-width--26 {
    min-width: 13rem !important;
  }
  .widescreen\:vads-u-min-width--27 {
    min-width: 13.5rem !important;
  }
  .widescreen\:vads-u-min-width--28 {
    min-width: 14rem !important;
  }
  .widescreen\:vads-u-min-width--29 {
    min-width: 14.5rem !important;
  }
  .widescreen\:vads-u-min-width--30 {
    min-width: 15rem !important;
  }
  .widescreen\:vads-u-min-width--31 {
    min-width: 15.5rem !important;
  }
  .widescreen\:vads-u-min-width--32 {
    min-width: 16rem !important;
  }
  .widescreen\:vads-u-min-width--none {
    min-width: none !important;
  }
  .widescreen\:vads-u-min-width--full {
    min-width: 100% !important;
  }
  .widescreen\:vads-u-max-width--0 {
    max-width: 0 !important;
  }
  .widescreen\:vads-u-max-width--0p5 {
    max-width: 0.25rem !important;
  }
  .widescreen\:vads-u-max-width--1 {
    max-width: 0.5rem !important;
  }
  .widescreen\:vads-u-max-width--1p5 {
    max-width: 0.75rem !important;
  }
  .widescreen\:vads-u-max-width--2 {
    max-width: 1rem !important;
  }
  .widescreen\:vads-u-max-width--2p5 {
    max-width: 1.25rem !important;
  }
  .widescreen\:vads-u-max-width--3 {
    max-width: 1.5rem !important;
  }
  .widescreen\:vads-u-max-width--4 {
    max-width: 2rem !important;
  }
  .widescreen\:vads-u-max-width--5 {
    max-width: 2.5rem !important;
  }
  .widescreen\:vads-u-max-width--6 {
    max-width: 3rem !important;
  }
  .widescreen\:vads-u-max-width--7 {
    max-width: 3.5rem !important;
  }
  .widescreen\:vads-u-max-width--8 {
    max-width: 4rem !important;
  }
  .widescreen\:vads-u-max-width--9 {
    max-width: 4.5rem !important;
  }
  .widescreen\:vads-u-max-width--10 {
    max-width: 5rem !important;
  }
  .widescreen\:vads-u-max-width--11 {
    max-width: 5.5rem !important;
  }
  .widescreen\:vads-u-max-width--12 {
    max-width: 6rem !important;
  }
  .widescreen\:vads-u-max-width--13 {
    max-width: 6.5rem !important;
  }
  .widescreen\:vads-u-max-width--14 {
    max-width: 7rem !important;
  }
  .widescreen\:vads-u-max-width--15 {
    max-width: 7.5rem !important;
  }
  .widescreen\:vads-u-max-width--16 {
    max-width: 8rem !important;
  }
  .widescreen\:vads-u-max-width--17 {
    max-width: 8.5rem !important;
  }
  .widescreen\:vads-u-max-width--18 {
    max-width: 9rem !important;
  }
  .widescreen\:vads-u-max-width--19 {
    max-width: 9.5rem !important;
  }
  .widescreen\:vads-u-max-width--20 {
    max-width: 10rem !important;
  }
  .widescreen\:vads-u-max-width--21 {
    max-width: 10.5rem !important;
  }
  .widescreen\:vads-u-max-width--22 {
    max-width: 11rem !important;
  }
  .widescreen\:vads-u-max-width--23 {
    max-width: 11.5rem !important;
  }
  .widescreen\:vads-u-max-width--24 {
    max-width: 12rem !important;
  }
  .widescreen\:vads-u-max-width--25 {
    max-width: 12.5rem !important;
  }
  .widescreen\:vads-u-max-width--26 {
    max-width: 13rem !important;
  }
  .widescreen\:vads-u-max-width--27 {
    max-width: 13.5rem !important;
  }
  .widescreen\:vads-u-max-width--28 {
    max-width: 14rem !important;
  }
  .widescreen\:vads-u-max-width--29 {
    max-width: 14.5rem !important;
  }
  .widescreen\:vads-u-max-width--30 {
    max-width: 15rem !important;
  }
  .widescreen\:vads-u-max-width--31 {
    max-width: 15.5rem !important;
  }
  .widescreen\:vads-u-max-width--32 {
    max-width: 16rem !important;
  }
  .widescreen\:vads-u-max-width--none {
    max-width: none !important;
  }
  .widescreen\:vads-u-max-width--full {
    max-width: 100% !important;
  }
}
@media all and (min-width: 20em) {
  .mobile\:vads-u-height--0 {
    height: 0 !important;
  }
  .mobile\:vads-u-height--0p5 {
    height: 0.25rem !important;
  }
  .mobile\:vads-u-height--1 {
    height: 0.5rem !important;
  }
  .mobile\:vads-u-height--1p5 {
    height: 0.75rem !important;
  }
  .mobile\:vads-u-height--2 {
    height: 1rem !important;
  }
  .mobile\:vads-u-height--2p5 {
    height: 1.25rem !important;
  }
  .mobile\:vads-u-height--3 {
    height: 1.5rem !important;
  }
  .mobile\:vads-u-height--4 {
    height: 2rem !important;
  }
  .mobile\:vads-u-height--5 {
    height: 2.5rem !important;
  }
  .mobile\:vads-u-height--6 {
    height: 3rem !important;
  }
  .mobile\:vads-u-height--7 {
    height: 3.5rem !important;
  }
  .mobile\:vads-u-height--8 {
    height: 4rem !important;
  }
  .mobile\:vads-u-height--9 {
    height: 4.5rem !important;
  }
  .mobile\:vads-u-height--10 {
    height: 5rem !important;
  }
  .mobile\:vads-u-height--11 {
    height: 5.5rem !important;
  }
  .mobile\:vads-u-height--12 {
    height: 6rem !important;
  }
  .mobile\:vads-u-height--13 {
    height: 6.5rem !important;
  }
  .mobile\:vads-u-height--14 {
    height: 7rem !important;
  }
  .mobile\:vads-u-height--15 {
    height: 7.5rem !important;
  }
  .mobile\:vads-u-height--16 {
    height: 8rem !important;
  }
  .mobile\:vads-u-height--17 {
    height: 8.5rem !important;
  }
  .mobile\:vads-u-height--18 {
    height: 9rem !important;
  }
  .mobile\:vads-u-height--19 {
    height: 9.5rem !important;
  }
  .mobile\:vads-u-height--20 {
    height: 10rem !important;
  }
  .mobile\:vads-u-height--21 {
    height: 10.5rem !important;
  }
  .mobile\:vads-u-height--22 {
    height: 11rem !important;
  }
  .mobile\:vads-u-height--23 {
    height: 11.5rem !important;
  }
  .mobile\:vads-u-height--24 {
    height: 12rem !important;
  }
  .mobile\:vads-u-height--25 {
    height: 12.5rem !important;
  }
  .mobile\:vads-u-height--26 {
    height: 13rem !important;
  }
  .mobile\:vads-u-height--27 {
    height: 13.5rem !important;
  }
  .mobile\:vads-u-height--28 {
    height: 14rem !important;
  }
  .mobile\:vads-u-height--29 {
    height: 14.5rem !important;
  }
  .mobile\:vads-u-height--30 {
    height: 15rem !important;
  }
  .mobile\:vads-u-height--31 {
    height: 15.5rem !important;
  }
  .mobile\:vads-u-height--32 {
    height: 16rem !important;
  }
  .mobile\:vads-u-height--auto {
    height: auto !important;
  }
  .mobile\:vads-u-height--full {
    height: 100% !important;
  }
  .mobile\:vads-u-height--viewport {
    height: 100vh !important;
  }
  .mobile\:vads-u-min-height--0 {
    min-height: 0 !important;
  }
  .mobile\:vads-u-min-height--0p5 {
    min-height: 0.25rem !important;
  }
  .mobile\:vads-u-min-height--1 {
    min-height: 0.5rem !important;
  }
  .mobile\:vads-u-min-height--1p5 {
    min-height: 0.75rem !important;
  }
  .mobile\:vads-u-min-height--2 {
    min-height: 1rem !important;
  }
  .mobile\:vads-u-min-height--2p5 {
    min-height: 1.25rem !important;
  }
  .mobile\:vads-u-min-height--3 {
    min-height: 1.5rem !important;
  }
  .mobile\:vads-u-min-height--4 {
    min-height: 2rem !important;
  }
  .mobile\:vads-u-min-height--5 {
    min-height: 2.5rem !important;
  }
  .mobile\:vads-u-min-height--6 {
    min-height: 3rem !important;
  }
  .mobile\:vads-u-min-height--7 {
    min-height: 3.5rem !important;
  }
  .mobile\:vads-u-min-height--8 {
    min-height: 4rem !important;
  }
  .mobile\:vads-u-min-height--9 {
    min-height: 4.5rem !important;
  }
  .mobile\:vads-u-min-height--10 {
    min-height: 5rem !important;
  }
  .mobile\:vads-u-min-height--11 {
    min-height: 5.5rem !important;
  }
  .mobile\:vads-u-min-height--12 {
    min-height: 6rem !important;
  }
  .mobile\:vads-u-min-height--13 {
    min-height: 6.5rem !important;
  }
  .mobile\:vads-u-min-height--14 {
    min-height: 7rem !important;
  }
  .mobile\:vads-u-min-height--15 {
    min-height: 7.5rem !important;
  }
  .mobile\:vads-u-min-height--16 {
    min-height: 8rem !important;
  }
  .mobile\:vads-u-min-height--17 {
    min-height: 8.5rem !important;
  }
  .mobile\:vads-u-min-height--18 {
    min-height: 9rem !important;
  }
  .mobile\:vads-u-min-height--19 {
    min-height: 9.5rem !important;
  }
  .mobile\:vads-u-min-height--20 {
    min-height: 10rem !important;
  }
  .mobile\:vads-u-min-height--21 {
    min-height: 10.5rem !important;
  }
  .mobile\:vads-u-min-height--22 {
    min-height: 11rem !important;
  }
  .mobile\:vads-u-min-height--23 {
    min-height: 11.5rem !important;
  }
  .mobile\:vads-u-min-height--24 {
    min-height: 12rem !important;
  }
  .mobile\:vads-u-min-height--25 {
    min-height: 12.5rem !important;
  }
  .mobile\:vads-u-min-height--26 {
    min-height: 13rem !important;
  }
  .mobile\:vads-u-min-height--27 {
    min-height: 13.5rem !important;
  }
  .mobile\:vads-u-min-height--28 {
    min-height: 14rem !important;
  }
  .mobile\:vads-u-min-height--29 {
    min-height: 14.5rem !important;
  }
  .mobile\:vads-u-min-height--30 {
    min-height: 15rem !important;
  }
  .mobile\:vads-u-min-height--31 {
    min-height: 15.5rem !important;
  }
  .mobile\:vads-u-min-height--32 {
    min-height: 16rem !important;
  }
  .mobile\:vads-u-min-height--none {
    min-height: none !important;
  }
  .mobile\:vads-u-min-height--full {
    min-height: 100% !important;
  }
  .mobile\:vads-u-min-height--viewport {
    min-height: 100vh !important;
  }
  .mobile\:vads-u-max-height--0 {
    max-height: 0 !important;
  }
  .mobile\:vads-u-max-height--0p5 {
    max-height: 0.25rem !important;
  }
  .mobile\:vads-u-max-height--1 {
    max-height: 0.5rem !important;
  }
  .mobile\:vads-u-max-height--1p5 {
    max-height: 0.75rem !important;
  }
  .mobile\:vads-u-max-height--2 {
    max-height: 1rem !important;
  }
  .mobile\:vads-u-max-height--2p5 {
    max-height: 1.25rem !important;
  }
  .mobile\:vads-u-max-height--3 {
    max-height: 1.5rem !important;
  }
  .mobile\:vads-u-max-height--4 {
    max-height: 2rem !important;
  }
  .mobile\:vads-u-max-height--5 {
    max-height: 2.5rem !important;
  }
  .mobile\:vads-u-max-height--6 {
    max-height: 3rem !important;
  }
  .mobile\:vads-u-max-height--7 {
    max-height: 3.5rem !important;
  }
  .mobile\:vads-u-max-height--8 {
    max-height: 4rem !important;
  }
  .mobile\:vads-u-max-height--9 {
    max-height: 4.5rem !important;
  }
  .mobile\:vads-u-max-height--10 {
    max-height: 5rem !important;
  }
  .mobile\:vads-u-max-height--11 {
    max-height: 5.5rem !important;
  }
  .mobile\:vads-u-max-height--12 {
    max-height: 6rem !important;
  }
  .mobile\:vads-u-max-height--13 {
    max-height: 6.5rem !important;
  }
  .mobile\:vads-u-max-height--14 {
    max-height: 7rem !important;
  }
  .mobile\:vads-u-max-height--15 {
    max-height: 7.5rem !important;
  }
  .mobile\:vads-u-max-height--16 {
    max-height: 8rem !important;
  }
  .mobile\:vads-u-max-height--17 {
    max-height: 8.5rem !important;
  }
  .mobile\:vads-u-max-height--18 {
    max-height: 9rem !important;
  }
  .mobile\:vads-u-max-height--19 {
    max-height: 9.5rem !important;
  }
  .mobile\:vads-u-max-height--20 {
    max-height: 10rem !important;
  }
  .mobile\:vads-u-max-height--21 {
    max-height: 10.5rem !important;
  }
  .mobile\:vads-u-max-height--22 {
    max-height: 11rem !important;
  }
  .mobile\:vads-u-max-height--23 {
    max-height: 11.5rem !important;
  }
  .mobile\:vads-u-max-height--24 {
    max-height: 12rem !important;
  }
  .mobile\:vads-u-max-height--25 {
    max-height: 12.5rem !important;
  }
  .mobile\:vads-u-max-height--26 {
    max-height: 13rem !important;
  }
  .mobile\:vads-u-max-height--27 {
    max-height: 13.5rem !important;
  }
  .mobile\:vads-u-max-height--28 {
    max-height: 14rem !important;
  }
  .mobile\:vads-u-max-height--29 {
    max-height: 14.5rem !important;
  }
  .mobile\:vads-u-max-height--30 {
    max-height: 15rem !important;
  }
  .mobile\:vads-u-max-height--31 {
    max-height: 15.5rem !important;
  }
  .mobile\:vads-u-max-height--32 {
    max-height: 16rem !important;
  }
  .mobile\:vads-u-max-height--none {
    max-height: none !important;
  }
  .mobile\:vads-u-max-height--full {
    max-height: 100% !important;
  }
  .mobile\:vads-u-max-height--viewport {
    max-height: 100vh !important;
  }
}
@media all and (min-width: 30em) {
  .mobile-lg\:vads-u-height--0 {
    height: 0 !important;
  }
  .mobile-lg\:vads-u-height--0p5 {
    height: 0.25rem !important;
  }
  .mobile-lg\:vads-u-height--1 {
    height: 0.5rem !important;
  }
  .mobile-lg\:vads-u-height--1p5 {
    height: 0.75rem !important;
  }
  .mobile-lg\:vads-u-height--2 {
    height: 1rem !important;
  }
  .mobile-lg\:vads-u-height--2p5 {
    height: 1.25rem !important;
  }
  .mobile-lg\:vads-u-height--3 {
    height: 1.5rem !important;
  }
  .mobile-lg\:vads-u-height--4 {
    height: 2rem !important;
  }
  .mobile-lg\:vads-u-height--5 {
    height: 2.5rem !important;
  }
  .mobile-lg\:vads-u-height--6 {
    height: 3rem !important;
  }
  .mobile-lg\:vads-u-height--7 {
    height: 3.5rem !important;
  }
  .mobile-lg\:vads-u-height--8 {
    height: 4rem !important;
  }
  .mobile-lg\:vads-u-height--9 {
    height: 4.5rem !important;
  }
  .mobile-lg\:vads-u-height--10 {
    height: 5rem !important;
  }
  .mobile-lg\:vads-u-height--11 {
    height: 5.5rem !important;
  }
  .mobile-lg\:vads-u-height--12 {
    height: 6rem !important;
  }
  .mobile-lg\:vads-u-height--13 {
    height: 6.5rem !important;
  }
  .mobile-lg\:vads-u-height--14 {
    height: 7rem !important;
  }
  .mobile-lg\:vads-u-height--15 {
    height: 7.5rem !important;
  }
  .mobile-lg\:vads-u-height--16 {
    height: 8rem !important;
  }
  .mobile-lg\:vads-u-height--17 {
    height: 8.5rem !important;
  }
  .mobile-lg\:vads-u-height--18 {
    height: 9rem !important;
  }
  .mobile-lg\:vads-u-height--19 {
    height: 9.5rem !important;
  }
  .mobile-lg\:vads-u-height--20 {
    height: 10rem !important;
  }
  .mobile-lg\:vads-u-height--21 {
    height: 10.5rem !important;
  }
  .mobile-lg\:vads-u-height--22 {
    height: 11rem !important;
  }
  .mobile-lg\:vads-u-height--23 {
    height: 11.5rem !important;
  }
  .mobile-lg\:vads-u-height--24 {
    height: 12rem !important;
  }
  .mobile-lg\:vads-u-height--25 {
    height: 12.5rem !important;
  }
  .mobile-lg\:vads-u-height--26 {
    height: 13rem !important;
  }
  .mobile-lg\:vads-u-height--27 {
    height: 13.5rem !important;
  }
  .mobile-lg\:vads-u-height--28 {
    height: 14rem !important;
  }
  .mobile-lg\:vads-u-height--29 {
    height: 14.5rem !important;
  }
  .mobile-lg\:vads-u-height--30 {
    height: 15rem !important;
  }
  .mobile-lg\:vads-u-height--31 {
    height: 15.5rem !important;
  }
  .mobile-lg\:vads-u-height--32 {
    height: 16rem !important;
  }
  .mobile-lg\:vads-u-height--auto {
    height: auto !important;
  }
  .mobile-lg\:vads-u-height--full {
    height: 100% !important;
  }
  .mobile-lg\:vads-u-height--viewport {
    height: 100vh !important;
  }
  .mobile-lg\:vads-u-min-height--0 {
    min-height: 0 !important;
  }
  .mobile-lg\:vads-u-min-height--0p5 {
    min-height: 0.25rem !important;
  }
  .mobile-lg\:vads-u-min-height--1 {
    min-height: 0.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--1p5 {
    min-height: 0.75rem !important;
  }
  .mobile-lg\:vads-u-min-height--2 {
    min-height: 1rem !important;
  }
  .mobile-lg\:vads-u-min-height--2p5 {
    min-height: 1.25rem !important;
  }
  .mobile-lg\:vads-u-min-height--3 {
    min-height: 1.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--4 {
    min-height: 2rem !important;
  }
  .mobile-lg\:vads-u-min-height--5 {
    min-height: 2.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--6 {
    min-height: 3rem !important;
  }
  .mobile-lg\:vads-u-min-height--7 {
    min-height: 3.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--8 {
    min-height: 4rem !important;
  }
  .mobile-lg\:vads-u-min-height--9 {
    min-height: 4.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--10 {
    min-height: 5rem !important;
  }
  .mobile-lg\:vads-u-min-height--11 {
    min-height: 5.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--12 {
    min-height: 6rem !important;
  }
  .mobile-lg\:vads-u-min-height--13 {
    min-height: 6.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--14 {
    min-height: 7rem !important;
  }
  .mobile-lg\:vads-u-min-height--15 {
    min-height: 7.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--16 {
    min-height: 8rem !important;
  }
  .mobile-lg\:vads-u-min-height--17 {
    min-height: 8.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--18 {
    min-height: 9rem !important;
  }
  .mobile-lg\:vads-u-min-height--19 {
    min-height: 9.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--20 {
    min-height: 10rem !important;
  }
  .mobile-lg\:vads-u-min-height--21 {
    min-height: 10.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--22 {
    min-height: 11rem !important;
  }
  .mobile-lg\:vads-u-min-height--23 {
    min-height: 11.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--24 {
    min-height: 12rem !important;
  }
  .mobile-lg\:vads-u-min-height--25 {
    min-height: 12.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--26 {
    min-height: 13rem !important;
  }
  .mobile-lg\:vads-u-min-height--27 {
    min-height: 13.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--28 {
    min-height: 14rem !important;
  }
  .mobile-lg\:vads-u-min-height--29 {
    min-height: 14.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--30 {
    min-height: 15rem !important;
  }
  .mobile-lg\:vads-u-min-height--31 {
    min-height: 15.5rem !important;
  }
  .mobile-lg\:vads-u-min-height--32 {
    min-height: 16rem !important;
  }
  .mobile-lg\:vads-u-min-height--none {
    min-height: none !important;
  }
  .mobile-lg\:vads-u-min-height--full {
    min-height: 100% !important;
  }
  .mobile-lg\:vads-u-min-height--viewport {
    min-height: 100vh !important;
  }
  .mobile-lg\:vads-u-max-height--0 {
    max-height: 0 !important;
  }
  .mobile-lg\:vads-u-max-height--0p5 {
    max-height: 0.25rem !important;
  }
  .mobile-lg\:vads-u-max-height--1 {
    max-height: 0.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--1p5 {
    max-height: 0.75rem !important;
  }
  .mobile-lg\:vads-u-max-height--2 {
    max-height: 1rem !important;
  }
  .mobile-lg\:vads-u-max-height--2p5 {
    max-height: 1.25rem !important;
  }
  .mobile-lg\:vads-u-max-height--3 {
    max-height: 1.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--4 {
    max-height: 2rem !important;
  }
  .mobile-lg\:vads-u-max-height--5 {
    max-height: 2.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--6 {
    max-height: 3rem !important;
  }
  .mobile-lg\:vads-u-max-height--7 {
    max-height: 3.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--8 {
    max-height: 4rem !important;
  }
  .mobile-lg\:vads-u-max-height--9 {
    max-height: 4.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--10 {
    max-height: 5rem !important;
  }
  .mobile-lg\:vads-u-max-height--11 {
    max-height: 5.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--12 {
    max-height: 6rem !important;
  }
  .mobile-lg\:vads-u-max-height--13 {
    max-height: 6.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--14 {
    max-height: 7rem !important;
  }
  .mobile-lg\:vads-u-max-height--15 {
    max-height: 7.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--16 {
    max-height: 8rem !important;
  }
  .mobile-lg\:vads-u-max-height--17 {
    max-height: 8.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--18 {
    max-height: 9rem !important;
  }
  .mobile-lg\:vads-u-max-height--19 {
    max-height: 9.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--20 {
    max-height: 10rem !important;
  }
  .mobile-lg\:vads-u-max-height--21 {
    max-height: 10.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--22 {
    max-height: 11rem !important;
  }
  .mobile-lg\:vads-u-max-height--23 {
    max-height: 11.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--24 {
    max-height: 12rem !important;
  }
  .mobile-lg\:vads-u-max-height--25 {
    max-height: 12.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--26 {
    max-height: 13rem !important;
  }
  .mobile-lg\:vads-u-max-height--27 {
    max-height: 13.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--28 {
    max-height: 14rem !important;
  }
  .mobile-lg\:vads-u-max-height--29 {
    max-height: 14.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--30 {
    max-height: 15rem !important;
  }
  .mobile-lg\:vads-u-max-height--31 {
    max-height: 15.5rem !important;
  }
  .mobile-lg\:vads-u-max-height--32 {
    max-height: 16rem !important;
  }
  .mobile-lg\:vads-u-max-height--none {
    max-height: none !important;
  }
  .mobile-lg\:vads-u-max-height--full {
    max-height: 100% !important;
  }
  .mobile-lg\:vads-u-max-height--viewport {
    max-height: 100vh !important;
  }
}
@media all and (min-width: 40em) {
  .tablet\:vads-u-height--0 {
    height: 0 !important;
  }
  .tablet\:vads-u-height--0p5 {
    height: 0.25rem !important;
  }
  .tablet\:vads-u-height--1 {
    height: 0.5rem !important;
  }
  .tablet\:vads-u-height--1p5 {
    height: 0.75rem !important;
  }
  .tablet\:vads-u-height--2 {
    height: 1rem !important;
  }
  .tablet\:vads-u-height--2p5 {
    height: 1.25rem !important;
  }
  .tablet\:vads-u-height--3 {
    height: 1.5rem !important;
  }
  .tablet\:vads-u-height--4 {
    height: 2rem !important;
  }
  .tablet\:vads-u-height--5 {
    height: 2.5rem !important;
  }
  .tablet\:vads-u-height--6 {
    height: 3rem !important;
  }
  .tablet\:vads-u-height--7 {
    height: 3.5rem !important;
  }
  .tablet\:vads-u-height--8 {
    height: 4rem !important;
  }
  .tablet\:vads-u-height--9 {
    height: 4.5rem !important;
  }
  .tablet\:vads-u-height--10 {
    height: 5rem !important;
  }
  .tablet\:vads-u-height--11 {
    height: 5.5rem !important;
  }
  .tablet\:vads-u-height--12 {
    height: 6rem !important;
  }
  .tablet\:vads-u-height--13 {
    height: 6.5rem !important;
  }
  .tablet\:vads-u-height--14 {
    height: 7rem !important;
  }
  .tablet\:vads-u-height--15 {
    height: 7.5rem !important;
  }
  .tablet\:vads-u-height--16 {
    height: 8rem !important;
  }
  .tablet\:vads-u-height--17 {
    height: 8.5rem !important;
  }
  .tablet\:vads-u-height--18 {
    height: 9rem !important;
  }
  .tablet\:vads-u-height--19 {
    height: 9.5rem !important;
  }
  .tablet\:vads-u-height--20 {
    height: 10rem !important;
  }
  .tablet\:vads-u-height--21 {
    height: 10.5rem !important;
  }
  .tablet\:vads-u-height--22 {
    height: 11rem !important;
  }
  .tablet\:vads-u-height--23 {
    height: 11.5rem !important;
  }
  .tablet\:vads-u-height--24 {
    height: 12rem !important;
  }
  .tablet\:vads-u-height--25 {
    height: 12.5rem !important;
  }
  .tablet\:vads-u-height--26 {
    height: 13rem !important;
  }
  .tablet\:vads-u-height--27 {
    height: 13.5rem !important;
  }
  .tablet\:vads-u-height--28 {
    height: 14rem !important;
  }
  .tablet\:vads-u-height--29 {
    height: 14.5rem !important;
  }
  .tablet\:vads-u-height--30 {
    height: 15rem !important;
  }
  .tablet\:vads-u-height--31 {
    height: 15.5rem !important;
  }
  .tablet\:vads-u-height--32 {
    height: 16rem !important;
  }
  .tablet\:vads-u-height--auto {
    height: auto !important;
  }
  .tablet\:vads-u-height--full {
    height: 100% !important;
  }
  .tablet\:vads-u-height--viewport {
    height: 100vh !important;
  }
  .tablet\:vads-u-min-height--0 {
    min-height: 0 !important;
  }
  .tablet\:vads-u-min-height--0p5 {
    min-height: 0.25rem !important;
  }
  .tablet\:vads-u-min-height--1 {
    min-height: 0.5rem !important;
  }
  .tablet\:vads-u-min-height--1p5 {
    min-height: 0.75rem !important;
  }
  .tablet\:vads-u-min-height--2 {
    min-height: 1rem !important;
  }
  .tablet\:vads-u-min-height--2p5 {
    min-height: 1.25rem !important;
  }
  .tablet\:vads-u-min-height--3 {
    min-height: 1.5rem !important;
  }
  .tablet\:vads-u-min-height--4 {
    min-height: 2rem !important;
  }
  .tablet\:vads-u-min-height--5 {
    min-height: 2.5rem !important;
  }
  .tablet\:vads-u-min-height--6 {
    min-height: 3rem !important;
  }
  .tablet\:vads-u-min-height--7 {
    min-height: 3.5rem !important;
  }
  .tablet\:vads-u-min-height--8 {
    min-height: 4rem !important;
  }
  .tablet\:vads-u-min-height--9 {
    min-height: 4.5rem !important;
  }
  .tablet\:vads-u-min-height--10 {
    min-height: 5rem !important;
  }
  .tablet\:vads-u-min-height--11 {
    min-height: 5.5rem !important;
  }
  .tablet\:vads-u-min-height--12 {
    min-height: 6rem !important;
  }
  .tablet\:vads-u-min-height--13 {
    min-height: 6.5rem !important;
  }
  .tablet\:vads-u-min-height--14 {
    min-height: 7rem !important;
  }
  .tablet\:vads-u-min-height--15 {
    min-height: 7.5rem !important;
  }
  .tablet\:vads-u-min-height--16 {
    min-height: 8rem !important;
  }
  .tablet\:vads-u-min-height--17 {
    min-height: 8.5rem !important;
  }
  .tablet\:vads-u-min-height--18 {
    min-height: 9rem !important;
  }
  .tablet\:vads-u-min-height--19 {
    min-height: 9.5rem !important;
  }
  .tablet\:vads-u-min-height--20 {
    min-height: 10rem !important;
  }
  .tablet\:vads-u-min-height--21 {
    min-height: 10.5rem !important;
  }
  .tablet\:vads-u-min-height--22 {
    min-height: 11rem !important;
  }
  .tablet\:vads-u-min-height--23 {
    min-height: 11.5rem !important;
  }
  .tablet\:vads-u-min-height--24 {
    min-height: 12rem !important;
  }
  .tablet\:vads-u-min-height--25 {
    min-height: 12.5rem !important;
  }
  .tablet\:vads-u-min-height--26 {
    min-height: 13rem !important;
  }
  .tablet\:vads-u-min-height--27 {
    min-height: 13.5rem !important;
  }
  .tablet\:vads-u-min-height--28 {
    min-height: 14rem !important;
  }
  .tablet\:vads-u-min-height--29 {
    min-height: 14.5rem !important;
  }
  .tablet\:vads-u-min-height--30 {
    min-height: 15rem !important;
  }
  .tablet\:vads-u-min-height--31 {
    min-height: 15.5rem !important;
  }
  .tablet\:vads-u-min-height--32 {
    min-height: 16rem !important;
  }
  .tablet\:vads-u-min-height--none {
    min-height: none !important;
  }
  .tablet\:vads-u-min-height--full {
    min-height: 100% !important;
  }
  .tablet\:vads-u-min-height--viewport {
    min-height: 100vh !important;
  }
  .tablet\:vads-u-max-height--0 {
    max-height: 0 !important;
  }
  .tablet\:vads-u-max-height--0p5 {
    max-height: 0.25rem !important;
  }
  .tablet\:vads-u-max-height--1 {
    max-height: 0.5rem !important;
  }
  .tablet\:vads-u-max-height--1p5 {
    max-height: 0.75rem !important;
  }
  .tablet\:vads-u-max-height--2 {
    max-height: 1rem !important;
  }
  .tablet\:vads-u-max-height--2p5 {
    max-height: 1.25rem !important;
  }
  .tablet\:vads-u-max-height--3 {
    max-height: 1.5rem !important;
  }
  .tablet\:vads-u-max-height--4 {
    max-height: 2rem !important;
  }
  .tablet\:vads-u-max-height--5 {
    max-height: 2.5rem !important;
  }
  .tablet\:vads-u-max-height--6 {
    max-height: 3rem !important;
  }
  .tablet\:vads-u-max-height--7 {
    max-height: 3.5rem !important;
  }
  .tablet\:vads-u-max-height--8 {
    max-height: 4rem !important;
  }
  .tablet\:vads-u-max-height--9 {
    max-height: 4.5rem !important;
  }
  .tablet\:vads-u-max-height--10 {
    max-height: 5rem !important;
  }
  .tablet\:vads-u-max-height--11 {
    max-height: 5.5rem !important;
  }
  .tablet\:vads-u-max-height--12 {
    max-height: 6rem !important;
  }
  .tablet\:vads-u-max-height--13 {
    max-height: 6.5rem !important;
  }
  .tablet\:vads-u-max-height--14 {
    max-height: 7rem !important;
  }
  .tablet\:vads-u-max-height--15 {
    max-height: 7.5rem !important;
  }
  .tablet\:vads-u-max-height--16 {
    max-height: 8rem !important;
  }
  .tablet\:vads-u-max-height--17 {
    max-height: 8.5rem !important;
  }
  .tablet\:vads-u-max-height--18 {
    max-height: 9rem !important;
  }
  .tablet\:vads-u-max-height--19 {
    max-height: 9.5rem !important;
  }
  .tablet\:vads-u-max-height--20 {
    max-height: 10rem !important;
  }
  .tablet\:vads-u-max-height--21 {
    max-height: 10.5rem !important;
  }
  .tablet\:vads-u-max-height--22 {
    max-height: 11rem !important;
  }
  .tablet\:vads-u-max-height--23 {
    max-height: 11.5rem !important;
  }
  .tablet\:vads-u-max-height--24 {
    max-height: 12rem !important;
  }
  .tablet\:vads-u-max-height--25 {
    max-height: 12.5rem !important;
  }
  .tablet\:vads-u-max-height--26 {
    max-height: 13rem !important;
  }
  .tablet\:vads-u-max-height--27 {
    max-height: 13.5rem !important;
  }
  .tablet\:vads-u-max-height--28 {
    max-height: 14rem !important;
  }
  .tablet\:vads-u-max-height--29 {
    max-height: 14.5rem !important;
  }
  .tablet\:vads-u-max-height--30 {
    max-height: 15rem !important;
  }
  .tablet\:vads-u-max-height--31 {
    max-height: 15.5rem !important;
  }
  .tablet\:vads-u-max-height--32 {
    max-height: 16rem !important;
  }
  .tablet\:vads-u-max-height--none {
    max-height: none !important;
  }
  .tablet\:vads-u-max-height--full {
    max-height: 100% !important;
  }
  .tablet\:vads-u-max-height--viewport {
    max-height: 100vh !important;
  }
}
@media all and (min-width: 64em) {
  .desktop\:vads-u-height--0 {
    height: 0 !important;
  }
  .desktop\:vads-u-height--0p5 {
    height: 0.25rem !important;
  }
  .desktop\:vads-u-height--1 {
    height: 0.5rem !important;
  }
  .desktop\:vads-u-height--1p5 {
    height: 0.75rem !important;
  }
  .desktop\:vads-u-height--2 {
    height: 1rem !important;
  }
  .desktop\:vads-u-height--2p5 {
    height: 1.25rem !important;
  }
  .desktop\:vads-u-height--3 {
    height: 1.5rem !important;
  }
  .desktop\:vads-u-height--4 {
    height: 2rem !important;
  }
  .desktop\:vads-u-height--5 {
    height: 2.5rem !important;
  }
  .desktop\:vads-u-height--6 {
    height: 3rem !important;
  }
  .desktop\:vads-u-height--7 {
    height: 3.5rem !important;
  }
  .desktop\:vads-u-height--8 {
    height: 4rem !important;
  }
  .desktop\:vads-u-height--9 {
    height: 4.5rem !important;
  }
  .desktop\:vads-u-height--10 {
    height: 5rem !important;
  }
  .desktop\:vads-u-height--11 {
    height: 5.5rem !important;
  }
  .desktop\:vads-u-height--12 {
    height: 6rem !important;
  }
  .desktop\:vads-u-height--13 {
    height: 6.5rem !important;
  }
  .desktop\:vads-u-height--14 {
    height: 7rem !important;
  }
  .desktop\:vads-u-height--15 {
    height: 7.5rem !important;
  }
  .desktop\:vads-u-height--16 {
    height: 8rem !important;
  }
  .desktop\:vads-u-height--17 {
    height: 8.5rem !important;
  }
  .desktop\:vads-u-height--18 {
    height: 9rem !important;
  }
  .desktop\:vads-u-height--19 {
    height: 9.5rem !important;
  }
  .desktop\:vads-u-height--20 {
    height: 10rem !important;
  }
  .desktop\:vads-u-height--21 {
    height: 10.5rem !important;
  }
  .desktop\:vads-u-height--22 {
    height: 11rem !important;
  }
  .desktop\:vads-u-height--23 {
    height: 11.5rem !important;
  }
  .desktop\:vads-u-height--24 {
    height: 12rem !important;
  }
  .desktop\:vads-u-height--25 {
    height: 12.5rem !important;
  }
  .desktop\:vads-u-height--26 {
    height: 13rem !important;
  }
  .desktop\:vads-u-height--27 {
    height: 13.5rem !important;
  }
  .desktop\:vads-u-height--28 {
    height: 14rem !important;
  }
  .desktop\:vads-u-height--29 {
    height: 14.5rem !important;
  }
  .desktop\:vads-u-height--30 {
    height: 15rem !important;
  }
  .desktop\:vads-u-height--31 {
    height: 15.5rem !important;
  }
  .desktop\:vads-u-height--32 {
    height: 16rem !important;
  }
  .desktop\:vads-u-height--auto {
    height: auto !important;
  }
  .desktop\:vads-u-height--full {
    height: 100% !important;
  }
  .desktop\:vads-u-height--viewport {
    height: 100vh !important;
  }
  .desktop\:vads-u-min-height--0 {
    min-height: 0 !important;
  }
  .desktop\:vads-u-min-height--0p5 {
    min-height: 0.25rem !important;
  }
  .desktop\:vads-u-min-height--1 {
    min-height: 0.5rem !important;
  }
  .desktop\:vads-u-min-height--1p5 {
    min-height: 0.75rem !important;
  }
  .desktop\:vads-u-min-height--2 {
    min-height: 1rem !important;
  }
  .desktop\:vads-u-min-height--2p5 {
    min-height: 1.25rem !important;
  }
  .desktop\:vads-u-min-height--3 {
    min-height: 1.5rem !important;
  }
  .desktop\:vads-u-min-height--4 {
    min-height: 2rem !important;
  }
  .desktop\:vads-u-min-height--5 {
    min-height: 2.5rem !important;
  }
  .desktop\:vads-u-min-height--6 {
    min-height: 3rem !important;
  }
  .desktop\:vads-u-min-height--7 {
    min-height: 3.5rem !important;
  }
  .desktop\:vads-u-min-height--8 {
    min-height: 4rem !important;
  }
  .desktop\:vads-u-min-height--9 {
    min-height: 4.5rem !important;
  }
  .desktop\:vads-u-min-height--10 {
    min-height: 5rem !important;
  }
  .desktop\:vads-u-min-height--11 {
    min-height: 5.5rem !important;
  }
  .desktop\:vads-u-min-height--12 {
    min-height: 6rem !important;
  }
  .desktop\:vads-u-min-height--13 {
    min-height: 6.5rem !important;
  }
  .desktop\:vads-u-min-height--14 {
    min-height: 7rem !important;
  }
  .desktop\:vads-u-min-height--15 {
    min-height: 7.5rem !important;
  }
  .desktop\:vads-u-min-height--16 {
    min-height: 8rem !important;
  }
  .desktop\:vads-u-min-height--17 {
    min-height: 8.5rem !important;
  }
  .desktop\:vads-u-min-height--18 {
    min-height: 9rem !important;
  }
  .desktop\:vads-u-min-height--19 {
    min-height: 9.5rem !important;
  }
  .desktop\:vads-u-min-height--20 {
    min-height: 10rem !important;
  }
  .desktop\:vads-u-min-height--21 {
    min-height: 10.5rem !important;
  }
  .desktop\:vads-u-min-height--22 {
    min-height: 11rem !important;
  }
  .desktop\:vads-u-min-height--23 {
    min-height: 11.5rem !important;
  }
  .desktop\:vads-u-min-height--24 {
    min-height: 12rem !important;
  }
  .desktop\:vads-u-min-height--25 {
    min-height: 12.5rem !important;
  }
  .desktop\:vads-u-min-height--26 {
    min-height: 13rem !important;
  }
  .desktop\:vads-u-min-height--27 {
    min-height: 13.5rem !important;
  }
  .desktop\:vads-u-min-height--28 {
    min-height: 14rem !important;
  }
  .desktop\:vads-u-min-height--29 {
    min-height: 14.5rem !important;
  }
  .desktop\:vads-u-min-height--30 {
    min-height: 15rem !important;
  }
  .desktop\:vads-u-min-height--31 {
    min-height: 15.5rem !important;
  }
  .desktop\:vads-u-min-height--32 {
    min-height: 16rem !important;
  }
  .desktop\:vads-u-min-height--none {
    min-height: none !important;
  }
  .desktop\:vads-u-min-height--full {
    min-height: 100% !important;
  }
  .desktop\:vads-u-min-height--viewport {
    min-height: 100vh !important;
  }
  .desktop\:vads-u-max-height--0 {
    max-height: 0 !important;
  }
  .desktop\:vads-u-max-height--0p5 {
    max-height: 0.25rem !important;
  }
  .desktop\:vads-u-max-height--1 {
    max-height: 0.5rem !important;
  }
  .desktop\:vads-u-max-height--1p5 {
    max-height: 0.75rem !important;
  }
  .desktop\:vads-u-max-height--2 {
    max-height: 1rem !important;
  }
  .desktop\:vads-u-max-height--2p5 {
    max-height: 1.25rem !important;
  }
  .desktop\:vads-u-max-height--3 {
    max-height: 1.5rem !important;
  }
  .desktop\:vads-u-max-height--4 {
    max-height: 2rem !important;
  }
  .desktop\:vads-u-max-height--5 {
    max-height: 2.5rem !important;
  }
  .desktop\:vads-u-max-height--6 {
    max-height: 3rem !important;
  }
  .desktop\:vads-u-max-height--7 {
    max-height: 3.5rem !important;
  }
  .desktop\:vads-u-max-height--8 {
    max-height: 4rem !important;
  }
  .desktop\:vads-u-max-height--9 {
    max-height: 4.5rem !important;
  }
  .desktop\:vads-u-max-height--10 {
    max-height: 5rem !important;
  }
  .desktop\:vads-u-max-height--11 {
    max-height: 5.5rem !important;
  }
  .desktop\:vads-u-max-height--12 {
    max-height: 6rem !important;
  }
  .desktop\:vads-u-max-height--13 {
    max-height: 6.5rem !important;
  }
  .desktop\:vads-u-max-height--14 {
    max-height: 7rem !important;
  }
  .desktop\:vads-u-max-height--15 {
    max-height: 7.5rem !important;
  }
  .desktop\:vads-u-max-height--16 {
    max-height: 8rem !important;
  }
  .desktop\:vads-u-max-height--17 {
    max-height: 8.5rem !important;
  }
  .desktop\:vads-u-max-height--18 {
    max-height: 9rem !important;
  }
  .desktop\:vads-u-max-height--19 {
    max-height: 9.5rem !important;
  }
  .desktop\:vads-u-max-height--20 {
    max-height: 10rem !important;
  }
  .desktop\:vads-u-max-height--21 {
    max-height: 10.5rem !important;
  }
  .desktop\:vads-u-max-height--22 {
    max-height: 11rem !important;
  }
  .desktop\:vads-u-max-height--23 {
    max-height: 11.5rem !important;
  }
  .desktop\:vads-u-max-height--24 {
    max-height: 12rem !important;
  }
  .desktop\:vads-u-max-height--25 {
    max-height: 12.5rem !important;
  }
  .desktop\:vads-u-max-height--26 {
    max-height: 13rem !important;
  }
  .desktop\:vads-u-max-height--27 {
    max-height: 13.5rem !important;
  }
  .desktop\:vads-u-max-height--28 {
    max-height: 14rem !important;
  }
  .desktop\:vads-u-max-height--29 {
    max-height: 14.5rem !important;
  }
  .desktop\:vads-u-max-height--30 {
    max-height: 15rem !important;
  }
  .desktop\:vads-u-max-height--31 {
    max-height: 15.5rem !important;
  }
  .desktop\:vads-u-max-height--32 {
    max-height: 16rem !important;
  }
  .desktop\:vads-u-max-height--none {
    max-height: none !important;
  }
  .desktop\:vads-u-max-height--full {
    max-height: 100% !important;
  }
  .desktop\:vads-u-max-height--viewport {
    max-height: 100vh !important;
  }
}
@media all and (min-width: 75em) {
  .desktop-lg\:vads-u-height--0 {
    height: 0 !important;
  }
  .desktop-lg\:vads-u-height--0p5 {
    height: 0.25rem !important;
  }
  .desktop-lg\:vads-u-height--1 {
    height: 0.5rem !important;
  }
  .desktop-lg\:vads-u-height--1p5 {
    height: 0.75rem !important;
  }
  .desktop-lg\:vads-u-height--2 {
    height: 1rem !important;
  }
  .desktop-lg\:vads-u-height--2p5 {
    height: 1.25rem !important;
  }
  .desktop-lg\:vads-u-height--3 {
    height: 1.5rem !important;
  }
  .desktop-lg\:vads-u-height--4 {
    height: 2rem !important;
  }
  .desktop-lg\:vads-u-height--5 {
    height: 2.5rem !important;
  }
  .desktop-lg\:vads-u-height--6 {
    height: 3rem !important;
  }
  .desktop-lg\:vads-u-height--7 {
    height: 3.5rem !important;
  }
  .desktop-lg\:vads-u-height--8 {
    height: 4rem !important;
  }
  .desktop-lg\:vads-u-height--9 {
    height: 4.5rem !important;
  }
  .desktop-lg\:vads-u-height--10 {
    height: 5rem !important;
  }
  .desktop-lg\:vads-u-height--11 {
    height: 5.5rem !important;
  }
  .desktop-lg\:vads-u-height--12 {
    height: 6rem !important;
  }
  .desktop-lg\:vads-u-height--13 {
    height: 6.5rem !important;
  }
  .desktop-lg\:vads-u-height--14 {
    height: 7rem !important;
  }
  .desktop-lg\:vads-u-height--15 {
    height: 7.5rem !important;
  }
  .desktop-lg\:vads-u-height--16 {
    height: 8rem !important;
  }
  .desktop-lg\:vads-u-height--17 {
    height: 8.5rem !important;
  }
  .desktop-lg\:vads-u-height--18 {
    height: 9rem !important;
  }
  .desktop-lg\:vads-u-height--19 {
    height: 9.5rem !important;
  }
  .desktop-lg\:vads-u-height--20 {
    height: 10rem !important;
  }
  .desktop-lg\:vads-u-height--21 {
    height: 10.5rem !important;
  }
  .desktop-lg\:vads-u-height--22 {
    height: 11rem !important;
  }
  .desktop-lg\:vads-u-height--23 {
    height: 11.5rem !important;
  }
  .desktop-lg\:vads-u-height--24 {
    height: 12rem !important;
  }
  .desktop-lg\:vads-u-height--25 {
    height: 12.5rem !important;
  }
  .desktop-lg\:vads-u-height--26 {
    height: 13rem !important;
  }
  .desktop-lg\:vads-u-height--27 {
    height: 13.5rem !important;
  }
  .desktop-lg\:vads-u-height--28 {
    height: 14rem !important;
  }
  .desktop-lg\:vads-u-height--29 {
    height: 14.5rem !important;
  }
  .desktop-lg\:vads-u-height--30 {
    height: 15rem !important;
  }
  .desktop-lg\:vads-u-height--31 {
    height: 15.5rem !important;
  }
  .desktop-lg\:vads-u-height--32 {
    height: 16rem !important;
  }
  .desktop-lg\:vads-u-height--auto {
    height: auto !important;
  }
  .desktop-lg\:vads-u-height--full {
    height: 100% !important;
  }
  .desktop-lg\:vads-u-height--viewport {
    height: 100vh !important;
  }
  .desktop-lg\:vads-u-min-height--0 {
    min-height: 0 !important;
  }
  .desktop-lg\:vads-u-min-height--0p5 {
    min-height: 0.25rem !important;
  }
  .desktop-lg\:vads-u-min-height--1 {
    min-height: 0.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--1p5 {
    min-height: 0.75rem !important;
  }
  .desktop-lg\:vads-u-min-height--2 {
    min-height: 1rem !important;
  }
  .desktop-lg\:vads-u-min-height--2p5 {
    min-height: 1.25rem !important;
  }
  .desktop-lg\:vads-u-min-height--3 {
    min-height: 1.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--4 {
    min-height: 2rem !important;
  }
  .desktop-lg\:vads-u-min-height--5 {
    min-height: 2.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--6 {
    min-height: 3rem !important;
  }
  .desktop-lg\:vads-u-min-height--7 {
    min-height: 3.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--8 {
    min-height: 4rem !important;
  }
  .desktop-lg\:vads-u-min-height--9 {
    min-height: 4.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--10 {
    min-height: 5rem !important;
  }
  .desktop-lg\:vads-u-min-height--11 {
    min-height: 5.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--12 {
    min-height: 6rem !important;
  }
  .desktop-lg\:vads-u-min-height--13 {
    min-height: 6.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--14 {
    min-height: 7rem !important;
  }
  .desktop-lg\:vads-u-min-height--15 {
    min-height: 7.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--16 {
    min-height: 8rem !important;
  }
  .desktop-lg\:vads-u-min-height--17 {
    min-height: 8.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--18 {
    min-height: 9rem !important;
  }
  .desktop-lg\:vads-u-min-height--19 {
    min-height: 9.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--20 {
    min-height: 10rem !important;
  }
  .desktop-lg\:vads-u-min-height--21 {
    min-height: 10.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--22 {
    min-height: 11rem !important;
  }
  .desktop-lg\:vads-u-min-height--23 {
    min-height: 11.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--24 {
    min-height: 12rem !important;
  }
  .desktop-lg\:vads-u-min-height--25 {
    min-height: 12.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--26 {
    min-height: 13rem !important;
  }
  .desktop-lg\:vads-u-min-height--27 {
    min-height: 13.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--28 {
    min-height: 14rem !important;
  }
  .desktop-lg\:vads-u-min-height--29 {
    min-height: 14.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--30 {
    min-height: 15rem !important;
  }
  .desktop-lg\:vads-u-min-height--31 {
    min-height: 15.5rem !important;
  }
  .desktop-lg\:vads-u-min-height--32 {
    min-height: 16rem !important;
  }
  .desktop-lg\:vads-u-min-height--none {
    min-height: none !important;
  }
  .desktop-lg\:vads-u-min-height--full {
    min-height: 100% !important;
  }
  .desktop-lg\:vads-u-min-height--viewport {
    min-height: 100vh !important;
  }
  .desktop-lg\:vads-u-max-height--0 {
    max-height: 0 !important;
  }
  .desktop-lg\:vads-u-max-height--0p5 {
    max-height: 0.25rem !important;
  }
  .desktop-lg\:vads-u-max-height--1 {
    max-height: 0.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--1p5 {
    max-height: 0.75rem !important;
  }
  .desktop-lg\:vads-u-max-height--2 {
    max-height: 1rem !important;
  }
  .desktop-lg\:vads-u-max-height--2p5 {
    max-height: 1.25rem !important;
  }
  .desktop-lg\:vads-u-max-height--3 {
    max-height: 1.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--4 {
    max-height: 2rem !important;
  }
  .desktop-lg\:vads-u-max-height--5 {
    max-height: 2.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--6 {
    max-height: 3rem !important;
  }
  .desktop-lg\:vads-u-max-height--7 {
    max-height: 3.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--8 {
    max-height: 4rem !important;
  }
  .desktop-lg\:vads-u-max-height--9 {
    max-height: 4.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--10 {
    max-height: 5rem !important;
  }
  .desktop-lg\:vads-u-max-height--11 {
    max-height: 5.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--12 {
    max-height: 6rem !important;
  }
  .desktop-lg\:vads-u-max-height--13 {
    max-height: 6.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--14 {
    max-height: 7rem !important;
  }
  .desktop-lg\:vads-u-max-height--15 {
    max-height: 7.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--16 {
    max-height: 8rem !important;
  }
  .desktop-lg\:vads-u-max-height--17 {
    max-height: 8.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--18 {
    max-height: 9rem !important;
  }
  .desktop-lg\:vads-u-max-height--19 {
    max-height: 9.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--20 {
    max-height: 10rem !important;
  }
  .desktop-lg\:vads-u-max-height--21 {
    max-height: 10.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--22 {
    max-height: 11rem !important;
  }
  .desktop-lg\:vads-u-max-height--23 {
    max-height: 11.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--24 {
    max-height: 12rem !important;
  }
  .desktop-lg\:vads-u-max-height--25 {
    max-height: 12.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--26 {
    max-height: 13rem !important;
  }
  .desktop-lg\:vads-u-max-height--27 {
    max-height: 13.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--28 {
    max-height: 14rem !important;
  }
  .desktop-lg\:vads-u-max-height--29 {
    max-height: 14.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--30 {
    max-height: 15rem !important;
  }
  .desktop-lg\:vads-u-max-height--31 {
    max-height: 15.5rem !important;
  }
  .desktop-lg\:vads-u-max-height--32 {
    max-height: 16rem !important;
  }
  .desktop-lg\:vads-u-max-height--none {
    max-height: none !important;
  }
  .desktop-lg\:vads-u-max-height--full {
    max-height: 100% !important;
  }
  .desktop-lg\:vads-u-max-height--viewport {
    max-height: 100vh !important;
  }
}
@media all and (min-width: 87.5em) {
  .widescreen\:vads-u-height--0 {
    height: 0 !important;
  }
  .widescreen\:vads-u-height--0p5 {
    height: 0.25rem !important;
  }
  .widescreen\:vads-u-height--1 {
    height: 0.5rem !important;
  }
  .widescreen\:vads-u-height--1p5 {
    height: 0.75rem !important;
  }
  .widescreen\:vads-u-height--2 {
    height: 1rem !important;
  }
  .widescreen\:vads-u-height--2p5 {
    height: 1.25rem !important;
  }
  .widescreen\:vads-u-height--3 {
    height: 1.5rem !important;
  }
  .widescreen\:vads-u-height--4 {
    height: 2rem !important;
  }
  .widescreen\:vads-u-height--5 {
    height: 2.5rem !important;
  }
  .widescreen\:vads-u-height--6 {
    height: 3rem !important;
  }
  .widescreen\:vads-u-height--7 {
    height: 3.5rem !important;
  }
  .widescreen\:vads-u-height--8 {
    height: 4rem !important;
  }
  .widescreen\:vads-u-height--9 {
    height: 4.5rem !important;
  }
  .widescreen\:vads-u-height--10 {
    height: 5rem !important;
  }
  .widescreen\:vads-u-height--11 {
    height: 5.5rem !important;
  }
  .widescreen\:vads-u-height--12 {
    height: 6rem !important;
  }
  .widescreen\:vads-u-height--13 {
    height: 6.5rem !important;
  }
  .widescreen\:vads-u-height--14 {
    height: 7rem !important;
  }
  .widescreen\:vads-u-height--15 {
    height: 7.5rem !important;
  }
  .widescreen\:vads-u-height--16 {
    height: 8rem !important;
  }
  .widescreen\:vads-u-height--17 {
    height: 8.5rem !important;
  }
  .widescreen\:vads-u-height--18 {
    height: 9rem !important;
  }
  .widescreen\:vads-u-height--19 {
    height: 9.5rem !important;
  }
  .widescreen\:vads-u-height--20 {
    height: 10rem !important;
  }
  .widescreen\:vads-u-height--21 {
    height: 10.5rem !important;
  }
  .widescreen\:vads-u-height--22 {
    height: 11rem !important;
  }
  .widescreen\:vads-u-height--23 {
    height: 11.5rem !important;
  }
  .widescreen\:vads-u-height--24 {
    height: 12rem !important;
  }
  .widescreen\:vads-u-height--25 {
    height: 12.5rem !important;
  }
  .widescreen\:vads-u-height--26 {
    height: 13rem !important;
  }
  .widescreen\:vads-u-height--27 {
    height: 13.5rem !important;
  }
  .widescreen\:vads-u-height--28 {
    height: 14rem !important;
  }
  .widescreen\:vads-u-height--29 {
    height: 14.5rem !important;
  }
  .widescreen\:vads-u-height--30 {
    height: 15rem !important;
  }
  .widescreen\:vads-u-height--31 {
    height: 15.5rem !important;
  }
  .widescreen\:vads-u-height--32 {
    height: 16rem !important;
  }
  .widescreen\:vads-u-height--auto {
    height: auto !important;
  }
  .widescreen\:vads-u-height--full {
    height: 100% !important;
  }
  .widescreen\:vads-u-height--viewport {
    height: 100vh !important;
  }
  .widescreen\:vads-u-min-height--0 {
    min-height: 0 !important;
  }
  .widescreen\:vads-u-min-height--0p5 {
    min-height: 0.25rem !important;
  }
  .widescreen\:vads-u-min-height--1 {
    min-height: 0.5rem !important;
  }
  .widescreen\:vads-u-min-height--1p5 {
    min-height: 0.75rem !important;
  }
  .widescreen\:vads-u-min-height--2 {
    min-height: 1rem !important;
  }
  .widescreen\:vads-u-min-height--2p5 {
    min-height: 1.25rem !important;
  }
  .widescreen\:vads-u-min-height--3 {
    min-height: 1.5rem !important;
  }
  .widescreen\:vads-u-min-height--4 {
    min-height: 2rem !important;
  }
  .widescreen\:vads-u-min-height--5 {
    min-height: 2.5rem !important;
  }
  .widescreen\:vads-u-min-height--6 {
    min-height: 3rem !important;
  }
  .widescreen\:vads-u-min-height--7 {
    min-height: 3.5rem !important;
  }
  .widescreen\:vads-u-min-height--8 {
    min-height: 4rem !important;
  }
  .widescreen\:vads-u-min-height--9 {
    min-height: 4.5rem !important;
  }
  .widescreen\:vads-u-min-height--10 {
    min-height: 5rem !important;
  }
  .widescreen\:vads-u-min-height--11 {
    min-height: 5.5rem !important;
  }
  .widescreen\:vads-u-min-height--12 {
    min-height: 6rem !important;
  }
  .widescreen\:vads-u-min-height--13 {
    min-height: 6.5rem !important;
  }
  .widescreen\:vads-u-min-height--14 {
    min-height: 7rem !important;
  }
  .widescreen\:vads-u-min-height--15 {
    min-height: 7.5rem !important;
  }
  .widescreen\:vads-u-min-height--16 {
    min-height: 8rem !important;
  }
  .widescreen\:vads-u-min-height--17 {
    min-height: 8.5rem !important;
  }
  .widescreen\:vads-u-min-height--18 {
    min-height: 9rem !important;
  }
  .widescreen\:vads-u-min-height--19 {
    min-height: 9.5rem !important;
  }
  .widescreen\:vads-u-min-height--20 {
    min-height: 10rem !important;
  }
  .widescreen\:vads-u-min-height--21 {
    min-height: 10.5rem !important;
  }
  .widescreen\:vads-u-min-height--22 {
    min-height: 11rem !important;
  }
  .widescreen\:vads-u-min-height--23 {
    min-height: 11.5rem !important;
  }
  .widescreen\:vads-u-min-height--24 {
    min-height: 12rem !important;
  }
  .widescreen\:vads-u-min-height--25 {
    min-height: 12.5rem !important;
  }
  .widescreen\:vads-u-min-height--26 {
    min-height: 13rem !important;
  }
  .widescreen\:vads-u-min-height--27 {
    min-height: 13.5rem !important;
  }
  .widescreen\:vads-u-min-height--28 {
    min-height: 14rem !important;
  }
  .widescreen\:vads-u-min-height--29 {
    min-height: 14.5rem !important;
  }
  .widescreen\:vads-u-min-height--30 {
    min-height: 15rem !important;
  }
  .widescreen\:vads-u-min-height--31 {
    min-height: 15.5rem !important;
  }
  .widescreen\:vads-u-min-height--32 {
    min-height: 16rem !important;
  }
  .widescreen\:vads-u-min-height--none {
    min-height: none !important;
  }
  .widescreen\:vads-u-min-height--full {
    min-height: 100% !important;
  }
  .widescreen\:vads-u-min-height--viewport {
    min-height: 100vh !important;
  }
  .widescreen\:vads-u-max-height--0 {
    max-height: 0 !important;
  }
  .widescreen\:vads-u-max-height--0p5 {
    max-height: 0.25rem !important;
  }
  .widescreen\:vads-u-max-height--1 {
    max-height: 0.5rem !important;
  }
  .widescreen\:vads-u-max-height--1p5 {
    max-height: 0.75rem !important;
  }
  .widescreen\:vads-u-max-height--2 {
    max-height: 1rem !important;
  }
  .widescreen\:vads-u-max-height--2p5 {
    max-height: 1.25rem !important;
  }
  .widescreen\:vads-u-max-height--3 {
    max-height: 1.5rem !important;
  }
  .widescreen\:vads-u-max-height--4 {
    max-height: 2rem !important;
  }
  .widescreen\:vads-u-max-height--5 {
    max-height: 2.5rem !important;
  }
  .widescreen\:vads-u-max-height--6 {
    max-height: 3rem !important;
  }
  .widescreen\:vads-u-max-height--7 {
    max-height: 3.5rem !important;
  }
  .widescreen\:vads-u-max-height--8 {
    max-height: 4rem !important;
  }
  .widescreen\:vads-u-max-height--9 {
    max-height: 4.5rem !important;
  }
  .widescreen\:vads-u-max-height--10 {
    max-height: 5rem !important;
  }
  .widescreen\:vads-u-max-height--11 {
    max-height: 5.5rem !important;
  }
  .widescreen\:vads-u-max-height--12 {
    max-height: 6rem !important;
  }
  .widescreen\:vads-u-max-height--13 {
    max-height: 6.5rem !important;
  }
  .widescreen\:vads-u-max-height--14 {
    max-height: 7rem !important;
  }
  .widescreen\:vads-u-max-height--15 {
    max-height: 7.5rem !important;
  }
  .widescreen\:vads-u-max-height--16 {
    max-height: 8rem !important;
  }
  .widescreen\:vads-u-max-height--17 {
    max-height: 8.5rem !important;
  }
  .widescreen\:vads-u-max-height--18 {
    max-height: 9rem !important;
  }
  .widescreen\:vads-u-max-height--19 {
    max-height: 9.5rem !important;
  }
  .widescreen\:vads-u-max-height--20 {
    max-height: 10rem !important;
  }
  .widescreen\:vads-u-max-height--21 {
    max-height: 10.5rem !important;
  }
  .widescreen\:vads-u-max-height--22 {
    max-height: 11rem !important;
  }
  .widescreen\:vads-u-max-height--23 {
    max-height: 11.5rem !important;
  }
  .widescreen\:vads-u-max-height--24 {
    max-height: 12rem !important;
  }
  .widescreen\:vads-u-max-height--25 {
    max-height: 12.5rem !important;
  }
  .widescreen\:vads-u-max-height--26 {
    max-height: 13rem !important;
  }
  .widescreen\:vads-u-max-height--27 {
    max-height: 13.5rem !important;
  }
  .widescreen\:vads-u-max-height--28 {
    max-height: 14rem !important;
  }
  .widescreen\:vads-u-max-height--29 {
    max-height: 14.5rem !important;
  }
  .widescreen\:vads-u-max-height--30 {
    max-height: 15rem !important;
  }
  .widescreen\:vads-u-max-height--31 {
    max-height: 15.5rem !important;
  }
  .widescreen\:vads-u-max-height--32 {
    max-height: 16rem !important;
  }
  .widescreen\:vads-u-max-height--none {
    max-height: none !important;
  }
  .widescreen\:vads-u-max-height--full {
    max-height: 100% !important;
  }
  .widescreen\:vads-u-max-height--viewport {
    max-height: 100vh !important;
  }
}
.vads-l-container {
  margin: 0 auto;
  max-width: var(--vads-layout-max-width);
}
.vads-l-container--narrow {
  max-width: var(--vads-layout-narrow-width);
}
.vads-l-container--wide {
  max-width: var(--vads-layout-wide-width);
}

.vads-l-grid-container {
  display: grid;
  gap: var(--vads-space-2);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .vads-l-grid-container--2-col {
    grid-template-columns: 1fr 1fr;
  }
  .vads-l-grid-container--3-col {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .vads-l-grid-container--4-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .vads-l-grid-container--sidebar-left {
    grid-template-columns: 1fr 3fr;
  }
  .vads-l-grid-container--sidebar-right {
    grid-template-columns: 3fr 1fr;
  }
}

.full-width-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
}
.full-width-container .vads-grid-container {
  max-width: 1024px;
  margin: 0 auto;
  padding-left: var(--vads-space-0-5);
  padding-right: var(--vads-space-0-5);
}

.full-width-wrapper {
  width: 100%;
  padding: var(--vads-space-2) 0;
}

.vads-l-flex {
  display: flex;
}
.vads-l-flex--column {
  flex-direction: column;
}
.vads-l-flex--row {
  flex-direction: row;
}
.vads-l-flex--wrap {
  flex-wrap: wrap;
}
.vads-l-flex--nowrap {
  flex-wrap: nowrap;
}
.vads-l-flex--justify-start {
  justify-content: flex-start;
}
.vads-l-flex--justify-center {
  justify-content: center;
}
.vads-l-flex--justify-end {
  justify-content: flex-end;
}
.vads-l-flex--justify-between {
  justify-content: space-between;
}
.vads-l-flex--align-start {
  align-items: flex-start;
}
.vads-l-flex--align-center {
  align-items: center;
}
.vads-l-flex--align-end {
  align-items: flex-end;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header-inner {
  margin: 0 auto;
  max-width: var(--vads-layout-max-width);
  padding: var(--vads-space-1) var(--vads-space-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header-inner {
    flex-direction: column;
    gap: var(--vads-space-1);
  }
}

.main-content {
  flex: 1;
  padding: 0 0 var(--vads-space-3) 0;
}
.main-content-inner {
  margin: 0 auto;
  max-width: var(--vads-layout-max-width);
}

.footer {
  background-color: var(--vads-color-base-darkest);
  color: var(--vads-color-white);
  padding: var(--vads-space-3) 0;
}
.footer-inner {
  margin: 0 auto;
  max-width: var(--vads-layout-max-width);
  padding: 0 var(--vads-space-2);
}

.main-navigation {
  background-color: var(--vads-color-primary-darker);
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  max-width: var(--vads-layout-max-width);
  margin: 0 auto;
  padding: 0 var(--vads-space-2);
}
@media (max-width: 767px) {
  .main-navigation ul {
    flex-direction: column;
  }
}
.main-navigation li {
  margin: 0;
}
.main-navigation a {
  display: block;
  color: var(--vads-color-white);
  text-decoration: none;
  transition: background-color 0.3s ease;
  padding: var(--vads-space-1) var(--vads-space-2);
}
.main-navigation a:hover, .main-navigation a:focus {
  background-color: var(--vads-color-primary-darkest);
}
@media (max-width: 767px) {
  .main-navigation a {
    border-bottom: 1px solid var(--vads-color-primary-darkest);
  }
}

.sidebar {
  padding: var(--vads-space-2);
}
.sidebar-first {
  order: -1;
}
@media (max-width: 767px) {
  .sidebar-first {
    order: 1;
  }
}

.region {
  margin-bottom: var(--vads-space-2);
}
.region:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .vads-l-hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .vads-l-hide-desktop {
    display: none !important;
  }
}
.vads-row-column-gap {
  row-gap: 1rem;
}

/**
 * Do not edit directly
 * Generated on Mon, 25 Aug 2025 13:10:40 GMT
 */
:root {
  --xsmall-screen: 320px;
  --small-screen: 481px;
  --tablet: 640px;
  --medium-screen: 768px;
  --small-desktop-screen: 1024px;
  --large-screen: 1201px;
  --mobile: 320px;
  --mobile-lg: 480px;
  --desktop: 1024px;
  --desktop-lg: 1201px;
  --widescreen: 1400px;
  --color-link-default-hover: rgba(#000000, 0.05);
  --vads-button-color-background-primary-on-light: #005ea2;
  --vads-button-color-background-primary-alt-active-on-light: #154c21;
  --vads-button-color-background-secondary-on-light: #ffffff;
  --vads-button-color-background-disabled-on-light: #c9c9c9;
  --vads-button-color-text-primary-alt-on-light: #ffffff;
  --vads-button-color-text-primary-on-light: #ffffff;
  --vads-alert-color-background-info-on-light: #e7f6f8;
  --vads-alert-color-background-success-on-light: #ecf3ec;
  --vads-alert-color-background-warning-on-light: #faf3d1;
  --vads-alert-color-background-error-on-light: #f4e3db;
  --vads-color-white: #ffffff;
  --vads-label-hint-text-color-on-light: #757575;
  --vads-process-list-color-text-pending-on-light: #757575;
  --vads-color-gray-medium: #757575;
  --vads-color-gray-light-alt: #edeff0;
  --vads-color-gray-warm-light: #e6e6e2;
  --vads-color-gray-warm-dark: #454540;
  --vads-color-gray-cool-light: #e1e7f1;
  --vads-color-action-focus-on-light: #face00;
  --vads-color-base: #1b1b1b;
  --vads-color-base-dark: #565c65;
  --vads-color-base-darker: #3d4551;
  --vads-color-base-darkest: #1b1b1b;
  --vads-color-base-light: #a9aeb1;
  --vads-color-base-lighter: #dfe1e2;
  --vads-color-base-lightest: #f0f0f0;
  --vads-color-emergency: #9c3d10;
  --vads-color-emergency-dark: #332d29;
  --vads-color-error: #d54309;
  --vads-color-error-dark: #b21d38;
  --vads-color-error-darker: #6f3331;
  --vads-color-error-light: #f39268;
  --vads-color-error-lighter: #f4e3db;
  --vads-color-gibill-accent: #fef0c8;
  --vads-color-hub-burials: #2378c3;
  --vads-color-hub-careers: #bd5727;
  --vads-color-hub-disability: #a23737;
  --vads-color-hub-education: #162e51;
  --vads-color-hub-health-care: #3f57a6;
  --vads-color-hub-housing: #8e704f;
  --vads-color-hub-life-insurance: #6f7a41;
  --vads-color-hub-pension: #4d8055;
  --vads-color-hub-records: #6f7a41;
  --vads-color-hub-service-member: #162e51;
  --vads-color-hub-family-member: #162e51;
  --vads-color-info: #00bde3;
  --vads-color-info-dark: #009ec1;
  --vads-color-info-darker: #2e6276;
  --vads-color-info-light: #99deea;
  --vads-color-info-lighter: #e7f6f8;
  --vads-color-ink: #1b1b1b;
  --vads-color-inset-bg: #e7f6f8;
  --vads-color-link: #005ea2;
  --vads-color-link-active: #0b4778;
  --vads-color-link-visited: #54278f;
  --vads-color-primary: #005ea2;
  --vads-color-primary-alt: #00bde3;
  --vads-color-primary-alt-dark: #28a0cb;
  --vads-color-primary-alt-darkest: #07648d;
  --vads-color-primary-alt-light: #97d4ea;
  --vads-color-primary-alt-lightest: #e1f3f8;
  --vads-color-primary-dark: #1a4480;
  --vads-color-primary-darker: #162e51;
  --vads-color-primary-light: #73b3e7;
  --vads-color-primary-lighter: #d9e8f6;
  --vads-color-secondary: #d83933;
  --vads-color-secondary-dark: #b50909;
  --vads-color-secondary-darkest: #8b0a03;
  --vads-color-secondary-light: #f2938c;
  --vads-color-secondary-lightest: #f8dfe2;
  --vads-color-success: #00a91c;
  --vads-color-success-dark: #008817;
  --vads-color-success-darker: #216e1f;
  --vads-color-success-light: #70e17b;
  --vads-color-success-lighter: #ecf3ec;
  --vads-color-green-light: #5e9f69;
  --vads-color-va-accent: #8a7237;
  --vads-color-warning: #ffbe2e;
  --vads-color-warning-dark: #e5a000;
  --vads-color-warning-darker: #936f38;
  --vads-color-warning-light: #fee685;
  --vads-color-warning-lighter: #faf3d1;
  --vads-color-gold-lighter: #ffe396;
  --vads-color-gold-lightest: #fef0c8;
  --vads-color-black: #000000;
  --vads-color-orange: #dd7533;
  --vads-color-green-lighter: #b4d0b9;
  --vads-color-blue-cool: #345d96;
  --vads-color-blue-cool-light: #4a77b4;
  --vads-color-blue-cool-lightest: #98afd2;
  --vads-color-action-surface-default-on-dark: #58b4ff;
  --vads-color-action-surface-destructive-on-dark: #fb5a47;
  --vads-color-action-border-base-active-on-light: #2e2e2e;
  --vads-color-action-border-base-active-on-dark: #adadad;
  --vads-color-feedback-foreground-success-on-dark: #21c834;
  --vads-color-feedback-foreground-success-on-light: #008817;
  --vads-color-feedback-foreground-warning-on-dark: #e5a000;
  --vads-color-feedback-foreground-warning-on-light: #c2850c;
  --vads-color-feedback-surface-info-on-dark: #112f4e;
  --vads-color-feedback-surface-success-on-dark: #19311e;
  --vads-color-feedback-surface-warning-on-dark: #422d19;
  --vads-color-feedback-surface-error-on-dark: #5c1111;
  --vads-color-feedback-border-warning-on-dark: #face00;
  --vads-color-background-default-on-dark: #171716;
  --vads-color-forms-surface-active-on-light: #ecf1f7;
  --vads-color-forms-surface-active-on-dark: #252f3e;
  --vads-input-background-color-on-light: #ffffff;
  --vads-input-border-color-on-light: #565c65;
  --vads-input-prefix-color-fill-on-light: #757575;
  --vads-input-prefix-color-text-on-light: #757575;
  --vads-input-suffix-color-text-on-light: #757575;
  --vads-input-tile-background-active-on-light: rgba(0, 94, 162, 0.1);
  --vads-input-tile-border-active-on-light: #005ea2;
  --vads-input-tile-border-on-light: rgba(27, 27, 27, 0.03);
  --font-family-sans: "Source Sans Pro Web", "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  --font-family-serif: "Source Sans Pro Web", "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, serif;
  --font-family-monospace: "Source Sans Pro Web", "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, monospace;
  --font-serif: "Source Sans Pro Web", "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, serif;
  --font-source-sans: "Source Sans Pro Web", "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  --font-monospace: "Source Sans Pro Web", "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, monospace;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-style-normal: normal;
  --font-style-italic: italic;
  --font-size-sm: 14px;
  --font-size-root: 18px;
  --font-size-md: 20px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-2xl: 36px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.25rem;
  --font-size-h4: 1.063rem;
  --font-size-h5: 0.938rem;
  --font-size-h6: 0.938rem;
  --v3-font-base-size: 16px;
  --vads-font-line-height-1: 1;
  --vads-font-line-height-2: 1.15;
  --vads-font-line-height-3: 1.35;
  --vads-font-line-height-4: 1.5;
  --vads-font-line-height-5: 1.62;
  --vads-font-line-height-6: 1.75;
  --vads-font-line-height-body-lead: 1.75;
  --vads-font-line-height-default: 1.5;
  --vads-font-line-height-heading: 1.2;
  --vads-font-size-source-sans-normalized: 1.06rem;
  --vads-font-size-root: 1rem;
  --vads-font-size-body-large: 24px;
  --vads-font-size-body-lead: 18px;
  --vads-font-size-body-medium: 20px;
  --vads-font-size-body-small: 14px;
  --vads-font-size-eyebrow: 17px;
  --vads-font-size-heading-level-1: 2.5rem;
  --vads-font-size-heading-level-2: 2rem;
  --vads-font-size-heading-level-3: 1.25rem;
  --vads-font-size-heading-level-4: 1.063rem;
  --vads-font-size-heading-level-5: 0.938rem;
  --vads-font-size-heading-level-6: 0.938rem;
  --vads-size-line-length-1: 44ex;
  --vads-size-line-length-2: 60ex;
  --vads-size-line-length-3: 64ex;
  --vads-size-line-length-4: 68ex;
  --vads-size-line-length-5: 72ex;
  --vads-size-line-length-6: 88ex;
  --vads-size-line-length-none: inherit;
  --units-0: 0;
  --units-1: 0.5rem;
  --units-2: 1rem;
  --units-3: 1.5rem;
  --units-4: 2rem;
  --units-5: 2.5rem;
  --units-6: 3rem;
  --units-7: 3.5rem;
  --units-8: 4rem;
  --units-9: 4.5rem;
  --units-10: 5rem;
  --units-15: 7.5rem;
  --units-1px: 1px;
  --units-0p25: 2px;
  --units-0p5: 0.25rem;
  --units-1p5: 0.75rem;
  --units-2p5: 1.25rem;
  --units-neg-1px: -1px;
  --units-neg-0p25: -2px;
  --units-neg-0p5: -0.25rem;
  --units-neg-1: -0.5rem;
  --units-neg-1p5: -0.75rem;
  --units-neg-2: -1rem;
  --units-neg-2p5: -1.25rem;
  --units-neg-3: -1.5rem;
  --units-neg-4: -2rem;
  --units-neg-5: -2.5rem;
  --units-neg-6: -3rem;
  --units-neg-7: -3.5rem;
  --units-neg-8: -4rem;
  --units-neg-9: -4.5rem;
  --units-neg-10: -5rem;
  --units-neg-15: -7.5rem;
  --vads-spacing-0: 0;
  --vads-spacing-1: 8px;
  --vads-spacing-2: 16px;
  --vads-spacing-3: 24px;
  --vads-spacing-4: 32px;
  --vads-spacing-5: 40px;
  --vads-spacing-6: 48px;
  --vads-spacing-7: 56px;
  --vads-spacing-8: 64px;
  --vads-spacing-9: 72px;
  --vads-spacing-10: 80px;
  --vads-spacing-15: 120px;
  --vads-spacing-1px: 1px;
  --vads-spacing-2px: 2px;
  --vads-spacing-0p5: 4px;
  --vads-spacing-1p5: 12px;
  --vads-spacing-2p5: 20px;
  --vads-spacing-neg-1px: -1px;
  --vads-spacing-neg-2px: -2px;
  --vads-spacing-neg-0p5: -4px;
  --vads-spacing-neg-1: -8px;
  --vads-spacing-neg-1p5: -12px;
  --vads-spacing-neg-2: -16px;
  --vads-spacing-neg-2p5: -20px;
  --vads-spacing-neg-3: -24px;
  --vads-spacing-neg-4: -32px;
  --vads-spacing-neg-5: -40px;
  --vads-spacing-neg-6: -48px;
  --vads-spacing-neg-7: -56px;
  --vads-spacing-neg-8: -64px;
  --vads-spacing-neg-9: -72px;
  --vads-spacing-neg-10: -80px;
  --vads-spacing-neg-15: -120px;
  --vads-spacing-inset-l: 32px;
  --vads-spacing-inset-m: 24px;
  --vads-spacing-inset-s: 16px;
  --vads-spacing-vertical-stack-l: 32px;
  --vads-spacing-vertical-stack-m: 24px;
  --vads-spacing-vertical-stack-s: 16px;
  --vads-spacing-vertical-stack-default: 16px;
  --vads-forms-spacing-vertical-stack-default: 32px;
  --vads-site-margins-mobile-width: 16px;
  --vads-site-margins-width: 32px;
  --vads-site-margins-breakpoint: 1024px;
  --vads-grid-container-max-width: 1024px;
  /* Custom MVP Theme Variable Overrides */
  /* Custom Design Tokens */
  --vads-border-radius: 4px;
  --vads-border-radius-large: 8px;
  --vads-box-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.1);
  --vads-box-shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --vads-focus-outline: 2px solid #2491ff;
  --vads-focus-outline-offset: 2px;
  /* Layout Dimensions */
  --vads-layout-max-width: 1024px;
  --vads-layout-narrow-width: 600px;
  --vads-layout-wide-width: 1440px;
  /* Font Sizes */
  --vads-font-size-xs: 12px;
  --vads-font-size-sm: 14px;
  --vads-font-size-base: 18px;
  --vads-font-size-md: 20px;
  --vads-font-size-lg: 24px;
  --vads-font-size-xl: 32px;
  --vads-font-size-2xl: 36px;
  --vads-font-size-3xl: 40px;
  --vads-font-size-4xl: 44px;
  --vads-font-size-5xl: 48px;
  --vads-font-size-6xl: 56px;
  /* Font Weights */
  --vads-font-weight-normal: 400;
  --vads-font-weight-bold: 700;
  /* Line Heights */
  --vads-line-height-heading: 1.3;
  --vads-line-height-base: 1.5;
  /* Spacing */
  --vads-space-0-5: 0.5rem;
  --vads-space-1: 1rem;
  --vads-space-2: 1.5rem;
  --vads-space-3: 2rem;
  --vads-space-4: 2rem;
  /* Font Family */
  --vads-font-family-sans: "Source Sans Pro", system-ui, sans-serif;
  /* Link Color Overrides */
  --vads-color-link-default: #004795;
  --vads-color-link-visited: #4c2c92;
}

/**
 * @file
 * VADS Core Overrides
 *
 * This file contains overrides for VA Design System (VADS) core CSS rules.
 * Override specific VADS rules here.
 */
/* DIS has full width list items, so resetting max-width to none*/
ul li,
ol li {
  max-width: none;
}

/* Overrides to match DIS typography scale */
.vads-u-font-size--3xl {
  font-size: 44px;
}

.vads-u-font-size--4xl {
  font-size: 56px;
}

/* Remove top margin from first heading in banner content to match DIS design */
h1:first-of-type,
.h1:first-of-type {
  margin-top: 0 !important;
}

/*
  Original: @import "~uswds/src/stylesheets/elements/inputs";
  ***THIS IS USWDS v1***
*/
/**
  Variables ported over from Formation so that we can keep those stylesheets
  working while we work on deprecation.
**/
/**
  /uswds/dist/scss/lib/addons/_margin.scss
**/
/**
  uswds/src/stylesheets/lib/helpers/_directional-values.scss
**/
/**
  Variables ported over from Formation so that we can keep those stylesheets
  working while we work on deprecation.
**/
/*
  Original: @import "~uswds/src/stylesheets/elements/inputs";
  ***THIS IS USWDS v1***
*/
/*
  Original: @import "~uswds/src/stylesheets/core/utilities";
  ***THIS IS USWDS v1***
*/
.usa-sr-only {
  position: absolute;
  left: -999em;
}

/* stylelint-disable selector-no-qualifying-type */
input,
textarea,
select {
  appearance: none;
  border: 1px solid #5b616b;
  border-radius: 0;
  box-sizing: border-box;
  color: #1b1b1b;
  display: block;
  font-size: 16px;
  height: 42px;
  line-height: 1.3;
  margin: 0.2em 0;
  max-width: 460px;
  padding: 10px 11.2px;
  width: 100%;
}

input.usa-input-success,
textarea.usa-input-success,
select.usa-input-success {
  border: 3px solid #4aa564;
}

/* stylelint-enable */
.usa-input-error {
  border-left: 4px solid #cd2026;
  margin-top: 1.875rem;
  padding-bottom: 0.5rem;
  padding-left: 0.9375rem;
  padding-top: 0.5rem;
  position: relative;
  right: 1.1875rem;
}

.usa-input-error input,
.usa-input-error textarea,
.usa-input-error select {
  border: 3px solid #cd2026;
  width: calc(100% + 1.1875rem);
}

.usa-input-error label {
  margin-top: 0;
}

.usa-input-error .usa-input-inline {
  border: 0.0625rem solid #5b616b;
  width: inherit;
}

.usa-input-error .usa-input-inline-error {
  border: 3px solid #cd2026;
}

.usa-input-error-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.usa-input-error-message {
  color: #cd2026;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 3px;
  padding-top: 3px;
}

.usa-input-required:after {
  color: #981b1e;
  content: " (*required)";
}

.usa-input-optional:after {
  color: #757575;
  content: " (optional)";
}

.usa-input-label-helper {
  color: #757575;
}

.usa-input-label-required {
  color: #981b1e;
}

label {
  display: block;
  margin-top: 1.875rem;
  max-width: 28.75rem;
}

textarea {
  height: 10rem;
}

select {
  appearance: none;
  background-color: #ffffff;
  background-image: url(../../../img/arrow-both.png);
  background-image: none, url(../../../img/arrow-both.svg), url(../../../img/arrow-both.png);
  background-position: right 0.8125rem center;
  background-repeat: no-repeat;
  background-size: 0.625rem;
  padding-right: 1.875rem;
}

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

select:-webkit-autofill {
  appearance: menulist;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000000;
}

option:first-child {
  font-weight: 700;
}

legend {
  font-size: 2rem;
  font-weight: 700;
}

.usa-fieldset-inputs label {
  margin-top: 0;
}

.usa-form-hint {
  color: #757575;
  font-family: "Source Sans Pro Web", "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  margin-bottom: 0;
}

[type=checkbox],
[type=radio] {
  position: absolute;
  left: -999em;
}

.lt-ie9 [type=checkbox],
.lt-ie9 [type=radio] {
  border: 0;
  float: left;
  margin: 0.4em 0.4em 0 0;
  position: static;
  width: auto;
}

[type=checkbox] + label,
[type=radio] + label {
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 0.65em;
}

[type=checkbox] + label::before,
[type=radio] + label::before {
  background: #ffffff;
  content: " ";
  display: inline-block;
  text-indent: 0.15em;
  vertical-align: middle\0 ;
}

[type=checkbox] + label::before {
  border-radius: 2px;
  box-shadow: 0 0 0 1px #757575;
  height: 1.25rem;
  line-height: 1.25rem;
  margin-left: 1px;
  margin-right: 0.6em;
  width: 1.25rem;
}

[type=radio] + label::before {
  border-radius: 100%;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #757575;
  height: 0.875rem;
  line-height: 0.875rem;
  margin-left: 3px;
  margin-right: 0.75em;
  width: 0.875rem;
}

[type=checkbox]:checked + label::before,
[type=radio]:checked + label::before {
  background-color: #005ea2;
  box-shadow: 0 0 0 1px #005ea2;
}

[type=radio]:checked + label::before {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #005ea2;
}

[type=checkbox]:checked + label::before,
[type=checkbox]:checked:disabled + label::before {
  background-image: url(../../../img/correct8.png);
  background-image: url(../../../img/correct8.svg);
  background-position: 50%;
  background-repeat: no-repeat;
}

[type=radio]:focus + label::before {
  outline: 2px solid #face00;
  outline-offset: 4px;
}

[type=checkbox]:disabled + label {
  color: #d6d7d9;
}

[type=checkbox]:focus + label::before {
  outline: 2px solid #face00;
  outline-offset: 2px;
}

[type=checkbox]:disabled + label::before,
[type=radio]:disabled + label::before {
  background: #f1f1f1;
  box-shadow: 0 0 0 1px #aeb0b5;
  cursor: not-allowed;
}

@media print {
  [type=checkbox]:checked + label::before,
  [type=checkbox]:checked:disabled + label::before {
    background-image: none;
    background-color: #ffffff;
    content: url(../../../img/correct8-alt.png);
    content: url(../../../img/correct8-alt.svg);
    text-indent: 0;
  }
  [type=radio]:checked:disabled + label::before,
  [type=radio]:checked + label::before {
    box-shadow: 0 0 0 2px #ffffff, inset 0 0 0 14px #005ea2, 0 0 0 4px #005ea2;
  }
}
[type=range] {
  appearance: none;
  border: none;
  padding-left: 0;
  overflow: hidden;
  width: 100%;
}

[type=range]:focus {
  outline: none;
}

[type=range]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 2px #005ea2;
}

[type=range]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 2px #005ea2;
}

[type=range]:focus::-ms-thumb {
  box-shadow: 0 0 0 2px #005ea2;
}

[type=range]::-webkit-slider-runnable-track {
  background: #d6d7d9;
  border: 1px solid #757575;
  cursor: pointer;
  height: 1rem;
  width: 100%;
}

[type=range]::-moz-range-track {
  background: #d6d7d9;
  border: 1px solid #757575;
  cursor: pointer;
  height: 1rem;
  width: 100%;
}

[type=range]::-ms-track {
  background: #d6d7d9;
  border: 1px solid #757575;
  cursor: pointer;
  height: 1rem;
  width: 100%;
}

[type=range]::-webkit-slider-thumb {
  background: #f1f1f1;
  box-shadow: 0 0 0 1px #757575;
  border-radius: 0.9375rem;
  cursor: pointer;
  height: 1.5625rem;
  width: 1.5625rem;
  appearance: none;
  margin-top: -0.375rem;
}

[type=range]::-moz-range-thumb {
  background: #f1f1f1;
  box-shadow: 0 0 0 1px #757575;
  border-radius: 0.9375rem;
  cursor: pointer;
  height: 1.5625rem;
  width: 1.5625rem;
}

[type=range]::-ms-thumb {
  background: #f1f1f1;
  box-shadow: 0 0 0 1px #757575;
  border-radius: 0.9375rem;
  cursor: pointer;
  height: 1.5625rem;
  width: 1.5625rem;
}

[type=range]::-ms-fill-lower {
  background: #aeb0b5;
  border: 1px solid #757575;
  border-radius: 1.25rem;
}

[type=range]::-ms-fill-upper {
  background: #aeb0b5;
  border: 1px solid #757575;
  border-radius: 1.25rem;
}

[type=file] {
  border: none;
  padding-left: 0;
}

.usa-date-of-birth { /* stylelint-disable-line */ }

.usa-date-of-birth label {
  margin-top: 0;
}

.usa-date-of-birth [type=number] {
  -moz-appearance: textfield;
}

.usa-date-of-birth [type=number]::-webkit-inner-spin-button {
  appearance: none;
}

.usa-date-of-birth [type=number]::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important; /* stylelint-disable-line declaration-no-important */
  pointer-events: none;
  height: 0;
  width: 0;
  margin: 0;
}

.usa-form-group-day,
.usa-form-group-month,
.usa-form-group-year {
  clear: none;
  float: left;
  margin-right: 0.9375rem;
  width: 3.125rem;
}

.usa-form-group-year {
  width: 4.375rem;
}


/*
  Original: @import "~uswds/src/stylesheets/elements/labels";
  ***THIS IS USWDS v1***
*/
/**
  Variables ported over from Formation so that we can keep those stylesheets
  working while we work on deprecation.
**/
.usa-label, .usa-label-big {
  background-color: #565c65;
  border-radius: 2px;
  color: #ffffff;
  font-size: 0.938rem;
  margin-right: 0.3125rem;
  padding: 0.0625rem 0.4375rem;
  text-transform: uppercase;
}

.usa-label:only-of-type, .usa-label-big:only-of-type {
  margin-right: 0;
}

.usa-label-big {
  font-size: 1rem;
  padding-left: 0.5625rem;
  padding-right: 0.5625rem;
}


/* Autologout dialog hotfix */
div.autologout-dialog-content {
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
  font-size: 1.56rem;
  color: #333 !important;
  box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.44);
  padding: 1em;
  border-radius: 0.5rem;
  border: none;
  text-align: left;
}
div.autologout-dialog-content .ui-dialog-title {
  color: #000 !important;
  font-weight: 700 !important;
}
div.autologout-dialog-content button {
  border: solid 1px #ccc;
  background-color: #fff;
  font-weight: 600 !important;
}
div.autologout-dialog-content button:hover {
  border: solid 1px #ccc;
  background-color: #fff;
  font-weight: 600;
}
div.autologout-dialog-content {
  /* Change continue button background color to blue */
}
div.autologout-dialog-content button:nth-of-type(1) {
  background-color: #205493;
  border: thin solid #205493;
  color: #fff !important;
}
div.autologout-dialog-content .ui-dialog-buttonpane {
  border-top-width: 0px;
}

.messages {
  margin-bottom: var(--vads-spacing-2, 1.5rem);
  padding: var(--vads-spacing-2, 1rem) var(--vads-spacing-2, 1.5rem);
  border-left: 4px solid;
  border-radius: 0 4px 4px 0;
}
.messages--status {
  background-color: #ecf3ec;
  border-left-color: var(--vads-color-success, #00a91c);
  color: var(--vads-color-base-darkest);
}
.messages--warning {
  background-color: #fef9e9;
  border-left-color: var(--vads-color-warning, #ffbe2e);
  color: var(--vads-color-base-darkest);
}
.messages--error {
  background-color: #f9ecec;
  border-left-color: var(--vads-color-error, #e31c3d);
  color: var(--vads-color-base-darkest);
}

.block__title {
  font-size: var(--vads-font-size-lg, 1.5rem);
  font-weight: var(--vads-font-weight-bold, 700);
  margin-bottom: var(--vads-space-1, 1rem);
  color: var(--vads-color-base-darkest, #212121);
}

.field {
  margin-bottom: var(--vads-space-1, 1rem);
}
.field__label {
  font-weight: var(--vads-font-weight-bold, 700);
  color: var(--vads-color-base-darkest, #212121);
  margin-bottom: var(--vads-space-0-5, 0.5rem);
}
.field__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.field__item {
  margin-bottom: var(--vads-space-0-5, 0.5rem);
}
.field__item:last-child {
  margin-bottom: 0;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  margin: 0;
}
.menu-item a {
  display: block;
  padding: var(--vads-space-0-5, 0.5rem) 0;
  color: var(--vads-color-link-default);
  text-decoration: none;
  border-bottom: 1px solid var(--vads-color-base-lighter, #f1f1f1);
}
.menu-item a:hover, .menu-item a:focus {
  color: var(--vads-color-link-hover);
  text-decoration: underline;
}
.menu-item--active-trail > a {
  font-weight: var(--vads-font-weight-bold, 700);
  color: var(--vads-color-base-darkest);
}

.tabs-wrapper {
  margin-bottom: var(--vads-space-3, 2rem);
}

.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid var(--vads-color-base-lighter, #f1f1f1);
  background-color: var(--vads-color-white, #ffffff);
}
.tabs__tab {
  display: inline-block;
  margin-right: var(--vads-space-1, 1rem);
}
.tabs__link {
  display: block;
  padding: var(--vads-space-1, 1rem) var(--vads-space-2, 1.5rem);
  color: var(--vads-color-base);
  text-decoration: none;
  border: 2px solid transparent;
  border-bottom: none;
  background-color: var(--vads-color-base-lighter);
  transition: all 0.15s ease-in-out;
}
.tabs__link:hover, .tabs__link:focus {
  color: var(--vads-color-primary);
  background-color: var(--vads-color-white);
}
.tabs__link.is-active {
  color: var(--vads-color-base-darkest);
  background-color: var(--vads-color-white);
  border-color: var(--vads-color-base-light);
  border-bottom-color: var(--vads-color-white);
  position: relative;
  z-index: 1;
}
.tabs--primary {
  border-bottom-color: var(--vads-color-base-lighter, #f1f1f1);
}
.tabs--secondary {
  border-bottom: 1px solid var(--vads-color-base-lighter, #f1f1f1);
  margin-top: var(--vads-space-1, 1rem);
}
.tabs--secondary .nav-item a {
  font-size: var(--vads-font-size-sm, 0.875rem);
  padding: var(--vads-space-0-5, 0.5rem) var(--vads-space-1, 1rem);
  background-color: transparent;
  border-radius: 0;
}
.tabs--secondary .nav-item a:hover, .tabs--secondary .nav-item a:focus {
  background-color: var(--vads-color-gray-light-alt, #f9f9f9);
}
.tabs--secondary .nav-item a[aria-current=page]::after, .tabs--secondary .nav-item a.is-active::after {
  height: 2px;
}
.tabs--secondary .nav-item.is-active a::after {
  height: 2px;
}

.nav-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid var(--vads-color-base-lighter, #f1f1f1);
  background-color: transparent;
  flex-wrap: wrap;
}
.nav-tabs .nav-item {
  display: flex;
  margin-bottom: -2px;
  margin-right: 2px;
}
.nav-tabs .nav-item a {
  display: block;
  padding: var(--vads-space-1, 1rem) var(--vads-space-2, 1.5rem);
  color: var(--vads-color-base-dark);
  text-decoration: none;
  font-weight: var(--vads-font-weight-normal, 400);
  font-size: var(--vads-font-size-base, 1rem);
  line-height: 1.5;
  border: 2px solid transparent;
  border-radius: 4px 4px 0 0;
  background-color: var(--vads-color-gray-light-alt, #f9f9f9);
  transition: all 0.15s ease-in-out;
  position: relative;
  white-space: nowrap;
}
.nav-tabs .nav-item a:hover {
  color: var(--vads-color-primary);
  background-color: var(--vads-color-white);
  border-color: var(--vads-color-base-lighter);
  text-decoration: none;
}
.nav-tabs .nav-item a:focus {
  color: var(--vads-color-primary);
  background-color: var(--vads-color-white);
  border-color: var(--vads-color-action-focus-on-light);
  outline: 2px solid var(--vads-color-action-focus-on-light);
  outline-offset: 2px;
  text-decoration: none;
}
.nav-tabs .nav-item a[aria-current=page], .nav-tabs .nav-item a.is-active {
  color: var(--vads-color-base-darkest, #212121);
  background-color: var(--vads-color-white, #ffffff);
  border-color: var(--vads-color-base-lighter, #f1f1f1);
  border-bottom-color: var(--vads-color-white, #ffffff);
  font-weight: var(--vads-font-weight-bold, 700);
  z-index: 1;
}
.nav-tabs .nav-item a[aria-current=page]::after, .nav-tabs .nav-item a.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--vads-color-primary);
}
.nav-tabs .nav-item.is-active a {
  color: var(--vads-color-base-darkest, #212121);
  background-color: var(--vads-color-white, #ffffff);
  border-color: var(--vads-color-base-lighter, #f1f1f1);
  border-bottom-color: var(--vads-color-white, #ffffff);
  font-weight: var(--vads-font-weight-bold, 700);
  z-index: 1;
}
.nav-tabs .nav-item.is-active a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--vads-color-primary);
}

@media (max-width: 768px) {
  .nav-tabs {
    flex-direction: column;
    border-bottom: none;
  }
  .nav-tabs .nav-item {
    margin-right: 0;
    margin-bottom: 1px;
  }
  .nav-tabs .nav-item a {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--vads-color-base-lighter, #f1f1f1);
  }
  .nav-tabs .nav-item a[aria-current=page]::after, .nav-tabs .nav-item a.is-active::after {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
  }
  .nav-tabs .nav-item:first-child a {
    border-top: none;
  }
  .nav-tabs .nav-item.is-active a::after {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
  }
}
.contextual-region:hover .contextual {
  display: block;
}

.contextual {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 999;
}
.contextual .trigger {
  background-color: var(--vads-color-base-darkest, #212121);
  color: var(--vads-color-white, #ffffff);
  padding: 4px 8px;
  border-radius: 2px;
  font-size: var(--vads-font-size-xs, 0.75rem);
  text-decoration: none;
}

.layout-builder__section {
  margin-bottom: var(--vads-space-3, 2rem);
  padding: var(--vads-space-2, 1.5rem);
  border: 1px solid var(--vads-color-base-lighter, #f1f1f1);
  background-color: var(--vads-color-white, #ffffff);
}
.layout-builder__region {
  margin-bottom: var(--vads-space-2, 1.5rem);
}
.layout-builder__region:last-child {
  margin-bottom: 0;
}
.layout-builder__add-section, .layout-builder__link {
  background-color: var(--vads-color-primary, #005ea2);
  color: var(--vads-color-white, #ffffff);
  border: none;
  padding: var(--vads-space-1, 1rem) var(--vads-space-2, 1.5rem);
  border-radius: var(--vads-border-radius, 4px);
  text-decoration: none;
  display: inline-block;
  margin: var(--vads-space-1, 1rem) 0;
  transition: background-color 0.3s ease;
}
.layout-builder__add-section:hover, .layout-builder__link:hover {
  background-color: var(--vads-color-primary-dark, #003d6b);
  color: var(--vads-color-white, #ffffff);
  text-decoration: none;
}
.layout-builder-block {
  position: relative;
  margin-bottom: var(--vads-space-2, 1.5rem);
}
.layout-builder-block:last-child {
  margin-bottom: 0;
}

.layout {
  clear: both;
  margin-bottom: var(--vads-space-3, 2rem);
}
.layout--onecol {
  max-width: 100%;
}
.layout--onecol .layout__region {
  width: 100%;
}
.layout--twocol .vads-l-grid-container--2-col, .layout--twocol-section.vads-l-grid-container--2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.layout--threecol .vads-l-grid-container--3-col, .layout--threecol-section.vads-l-grid-container--3-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.layout--fourcol-section.vads-l-grid-container--4-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 768px) {
  .layout--twocol .vads-l-grid-container--2-col,
  .layout--twocol-section.vads-l-grid-container--2-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .layout--threecol .vads-l-grid-container--3-col,
  .layout--threecol-section.vads-l-grid-container--3-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .layout--threecol .vads-l-grid-container--3-col,
  .layout--threecol-section.vads-l-grid-container--3-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .layout--fourcol-section.vads-l-grid-container--4-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .layout--fourcol-section.vads-l-grid-container--4-col {
    grid-template-columns: 1fr;
  }
}
.layout__region {
  position: relative;
}
.layout__region--top, .layout__region--bottom {
  grid-column: 1/-1;
  width: 100%;
}
.layout__region img,
.layout__region picture,
.layout__region .field--type-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.layout__region .field--type-image,
.layout__region .field--name-field-image {
  margin-bottom: var(--vads-space-2, 1.5rem);
  overflow: hidden;
}
.layout__region .field--type-image:last-child,
.layout__region .field--name-field-image:last-child {
  margin-bottom: 0;
}

.layout--twocol .layout__region,
.layout--twocol-section .layout__region {
  display: flex;
  flex-direction: column;
}
.layout--twocol .layout__region > .block,
.layout--twocol-section .layout__region > .block {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.layout--twocol .layout__region > .block .block__content,
.layout--twocol-section .layout__region > .block .block__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.layout--twocol .layout__region img,
.layout--twocol .layout__region picture,
.layout--twocol .layout__region .field--type-image img,
.layout--twocol-section .layout__region img,
.layout--twocol-section .layout__region picture,
.layout--twocol-section .layout__region .field--type-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout--threecol .layout__region img,
.layout--threecol-section .layout__region img,
.layout--fourcol-section .layout__region img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vads-row-gap {
  row-gap: var(--vads-spacing-2);
}

.usa-button--outline {
  background: var(--vads-color-white) !important;
  color: #323A45 !important;
  border: var(--vads-color-primary) !important;
}

.usa-button--big {
  padding: 20px 40px !important;
  height: auto;
}

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

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

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

.text-align-justify {
  text-align: justify !important;
}

.button-align-left .btn-container,
.button-align-left .button-container,
.button-align-left .cta-container {
  text-align: left !important;
}

.button-align-center .btn-container,
.button-align-center .button-container,
.button-align-center .cta-container {
  text-align: center !important;
}

.button-align-right .btn-container,
.button-align-right .button-container,
.button-align-right .cta-container {
  text-align: right !important;
}

.block-media-grid .usa-card__media img, .block-media-grid .usa-card__media iframe {
  height: 160px;
  object-fit: cover;
  overflow: hidden;
}

.block-media-grid .usa-card {
  margin-bottom: 1rem;
}

.block-media-grid .usa-card h5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.block-mvp-matters img.mvp-matters-img {
  height: 150px;
  object-fit: cover;
  overflow: hidden;
}
.block-mvp-matters img.mvp-matters-img-featured {
  height: 300px;
  object-fit: cover;
  overflow: hidden;
}
.block-mvp-matters .mvp-matters-card__arrow {
  width: 40px;
  height: 24px;
  object-fit: contain;
  transition: width 0.3s ease;
}
.block-mvp-matters .mvp-matters-card__arrow:hover {
  width: 80px;
  height: 24px;
}

.media--type-remote-video,
.media--remote-video-responsive {
  width: 100%;
  display: block;
}
.media--type-remote-video .media__content,
.media--remote-video-responsive .media__content {
  width: 100%;
}
.media--type-remote-video .media__remote-video-wrapper,
.media--remote-video-responsive .media__remote-video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: #dfe1e2;
  margin: 0;
}
.media--type-remote-video .media__remote-video-wrapper iframe,
.media--type-remote-video .media__remote-video-wrapper embed,
.media--type-remote-video .media__remote-video-wrapper object,
.media--remote-video-responsive .media__remote-video-wrapper iframe,
.media--remote-video-responsive .media__remote-video-wrapper embed,
.media--remote-video-responsive .media__remote-video-wrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.vads-l-grid-container .media--type-remote-video,
.vads-l-grid-container .media--remote-video-responsive,
.vads-l-row .media--type-remote-video,
.vads-l-row .media--remote-video-responsive,
[class*=vads-u-display--flex] .media--type-remote-video,
[class*=vads-u-display--flex] .media--remote-video-responsive {
  width: 100%;
  max-width: 100%;
}

.media--type-remote-video iframe[width],
.media--type-remote-video iframe[height] {
  width: 100% !important;
  height: 100% !important;
}