/**
 * Oberlin Pattern Library Styles - Extra Styles
 *
 * NOTE: this is for extra styles originally added directly to the D7 theme,
 * that are still necessary for the D10 theme. Over time these "hacks" should
 * be relocated to components or integrated more cleanly into the main library.
 * But for now, this brute-force additional file is fine.
 */
.get-involved-image {
  float: right;
  margin: 0 0 0.5rem 0.5rem;
}

.get-involved-image img {
  border-radius: 50%;
}

.cta-menu#globalMenuPanelCtaMenu {
  display: block;
}

@media screen and (min-width: 830px) {
  .cta-menu#globalMenuPanelCtaMenu {
    display: none;
  }
}

#globalMenuPanel .cta-menu ul {
  flex-flow: row wrap;
  margin-left: 1.5rem;
  gap: 1rem;
}

#globalMenuPanel .cta-menu ul li {
  margin-right: 2rem;
}

#globalMenuPanel .cta-menu a {
  color: var(--lightred);
}

#news-quick-menu {
  margin-bottom: 1.5rem;
}

.page-content-wrapper--basic {
  margin-bottom: 6rem;
}

.page-node-type-landing-page .page-content-wrapper--basic {
  margin-bottom: 0;
}

.page-content-wrapper--basic .dept2021,
.page-node-type-office .large-image-feature:last-child {
  margin-bottom: -6rem;
}

.node-type-department .body-with-sidebar-layout__sidebar > .subsite-menu {
  margin-top: 0.375rem;
}

@media screen and (max-width: 768px) {
  .biography-grid .no-photo-available-box {
    display: none;
  }
}

summary .fa {
  display: inline;
}

.node-news .contrast-band.contrast-band--mild-contrast .top-combo .header-tag,
.node-news .contrast-band.contrast-band--mild-contrast .top-combo .item-date,
.node-news .contrast-band.contrast-band--mild-contrast .top-combo .figure__credit,
.node-news .contrast-band.contrast-band--mild-contrast .top-combo .attribution {
  color: var(--almostblack);
}

.view-display-id-college_aos_listing_block .card.card--term[data-offering-filter="false"], .view-display-id-college_aos_listing_block .card.card--term[data-name-filter="false"] {
  display: none;
}

#dept2021-profiles:last-child {
  margin-bottom: 4rem;
}

.contrast-band--mild-contrast .button--red {
  color: var(--white);
}

.biography-grid-item__content > .labelled-items {
  margin: 0;
}

.parking-info {
  margin-top: 1rem;
}

.parking-info p {
  margin-block: 0.375rem;
}

.icon-text ul {
  font-size: inherit;
}

.node-program .icon-text p {
  margin: 0;
}

ul.program-facts > li {
  font-size: 0.875rem;
}

ul.program-facts > li ul {
  font-size: inherit;
}

/*
 * _modals.scss
 * ARIA accessible modals
 * See jquery.modals.js
 */
