:root {
    --wm-green: #004E38;
    --gold-750: #866F45;
    --gold-775: #846838;
    --silver-900: #565858;
    --black-soft: #212220;
    --black-softer: #323332;
}


body.js-openProgramFlyout,
body.js-openMobileProgramFilters {
  overflow: hidden;
}
body.js-openProgramFlyout .pf-backdrop,
body.js-openMobileProgramFilters .pf-backdrop {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  transition-delay: 0s;
  opacity: 1;
  cursor: url("https://www.wm.edu/images/close-x.svg"),auto;
}
.pf-backdrop {
  content: "";
  background: rgba(0,0,0,.9);
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all .3s ease 0s, width 0s ease .3s, height 0s ease .3s;
  opacity: 0;
}
body.js-openProgramFlyout .ProgramFlyout {
    visibility: visible;
    transform: translateX(-100%);
    width: calc(100% + 1px); /* trying to trigger a repaint so the cursor will update flyout slides under it */
}
body.js-openMobileProgramFilters .ProgramFilters__wrapper {
    visibility: visible;
    transform: translateY(0);
}

main {
    color: var(--black-soft);
}
@media (min-width: 930px) {
    #main_content {
        scroll-margin-top: 62px; /*this lines up better with the sticky filter on desktop */
    }
}

/* ================== PREFERS REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
    
    .ProgramFlyout, 
    .pf-filterlist, 
    .pf-filterlist.opening,
    .pf-backdrop {
      transition-duration: .01s !important;
    }

}


/* ================== PROGRAM TABLE ============================ */
.programTable {
  border-collapse: collapse;
  width: 100%;
  border: none;
}
/* undo the tablewap code that runs on all tables so we can do a sticky header */ 
.user_content .tablewrap {
  overflow: unset !important;
  position: static;
}
.scroll-message{
    display: none !important;
}
/* use negative margin to go edge to edge on mobile */
.user_content .tablewrap {
  margin-left: -22px;
  margin-right: -22px;
  overflow: hidden;
}
@media (min-width: 700px) {
    .user_content .tablewrap {
      margin-left: 0;
      margin-right: 0;
    }
}

/* ---------- Header Row ---------*/
.programTable th,
.user_content .programTable th {
    padding: 0;
    background: #fff;
    color: var(--william-mary-green-600, #115740);
    font-size: 1.02rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}
.programTable tr.programTable__header-row,
 .user_content .programTable tr.programTable__header-row {
    z-index: 3;
}
.programTable__header-row::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    /*box-shadow: 0 9px 7px -7px rgba(0, 0, 0, 0.0);*/
    z-index: -1;
    border-bottom: 1px solid transparent;
    transition: all .2s ease;
}

@media (min-width: 930px) {
    .programTable__header-row.is-stuck::after {
      /*box-shadow: 0 9px 7px -7px rgba(0, 0, 0, 0.5);*/
      border-bottom-color: var(--william-mary-silver-600, #D0D3D4);
    }
}
.programTable .programTable__header-content {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

/* ---------- Rows ---------*/
.programTable tr:not(.programTable__header-row),
.user_content .programTable tr:not(.programTable__header-row) {
    padding: 0;
    position: relative;
    background: linear-gradient(90deg, transparent 0%,transparent 75%);
    transition: all .3s ease; 
    z-index: 0;
    cursor: pointer;
}
.programTable .pf_program::before,
.user_content .programTable .pf_program::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(248, 245, 239, 0.00) 0%, var(--william-mary-gold-100, rgba(247, 244, 237, 0.50)) 75%);
    z-index: 0;
    opacity: 0;
    transition: .3s ease all;
}
.programTable tr:hover .pf_program,
.programTable tr .pf_program:focus-visible {
    color: var(--gold-750) !important;
}
@media(min-width: 930px) {
    .programTable .pf_program::before,
    .user_content .programTable .pf_program::before {
        z-index: -1;
    }
}
@media(min-width: 1150px) {
    .programTable tr:hover .pf_program::before,
    .user_content .programTable tr:hover .pf_program::before,
    .programTable tr .pf_program:focus-visible::before,
    .user_content .programTable tr .pf_program:focus-visible::before,
    .programTable tr:has(.programTable__path:focus-visible) .pf_program::before,
    .user_content .programTable tr:has(.programTable__path:focus-visible) .pf_program::before {
        opacity: 1;
    }
    .pf_program {
        margin-right: 22px !important;
    }
}
.programTable tr:not(.programTable__header-row)::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -1px;
  left: 0;
  right: 0;
  background: transparent;
  transition: all .3s ease;
}
.programTable tr:not(.programTable__header-row):hover::after,
.programTable tr:not(.programTable__header-row) .pf_program:focus-visible::after {
  background: #B79257;
}
.programTable tr:not(.programTable__header-row) {
  display: block;
  border-bottom: 1px solid #D8DCDB;
}
/* Specific styles ONLY for Safari (Desktop and Mobile) because the button::before and row::after elements are not working. This is pretty close */
@supports (hanging-punctuation: first) {
    .programTable tr:not(.programTable__header-row)::after {
      content: none;
    }
    .programTable .pf_program::before, .user_content .programTable .pf_program::before {
        content: none;
    }
    .programTable tr:not(.programTable__header-row):hover {
      border-bottom-color: #B79257;
    }
    .programTable tr:not(.programTable__header-row):hover td,
    .programTable tr:not(.programTable__header-row):has(.pf_program:focus-visible) td {
      background: linear-gradient(90deg, rgba(248, 245, 239, 0.00) 0%, var(--william-mary-gold-100, rgba(247, 244, 237, 0.35)) 100%);
    }
    @media (min-width:1150px) {
        .programTable tr:not(.programTable__header-row):hover td:last-of-type,
        .programTable tr:not(.programTable__header-row):has(.pf_program:focus-visible) td:last-of-type,
        .programTable tr:not(.programTable__header-row):has(.programTable__path:focus-visible) td:last-of-type {
          background: rgba(247, 244, 237, 0.35);
        }
    }
}


