#ymm-home .ymm-bar__desktop {
  display: none; }

@media (max-width: 768px) {
  #ymm-home .ymm-bar__desktop {
    display: block; }
    #ymm-home .ymm-bar__desktop .ymm-bar__search-button {
      margin: 0; }
  header .ymm-bar__desktop {
    display: none; } }

.ymm-bar__desktop .select-field__label--light {
  font-size: 1.2rem; }

#ymm-app .select-field__label {
  font-size: 1.2rem;
  color: #000; }

.ymm-bar {
  background: var(--red);
  font-family: var(--ff-heading); }
  .ymm-bar__search-button {
    background-color: var(--blue);
    margin-left: 1rem; }
  .ymm-bar__mobile-toggle {
    position: fixed;
    bottom: 0.5rem;
    padding: 12px;
    right: 1rem;
    z-index: 40;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-600);
    color: white;
    transition: background-color 0.2s ease-in-out;
    max-width: 48px;
    max-height: 48px;
    background-color: var(--red); }
    .ymm-bar__mobile-toggle svg {
      vertical-align: unset; }
    .ymm-bar__mobile-toggle:hover {
      background-color: var(--primary-700); }
    @media (min-width: 768px) {
      .ymm-bar__mobile-toggle {
        display: none; } }
  .ymm-bar__mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    transition: opacity 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.5); }
    @media (min-width: 768px) {
      .ymm-bar__mobile-overlay {
        display: none; } }
    .ymm-bar__mobile-overlay--hidden {
      opacity: 0;
      pointer-events: none; }
    .ymm-bar__mobile-overlay--visible {
      opacity: 1; }
  .ymm-bar__mobile-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    transition: transform 0.3s ease-in-out; }
    .ymm-bar__mobile-popup--hidden {
      transform: translateY(100%); }
    .ymm-bar__mobile-popup--visible {
      transform: translateY(0); }
  .ymm-bar__popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color); }
  .ymm-bar__popup-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-600); }
  .ymm-bar__close-button {
    padding: 0.5rem;
    border-radius: 0.5rem; }
    .ymm-bar__close-button:hover {
      background-color: #f3f4f6; }
  .ymm-bar__popup-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem; }
    .ymm-bar__popup-content .select-field__label {
      min-width: 40px; }
    .ymm-bar__popup-content .ymm-bar__search-button {
      margin-left: 0; }
  .ymm-bar__desktop {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--navy-600); }
    @media (min-width: 768px) {
      .ymm-bar__desktop {
        display: block; } }
  .ymm-bar__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem; }
  .ymm-bar__grid {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-direction: column; }
    .ymm-bar__grid > div {
      width: 100%; }
    @media (min-width: 768px) {
      .ymm-bar__grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr)); } }
  .ymm-bar__grid-item--year {
    grid-column: span 5; }
  .ymm-bar__grid-item--model {
    grid-column: span 5; }
  .ymm-bar__grid-item--search {
    grid-column: span 2; }
  .ymm-bar__search-button {
    width: 100%;
    height: 2.25rem;
    padding: 0 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
    background-color: #004ca0; }
    .ymm-bar__search-button:disabled {
      background: #c41900;
      cursor: not-allowed; }
    .ymm-bar__search-button:hover:not(:disabled) {
      border-color: rgba(255, 255, 255, 0.1); }
  .ymm-bar__spinner {
    animation: spin2 1s linear infinite;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid white;
    border-top-color: transparent; }
  .ymm-bar__search-text--hidden {
    display: none; }
    @media (max-width: 768px) {
      .ymm-bar__search-text--hidden {
        display: block; } }
  .ymm-bar .relative {
    position: relative; }

.line-to-angle {
  position: absolute;
  display: inline-block;
  right: -12px;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  color: #ab1600; }
  @media (max-width: 768px) {
    .line-to-angle {
      display: none; } }

#ymm-bar .select-field {
  padding-left: 1rem;
  padding-right: 1rem; }

@keyframes spin2 {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.select-field {
  position: relative;
  width: 100%;
  display: flex;
  gap: 1rem; }
  .select-field__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: white;
    min-width: 32px; }
    @media (max-width: 768px) {
      .select-field__label {
        display: none; } }
    .select-field__label--light .select-field__label-icon {
      color: rgba(255, 255, 255, 0.7); }
    .select-field__label--dark {
      color: #374151; }
      .select-field__label--dark .select-field__label-icon {
        color: #9ca3af; }
  .select-field__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%; }
  .select-field__select-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%; }
    .select-field__select-container--compact {
      width: 100%;
      height: 2.25rem; }
    .select-field__select-container--regular {
      height: 2.875rem; }
  .select-field__icon {
    position: absolute;
    left: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none; }
  .select-field__select {
    width: 100%;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    appearance: none; }
    .select-field__select:focus {
      outline: none; }
    .select-field__select:disabled {
      cursor: not-allowed; }
    .select-field__select--compact {
      height: 2.25rem;
      padding-left: 2.5rem;
      padding-right: 2rem;
      border-width: 1px; }
    .select-field__select--regular {
      height: 2.875rem;
      padding: 0 0.75rem;
      padding-right: 2.5rem;
      box-shadow: none;
      border: 1px solid gainsboro; }
    .select-field__select--light {
      background-color: var(--red-dark);
      border-color: rgba(255, 255, 255, 0.1);
      color: white; }
      .select-field__select--light::placeholder {
        color: rgba(255, 255, 255, 0.5); }
      .select-field__select--light:focus {
        border-color: transparent !important;
        color: white !important; }
      .select-field__select--light:hover:not(:disabled) {
        border-color: rgba(255, 255, 255, 0.2); }
      .select-field__select--light:disabled {
        opacity: 0.5; }
      .select-field__select--light option {
        background-color: #0f172a; }
    .select-field__select--dark {
      background-color: white;
      border-color: #e5e7eb;
      color: #111827; }
      .select-field__select--dark:focus {
        border-color: var(--primary-500); }
      .select-field__select--dark:disabled {
        background-color: #f9fafb; }
      .select-field__select--dark option {
        background-color: white; }
  .select-field__chevron {
    position: absolute;
    right: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none; }

.w-full {
  width: 100%; }

.btnATC {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center; }

.button--primary:focus,
.button--primary.is-active,
.button--primary.active {
  border-color: #c50600 !important;
  background-color: #c50600 !important; }

.hidden {
  opacity: 0;
  visibility: hidden; }

#ymm-app {
  width: 100%; }
  #ymm-app .ymm-bar__desktop {
    background: none;
    margin-bottom: 2rem; }
  #ymm-app .select-field__select--light {
    background-color: var(--blue); }
  #ymm-app .ymm-bar__search-button {
    background: var(--red); }

#ymm-app .ymm-bar {
  background: none; }