.modal-overlay,
.narrow-modal-overlay {
  animation: fadeIn 500ms ease 0s 1 normal;
  background: rgba(0, 0, 0, 0.75);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.modal,
.modal--reverse,
.narrow-modal,
.narrow-modal--reverse {
  animation: fadeIn 500ms ease 0s 1 normal;
  background: #fff;
  border: none;
  left: 0;
  margin: 0 auto;
  max-height: 90vh;
  max-width: 90%;
  overflow: auto;
  padding: 0;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 840px;
  z-index: 1001;
}

.narrow-modal,
.narrow-modal--reverse {
  width: 640px;
}

.modal--reverse,
.modal--reverse + .modal-overlay,
.narrow-modal--reverse,
.narrow-modal--reverse + .narrow-modal-overlay {
  animation: fadeOut 500ms ease 25ms 1 normal;
}

.fullscreen-modal,
.fullscreen-modal--reverse,
.fullscreen-video-modal,
.fullscreen-video-modal--reverse {
  align-items: center;
  animation: fadeIn 500ms ease 0s 1 normal;
  background: #000;
  border: none;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  justify-content: center;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.fullscreen-modal--reverse,
.fullscreen-video-modal--reverse {
  animation: fadeOut 500ms ease 25ms 1 normal;
}

.fullscreen-modal-overlay,
.fullscreen-video-modal-overlay {
  display: none;
}

.modal-close,
.narrow-modal-close,
.fullscreen-modal-close,
.fullscreen-video-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  line-height: 1;
  position: absolute;
  right: 1.25rem;
  text-align: center;
  text-decoration: none;
  top: 2.5rem;
  z-index: 667;
  padding: 8px;
}

.modal-close:before,
.narrow-modal-close:before,
.fullscreen-modal-close:before,
.fullscreen-video-modal-close:before {
  content: var(--fa-xmark);
  display: inline-block;
  font-family: var(--fa-stack);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transform: scale(1);
  transition: transform 0.125s ease-out, color 0.125s ease-out;
}

.modal-close:focus,
.narrow-modal-close:focus,
.fullscreen-modal-close:focus,
.fullscreen-video-modal-close:focus {
  outline: thin dotted;
  background: transparent;
  color: var(--darkred);
  outline-offset: -2px;
}

.modal-close:hover,
.narrow-modal-close:hover,
.fullscreen-modal-close:hover,
.fullscreen-video-modal-close:hover {
  background: transparent;
}

.modal-close:hover:before,
.narrow-modal-close:hover:before,
.fullscreen-modal-close:hover:before,
.fullscreen-video-modal-close:hover:before {
  color: var(--darkred);
  transform: scale(1.35);
}

.modal-close,
.narrow-modal-close {
  color: #000;
}

.fullscreen-video-modal__wrapper {
  width: 100%;
}

.logged-in .fullscreen-modal-close,
.logged-in .fullscreen-video-modal-close {
  top: 2rem;
}

.modal-close,
.narrow-modal-close,
.fullscreen-modal-close,
.fullscreen-video-modal-close {
  background: transparent;
  border: none;
  color: var(--darkgray);
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  text-decoration: none;
  z-index: 667;
  padding: 8px;
}

#modal-main-search,
#modal-apply {
  display: none;
}

#modal-apply__content {
  background: radial-gradient(ellipse at 50% 40%, var(--lightred), var(--darkred));
  overflow: hidden;
  padding: 2rem 3rem 2rem 2rem;
  width: calc(100% - 5rem - 2px);
  border: 1px solid white;
  gap: 4rem;
}

@media screen and (min-width: 641px) {
  #modal-apply__content {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: normal;
  }
}

#modal-apply__content .h1 {
  color: var(--white);
}

@media screen and (min-width: 641px) {
  #modal-apply__content .h1-wrapper {
    position: relative;
    margin: 0 1rem 0 1rem;
    writing-mode: vertical-lr;
  }
  #modal-apply__content .h1 {
    margin: 0;
    transform-origin: center center;
    transform: rotate(180deg);
  }
}

#modal-apply__content p {
  color: var(--white);
}

.modal-close[data-content-back-id="modal-apply"] {
  color: var(--white);
}

.modal-close[data-content-back-id="modal-apply"]:hover:before {
  color: var(--white);
}

/**
 * _blogs.scss
 */
.padded-row .view-blog-article-listing.row {
  width: auto;
}

.view-id-blog_article_listing h2.h3 {
  margin-bottom: 2rem;
}

.header-blogger-detail .blog__category,
.header-blog-detail .blog__category {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.blog__category {
  color: #fff;
}

.blog__category + h1 {
  margin-top: 0;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .blog__category + h1 {
    font-size: 3rem;
  }
}

.blog__filters .bef-select-as-links {
  border-bottom: 1px solid var(--mediumgray);
  width: 100%;
}

.blog__filters .bef-select-as-links ul {
  list-style: none;
  padding: 0;
}

.blog__filters .bef-select-as-links ul ul {
  padding-inline-start: 1rem;
}

.blog__filters form {
  margin-bottom: 0;
}

.blog__filters .form-item .form-item {
  display: block;
}

.blog__filters .form-item .form-item + .form-item {
  margin-left: 0;
}

.blog__filters .views-widget-filter-field_blog_tags_tid label,
.blog__filters .views-widget-filter-body_value label {
  display: none;
}

@media screen and (max-width: 480px) {
  .blog__filters .views-widget-filter-field_blog_tags_tid label {
    display: block;
    cursor: pointer;
    color: var(--darkred);
    font-weight: 600;
  }
  .blog__filters .views-widget-filter-field_blog_tags_tid label:after {
    content: '\0020\f0d7';
    font-family: "FontAwesome";
    font-weight: normal;
  }
  .blog__filters .views-widget-filter-field_blog_tags_tid label.engaged:after {
    content: '\0020\f0d8';
  }
  .blog__filters .views-widget-filter-field_blog_tags_tid .views-widget {
    overflow: hidden;
    max-height: 0;
    padding-top: 0.5em;
  }
  .blog__filters .views-widget-filter-field_blog_tags_tid .views-widget.engaged {
    max-height: 800px;
  }
}

.blog--listing .blogger__name-year {
  font-weight: 600;
}

.form-type-bef-link {
  line-height: 1;
}

h3#blog-article-listing-filter-title {
  display: inline;
}

