@import url(https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100..900&display=swap);@charset "UTF-8";
.dealer-locator * {
  font-family: 'Encode Sans';
}

.dealer-locator .alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.dealer-locator .alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.dealer-locator .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dealer-locator .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pagination-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dealer-locator__container {
  margin: 0 auto;
  padding-top: 1rem;
  padding-left: 2.9rem;
  padding-right: 2.9rem;
}

@media only screen and (min-width: 992px) {
  .dealer-locator__container {
    padding-top: 3rem;
    padding-left: 2.9rem;
    padding-right: 2.9rem;
    display: grid;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    grid-template-columns: 340px 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.dealer-locator__container-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}

@media only screen and (min-width: 992px) {
  .dealer-locator__container-filters--toggle {
    display: none;
  }
}

.dealer-locator__container-filters--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid #233484;
}

.dealer-locator__container-filters--title h2 {
  color: #233484;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}

.dealer-locator__container-filters--title button {
  background-color: transparent;
  min-width: auto;
  height: auto;
  padding: 0;
}

@media only screen and (min-width: 992px) {
  .dealer-locator__container-filters--title button {
    display: none;
  }
}

.dealer-locator__container-filters--overlay {
  display: none;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  background-color: #000;
  pointer-events: none;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

@media only screen and (max-width: 991px) {
  .dealer-locator__container-filters--overlay {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .dealer-locator__container-filters {
    background-color: #fff;
    width: 340px;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: -340px;
    bottom: 0;
    z-index: 2001;
    -webkit-transition: left 0.25s, top 0.25s linear;
    transition: left 0.25s, top 0.25s linear;
    padding: 1rem;
  }
  .dealer-locator__container-filters.active {
    left: 0;
  }
  .dealer-locator__container-filters.active + .dealer-locator__container-filters--overlay {
    opacity: 0.75;
    pointer-events: all;
    z-index: 2000;
  }
}

.dealer-locator__container-results h1 {
  font-size: 20px;
  color: #233484;
  font-style: 700;
}

.dealer-locator__filter--title {
  color: #233484;
  font-weight: bold;
  font-size: 1rem;
  margin: 1rem 0rem;
  font-size: 16px;
  text-align: left;
}

.dealer-locator__filter--content {
  color: #233484;
  font-weight: normal;
}

.dealer-locator__location-filter {
  display: grid;
  gap: 0.5rem;
}

.dealer-locator__location-filter input {
  border-radius: 9999px;
  background-color: #EFEFF1;
  color: #233484;
}

.dealer-locator__location-filter input::-webkit-input-placeholder {
  color: #233484;
}

.dealer-locator__location-filter input::-moz-placeholder {
  color: #233484;
}

.dealer-locator__location-filter input::-ms-input-placeholder {
  color: #233484;
}

.dealer-locator__location-filter input::placeholder {
  color: #233484;
}

.dealer-locator__brand-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.dealer-locator__brand-filter input[type="checkbox"]:checked + .dealer-locator__brand-filter--brand {
  background-color: rgba(35, 52, 132, 0.25);
}

.dealer-locator__brand-filter--brand {
  border: 1px solid #233484;
  cursor: pointer;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.dealer-locator__brand-filter--brand-logo {
  display: block;
  max-width: 70px;
  padding: 0.5rem;
  min-height: 55px;
  max-height: 55px;
}

@media only screen and (max-width: 767px) {
  .dealer-locator__brand-filter--brand-logo {
    min-height: 55px;
    max-width: 55px;
  }
}

.dealer-locator__brand-filter--brand:hover {
  -webkit-transition: z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s 0s;
  transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.5);
}

.dealer-locator__service-filter {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dealer-locator__service-filter--label {
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(35, 52, 132, 0.25);
  padding: 1rem;
  border-radius: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  font-style: medium;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
}

.dealer-locator__service-filter--label input[type="checkbox"] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(35, 52, 132, 0.5);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: grid;
  place-content: center;
}

.dealer-locator__service-filter--label input[type="checkbox"]:checked {
  background-color: #233484;
  border-color: #233484;
}

.dealer-locator__service-filter--label input[type="checkbox"]:checked::after {
  content: "\2713";
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1;
  margin-left: -0.1rem;
}

.dealer-locator__service-filter--label input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(35, 52, 132, 0.6);
  outline-offset: 2px;
}

.dealer-locator__service-filter--label:hover {
  -webkit-transition: z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s 0s;
  transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 991px) {
  .headroom:not(.headroom--unpinned) + .site-content .dealer-locator__form.dealer-locator__container-filters {
    top: 85px;
  }
}

.dealer-results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media only screen and (max-width: 767px) {
  .dealer-results__grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 1200px) {
  .dealer-results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dealer-locator__result {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid rgba(35, 52, 132, 0.25);
  text-align: left;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.dealer-locator__result:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.5);
  z-index: 10;
  -webkit-transition: z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s 0s;
  transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s 0s, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  cursor: pointer;
}

.dealer-locator__result:has(.dropdown--content:not([style*="display: none"])), .dealer-locator__result:has(.show) {
  z-index: 20;
}

.dealer-locator__result-closed {
  pointer-events: none;
}

.dealer-locator__result-closed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#171b37), to(#233484));
  background: linear-gradient(180deg, #171b37 0%, #233484 100%);
  opacity: 0.8;
}

.dealer-locator__result-closed::before {
  content: 'This dealership is now permanently closed';
  position: absolute;
  bottom: 1rem;
  text-align: center;
  bottom: 3rem;
  z-index: 11;
  color: #fff;
  padding: 2rem;
  font-size: 21px;
  font-weight: 700;
}

.dealer-locator__result .btn, .dealer-locator__result .btn-group, .dealer-locator__result .dropdown-menu {
  min-width: 100%;
}

.dealer-locator__result--actions {
  padding: 0.5rem 1.5rem 2rem 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.dealer-locator__result-coming-soon {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  background: #233484;
  color: #fff;
  padding: 6px 10px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.dealer-locator__result-image-container {
  position: relative;
}

.dealer-locator__result-image {
  width: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 280px;
  aspect-ratio: 16/9;
}

.dealer-locator__result--details-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.dealer-locator__result--details {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 1.5rem;
}

.dealer-locator__result--title {
  margin: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #233484;
  min-height: 2lh;
}

.dealer-locator__result--rating {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dealer-locator__result--phone > a {
  font-weight: 500 !important;
  text-align: left;
  margin: 1.25rem 0;
}

.dealer-locator__result--what3words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0rem;
  gap: 1rem;
}

.dealer-locator__result--what3words-graphic {
  height: 1.8em;
  width: 1.8em;
}

.dealer-locator__result--what3words-link {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  letter-spacing: 1.6px;
  cursor: pointer;
  word-break: break-word;
}

.dealer-locator__result--address-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.dealer-locator__result--address-container--address {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 44px;
  color: #444;
  font-size: 16px;
  font-weight: 400;
}

.dealer-locator__result--actions .stock {
  font-weight: 700;
}

.dealer-locator__result--opening-hours {
  color: #233484;
  border: none;
  background-color: transparent;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.125rem;
  z-index: 5000;
  cursor: pointer;
}

.dealer-locator__result--opening-hours.open span {
  color: #00B679;
  font-weight: bold;
}

.dealer-locator__result--opening-hours.closed span {
  color: #FF0000;
  font-weight: bold;
}

.dealer-locator__result--opening-hours-date {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}

.dealer-locator__result--opening-hours-container {
  margin-top: 1rem;
  position: relative;
}

.dealer-locator__result--opening-hours-container .dropdown--content {
  position: absolute;
  z-index: 9999;
  padding: 0;
}

.dealer-locator__result--opening-hours-container .hours, .dealer-locator__result--opening-hours-container .type {
  text-transform: capitalize;
}

.dealer-locator__result--opening-hours .arrow {
  border-radius: 9999px;
  background-color: #233484;
  padding: 0.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.85rem;
  height: 0.85rem;
  margin-left: 0.25rem;
}

.dealer-locator__result--opening-hours .arrow svg {
  height: auto;
  width: 8px;
}

.dealer-locator__result--opening-hours .arrow svg path {
  stroke: #fff;
}

.dealer-locator__result--opening-hours p {
  margin: 0;
}

.dealer-locator__result--service-hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 0;
}

.dealer-locator__result--service-hours-container {
  padding: 0.5rem 1rem 0rem 1rem;
  margin: 0;
}

.dealer-locator__result--service-hours .type {
  grid-column: 1 / span 2;
  font-weight: 700;
}

.dealer-locator__result--service-hours .hours {
  font-weight: 700;
}

.dealer-locator__result--service-hours .type, .dealer-locator__result--service-hours .day, .dealer-locator__result--service-hours .hours {
  text-wrap: auto;
  color: #233484;
  padding: 0.25rem;
}

.dealer-locator__result--services {
  margin: 0;
  padding: 0;
  background-color: white;
}

.dealer-locator__result--services-container {
  position: relative;
}

.dealer-locator__result--services-container .dropdown--content {
  position: absolute;
  z-index: 9999;
  padding: 0;
}

.dealer-locator__result--services-container button {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dealer-locator__result--services-container button span .caret-icon path {
  -webkit-transition: stroke 0.25s;
  transition: stroke 0.25s;
  fill: none;
}

.dealer-locator__result--services-container button:hover span .caret-icon path {
  stroke: #fff;
}

.dealer-locator__result--services li {
  padding: 0;
}

.dealer-locator__result--services li > a, .dealer-locator__result--services li > span {
  display: block;
  padding: 0.5rem 1rem;
  color: #233484;
}

.dealer-locator__result--services li > a:hover, .dealer-locator__result--services li > span:hover {
  background-color: #eee;
  text-decoration: none;
}

.rating--inactive {
  fill: #DBDCE0;
}

.rating--active {
  fill: #FCBC05;
}

.dropdown {
  position: relative;
}

.dropdown--content {
  position: absolute;
  padding: 1rem;
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(35, 52, 132, 0.25);
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  z-index: 10;
  width: 100%;
  margin-top: 0.25rem;
}

.skeleton {
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.skeleton .fill {
  background-color: #eee;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

.skeleton .line {
  display: block;
  height: 18px;
  width: 75%;
  border-radius: 0.25rem;
  background-color: #eee;
  margin-bottom: 0.125rem;
  pointer-events: none;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

.skeleton .button {
  display: block;
  pointer-events: none;
  width: 100%;
  height: 45px;
  border-radius: 9999px;
  background-color: #eee;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.7;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.7;
  }
}

.dealer-locator__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
  .dealer-locator__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dealer-locator__header button {
    width: 100%;
  }
}