#ymm-app .accordionTitle {
  padding: 5px 0 !important;
  text-align: left; }

#ymm-app .productGrid {
  margin: 0; }

#ymm-app span.countCollapse b {
  font-size: 9px; }

#ymm-app .accordionContent {
  padding: 0 10px; }

#ymm-app .navList-count {
  font-size: 12px !important;
  color: var(--blue); }

#ymm-app .accordion-title {
  font-size: 1.07143rem;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: #000;
  font-family: var(--ff-heading); }

#ymm-app .ais-HierarchicalMenu-link::before {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23b6b7d5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2218%2015%2012%209%206%2015%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 21px;
  height: 21px;
  background-size: 21px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
  background-position-y: center; }

#ymm-app .ais-HierarchicalMenu-showMore,
#ymm-app .ais-Menu-showMore,
#ymm-app .ais-RefinementList-showMore,
#ymm-app .ais-GeoSearch-redo,
#ymm-app .ais-GeoSearch-reset {
  height: 1.5rem; }

#ymm-app .ais-HierarchicalMenu-showMore,
#ymm-app .ais-Menu-showMore,
#ymm-app .ais-RefinementList-showMore {
  margin-top: 1rem; }

#ymm-app .ais-ClearRefinements-button:disabled[disabled],
#ymm-app .ais-InfiniteHits-loadMore:disabled[disabled],
#ymm-app .ais-InfiniteHits-loadPrevious:disabled[disabled],
#ymm-app .ais-Pagination-item--disabled .ais-Pagination-link,
#ymm-app .ais-GeoSearch-redo--disabled,
#ymm-app .ais-GeoSearch-reset--disabled,
#ymm-app .ais-VoiceSearch-button:disabled {
  background-image: linear-gradient(-180deg, #fff, #f5f5fa);
  border-color: #efeff5;
  box-shadow: none;
  color: #b6b7d5; }

#ymm-app .ais-HierarchicalMenu-list .ais-HierarchicalMenu-list {
  margin-left: 1.5rem; }