@media (max-width: 1260px) {
  .header-blog-detail .padded-row,
  .node-blog-article .padded-row {
    padding-left: 70px;
  }
}

.exposed-blog-tag {
  line-height: 20px;
  margin: 1rem 0;
}

.exposed-blog-tag a {
  display: inline-block;
}

.exposed-blog-tag a.active {
  pointer-events: none;
  cursor: default;
  color: #000;
}

.exposed-blog-tag.parent {
  border-top: 1px dotted #000;
  padding-top: 1rem;
  text-transform: uppercase;
}

.exposed-blog-tag.parent a {
  font-size: 14px;
}

.exposed-blog-tag.parent:first-child {
  border: 0;
  padding-top: 0;
}

.bef-select-as-links .children {
  margin: 0;
  padding: 0 0 0 1rem;
}

.bef-select-as-links .children .exposed-blog-tag:first-child {
  margin-top: 0;
}

.bef-select-as-links .children .exposed-blog-tag:last-child {
  margin-bottom: 0;
}

.page-comment .comment-form {
  max-width: 54.375rem;
  width: calc(100% - 1rem);
  margin: 0 auto 2.5rem;
}

.page-comment .node-blog-article,
.page-comment .sharethis-buttons {
  display: none;
}

.blog__filters .views-exposed-form {
  border: 0;
  padding: 0;
}

.blog__filters .views-widget {
  margin-right: 0;
  width: 100%;
}

.blog__filters a {
  text-decoration: none;
}

.blog__filters .exposed-blog-tag {
  cursor: pointer;
}

.view-blog-article-listing.body-with-sidebar-layout .body-with-sidebar-layout__sidebar .sidebar-block, .view-blog-article-listing.body-with-sidebar-layout .body-with-sidebar-layout__sidebar .block {
  border: 1px dotted var(--yellow);
  padding: 1rem;
}

#blog-article-listing-filtered-by-block {
  border: 1px dotted var(--yellow);
  padding: 1rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: normal;
  margin-bottom: 2rem;
}

#blog-article-listing-filter-title {
  flex-grow: 1;
  margin: 0;
}

.blog__filters .bef-select-as-links .children {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  padding-block-start: 0;
  transition: max-height 0.5s ease, padding-block-start .5s ease, visibility 0.5s ease;
}

.blog__filters .bef-select-as-links .children.open {
  max-height: 500px;
  padding-block-start: rem(16px);
  visibility: visible;
}

.exposed-blog-tag.parent {
  font-weight: bold;
}

.exposed-blog-tag.parent .children {
  text-transform: none;
  font-weight: normal;
}

/**
 * _calendar.scss
 */
.calendar-empty {
  display: none;
}

.view-event-calendar {
  border: 1px solid var(--yellow);
  margin-bottom: 2rem;
}

.view-event-calendar table {
  margin-bottom: 0;
}

.view-event-calendar .view-header {
  border-bottom: 1px solid #ccc;
}

.view-event-calendar .view-header .date-nav {
  position: relative;
}

.view-event-calendar .view-header h3 {
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 1rem 0 0.25rem;
}

.view-event-calendar .view-header .pager {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0.75rem 0;
}

.view-event-calendar .view-header .pager li {
  position: absolute;
  display: inline-block;
  margin: 0 0.5rem;
}

.view-event-calendar .view-header .pager li.date-prev {
  left: 0;
  top: 0;
}

.view-event-calendar .view-header .pager li.date-next {
  right: 0;
  top: 0;
}