/*------------------ TD table cells -------------------- */
.programTable td,
.user_content .programTable td {
  position: static;
}
.programTable td:first-of-type {
  padding: 33px 22px 5px 22px;
  display: block;
}
.programTable td:last-of-type {
  padding: 5px 22px 33px 22px;
  display: block;
}
.pf_program {
    color: var(--william-mary-green-600, #115740) !important;
    font-family: adelle, serif;
    font-size: 1.563rem;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 1.28;
    background: transparent;
    text-transform: none;
    letter-spacing: 0;
    padding: 0 !important;
    margin: 0;
    text-align: left;
    min-height: 0;
    display: inline;
    overflow: unset;
    position: static;
}

.pf_program:hover, .pf_program:focus {
    text-decoration: none !important;
    background: transparent;
}
.pf_program:hover, .pf_program:focus-visible {
    color: var(--gold-750) !important;
}
.pf_program::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.programTable__degreename {
    color: var(--william-mary-green-600, #115740);
    font-size: .938rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 8px;
    transition: color .3s ease;
    font-family: adelle-sans, sans-serif;
}
tr:hover .programTable__degreename,
tr .pf_program:focus-visible .programTable__degreename {  
   color: var(--gold-750);
}

@media(min-width: 1150px) {
    .programTable tr.programTable__header-row {
        /*position: sticky;*/
        display: table-row;
        /*top: 100px;*/
    }
    .programTable th:first-of-type {
        width: 52%;
    }
    .programTable th::before {
      content: "";
      background: #fff;
      position: absolute;
      top: -16px;
      height: 16px;
      left: 0;
      right: 0;
    }
    .programTable .programTable__header-content {
        /* undo the sr-only attributes */
        position: static;
        overflow: auto;
        clip: auto;
        width: auto;
        height: auto;
        margin: 0;
        padding: 22px 0;
        border: 0;
    }
    .programTable tr:not(.programTable__header) {
        display: table-row;
        padding: 0;
    }
    .programTable td:first-of-type {
      padding: 44px 0;
      display: table-cell;
    }
    .programTable td:last-of-type {
      padding: 44px 3px 44px 0;
      display: table-cell;
    }
}

/*------------------ Paths -------------------- */
.programTable__paths {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 11px;
    cursor: pointer;
}
.programTable__pathpair {
    position: relative;
    z-index: 2;
}
button.programTable__path, .user_content button.programTable__path  {
    padding: 11px 11px 9px;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px var(--william-mary-silver-600, #D0D3D4); 
    color: var(--william-mary-silver-800, #7D7F7F);
    font-size: 0.813rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
    background: transparent;
    text-transform: none;
    margin: 0;
    width: auto;
    transition: color .3s ease, background .3s ease, box-shadow .5s ease;
}
tr:hover button.programTable__path,
.user_content tr:hover button.programTable__path,
tr button.programTable__path:focus-visible,
.user_content tr button.programTable__path:focus-visible,
button.programTable__path:hover,
button.programTable__path:focus-visible {
    background: var(--gold-750);
    color: #fff;
    box-shadow: none; 
}
button.programTable__path:focus-visible, .user_content button.programTable__path:focus-visible  {
    outline: none;
}
.programTable tr:has(:focus-visible) .programTable__path {
    background: var(--gold-750);
    color: #fff;
    outline: none;
    box-shadow: none;
}

/* ================ TOOLTIPS ====================== */
.programTable__tooltip {
    background: #0E1111;
    color: white;
    font-weight: 600;
    padding: 4px 8px;
    font-size: .75rem;
    border-radius: 4px;
    display: none;
    white-space: normal;
    line-height: 1.67;
    z-index: 1;
    width: max-content;
    max-width: 80vw;
}
.programTable__tooltip[data-show] {
    display: block;
}
.programTable__tooltip-arrow,
.programTable__tooltip-arrow::before {
    position: absolute;
    width: 8px;
    height: 8px;
    background: inherit;
}
.programTable__tooltip-arrow {
    visibility: hidden;
}
.programTable__tooltip-arrow::before {
    visibility: visible;
    content: '';
    transform: rotate(45deg);
}

.programTable__tooltip[data-popper-placement^='top'] .programTable__tooltip-arrow {
    bottom: -4px;
}
.programTable__tooltip[data-popper-placement^='bottom'] .programTable__tooltip-arrow {
    top: -4px;
}
.programTable__tooltip[data-popper-placement^='left'] .programTable__tooltip-arrow {
    right: -4px;
}
.programTable__tooltip[data-popper-placement^='right'] .programTable__tooltip-arrow {
    left: -4px;
}


/* ================ FILTER WRAPPER AND TOGGLES ======================= */
.ProgramFilters__mobiletoggle {
  position: relative;
  position: sticky;
  top: 66px;
  background: #fff;
  z-index: 3;
}
.ProgramFilters__mobiletoggle::before {
  content: "";
  position: absolute;
  left: -22px;
  right: -22px;
  background: #fff;
  top: 0;
  bottom: 0;
  z-index: 0;
}
@media(max-height: 400px) and (max-width: 929px) {
    .ProgramFilters__mobiletoggle {
        top: 0;
    }
}
.js-mobile-open-filter {
    width: 100%;
    background: transparent;
    border: none;
    position: relative;
    overflow: visible;
    text-transform: none;
    color: var(--william-mary-green-600, #115740);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.625; /* 162.5% */
    text-align: left;
    padding: 16px 0;
    letter-spacing: 0;
    z-index: 1;
    margin: 0;
}
.js-mobile-open-filter:hover, .js-mobile-open-filter:focus {
  background: transparent;
  color: var(--william-mary-green-600, #115740);
}
.js-mobile-open-filter:hover .buttontext, .js-mobile-open-filter:focus .buttontext {
  text-decoration: underline;
}
.ProgramFilters__mobiletoggle .filters {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--silver-900);
    font-size: .888rem;
    font-weight: 400;
    line-height: 1; 
    z-index: 0;
}
.js-mobile-open-filter i {
    margin-right: 11px;
}
.js-mobile-open-filter::before {
  content: "";
  height: 1px;
  position: absolute;
  left: -22px;
  right: -22px;
  display: block;
  background: var(--william-mary-silver-500, #D9DCDD);
  top: -1px;
  bottom: auto;
}
.js-mobile-open-filter::after {
  content: "";
  height: 1px;
  position: absolute;
  left: -22px;
  right: -22px;
  display: block;
  background: var(--william-mary-silver-500, #D9DCDD);
  top: auto;
  bottom: -1px;
}
.ProgramFilters__wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-left: -22px;
    background: #fff;
    z-index: 100;
    border-radius: 11px 11px 0 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform .3s ease;
    max-height: calc(100vh - 85px); /* older browser fallback */
    max-height: calc(100dvh - 33px);
}
.ProgramFilters__wrapper.closing {
    visibility: visible;
}
@media (min-width: 700px) {
  .ProgramFilters__wrapper {
     margin-left: -44px; 
  }
  .js-mobile-open-filter::before,
  .js-mobile-open-filter::after {
      left: 0;
      right: 0;
  }
}
@media (min-width: 930px) {
    .user_content {
      padding-left: 322px;
      min-height: 550px;
    }
    .ProgramFilters__mobiletoggle {
        display: none;   
    }
    .ProgramFilters__wrapper {
      max-height: none;
      position: absolute;
      top: 0;
      left: 0;
      bottom: auto;
      width: 288px;
      margin: 0;
      visibility: visible;
      transform: translateY(0);
      z-index: 3;
      border-radius: 11px;
    }

}
@media (min-width: 1280px) {
    .user_content {
      padding-left: 332px;
    }
}

/* ================ PROGRAM FILTERS ======================= */
.ProgramFilters {
    width: 100%;
    border-radius: 11px 11px 0 0;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: transform .3s ease;
    max-height: calc(100dvh - 33px);
    position: relative;
}

.ProgramFilters {
 scrollbar-width: thin;   
}
.ProgramFilters__mobileclose,
.ProgramFilters__mobileclose:hover,
.ProgramFilters__mobileclose:focus {
    position: absolute;
    top: 19px;
    left: 17px;
    margin: 0;
    min-height: 0;
    padding: 5px;
    border: 0;
    background: transparent;
    color: #000;
    width: auto;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}
@media(min-width: 700px) {
    .ProgramFilters__mobileclose,
    .ProgramFilters__mobileclose:hover,
    .ProgramFilters__mobileclose:focus {
        left: 39px;
    }
}
@media(min-width: 930px) {
    .ProgramFilters {
        position: sticky !important;
        top: 106px;
        max-height: 100%;
        border-top: 11px solid #B79257;
        border-radius: 11px;
        padding-bottom: 22px;
    }
}
@media(max-height: 400px) and (min-width: 930px) {
    .ProgramFilters {
        top: 22px;   
        max-height: calc(100vh - 44px) !important;
    }
}
.ProgramFilters__headinggroup {
  background: #fff;
  padding-top: 22px;
  /*padding-bottom: 11px;*/
  margin: 0 22px;
}
@media(min-width: 700px) {
    .ProgramFilters__headinggroup {
        margin: 0 44px;
    }
}
@media(min-width: 930px) {
    .ProgramFilters__headinggroup {
        margin: 0 16px;
    }
}
.ProgramFilters__mobileviewresults-wrapper {
    background: #fff; 
    width: 100%;
    padding: 22px 0 33px 0;
    position: sticky;
    bottom: 0;
}
@media(max-height: 400px) {
    .ProgramFilters__mobileviewresults-wrapper {
        position: relative;
    }
}
.ProgramFilters__mobileviewresults {
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625;
    min-height: 0;
    padding: 11px 44px !important;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 4px;
    width: calc(100% - 44px);
    margin: 0 auto;
    display: block;
}
@media(min-width: 700px) {
    .ProgramFilters__mobileviewresults {
        width: calc(100% - 88px);
        /*margin: 55px 44px 22px;*/
    }
}
@media(min-width: 930px) {
    .ProgramFilters__mobileviewresults {
        width: calc(100% - 32px);
        margin: 55px 16px 22px;
    }
}
.ProgramFilters__heading {
    color: var(--wm-green);
    font-size: 1.02rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.625; 
    margin: 0 0 22px 0;
    padding: 0;
    text-align: center;
}
@media (min-width: 930px) {
    .ProgramFilters__mobileclose {
        display: none;
    }
    .ProgramFilters__mobileviewresults-wrapper {
        display: none;
    }
    .ProgramFilters__heading {
        text-align: left; 
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.44;
    }
}

/* Filter Lists --------------------------- */
.ProgramFilters__lists {
    margin-bottom: 22px;   
}
@media(min-width: 930px) {
    .ProgramFilters__lists {
        margin-bottom: 0;
    }
}
.pf-filterlist-toggle {
    background: #fff !important;
    border:none;
    width: 100%;
    padding: 0.69rem 2rem 0.69rem 0 !important;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625; /* 162.5% */
    cursor: pointer;
    position: relative;
    min-height: 0;
    color: var(--black-soft) !important;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    transition: all .3s ease;
    outline-width: 1px;
    outline-color: transparent;
    outline-style: solid;
    outline-offset: 0;
}
.pf-filterlist-toggle span {
    margin: 0 22px;
}
@media(min-width: 700px) {
    .pf-filterlist-toggle span {
        margin: 0 44px;
    }
}
@media(min-width: 930px) {
    .pf-filterlist-toggle span {
        margin: 0 16px;
    }
}
.pf-filterlist-toggle:hover {
    background: #F6F6F6 !important;
    outline-color: #F6F6F6;
}
.pf-filterlist-toggle:focus-visible {
    outline: 1px solid #115740;
    outline-offset: -2px;
}
.pf-filterlist-toggle::after {
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}
@media(min-width: 700px) {
    .pf-filterlist-toggle::after  {
        right: 44px;
    }
}
@media(min-width: 930px) {
    .pf-filterlist-toggle::after  {
        right: 16px;
    }
}
.pf-filterlist-toggle[aria-expanded="true"]::after {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}
.pf-filterlist {
    visibility: visible;
    opacity: 1;
    height: 0;
    overflow: hidden;
    transition: height 0.05s ease, opacity .6s ease;
    margin: 0 22px;
    transform: translateY(2px);
}
@media(min-width: 700px) {
    .pf-filterlist {
        margin: 0 44px;
    }
}
@media(min-width: 930px) {
    .pf-filterlist {
        margin: 0 16px;
    }
}
.pf-filterlist[aria-hidden="true"] {
    visibility: hidden;
    opacity: 0;
    height: 0;
}
.pf-filterlist.opening {
    opacity: 1;
    visibility: visible;
    transition: height 0.05s ease, opacity .6s ease;
}
.pf-filterlist.closing {
    opacity: 0;
}
.pf-filterlist fieldset {
    padding: 0;
}
.pf-filterlist fieldset legend {
    display: flex;
}
.pf-filterlist-item {
    background: #fff !important;
    border:none;
    width: 100%;
    line-height: 1.625;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    min-height: 0;
    color: var(--black-soft);
    text-transform: none;
    text-align: left;
    letter-spacing: 0;
    margin: 0;
}
.pf-filterlist-item:last-of-type {
  margin-bottom: 11px;
}
.pf-filterlist input[type="checkbox"] + label {
  cursor: pointer;
  user-select: none;
  display: block;
  padding: .5rem 0 .5rem 1.9375rem;
  position: relative;
}

.pf-filterlist input[type="checkbox"]:focus-visible + label::before {
  outline: 1px solid var(--wm-green);
}

/* add pseudo element for a styled box. the html checkbox is hidden with sr-only class on page */
.pf-filterlist input[type="checkbox"] + label::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  border-radius: 0.25rem;
  border: 1px solid #D0D3D4;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
  transition: all .18s ease;
}
.pf-filterlist input[type="checkbox"] + label:hover::before {
    border-color: #115740;
}
/* style the checked checkbox */
input[type='checkbox']:checked + label::before {
  background: #115740;
  border-color: #115740;
}
input[type="checkbox"]:checked + label::after {
    font-family: "Font Awesome 6 Pro";
    content: '\f00c';
    position: absolute;
    top: 50%;
    left: calc(1.25rem / 2);
    transform: translateY(calc(-50% - 2px)) translateX(calc(-50% + 1px));
    color: #FFF;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
}
.pf-filterlist-separator {
    width: calc(100% - 44px);
    height: 0px;
    border-bottom: 1px solid #D8DCDB;
    margin: auto;
}
@media(min-width: 700px) {
    .pf-filterlist-separator {
        width: calc(100% - 88px);
    }
}
@media(min-width: 930px) {
    .pf-filterlist-separator {
        width: calc(100% - 32px);
    }
}

/* Control Bar ------------- */

.ProgramFilters__controlbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 11px;
}
.ProgramFilters__filtercount,
.ProgramFilters__clearbutton {
    color: var(--william-mary-silver-900, #535455);
    font-size: .888rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    text-transform: none;
    letter-spacing: 0;
    border: 0;
    margin: 0;
    min-height: 24px;
    background: transparent;
    display: block;
    width: auto;
}
.ProgramFilters__clearbutton {
    text-align: right;
    padding: 0 !important;
    text-decoration: underline !important;
    text-decoration-color: transparent !important;
    transition: all .3s ease;    
    color: var(--gold-775);
}
.ProgramFilters__clearbutton[disabled] {
    color: #ADB0AF;
    cursor: default;
}
.ProgramFilters__clearbutton:hover,
.ProgramFilters__clearbutton:focus {
    background: transparent;
}
.ProgramFilters__clearbutton:not([disabled]):hover,
.ProgramFilters__clearbutton:not([disabled]):focus {
    background: transparent;
    color: #483c24;
    text-decoration-color: #483c24 !important;
}

/* Filter Tags ------------- */ 

.filtertags {
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content:flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.filtertag {
  font-size: .688rem;
  background: #E8EAE9;
  display: flex;
  align-items: center;
  border-radius: 4px;
  color: var(--silver-900);
  letter-spacing: .51px;
  padding-left: 6px;
  line-height: 1.3;
}
.filtertag:last-of-type {
  margin-bottom: 22px;
}
.filtertag span {
    display: block;
    padding: 3px 0;
}
.filtertag button {
  font-size: .75rem;
  background: transparent;
  width: 24px;
  height: 26px;
  min-height: 0;
  min-width: 0;
  padding: 0 !important;
  margin: 0;
  border-radius: 4px;
  color: var(--silver-900);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color .3s ease;
}
.filtertag button:hover,
.filtertag button:focus {
    color: var(--black-softer);
}

.filtertag button i,
.filtertag button span {
    pointer-events: none; /* need this so clicks on the button text go down to the button */
}


/* Search ----------------- */

.ProgramFilters__search {
  display: flex;
  flex-direction: row;
  position: relative;
  margin: 0 22px 22px;
}
@media(min-width: 700px) {
    .ProgramFilters__search {
        margin: 0 44px 22px;
    }
}
@media(min-width: 930px) {
    .ProgramFilters__search {
        margin: 0 16px 22px;
    }
}
.ProgramFilters__search-form {
    width: 100%;
    position: static;
}
.ProgramFilters__search-input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--william-mary-silver-600, #D0D3D4);
  background: #FFF;
  padding-right: 36px;
  color: var(--black-soft);
}
.ProgramFilters__search-input::placeholder {
  color: var(--silver-900);
}
.ProgramFilters__search-input:focus {
    outline: 1px solid var(--wm-green);
}
.submitted .ProgramFilters__search-input {
  background: #E8EAE9;
}

.ProgramFilters__search-submit {
  background: transparent;
  position: absolute;
  color: var(--black-soft);
  top: 1px;
  right: 1px;
  margin: 0;
  padding: 0 !important;
  min-height: 0;
  height: calc(100% - 2px);
  border: 0;
  border-radius: 4px;
  font-weight: 400;
  font-size: .875rem;
  width: 35px;
  transition: color .3s ease;
}
.ProgramFilters__search-submit[disabled] {
    color: #ADB0AF;
    cursor: default;
}
.ProgramFilters__search-submit:hover, .ProgramFilters__search-submit:focus {
    background: transparent;
}
.ProgramFilters__search-submit:not([disabled]):hover, .ProgramFilters__search-submit:not([disabled]):focus {
    color: #000 !important;
}

.ProgramFilters__search-form.submitted .ProgramFilters__search-submit:hover,
.ProgramFilters__search-form.submitted .ProgramFilters__search-submit:focus {
    background: #E8EAE9;
    z-index: 3;
}
.ProgramFilters__search-form.submitted:not(.hanging):not(:focus-within) .ProgramFilters__search-input {
  color: #535455;
}
.ProgramFilters__search-clear {
    background: #E8EAE9;
    position: absolute;
    color: #535455;
    top: 1px;
    right: 1px;
    margin: 0;
    padding: 0 !important;
    min-height: 0;
    height: calc(100% - 2px);
    border: 0;
    border-radius: 4px;
    font-weight: 400;
    font-size: .875rem;
    width: 35px;
    display: none;
    z-index: 2;
}
.ProgramFilters__search-form:focus-within .ProgramFilters__search-clear,
.ProgramFilters__search-clear:hover,
.ProgramFilters__search-clear:focus {
    background: #E8EAE9;
    color: #000;
}
.ProgramFilters__search-form.submitted:not(.hanging) .ProgramFilters__search-clear {
    display: block;
}


/* Degree Buttons ------------- */

.ProgramFilters__degrees {
    display: flex;
    flex-wrap: nowrap;
    gap: 11px;
    margin: 11px 22px;
}
@media(min-width: 700px) {
    .ProgramFilters__degrees {
        margin: 11px 44px;
    }
}
@media(min-width: 930px) {
    .ProgramFilters__degrees {
        margin: 11px 16px;
    }
}
.ProgramFilters__degrees button,
.user_content .ProgramFilters__degrees button {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #D8DCDB;
    margin: 0;
    padding: 13px 11px 11px;
    color: var(--silver-900);
    text-align: center;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    width: 50%;
    display: flex;
    gap: 4px;
    justify-content: center;
    transition: all .1s ease;
}
.ProgramFilters__degrees button:hover,
.ProgramFilters__degrees button:focus {
    border: 1px solid var(--william-mary-green-600, #115740);
}
.user_content .ProgramFilters__degrees button.selected {
    border: 1px solid var(--william-mary-green-600, #115740);
    background: var(--william-mary-green-600, #115740);
    color: #fff;
}
.user_content .ProgramFilters__degrees button .check {
    display: none;
}
.user_content .ProgramFilters__degrees button.selected .check {
    display: block;
}


/* ============== FLYOUT ================================= */
.ProgramFlyout {
    position: fixed;
    overflow-y: auto;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100%;
    max-width: min(1080px, calc(100% - 24px));
    transition: all .3s ease;
    transform: translateX(0);
    visibility: hidden;
    background: #fff;
    z-index: 200;
    cursor: auto;
}
.ProgramFlyout a:not(.ProgramFlyout__banner-link):focus-visible {
    transition: none;
    text-decoration: none;
}
.ProgramFlyout__banner {
  margin: 0 auto;
  position: relative;
  min-height: 166px;
  display: flex;
  background: #000;
}
@media (min-width: 650px) {
    .ProgramFlyout__banner {
      min-height: 192px;
    }
}
@media (min-width: 900px) {
    .ProgramFlyout__banner {
      min-height: 208px;
    }
}
.ProgramFlyout__bannerimage {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: grayscale(100%);
  opacity: 0;
  transition: opacity .5s ease;
}
.ProgramFlyout__bannerimage.visible {
    opacity: 1;
}
.ProgramFlyout__gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(87deg, rgba(120, 157, 74, 0.00) 0%, rgba(120, 157, 74, 0.30) 100%), 
        linear-gradient(0deg, rgba(24, 48, 40, 0.90) 0%, rgba(24, 48, 40, 0.00) 100%), 
        linear-gradient(90deg, #115740 25%, rgba(17, 87, 64, 0.00) 100%), 
        linear-gradient(0deg, rgba(17, 87, 64, 0.50) 0%, rgba(17, 87, 64, 0.50) 100%); /* default = green gradient */
}
.ProgramFlyout__gradient.as {
    background: linear-gradient(87deg, rgba(120, 157, 74, 0.00) 0%, rgba(120, 157, 74, 0.30) 100%), 
        linear-gradient(0deg, rgba(24, 48, 40, 0.90) 0%, rgba(24, 48, 40, 0.00) 100%), 
        linear-gradient(90deg, #115740 25%, rgba(17, 87, 64, 0.00) 100%), 
        linear-gradient(0deg, rgba(17, 87, 64, 0.50) 0%, rgba(17, 87, 64, 0.50) 100%);
}
.ProgramFlyout__gradient.general {
    background: linear-gradient(87deg, rgba(240, 179, 35, 0.00) 0%, rgba(253, 183, 20, 0.30) 100%), 
        linear-gradient(0deg, #493A23 0%, rgba(72, 56, 30, 0.00) 100%), 
        linear-gradient(90deg, #B79257 25%, rgba(179, 141, 76, 0.00) 100%), 
        linear-gradient(0deg, rgba(179, 141, 76, 0.50) 0%, rgba(179, 141, 76, 0.50) 100%);
}
.ProgramFlyout__gradient.cdsp {
    background: linear-gradient(87deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.30) 100%), 
        linear-gradient(0deg, var(--black-soft) 0%, rgba(40, 38, 38, 0.00) 100%), 
        linear-gradient(90deg, #999F9D 25%, rgba(166, 169, 170, 0.00) 100%), 
        linear-gradient(0deg, rgba(166, 169, 170, 0.50) 0%, rgba(166, 169, 170, 0.50) 100%);
}
.ProgramFlyout__gradient.law {
    background: linear-gradient(87deg, rgba(171, 110, 95, 0.00) 0%, rgba(171, 110, 95, 0.30) 100%), 
        linear-gradient(0deg, rgba(60, 30, 22, 0.90) 0%, rgba(60, 30, 22, 0.00) 100%), 
        linear-gradient(90deg, #964A37 25%, rgba(150, 74, 55, 0.00) 100%), 
        linear-gradient(0deg, rgba(150, 74, 55, 0.50) 0%, rgba(150, 74, 55, 0.50) 100%);
}
.ProgramFlyout__gradient.education {
    background: linear-gradient(87deg, rgba(174, 196, 146, 0.00) 0%, rgba(174, 196, 146, 0.30) 100%), 
        linear-gradient(0deg, rgba(48, 63, 30, 0.90) 0%, rgba(48, 63, 30, 0.00) 100%), 
        linear-gradient(90deg, #789D4A 25%, rgba(120, 157, 74, 0.00) 100%), 
        linear-gradient(0deg, rgba(120, 157, 74, 0.50) 0%, rgba(120, 157, 74, 0.50) 100%);
}
.ProgramFlyout__gradient.marine-science {
    background: linear-gradient(87deg, rgba(80, 149, 163, 0.00) 0%, rgba(80, 149, 163, 0.30) 100%), 
        linear-gradient(0deg, rgba(14, 49, 56, 0.90) 0%, rgba(14, 49, 56, 0.00) 100%), 
        linear-gradient(90deg, #247B8C 25%, rgba(36, 122, 140, 0.00) 100%), 
        linear-gradient(0deg, rgba(36, 122, 140, 0.50) 0%, rgba(36, 122, 140, 0.50) 100%);
}
.ProgramFlyout__gradient.business {
    background: linear-gradient(87deg, rgba(180, 236, 182, 0.00) 0%, rgba(184, 221, 177, 0.30) 100%), 
        linear-gradient(0deg, rgba(47, 64, 58, 0.90) 0%, rgba(47, 64, 58, 0.00) 100%), 
        linear-gradient(90deg, #5E8173 25%, rgba(94, 129, 116, 0.00) 100%), 
        linear-gradient(0deg, rgba(94, 129, 116, 0.50) 0%, rgba(94, 129, 116, 0.50) 100%);
}
.ProgramFlyout__gradient::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient( 90deg, #6E5834, #C5A879, #6E5834);
  z-index: 3;
}
.ProgramFlyout__banner-container {
  display: flex;
  margin: 26px 22px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 11px;
  z-index: 4;
}
@media (min-width: 900px) {
    .ProgramFlyout__banner-container {
        margin: 26px 44px;
    }
}
.ProgramFlyout__banner-title {
color: #fff;
  font-family: "Noto Serif", adelle, serif;
  font-size: min(2.5rem, calc(2.75vw + 1.25rem));
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.ProgramFlyout__banner-link {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  font-size: .875rem;
  font-weight: 400;
  line-height:1.14;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  text-decoration-color: transparent;
  padding: 11px 11px 11px 0;
}

.as ~ .ProgramFlyout__banner-container .ProgramFlyout__banner-link,
.law ~ .ProgramFlyout__banner-container .ProgramFlyout__banner-link {
    color: rgba(255, 255, 255, 0.7);
}
.general ~ .ProgramFlyout__banner-container .ProgramFlyout__banner-link,
.education ~ .ProgramFlyout__banner-container .ProgramFlyout__banner-link,
.cdsp ~ .ProgramFlyout__banner-container .ProgramFlyout__banner-link {
    color: rgba(255, 255, 255, 1);
}
.marine-science ~ .ProgramFlyout__banner-container .ProgramFlyout__banner-link {
    color: rgba(255, 255, 255, 0.8);
}
.business ~ .ProgramFlyout__banner-container .ProgramFlyout__banner-link {
    color: rgba(255, 255, 255, 0.86);
}

.ProgramFlyout__banner-link:focus {
  text-decoration-color: transparent;
}
body:not(.init) .ProgramFlyout__banner-link:focus-visible {
    text-decoration-color: transparent;
    transition: none; 
}
body.init .ProgramFlyout__banner-link:focus-visible {
    text-decoration-color: transparent;
    transition: none; 
    outline: none;
}
.ProgramFlyout__banner-link:hover,
body:not(.init) .ProgramFlyout__banner-link:focus-visible {
  text-decoration-color: #fff;
  color: rgba(255, 255, 255, 1) !important;
}

.ProgramFlyout__banner-link i {
  color: rgba(255, 255, 255, 0.5);
  font-size: .75rem;
  font-weight: 900;
  line-height: 1;
  transition: color 0.35s ease-in-out;
  padding-right: 5px;
  transform: translateY(-1px);
}
.ProgramFlyout__banner-link:hover i,
body:not(.init) .ProgramFlyout__banner-link:focus-visible i {
    color: var(--color-wmgold-55);
}
body.init .ProgramFlyout__banner-link:focus-visible i {
    color: rgba(255, 255, 255, 0.5);
}
.ProgramFlyout__wrapper {
  display: grid;
  gap: 33px 0;
}
.ProgramFlyout__container {
  display: flex;
  width: 100%;
  padding: 44px;
  gap: 33px;
  align-items: center;
  flex-direction: column;
}.
.ProgramFlyout__intro-text {
  color: #000;
  font-size: .875rem;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  order: 0;
  padding: 22px 22px 0 22px; 
}
.ProgramFlyout__intro-text p {
  margin: 0 0 1rem;
}
.ProgramFlyout__intro-text p:last-of-type {
  margin: 0;
}
.ProgramFlyout__content {
  display: flex;
  background: #f8f5ef;
  padding: 33px 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  align-self: start;
  order: 2;
}
@media  (min-width: 650px) {
    .ProgramFlyout__content {
        border-radius: 11px;
    }
}
.ProgramFlyout__title {
  color: var(--wm-green);
  text-align: center;
  font-family: adelle, serif;
  font-weight: 400;
  line-height: 1.22;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: .5rem;
}

.ProgramFlyout__lists {
    width: 100%;
}
.ProgramFlyout__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  align-self: stretch;
}
.ProgramFlyout__highlight-title {
  display: flex;
  gap: 14px;
  align-items: center;
}
.ProgramFlyout__highlight-title i {
  color: var(--color-wmgold-55);
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 16px;
}
.ProgramFlyout__highlight-title h3 {
  color: var(--gold-775);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: 0;
  margin: 0;
}
.ProgramFlyout__highlight-text {
  color: var(--black-soft);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 28px;
  text-align: left;
}
.ProgramFlyout__highlight-text p {
    margin: 0 0 1.2 0;
}
.ProgramFlyout__highlight-text p:last-of-type {
    margin: 0;
}
.ProgramFlyout__paths {
  display: flex;
  padding: 0 22px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  order: 1;
}
.ProgramFlyout__panel {
  display: flex;
  padding: 16px 22px 22px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 11px;
  border-top: 11px solid #B79257;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  min-width: 100%;
  width: 100%;
}
@media (min-width: 500px) {
  .ProgramFlyout__panel {
    width: 322px;   
  }
}
.ProgramFlyout__school-wrapper,
.ProgramFlyout__paths-wrapper {
    width: 100%;
}
.ProgramFlyout__school-wrapper {
  border-bottom: 1px solid #e3e5e5;
  margin-bottom: 12px;
  padding-bottom: 6px;
}
.ProgramFlyout__school {
  position: relative;
  display: flex;
  padding: 6px 0;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  text-underline-offset: 2px;
  color: var(--wm-green);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  letter-spacing: 1.5px;
  position: relative;
  transition: all .3s ease;
}
.ProgramFlyout__school span {
    max-width: calc(100% - 30px);
}
.ProgramFlyout__school::after {
  position: absolute;
  content: "\f054";
  right: 0;
  transition: all .35s ease-in-out;
  background: transparent;
  left: auto;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  transform: translateY(-50%);
  color: #c7ac7c;
  font-size: .875rem;
  font-weight: 900;
  transition: all 0.35s ease-in-out;
}
.ProgramFlyout__school:hover {
    text-decoration-color: #483c24 !important;
}
.ProgramFlyout__school:hover::after {
    color:#483c24;
}
.ProgramFlyout__paths-title {
  color: var(--silver-900);
  font-family: adelle-sans, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 11px 0;
  padding-top: 6px;
}
.ProgramFlyout__paths-wrapper {
    margin: 0;
    padding: 0 0 0 1em;
}
.ProgramFlyout__path {
  color: var(--black-soft);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.59;
  text-align: left;
  list-style: disc;
}
.ProgramFlyout__path::marker {
  font-size: .9em;
  color: var(--black-softer);
}
.ProgramFlyout__buttons {
  display: flex;
  padding-top: 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  align-self: stretch;
  border-top: 1px solid #e3e5e5;
  margin-top: 12px;
}
.ProgramFlyout__button {
  padding: 12px 22px;
  border-radius: 4px;
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  width: 100%;
  font-size: .885rem; /* .875rem */
  font-weight: 400;
  line-height: 1.22;
  text-decoration: none;
}
.ProgramFlyout__button.general {
  background: var(--gold-775);
  color: #fff;
}
.ProgramFlyout__button.general:hover,
.ProgramFlyout__button.general:focus {
  background: #6f5b37;
  text-decoration: none;
}
.ProgramFlyout__button.contact {
  background: #f0f1f2;
  color: var(--black-soft);
}
.ProgramFlyout__button.contact:hover,
.ProgramFlyout__button.contact:focus {
  background: #d9dcdd;
  text-decoration: none;
}
.ProgramFlyout__related-tags {
  display: flex;
  padding: 33px 22px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  order: 3;
}
.ProgramFlyout__related-tags.--mobile {
    padding: 0 22px 44px;
}
.ProgramFlyout__related-tags.--desktop {
    display: none;
}
@media  (min-width: 650px) {
    .ProgramFlyout__related-tags.--mobile {
        padding: 33px 0 22px 0;
    }
}
@media  (min-width: 900px) {
    .ProgramFlyout__related-tags.--mobile {
        display: none;
    }
    .ProgramFlyout__related-tags.--desktop {
        display: flex;
    }
}
.ProgramFlyout__related-tags-title {
  color: var(--silver-900);
  font-size: 0.765rem;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ProgramFlyout__related-tags-list {
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6px 3px;
  flex-wrap: wrap;
}
a.ProgramFlyout__related-tag {
  color: var(--silver-900);
  font-size: .75rem;
  font-weight: 500;
  line-height: 14px;
}
a.ProgramFlyout__related-tag:hover,
a.ProgramFlyout__related-tag:focus {
  color: var(--black-soft);
  text-decoration-color: var(--black-soft);
}
a.ProgramFlyout__related-tag::after {
  color: #828483;
  content: "\00B7";
  position: relative;
  margin: 0 0 0 3px;
  display: inline-block;
  font-weight: 900;
}
a.ProgramFlyout__related-tag:last-child::after {
  content: "";
}
.ProgramFlyout__intro-text {
    font-size: 1.02rem;
    padding: 22px 22px 0;
    color: var(--black-soft);
  }

@media (min-width: 650px) {
  .ProgramFlyout__wrapper {
    gap: 0 33px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "intro paths"
      "programs programs"
      "tags tags";
    padding: 44px 33px;
  }
  .ProgramFlyout__intro-text {
    grid-area: intro;
    order: initial;
    padding: 0 0 44px 0;
  }
  .ProgramFlyout__paths {
    grid-area: paths;
    padding: 0 0 22px;
    order: initial;
  }
  .ProgramFlyout__content {
    grid-area: programs;
    padding: 22px 33px 33px;
    order: initial;
    margin-top: 22px;
  }
  .ProgramFlyout__title {
    font-size: 2.25rem;
  }
  .ProgramFlyout__related-tags {
    grid-area: tags;
    padding: 11px 0 22px 0;
    order: initial;
  }
}

@media (min-width: 900px) {
  .ProgramFlyout__wrapper {
    gap: 0 44px;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "intro sidebar"
      "programs sidebar";
    padding: 44px;
  }

  .ProgramFlyout__intro-text {
    grid-area: intro;
    padding: 0 0 33px 0;
  }
  .ProgramFlyout__content {
    grid-area: programs;
    margin-top: 0;
  }
  .ProgramFlyout__sidebar {
    grid-area: sidebar;
    position: sticky;
    top: 22px;
    align-self: start;
  }
  .ProgramFlyout__paths {
    padding: 0 0 22px;
  }
  .ProgramFlyout__related-tags {
    margin-top: 0;
  }
  .ProgramFlyout__related-tags-list {
    max-width: 300px;
  }
}


/* =================== PRINT STYLES ==================== */
@media print {
    .fullPage .content_wrapper {
        max-width: none !important;
    }
    .ProgramFilters__wrapper,
    .ProgramFilters__mobiletoggle,
    .ProgramFlyout__banner-link  {
    	display: none !important;
    }
    .programTable tr.programTable__header-row {
        position: static !important;
    }
    .programTable td, .user_content .programTable td {
      padding: 11px 0 !important;
    }
    .user_content {
    	padding: 0 !important;
    }
    .js-openProgramFlyout #main_content {
     	display: none !important;
    }
    .ProgramFlyout {
    	position: relative !important;
    	max-width: none !important;
    }
    .ProgramFlyout__panel {
        border: 1px solid #000 !important;
    }
    .ProgramFlyout__button {
        border: none !important;
        background: none !important;
        padding: 0;
        text-align: left;
    }
    body.js-openProgramFlyout {
      overflow: auto !important;
    }
    .ProgramFlyout__banner {
        min-height: 0 !important;
    }
    .ProgramFlyout__banner img {
        display: none !important;
    }
    .ProgramFlyout__banner-container {
        flex-direction: column;  
        margin: 0 !important;
    }
    .ProgramFlyout__banner-title {
        color: #000 !important;
        background: #fff !important;
        padding: 11px 11px 0 0 !important;
        max-width: 75vw;
    }
    .ProgramFlyout__gradient {
        display: none !important;
    }
    .ProgramFlyout__wrapper {
        padding: 44px 0 !important;
    }
    .ProgramFlyout__content {
        padding: 22px 0 !important;
    }
    
}