#ymm-app .ais-HierarchicalMenu-item--selected > .ais-HierarchicalMenu-link > .ais-HierarchicalMenu-label,
#ymm-app .ais-Menu-item--selected .ais-Menu-label,
#ymm-app .ais-RefinementList-item--selected,
#ymm-app .ais-RatingMenu-item--selected {
  font-weight: 600; }

#ymm-app .ais-HierarchicalMenu-item--selected
.ais-HierarchicalMenu-list--child:not(:has(.ais-HierarchicalMenu-list--child))
.ais-HierarchicalMenu-link::before {
  opacity: 0; }

#ymm-app .ais-RefinementList-showMore--disabled {
  display: none; }

#ymm-app .ais-RefinementList-item--selected .navList-action--checkbox::after,
#ymm-app .ais-RefinementList-item--selected .navList-action--checkbox::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

#ymm-app .facetLabel {
  font-size: 14px;
  display: grid;
  grid-template-columns: 1fr 24px;
  text-transform: capitalize;
  place-items: center;
  width: fit-content; }
  #ymm-app .facetLabel .icon {
    margin-left: 0.3rem; }

#ymm-app .ais-HierarchicalMenu-showMore,
#ymm-app .ais-RefinementList-showMore {
  font-size: 12px;
  width: 100%;
  text-align: end;
  text-decoration: underline; }

#ymm-app .filter-header {
  display: grid;
  grid-template-columns: auto 4em; }
  #ymm-app .filter-header .clear-refinement-btn {
    font-size: 12px;
    text-decoration: underline;
    text-align: right; }

#ymm-app .form-minMaxRow {
  display: flex; }

#ymm-app .ais-RangeInput-submit {
  max-width: 71.5px;
  margin-left: auto; }

#ymm-app .navList-count {
  padding: 0.1rem 0.6rem;
  background: rgba(0, 76, 160, 0.06);
  height: 2em;
  display: grid;
  place-items: center;
  border-radius: 120px; }

body:has(#ymm-app) .search-toggle {
  transform: translateY(8px); }

html:has(.mobile-open) {
  overflow: hidden; }

@media (max-width: 768px) {
  #ymm-app .mobile-open {
    position: fixed;
    top: calc(var(--header-height, 50px) + 63px);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7); }
    #ymm-app .mobile-open .overlay {
      margin: 0;
      width: calc(100% - 56px);
      background: #fff !important;
      height: 100%;
      overflow-y: scroll; }
    #ymm-app .mobile-open .clear-refinement-btn {
      margin-right: 1rem;
      margin-top: -3rem; }
    #ymm-app .mobile-open #facetedSearch-navList,
    #ymm-app .mobile-open .facetedSearch-refineFilters {
      display: block; }
    #ymm-app .mobile-open .filter-header {
      grid-template-columns: 1fr; }
    #ymm-app .mobile-open .facetedSearch-refineFilters {
      padding-left: 1rem; }
    #ymm-app .mobile-open .sidebarBlock-heading {
      margin-top: 2rem;
      text-transform: capitalize;
      font-size: 1.07143rem;
      letter-spacing: 0.3px;
      font-weight: 600;
      color: #000;
      font-family: var(--ff-heading); } }

.bg-red {
  background: var(--red); }

.refinement-group {
  display: flex !important; }

.productView-options .w-full {
  width: 100% !important; }