.view-event-calendar .view-header .date-prev,
.view-event-calendar .view-header .date-next {
  width: 1.3rem;
  overflow: hidden;
}

.view-event-calendar .view-header .date-prev a,
.view-event-calendar .view-header .date-next a {
  font-family: var(--fa-stack);
  font-weight: 900;
  line-height: 1.1;
}

.view-event-calendar .view-header .date-prev a:before,
.view-event-calendar .view-header .date-next a:before {
  content: var(--fa-circle-arrow-left) var(--space-char);
  color: var(--darkerblue);
  font-family: var(--fa-stack);
}

.view-event-calendar .view-header .date-prev a:hover,
.view-event-calendar .view-header .date-next a:hover {
  color: #004485;
  text-decoration: none;
  font-family: var(--fa-stack);
}

.view-event-calendar .view-header .date-next a:before {
  content: var(--fa-circle-arrow-right) var(--space-char);
}

.calendar-calendar {
  max-width: 100%;
  line-height: 1;
}

.calendar-calendar table {
  width: 100%;
  margin-top: 0;
}

.calendar-calendar thead {
  background: none;
  display: block;
  padding: 0 0.625rem;
  border: none;
}

.calendar-calendar th {
  padding: 1rem 0.25rem 0.625rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  color: #000;
  font-weight: 700;
  width: 100%;
  display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .calendar-calendar th {
    font-size: 0.625rem;
    padding: 1rem 0 0.625rem;
  }
}

.calendar-calendar tbody {
  display: block;
  border: none;
  padding: 0.625rem;
  font-family: var(--gotham-stack);
}

.calendar-calendar tr {
  border-bottom: none;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 30px;
}

.calendar-calendar td {
  padding: 0 0 0.5rem;
  text-align: center;
  border-right: none;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--darkgray);
  width: 100%;
  display: block;
}

.calendar-calendar .today .month,
.calendar-calendar .mini__selected-day .month {
  background-color: unset;
  color: #707070;
  display: inline-block;
  height: 1.625rem;
  line-height: 1.7;
  text-decoration: none;
  width: 1.75rem;
  padding-top: 0.0625rem;
  border: 1px solid var(--darkgray);
}

.calendar-calendar .today.has-events .month,
.calendar-calendar .mini__selected-day.has-events .month {
  background: #ebebeb;
}

.calendar-calendar .today.has-events .month a,
.calendar-calendar .mini__selected-day.has-events .month a {
  color: var(--darkerblue);
  background: none;
  padding: 0;
  width: auto;
}

.calendar-calendar .mini__selected-day .month {
  border-radius: 50%;
  border: 1px solid var(--darkred);
}

.calendar-calendar td.has-events a {
  background-color: #ebebeb;
  border-radius: 50%;
  display: inline-block;
  height: 1.625rem;
  line-height: 1.75;
  text-decoration: none;
  width: 1.75rem;
  padding-top: 0.125rem;
  color: var(--darkerblue);
}

.view-id-event_calendar.view-display-id-event_calendar_block .days {
  color: var(--darkgray);
  font-family: var(--gotham-stack);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  font-size: 0.75rem;
}

@media (var(--mq-1025-up)) {
  .view-id-event_calendar.view-display-id-event_calendar_block .days {
    font-size: 1rem;
  }
}

.view-event-calendar thead, .view-event-calendar tr th {
  background-color: initial;
}

.view-event-calendar th, .view-event-calendar td {
  border: initial;
}

.view-event-calendar .view-header h3 {
  padding: 0;
}

.view-event-calendar .view-header .date-nav-wrapper {
  position: relative;
  width: 100%;
  height: 40px;
  display: block;
}

.view-event-calendar .view-header .pager li.pager__item--current {
  width: auto;
  top: 0;
  margin-top: 2px;
}

.calendar-calendar .mini td {
  padding: 0 0 0.5rem;
}

.calendar-calendar td.has-events a {
  font-weight: bold;
}

.view-id-event_calendar.view-display-id-event_calendar_block .days {
  background-color: transparent;
  border: none;
  padding: 1rem 0 0;
}

.calendar-calendar tr td.today {
  background-color: transparent;
}

.calendar-calendar .past-month .mini-day-off,
.calendar-calendar .future-month .mini-day-off {
  display: none;
}

/**
 * _social-feature.scss
 */
.section--social-feature__description {
  margin-bottom: 1.875rem;
  max-width: 960px;
}

.section--social-feature__link {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section--social-feature__link .item-list--linkicon ul.linkicon--inline li {
  margin-bottom: 0;
}

.section--social-feature__link .item-list--linkicon .linkicon .icon:before {
  font-size: 2.25rem;
  width: auto;
  height: auto;
}

.section--social-feature__link .item-list--linkicon .linkicon .icon.fa-soundcloud:before {
  font-size: 1.5rem;
}

.section--social-feature__link .linkicon .icon::before {
  padding: 5px 10px 5px 0;
}

.section--social-feature__link .linkicon .icon.fa-soundcloud:before {
  padding: 5px 11px 5px 0;
}

.section--social-feature__container {
  margin-bottom: 1.875rem;
  flex-wrap: wrap;
}

.fa-twitter-square {
  color: #54adf1;
}

.fa-soundcloud {
  color: #ff5500;
}

.fa-soundcloud:before {
  font-size: 16px;
}

.fa-linkedin-square {
  color: #1a84bc;
}

.fa-facebook-square {
  color: #3b5997;
}

.fa-pinterest-square {
  color: #cd1f21;
}

.fa-tumblr-square {
  color: #324f6d;
}

.fa-instagram {
  color: #000;
}

.fa-youtube-square {
  color: #C52F30;
}

.fa-flickr {
  color: #FF0084;
}

.fa-vimeo-square {
  color: #1ab7ea;
}

.fa-snapchat-square {
  color: #FFFC00;
}

/**
 * _video.scss
 */
.video_overlay_iframe {
  border: 0;
}

.node-type-news .top-combo__figure img {
  animation: fadeIn 0.75s ease-in-out 0.25s both;
}

.node-type-news .top-combo__figure figcaption {
  animation: fadeIn 0.5s ease-in-out 0.75s both;
}

@media screen and (min-width: 1025px) {
  .view-display-id-news_entity_view[data-io-animate] .vertical-listing-item img {
    animation: 0.75s ease-in-out 0.25s both fadeIn;
  }
  .view-display-id-news_entity_view[data-io-animate] .vertical-listing-item:nth-child(2) img {
    animation-delay: 0.75s;
  }
  .view-display-id-news_entity_view[data-io-animate] .vertical-listing-item:nth-child(3) img {
    animation-delay: 1.25s;
  }
}

.department-contact-block {
  margin: 1rem 0;
}

.department-contact-block .list--clean,
.department-contact-block p {
  margin: 0;
}

.department-contact-block__person {
  margin: 0 0 1rem 0;
}

.department-room-block__room {
  padding-left: 1.75rem;
  font-family: var(--gotham-stack);
  font-size: 0.875rem;
}

.department-contact-details-altogether {
  margin: 1.5rem 0;
  padding: 0.75rem 0 1.25rem 0;
  border-top: 1px solid var(--mediumgray);
  border-bottom: 1px solid var(--mediumgray);
}

.program-list-item__wrapper {
  display: none;
}

.program-list-item__featured-info {
  width: 100%;
  height: 100%;
  border: 1px solid var(--almostwhite);
  line-height: 1.5;
  letter-spacing: 0;
  background-color: var(--barelynotwhite);
  text-align: left;
}

.program-list-item__featured-info > * {
  margin-bottom: 0.25rem;
  text-transform: none;
}

.program-list-item__featured-info > h3 {
  color: var(--almostblack);
  border-bottom: 1px dotted var(--yellow);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

.program-list-item__featured-info, .program-list-item__featured-info * {
  transition: all 0.125s ease-out;
}

.program-list-item__featured-info:hover {
  border-color: var(--yellow);
  background-color: var(--white);
}

.program-list-item__featured-info:hover * {
  color: var(--darkred);
}

.program-list-item__degree-type,
.program-list-item__department-type {
  color: var(--almostblack);
  font-weight: 400;
  font-size: 0.875rem;
}

.program-list-item__degree-type {
  margin-bottom: 0.75rem;
}

form#search-block-form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

form#search-block-form label {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding: 0;
}

form#search-block-form input {
  background-color: var(--lightgray);
  border: 1px solid var(--darkgray);
  height: calc(53px - 5px - 2px);
  font-size: 18px;
  padding: 2px 8px 3px;
  width: calc(100% - 16px);
  margin: 0 0 0.25rem 0;
  font-family: var(--gotham-stack);
}

form#search-block-form input:focus {
  outline: none;
}

@media screen and (min-width: 769px) {
  form#search-block-form input {
    width: calc(100% - 1rem - 16px);
    margin: 0 1rem 0 0;
  }
  form#search-block-form .main-search-form__container {
    display: flex;
    align-items: center;
  }
  form#search-block-form .main-search-form__container > .form-type-textfield {
    flex-grow: 1;
    flex-shrink: 0;
  }
  form#search-block-form .main-search-form__container > button {
    flex-grow: 0;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 769px) {
  form#search-block-form {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
}

form#search-block-form .form-type__search {
  width: 100%;
  flex: 1;
}

form#search-block-form #edit-keys {
  width: 100%;
  margin: 0;
  flex: 1;
}

form#search-block-form #edit-submit {
  width: auto;
  margin: 0;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  background-color: var(--almostwhite);
  color: var(--darkred);
  transition: background var(--button-transition), color var(--button-transition);
  order: 0;
  border: 0;
  border-radius: 0;
  font-family: var(--mercury-stack);
  cursor: pointer;
}

form#search-block-form #edit-submit:hover, form#search-block-form #edit-submit:focus {
  background-color: var(--darkred);
  color: var(--white);
}

form#search-form,
form#search-form--2 {
  width: var(--apply-global-max-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

form#search-form label,
form#search-form--2 label {
  color: var(--darkgray);
  font-family: var(--gotham-stack);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

form#search-form input,
form#search-form--2 input {
  background-color: var(--lightgray);
  border: 1px solid var(--darkgray);
  height: calc(53px - 5px - 2px);
  font-size: 18px;
  padding: 2px 8px 3px;
  width: calc(100% - 16px);
  margin: 0 0 0.25rem 0;
  font-family: var(--gotham-stack);
}

form#search-form input:focus,
form#search-form--2 input:focus {
  outline: none;
}

@media screen and (min-width: 641px) {
  form#search-form .form-wrapper,
  form#search-form--2 .form-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: normal;
  }
  form#search-form input,
  form#search-form--2 input {
    width: calc(100% - 1rem - 16px);
    margin: 0 1rem 0 0;
  }
}

form#search-form .form-wrapper,
form#search-form--2 .form-wrapper {
  max-width: 700px;
}

form#search-form ~ h2,
form#search-form--2 ~ h2 {
  width: var(--apply-global-max-width);
  max-width: var(--max-width) !important;
  margin-left: auto;
  margin-right: auto;
}

form#search-form input.button,
form#search-form--2 input.button {
  margin: 0;
  border: 0;
  border-radius: 0;
  font-family: var(--mercury-stack);
  cursor: pointer;
  width: auto;
  padding: 0.5rem 1rem;
  font-weight: 700;
  background-color: var(--almostwhite);
}

form#search-form input.button:hover, form#search-form input.button:focus,
form#search-form--2 input.button:hover,
form#search-form--2 input.button:focus {
  background-color: var(--darkred);
  color: var(--white);
}

form#search-form input.form-search,
form#search-form--2 input.form-search {
  background-color: #d9d7d7 !important;
  border: 1px solid #585252;
  height: calc(53px - 5px - 2px);
  font-size: 18px;
  width: calc(100% - 16px);
  font-family: var(--gotham-stack);
}

form#search-form ~ h2,
form#search-form--2 ~ h2 {
  margin-top: 4rem;
}

form#search-form--2 {
  width: 100%;
  margin: 0;
}

#search404-page-text #google-cse-results {
  margin: 0;
}

.skip-link a {
  text-decoration: none;
  color: var(--white);
}

.skip-link .element-invisible.element-focusable {
  background-color: var(--almostblack);
  color: var(--white);
}

.skip-link .element-invisible.element-focusable:focus {
  align-items: center;
  display: flex;
  height: 73px !important;
  justify-content: center;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1001;
  outline: 1px dotted var(--white);
  font-family: var(--gotham-stack);
}

