@charset "UTF-8";
*,
::after,
::before,
input {
  box-sizing: border-box;
}

html,
body {
  position: relative;
  height: 100%;
  overflow: auto;
}

body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  margin-block: 0;
}

code,
kbd,
pre,
samp {
  font-family: "Roboto Mono", monospace;
}

code {
  padding: 0.125rem 0.25rem;
  font-size: 80%;
  word-break: break-word;
  border-radius: 0.25rem;
}

a, a:visited, a:hover, a:active {
  color: inherit;
}

button {
  all: unset;
}

.btn, button {
  text-decoration: none;
  text-shadow: none;
  text-align: center;
  text-wrap: nowrap;
  font-size: 10pt;
  font-weight: 400;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2px 2px;
  background: #011f46;
  color: #011f46;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-duration: 0.2s;
}
.btn i, button i {
  margin: 0 10px;
}
.btn .icon-holder, button .icon-holder {
  margin-left: 10px;
}
.btn.large, button.large {
  padding: 20px 30px;
  margin: 15px;
}
.btn.secondary, button.secondary {
  background: #011f46;
  color: white;
}
.btn.secondary:hover, button.secondary:hover {
  color: darkgrey;
}
.btn.primary, button.primary {
  background: #ffffff;
  min-width: 80px;
  color: #011f46;
  transition: filter 0.2s;
}
.btn.primary:hover, button.primary:hover {
  color: dimgrey;
}
.btn.primary.faded, button.primary.faded {
  background: #cccccc;
  color: #ffffff;
}
.btn.primary.rounded, button.primary.rounded {
  background: transparent;
  border: solid 2px #262965;
  font-weight: 700;
  color: #011f46;
}
.btn.primary.flat, button.primary.flat {
  background: unset;
  border: solid 1px #011f46;
  border-radius: 3px;
  padding: 10px;
}
.btn.primary.flat.no-border, button.primary.flat.no-border {
  border: none;
  transition-duration: 0.2s;
}
.btn.primary.flat.no-border:hover, button.primary.flat.no-border:hover {
  color: #0ec6ff;
}
.btn.wide-button, button.wide-button {
  min-width: 180px;
  justify-content: space-between;
}
.btn.back-button, button.back-button {
  background: #e1e4e8;
}
.btn.back-button > .icon-holder, button.back-button > .icon-holder {
  margin: unset;
  margin-right: 15px;
}
.btn.disabled, button.disabled {
  pointer-events: none !important;
  background: rgba(143, 143, 143, 0.6509803922) !important;
}

.detail-cards {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.detail-card {
  border-radius: 7px;
  padding: 5px 0 3px 7px;
  background-color: #e1e4e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 73px;
}
.detail-card .card-detail-header {
  padding-right: 4px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
}
.detail-card .card-detail-header .icon-holder {
  font-size: 19px;
  color: #3b3ad5;
}
.detail-card .card-detail-value {
  display: flex;
  justify-content: space-between;
  font-size: 25px;
  font-weight: 400;
  align-items: center;
}

details {
  width: 100%;
  margin: 0.5rem auto;
  overflow: hidden;
}
details summary {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #333;
  font-size: 14pt;
}
@media (max-width: 600px) {
  details summary {
    font-size: 13pt;
  }
}
details summary::after {
  content: "⌵";
  font-size: 2rem;
  transform: rotate(0);
  transition: transform 0.3s;
  font-weight: 700;
}
details .content {
  padding: 1rem;
  color: #666;
  display: grid;
  gap: 1rem;
  position: relative;
}
details .content .checkboxes-wrapper {
  display: flex;
  gap: 1rem;
}
details .content .checkboxes-wrapper .input-wrapper {
  flex: 1;
}
@media (max-width: 550px) {
  details .content .checkboxes-wrapper {
    display: block;
  }
}

details[open] summary::after {
  transform: rotate(180deg);
}

.footer-wrapper {
  background: #011f46;
  padding: 4rem 1rem;
}
.footer-wrapper .rights-and-links {
  padding: 2rem 0rem;
  justify-items: center;
}
.footer-wrapper .rights-and-links .rights, .footer-wrapper .rights-and-links .privacy-links {
  font-size: 12px;
  font-weight: 100;
  color: #8c8c8c;
}
.footer-wrapper .rights-and-links .disclaimer {
  text-align: left;
}
.footer-wrapper .rights-and-links .privacy-links {
  display: flex;
  gap: 1rem;
}
.footer-wrapper .rights-and-links .privacy-links a {
  color: #8c8c8c;
  text-decoration: none;
}
.footer-wrapper .footer {
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  column-gap: 4rem;
  row-gap: 2rem;
  max-width: 1680px;
  margin: 0 auto;
}
.footer-wrapper .footer :not(h2):not(h4) {
  font-weight: 200;
  color: #dfe3e8;
  letter-spacing: 1px;
}
.footer-wrapper .footer h2 {
  font-size: 32px;
  inline-size: 375px;
  overflow-wrap: break-word;
}
@media (max-width: 500px) {
  .footer-wrapper .footer h2 {
    font-size: 26px;
    inline-size: 300px;
  }
}
@media (max-width: 350px) {
  .footer-wrapper .footer h2 {
    overflow-wrap: unset;
    font-size: 22px;
  }
}
.footer-wrapper .footer h4 {
  color: #3b3ad5;
  margin-bottom: 8px;
}
@media (max-width: 500px) {
  .footer-wrapper .footer h4 {
    font-size: 12px;
  }
}
.footer-wrapper .footer .address-wrapper .get-directions-link {
  color: #dfe3e8;
}
.footer-wrapper .footer .opening-times-wrapper {
  grid-column: 2;
}
.footer-wrapper .footer .logo {
  grid-column: 0;
  margin: 0 auto;
  width: 100%;
}
.footer-wrapper .footer .logo .toolbar-logo {
  width: 500px;
}
@media (max-width: 500px) {
  .footer-wrapper .footer .logo .toolbar-logo {
    width: 350px;
  }
}
.footer-wrapper .footer .links-wrapper, .footer-wrapper .footer .social-links-wrapper {
  display: flex;
  flex-direction: column;
}
.footer-wrapper .footer .links-wrapper a, .footer-wrapper .footer .social-links-wrapper a {
  text-decoration: none;
  transition: opacity 0.1s ease;
}
.footer-wrapper .footer .links-wrapper a:hover, .footer-wrapper .footer .social-links-wrapper a:hover {
  opacity: 0.6;
}
@media (max-width: 500px) {
  .footer-wrapper .footer .links-wrapper, .footer-wrapper .footer .social-links-wrapper, .footer-wrapper .footer .address-wrapper, .footer-wrapper .footer .opening-times-wrapper, .footer-wrapper .footer .rights, .footer-wrapper .footer .privacy-links {
    font-size: 12px !important;
  }
}
.footer-wrapper .footer .rights {
  grid-column: 1;
}
@media (max-width: 1000px) {
  .footer-wrapper .footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-wrapper .footer h2 {
    grid-column: 1/-1;
  }
  .footer-wrapper .footer .address-wrapper, .footer-wrapper .footer .opening-times-wrapper {
    grid-column: 1;
    font-size: 14px;
  }
  .footer-wrapper .footer .rights, .footer-wrapper .footer .privacy-links, .footer-wrapper .footer .logo {
    grid-column: 1/-1;
  }
  .footer-wrapper .footer .privacy-links {
    grid-row: 4;
    white-space: nowrap;
  }
}

.finance-calculator-component {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  height: 470px;
  justify-content: space-between;
  margin-top: 75px;
  background: #e5e8ec;
  border-radius: 40px;
  margin-bottom: 90px !important;
}
.finance-calculator-component #pcp-modal, .finance-calculator-component #hp-modal {
  z-index: 1000;
}
.finance-calculator-component #pcp-modal .modal-header, .finance-calculator-component #hp-modal .modal-header {
  display: unset !important;
}

.finance-estimate-modal #pcp-modal, .finance-estimate-modal #hp-modal {
  z-index: 1000;
}
.finance-estimate-modal #pcp-modal .modal-header, .finance-estimate-modal #hp-modal .modal-header {
  display: unset !important;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}
.flex-container.center {
  justify-content: center;
}
.flex-container.column {
  flex-direction: column;
}

.finance-calculator-section {
  padding-right: 2rem;
  flex: 0.9;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.finance-calculator-section .trusted-lenders-section {
  margin-top: 38px;
  padding: 1rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-right: -50px;
  margin-left: -40px;
}
.finance-calculator-section .trusted-lenders-section .trusted-lenders-header {
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}
.finance-calculator-section .finance-calculator-select-options {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.finance-calculator-section .finance-calculator-select-options .finance-questions-inputElement {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.finance-calculator-section .finance-calculator-select-options .finance-questions-selectElement {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.finance-calculator-section .finance-calculator-select-options .finance-questions-selectElement:after {
  top: 50%;
}
.finance-calculator-section .finance-calculator-footer {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.finance-calculator-section .finance-calculator-footer .btn {
  width: 47%;
}
.finance-calculator-section .finance-calculator-footer .not-sure-about-being-approved {
  font-size: 12px;
  display: flex;
  flex-direction: column;
}
.finance-calculator-section .finance-calculator-footer .not-sure-about-being-approved .check-finance-eligibility {
  font-weight: bolder;
  cursor: pointer;
}

.estimate-examples-section {
  flex: 1;
  border-radius: 30px 30px 0 0;
  padding: 15px;
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.estimate-examples-section .finance-details-wrapper {
  display: flex;
  background: #e5e8ec;
  border-radius: 10px;
}
.estimate-examples-section .finance-details-wrapper .finance-detail-card {
  padding: 15px;
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.estimate-examples-section .finance-estimator {
  display: flex;
  flex-direction: column;
}
.estimate-examples-section .finance-estimator .finance-estimator-tabs-wrapper {
  display: flex;
}
.estimate-examples-section .finance-estimator .finance-estimator-tabs-wrapper .finance-estimator-tab {
  cursor: pointer;
  padding: 15px;
  display: flex;
  flex: 1;
  justify-content: space-between;
  background: #e5e8ec;
  border-radius: 10px 10px 0 0;
}
.estimate-examples-section .finance-estimator .finance-estimator-tabs-wrapper .finance-estimator-tab .finance-tab-header {
  display: flex;
  gap: 10px;
  align-items: center;
}
.estimate-examples-section .finance-estimator .finance-estimator-tabs-wrapper .finance-estimator-tab.active {
  background: #011f46;
  color: white;
}
.estimate-examples-section .finance-estimator .finance-estimator-tabs-wrapper .finance-estimator-tab.active .fa-info {
  background-color: white;
  color: #011f46;
}
.estimate-examples-section .finance-estimator .finance-estimator-tabs-wrapper .fa-info {
  background-color: #022046;
  color: white;
  padding: 11px;
  font-size: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.estimate-examples-section .finance-estimator .finance-estimator-tabs-wrapper .fa-info:hover {
  opacity: 70%;
  cursor: pointer;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper {
  background: #011f46;
  color: white;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content .apr-amount-pcp, .estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content .apr-amount-hp {
  font-size: 12px;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content .flex-header {
  grid-column: span 2;
  align-items: center;
  margin-bottom: -20px;
  justify-content: space-between;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content .flex-header h2 {
  text-align: right;
  font-size: 50px;
  margin: 0;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content.active {
  display: grid;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper a {
  margin: 5px;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-calculator-button-wrapper {
  display: flex;
  justify-content: center;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-calculator-button-wrapper .reserve-button {
  flex: 1;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-calculator-button-wrapper .apply-button {
  background: #3b3ad5;
  flex: 1;
}
.estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-calculator-button-wrapper .email-my-quote-button {
  background: #cc2f5e;
  color: white;
  flex: 1;
}

@media (max-width: 1400px) {
  .finance-calculator-component {
    flex-direction: column;
    border-radius: 30px;
    height: auto;
    padding-bottom: 0px !important;
  }
  .finance-calculator-component .trusted-lenders-images img {
    max-height: 60px;
    max-width: 60px;
    object-fit: contain;
  }
  .finance-calculator-component .finance-calculator-section {
    width: 100%;
    gap: 0;
    padding: 3px;
    padding-right: 30px;
  }
  .finance-calculator-component .finance-calculator-section .finance-calculator-select-options {
    display: unset;
    margin-right: 5px;
  }
  .finance-calculator-component .finance-calculator-section .trusted-lenders-section .trusted-lenders-header {
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 25%;
  }
  .finance-calculator-component .finance-calculator-section .finance-calculator-footer {
    flex-wrap: wrap;
    margin-top: 0.2rem;
  }
  .finance-calculator-component .finance-calculator-section .finance-calculator-footer .btn {
    width: 100%;
    justify-content: center;
  }
  .finance-calculator-component .estimate-examples-section {
    width: 100%;
    padding: 1.5rem;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .finance-calculator-component .estimate-examples-section .finance-details-wrapper {
    flex-wrap: wrap;
  }
  .finance-calculator-component .estimate-examples-section .finance-details-wrapper .finance-detail-card {
    min-width: 100%;
  }
  .finance-calculator-component .estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .finance-calculator-component .estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-estimator-content .flex-header {
    grid-column: span 1;
  }
  .finance-calculator-component .estimate-examples-section .finance-estimator .finance-estimator-content-wrapper .finance-calculator-button-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  .finance-calculator-component .finance-calculator-section .trusted-lenders-section .trusted-lenders-header {
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 100px;
  }
}
@media (max-width: 450px) {
  .finance-calculator-component .trusted-lenders-images img {
    max-height: 55px;
    max-width: 55px;
    object-fit: contain;
  }
  .finance-calculator-component .finance-calculator-section .trusted-lenders-section {
    gap: 1rem;
  }
  .finance-calculator-component .finance-calculator-section .trusted-lenders-section .trusted-lenders-header {
    font-weight: bold;
    font-size: 0.6rem;
    white-space: nowrap;
    margin-left: 1px;
  }
}
.featured-vehicle-card {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  padding: 10px;
  transition: filter 0.1s ease-in-out;
  cursor: pointer;
}
.featured-vehicle-card .image-wrapper {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.featured-vehicle-card .image-wrapper img {
  transition: transform 0.1s ease-in-out;
}
.featured-vehicle-card:hover {
  filter: brightness(95%);
}
.featured-vehicle-card:hover .image-wrapper img {
  transform: scale(1.1);
}
.featured-vehicle-card .redirect-anchor-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.featured-vehicle-card .price-card-discount-header {
  display: none;
}
.featured-vehicle-card .price-card-discount-description {
  display: none;
}
.featured-vehicle-card.discount .price-card-discount-header {
  display: unset;
}
.featured-vehicle-card.discount .price-card-discount-description {
  display: unset;
}
.featured-vehicle-card.discount .price-card-value {
  color: #cc2f5e;
}
.featured-vehicle-card .favourite-button {
  background-color: white;
  color: #cc2f5e;
}
.featured-vehicle-card .favourite-button .fas {
  font-weight: 100;
}
.featured-vehicle-card.saved .favourite-button {
  background-color: #cc2f5e;
  color: white;
}
.featured-vehicle-card.saved .favourite-button .fas {
  font-weight: bold;
}
.featured-vehicle-card .reserve-button {
  background-color: white;
  color: black;
}
.featured-vehicle-card.reserved .reserve-button {
  color: white;
  pointer-events: none !important;
  background-color: #525151 !important;
}
.featured-vehicle-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.featured-vehicle-card .card-body {
  padding: 0 15px 0 15px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  background-color: #fafbfb;
}
.featured-vehicle-card .card-body .card-content {
  padding-top: 17px;
}
.featured-vehicle-card .card-body .card-content h1 {
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured-vehicle-card .card-body .card-content h2 {
  font-size: 14px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 86%;
}
.featured-vehicle-card .card-body .card-content .card-spacer {
  border: 1px solid #ebedf0;
  width: 100%;
  height: 1px;
  margin: 12px 0;
}
.featured-vehicle-card .card-body .card-content .car-detail-cards {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.featured-vehicle-card .card-body .card-content .car-detail-cards .detail-card {
  border-radius: 7px;
  padding: 5px 0 3px 7px;
  background-color: #e1e4e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 75px;
  width: 75px;
}
.featured-vehicle-card .card-body .card-content .car-detail-cards .detail-card .card-detail-header {
  font-size: 11px;
  font-weight: 400;
}
.featured-vehicle-card .card-body .card-content .car-detail-cards .detail-card .card-detail-value {
  font-size: 16px;
  font-weight: 400;
}
.featured-vehicle-card .card-body .card-footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px 18px;
}
.featured-vehicle-card .card-body .card-footer .price-card {
  display: flex;
  flex-direction: column;
}
.featured-vehicle-card .card-body .card-footer .price-card .price-card-header-wrapper {
  display: flex;
  gap: 4px;
  font-weight: 400;
  font-size: 14px;
}
.featured-vehicle-card .card-body .card-footer .price-card .price-card-header-wrapper .price-card-discount-header {
  text-decoration: line-through;
}
.featured-vehicle-card .card-body .card-footer .price-card .price-card-value {
  font-weight: 700;
  font-size: 24px;
  margin-top: -7px;
}
.featured-vehicle-card .card-body .card-footer .price-card .price-card-discount-description {
  font-size: 10px;
  font-weight: 400;
  color: #7e8da0;
  margin-top: -4px;
}
.featured-vehicle-card .card-body .card-footer .finance-card {
  align-items: flex-end;
  text-align: left;
  flex-direction: column;
  border-left: 2px solid #eaecef;
  padding-left: 6px;
}
.featured-vehicle-card .card-body .card-footer .finance-card .finance-card-header {
  font-weight: 400;
  font-size: 14px;
}
.featured-vehicle-card .card-body .card-footer .finance-card .finance-card-value {
  font-weight: 700;
  font-size: 24px;
  margin-top: -7px;
}
.featured-vehicle-card .card-body .card-footer .finance-card .finance-card-description {
  font-size: 10px;
  font-weight: 400;
  color: #7e8da0;
  margin-top: -4px;
}

.drop-down-element {
  flex-direction: column;
  cursor: pointer;
  align-content: center;
}
.drop-down-element .drop-down-header-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  padding-top: 5px;
  align-items: center;
}
.drop-down-element .drop-down-header-wrapper .drop-down-header-left-content {
  display: flex;
}
.drop-down-element .drop-down-header-wrapper .drop-down-header-right-content {
  display: flex;
}
.drop-down-element .drop-down-header-wrapper .drop-down-header-right-content .drop-down-header-arrow:after {
  content: "⌵";
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s;
  color: #000;
}
.drop-down-element .drop-down-header-wrapper.border-bottom {
  border-bottom: 2px solid #e2e8f1;
}
.drop-down-element .drop-down-content {
  display: none;
}
.drop-down-element.open .drop-down-header-wrapper .drop-down-header-right-content .drop-down-header-arrow:after {
  transform: rotate(180deg);
}
.drop-down-element.open .drop-down-content {
  display: inline-block;
}

@media (max-width: 768px) {
  .drop-down-content {
    width: 100%;
  }
}
.story-block-rich-text-table-container {
  border-radius: 10px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 39px;
  padding-right: 28px;
  background: radial-gradient(circle at 9% 131%, #a6aaae, #abaeb3, #a5a9ad, #dee0e3, #f6f8fd, #f9fbff, #f9fbff, #ffffff);
  overflow: hidden;
  margin: 10px 0;
}
.story-block-rich-text-table-container .story-block-rich-text-table {
  color: #10284d;
  border-collapse: collapse;
  width: 100%;
  font-size: 18px;
}
.story-block-rich-text-table-container .story-block-rich-text-table tr {
  border-bottom: 1px solid #c9d2dc;
}
.story-block-rich-text-table-container .story-block-rich-text-table tr th {
  width: fit-content;
  white-space: nowrap;
  text-align: left;
  padding-right: 10px;
  padding-left: 36px;
}
@media (max-width: 1421px) {
  .story-block-rich-text-table-container .story-block-rich-text-table tr th {
    white-space: pre-wrap;
  }
}
.story-block-rich-text-table-container .story-block-rich-text-table tr td {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 10px;
  padding-left: 36px;
}
@media (max-width: 1075px) {
  .story-block-rich-text-table-container .story-block-rich-text-table {
    font-size: 12px;
  }
  .story-block-rich-text-table-container .story-block-rich-text-table tr {
    border-bottom: 1px solid #c9d2dc;
  }
  .story-block-rich-text-table-container .story-block-rich-text-table tr th {
    padding: 1vw;
  }
  .story-block-rich-text-table-container .story-block-rich-text-table tr td {
    padding: 1vw;
  }
  .story-block-rich-text-table-container {
    padding: 0;
  }
}
@media (max-width: 366px) {
  .story-block-rich-text-table-container .story-block-rich-text-table {
    font-size: 9px;
  }
}

.input-wrapper {
  width: 100%;
}
.input-wrapper input {
  padding-block: 0.75rem;
  border-radius: 2rem;
  border: 1px solid #011f46;
  width: 100%;
}
.input-wrapper.prefix-icon {
  position: relative;
}
.input-wrapper.prefix-icon .icon-holder {
  position: absolute;
  top: 25%;
  left: 0.5rem;
}
.input-wrapper.prefix-icon input {
  padding-left: 2rem;
}
.input-wrapper.no-spinner input[type=number]::-webkit-inner-spin-button,
.input-wrapper.no-spinner input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-wrapper.no-spinner input[type=number] {
  -moz-appearance: textfield;
}

.checkbox.circle-checkbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: left;
  gap: 0.5rem;
  position: relative;
}
.checkbox.circle-checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: white !important;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
  border: none;
}
.checkbox.circle-checkbox:has(input:checked):before {
  content: "";
  position: absolute;
  top: 40%;
  left: 6px;
  z-index: 2;
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
}
.checkbox label {
  cursor: pointer;
}

select {
  width: 100%;
  padding-block: 0.75rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #011f46;
  padding-inline: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2rem;
  height: 50px;
}

.input-wrapper:has(select) {
  position: relative;
}
.input-wrapper:has(select):after {
  position: absolute;
  top: 0%;
  right: 16px;
  content: "⌵";
  font-size: 1.5em;
  transform: rotate(0);
  transition: transform 0.3s;
  color: #000;
  font-weight: 700;
  pointer-events: none;
}

.input-wrapper:has(select[disabled]) select, .input-wrapper:has(select[disabled]):after {
  opacity: 0.3;
}

.toolbar {
  margin-inline: 2rem;
  max-width: 1680px;
  margin: 0 auto;
  padding-inline: 1rem;
  width: 100%;
}
.toolbar .progress-bar {
  margin-top: -1px;
  max-width: 1680px;
  width: 0%;
  height: 3px;
  background: #3b3ad5;
  transition-duration: 2s;
}
.toolbar .toolbar-content {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #bbb;
}
@media (max-width: 600px) {
  .toolbar .toolbar-content {
    margin-inline: 1rem;
    padding-inline: 0;
  }
}
.toolbar .toolbar-content .logo {
  height: 42%;
  padding-block: 2px;
  min-width: 140px;
  width: 140px;
}
.toolbar .toolbar-content .logo .toolbar-logo {
  height: 100%;
  width: fit-content;
}
.toolbar .toolbar-content .menu-toggle-button {
  display: none;
  color: #000;
  cursor: pointer;
}
.toolbar .toolbar-content .menu {
  list-style-type: none;
  display: flex;
  margin: 0;
  font-size: 13px;
  height: 100%;
}
@media (max-width: 1350px) {
  .toolbar .toolbar-content .menu {
    font-size: 11pt;
  }
}
.toolbar .toolbar-content .menu .close-menu-button {
  display: none;
  user-select: none;
  pointer-events: none;
}
.toolbar .toolbar-content .menu .menu-item {
  cursor: pointer;
  padding-block: 1rem;
  padding-inline: 0.75rem;
  display: flex;
  align-items: center;
}
.toolbar .toolbar-content .menu .menu-item .dropdown-container {
  display: none;
  width: 100%;
  opacity: 0;
  margin: 0;
  text-align: left;
  position: absolute;
  left: 0;
  color: #636b77;
  z-index: 3;
  padding-top: 0;
}
.toolbar .toolbar-content .menu .menu-item .dropdown-container .dropdown-wrapper {
  width: 100%;
  background: #fff;
  height: fit-content;
  margin: 0 auto;
  max-width: 1680px;
  padding-block: 1rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  padding-inline: 5rem;
  gap: 5rem;
  cursor: initial;
  box-shadow: 0 2px 12px -2px rgba(128, 128, 128, 0.2196078431);
}
.toolbar .toolbar-content .menu .menu-item .dropdown-container .dropdown-wrapper .nav-item-header {
  color: #3B3AD5;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 13pt;
  min-height: 24px;
  white-space: nowrap;
}
.toolbar .toolbar-content .menu .menu-item .dropdown-container .dropdown-wrapper > .component {
  padding: 1rem 1.5rem;
}
.toolbar .toolbar-content .menu .menu-item .dropdown-container:hover {
  opacity: 1;
  display: block;
}
.toolbar .toolbar-content .menu .menu-item.dropdown {
  transition: all ease-in-out 0.15s;
}
.toolbar .toolbar-content .menu .menu-item.dropdown .dropdown-wrapper {
  border-top: 1px solid #bbb;
}
.toolbar .toolbar-content .menu .menu-item.dropdown:hover .dropdown-container {
  opacity: 1;
  display: block;
  top: 89px;
}
.toolbar .toolbar-content .menu .menu-item .menu-link {
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
}
@media (min-width: 1251px) {
  .toolbar .toolbar-content .menu .menu-item:hover .menu-link {
    opacity: 1;
    position: relative;
  }
  .toolbar .toolbar-content .menu .menu-item:hover .menu-link:after {
    content: "";
    bottom: -34px;
    width: 35px;
    height: 4px;
    position: absolute;
    background: #3b3ad5;
    left: calc(50% - 20px);
  }
}
@media (min-width: 1251px) {
  .toolbar .toolbar-content .menu:hover .menu-link {
    opacity: 0.6;
  }
}
.toolbar .toolbar-content .search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.toolbar .toolbar-content .search .phone-number a {
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1350px) {
  .toolbar .toolbar-content .search .phone-number a {
    font-size: 11pt;
  }
}
.toolbar .toolbar-content .search .search-button {
  justify-content: flex-end;
}
.toolbar .toolbar-content .search .search-button .expand-input-button {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #011f46;
}
.toolbar .toolbar-content .search .search-button .expand-input-button .icon-holder {
  position: initial;
}
.toolbar .toolbar-content .search .search-button .expand-input-button .icon-holder .fa-search {
  font-size: 20px;
}
.toolbar .toolbar-content .search .search-button .input-container {
  left: initial;
  right: 0;
}
.toolbar .toolbar-content .search.mobile-only {
  display: none;
}
@media (max-width: 1250px) {
  .toolbar .toolbar-content .menu-toggle-button {
    display: block;
  }
  .toolbar .toolbar-content .menu {
    position: fixed;
    right: 0;
    height: 100vh;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 11;
    width: 100vw;
    background: #fff;
    transform: translateX(250px);
    color: #000;
    transition: all 0.15s ease-in-out;
    padding-inline: 0.5rem;
    overflow-y: auto;
  }
  .toolbar .toolbar-content .menu .menu-item {
    border-bottom: 1px solid #ddd;
    font-size: 13pt;
  }
  .toolbar .toolbar-content .menu .menu-item .dropdown-container {
    position: initial;
    left: initial;
    right: initial;
    width: 100%;
    transform: unset;
    background: transparent;
    color: #000;
    border: none;
  }
  .toolbar .toolbar-content .menu .menu-item .dropdown-container:hover .dropdown-container {
    opacity: 0;
    display: none;
    top: initial;
  }
  .toolbar .toolbar-content .menu .menu-item .menu-link {
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    color: #011f44;
  }
  .toolbar .toolbar-content .menu .menu-item .menu-link:after {
    content: "›";
    color: #011f44;
    background: #e1e4e8;
    border-radius: 100%;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32pt;
    font-weight: 300;
    padding-bottom: 6px;
  }
  .toolbar .toolbar-content .menu .menu-item.dropdown {
    flex-direction: column;
  }
  .toolbar .toolbar-content .menu .menu-item.dropdown:hover .dropdown-container {
    opacity: 0;
    display: none;
    top: initial;
  }
  .toolbar .toolbar-content .menu .menu-item.dropdown .dropdown-container.shown {
    opacity: 1 !important;
    display: block !important;
    margin-top: 12px;
  }
  .toolbar .toolbar-content .menu .menu-item.dropdown .dropdown-container.shown .dropdown-wrapper {
    display: block;
    padding: 0;
    box-shadow: none;
    border-top-color: #ddd !important;
  }
  .toolbar .toolbar-content .menu .menu-item.dropdown .dropdown-container.shown .dropdown-wrapper > .component {
    padding-inline: 0;
  }
  .toolbar .toolbar-content .menu .menu-item.dropdown .dropdown-container.shown .dropdown-wrapper .nav-item-header {
    font-size: 10pt;
    min-height: unset;
  }
  .toolbar .toolbar-content .menu:not(.shown) {
    width: 0;
    min-width: 0;
  }
  .toolbar .toolbar-content .menu .toggle-menu-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #aaa;
    align-items: center;
    padding-left: 8px;
  }
  .toolbar .toolbar-content .menu .toggle-menu-container .toolbar-logo {
    transition-delay: 0.15s;
    opacity: 0;
    height: 27.6px;
  }
  .toolbar .toolbar-content .menu .toggle-menu-container .close-menu-button {
    display: block;
    user-select: initial;
    pointer-events: initial;
    padding: 1rem;
    cursor: pointer;
    font-size: 20pt;
  }
  .toolbar .toolbar-content .menu.shown {
    transform: translateX(0px);
  }
  .toolbar .toolbar-content .menu.shown .toolbar-logo {
    opacity: 1;
  }
  .toolbar .toolbar-content .menu.shown:has(.dropdown-container.shown) .menu-item {
    border-bottom: none;
  }
  .toolbar .toolbar-content .menu.shown:has(.dropdown-container.shown) .menu-item .menu-link {
    justify-content: flex-start;
  }
  .toolbar .toolbar-content .menu.shown:has(.dropdown-container.shown) .menu-item .menu-link:after {
    content: "‹";
    order: -1;
  }
  .toolbar .toolbar-content .menu.shown:has(.dropdown-container.shown) .menu-item:not(:has(.dropdown-container.shown)) {
    display: none;
  }
  .toolbar .toolbar-content .menu.shown:has(.dropdown-container.shown) .search.mobile-only {
    display: none;
  }
  .toolbar .toolbar-content .search:not(.mobile-only) {
    display: none;
    user-select: none;
    pointer-events: none;
  }
  .toolbar .toolbar-content .search.mobile-only {
    display: flex;
    justify-content: space-between;
    padding-inline: 1rem;
    gap: 1rem;
    font-size: 13pt;
    margin-top: 2rem;
    color: #011f44;
  }
  .toolbar .toolbar-content .search.mobile-only .search-button {
    order: -1;
    position: relative;
  }
  .toolbar .toolbar-content .search.mobile-only .search-button:after {
    content: "Search";
    padding-left: 0.75rem;
  }
  .toolbar .toolbar-content .search.mobile-only .search-button .expand-input-button {
    background: #011f46;
    color: #fff;
    width: 3.5rem;
    height: 3.5rem;
  }
  .toolbar .toolbar-content .search.mobile-only .search-button .expand-input-button .fa-search {
    font-size: 24px;
  }
  .toolbar .toolbar-content .search.mobile-only .search-button .input-container {
    left: 0;
    right: initial;
    height: 3.5rem;
    border-radius: 28px;
  }
  .toolbar .toolbar-content .search.mobile-only .search-button .input-container.expanded {
    width: calc(100vw - 2.5rem);
    padding-left: 3.5rem;
  }
  .toolbar .toolbar-content .search.mobile-only .search-button .input-container.expanded input {
    height: 3.5rem;
  }
}

body:has(heroheader) .toolbar-wrapper {
  background: #011f46;
}
body:has(heroheader) .toolbar-wrapper .toolbar .toolbar-content {
  color: #fff;
  border-bottom-color: #437593;
}
body:has(heroheader) .toolbar-wrapper .toolbar .toolbar-content .logo .toolbar-logo path {
  fill: #fff;
}
body:has(heroheader) .toolbar-wrapper .toolbar .toolbar-content .menu-toggle-button line {
  stroke: #fff;
}
body:has(heroheader) .toolbar-wrapper .toolbar .toolbar-content .search .expand-input-button {
  background: #fff;
  color: #011f46;
}
body:has(heroheader) .toolbar-wrapper .toolbar .toolbar-content .search .search-icon g {
  stroke: #000;
}
@media (max-width: 1250px) {
  body:has(heroheader) .toolbar-wrapper .toolbar .toolbar-content .search .search-icon g {
    stroke: #fff;
  }
}
body:has(heroheader) .toolbar-wrapper .toolbar .toolbar-content .dropdown-wrapper {
  border-top: 1px solid #437593 !important;
}

.dropdown-wrapper.find-my-ev {
  justify-content: space-between;
}
.dropdown-wrapper.find-my-ev .px-card {
  margin-bottom: 80px;
}
@media (max-width: 1250px) {
  .dropdown-wrapper.resources-and-guides .navbar-block:has(.links-header:empty), .dropdown-wrapper .why-car360 .navbar-block:has(.links-header:empty) {
    padding-top: 0 !important;
  }
}

.toolbar-wrapper {
  display: flex;
  flex-direction: column;
}

.expandable-input-container {
  position: relative;
  display: flex;
  align-items: center;
}
.expandable-input-container .expand-input-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f8f8f8;
  border: none;
  color: #4285f4;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.expandable-input-container .expand-input-button .fas {
  font-size: 14px;
}
.expandable-input-container .expand-input-button:hover {
  background-color: rgba(51, 103, 214, 0.0588235294);
}
.expandable-input-container .input-container {
  position: absolute;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  border-radius: 20px;
  transition: width 0.3s ease, padding 0.3s ease, border 0.3s ease;
  background-color: white;
  padding: 0;
  z-index: 1;
}
.expandable-input-container .input-container.expanded {
  width: 260px;
  padding-left: 1rem;
  border: 1px solid #ccc;
}
.expandable-input-container .input-container .input-field {
  min-width: 100px;
  width: 100%;
  height: 2.5rem;
  border: none;
  outline: none;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0 10px;
}
.expandable-input-container .input-container .input-field.visible {
  opacity: 1;
}

.skeleton {
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  color: rgba(0, 0, 0, 0);
}
.skeleton .skeleton-line {
  background: #e7ebee;
  height: 1rem;
  color: transparent;
  pointer-events: none;
}

.skeleton::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/*******/
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft-Light.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft-Thin.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft-Black.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft-ExtraBold.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft-Medium.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft-Bold.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft-Light.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Tommy Soft";
  src: url("/statics/assets/fonts/MADETommySoft.woff2") format("woff2"), url("/statics/assets/fonts/MADETommySoft.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "MADE Tommy Soft", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: #0d2240;
}

body.no-scroll {
  overflow: hidden;
  overflow-y: hidden;
  height: 100vh;
}

a.richtext-link:hover {
  color: #3b3ad5;
}

.show-saved-cars-button {
  background-color: #3B3AD5;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  padding: 9px;
}
.show-saved-cars-button :hover {
  opacity: 70%;
  cursor: pointer;
}

.blog-wrapper {
  display: flex;
  background: #f2f3f5;
  margin: 50px auto;
  margin-top: 10px;
  padding: 20px;
  max-width: 1400px;
  display: flex;
  border-radius: 20px;
  padding: 100px 20px;
}
.blog-wrapper > * {
  flex: 1 1 40%;
}
.blog-wrapper .share-section {
  flex-basis: 30%;
}
.blog-wrapper .share-section .author-section {
  padding: 3px 10px;
  background: white;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  font-size: 8pt;
  position: relative;
  border-radius: 8px;
  max-width: 300px;
  margin: 0 auto;
}
.blog-wrapper .share-section .author-section .author-image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  bottom: 0px;
}
.blog-wrapper .share-section .author-section .author-image-wrapper img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: white;
  background: #011f46;
  padding: 2px;
}
.blog-wrapper .share-section .author-section .author-image-wrapper {
  background: white;
}
.blog-wrapper .share-section .share-button-section {
  display: flex;
  justify-content: center;
  padding: 3px 10px;
  margin: 5px 30px;
  gap: 10px;
}
.blog-wrapper .share-section .share-button-section img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #011f46;
  padding: 4px;
}
.blog-wrapper .share-section .share-button-section:hover {
  cursor: pointer;
}
.blog-wrapper .content-section {
  flex-basis: 80%;
}
.blog-wrapper .content-section .child-item {
  margin: unset;
  padding: unset;
}
@media (max-width: 1300px) {
  .blog-wrapper {
    flex-wrap: wrap;
    padding: 20px;
  }
  .blog-wrapper > * {
    flex-basis: 100% !important;
  }
  .blog-wrapper .share-section {
    margin: 20px auto;
  }
  .blog-wrapper .share-section .share-button-section {
    margin: 5px auto;
    justify-content: center;
  }
}

#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: rgba(47, 47, 47, 0.3215686275);
  z-index: 100;
  opacity: 0;
  transition: 0.2s;
}

.body-wrapper {
  margin: 0 auto;
}

.whole-body-wrapper .child-item {
  margin: 20px auto;
  margin-top: 10px;
  padding: 20px;
  max-width: 1400px;
  display: block;
}
.whole-body-wrapper .child-item.full-width {
  padding: 1px;
  max-width: unset;
  margin: unset;
}
.whole-body-wrapper .child-item.full-width > * {
  margin: 20px auto;
  padding: 20px;
  max-width: 1400px;
  display: block;
}

.hidden {
  display: none;
}

.modal.on-right .close-modal-button {
  width: 36px;
  top: calc(50% - 125px);
  height: 250px;
  left: -36px;
  border-radius: 16px 0 0 16px;
}
.modal.glassmorphism {
  box-shadow: -2px 11px 10000px rgba(0, 0, 0, 0.168627451);
  border-radius: 15px;
  padding-top: 35px !important;
  padding-bottom: 45px !important;
  backdrop-filter: blur(32px);
  background: rgba(245, 249, 255, 0.78);
}
.modal.glassmorphism .modal-header {
  font-size: 18pt;
}
.modal.glassmorphism .modal-header:after {
  display: none;
}
.modal {
  position: fixed;
  left: 0;
  width: fit-content;
  max-width: 85%;
  right: 0;
  z-index: 999;
  will-change: top, opacity;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 1px 1px #a2a2a2;
  padding: 25px 25px;
  opacity: 0;
  min-height: 300px;
  display: none;
  top: 10%;
  min-width: 400px;
  transition-duration: 0.3s;
  box-shadow: 1px -2px 11px 10000px rgba(0, 0, 0, 0.168627451), 0 0 1px 1px #a2a2a2;
  padding-bottom: 95px;
}
.modal table td, .modal table th {
  padding: 10px;
  text-align: left;
}
.modal .input-wrapper {
  margin: 10px 0px;
}
.modal h4, .modal .pseudo-h4 {
  color: #262965;
  padding: 10px 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.modal > p { /* Any explanation text */
  white-space: break-spaces;
  /*margin: 40px 10px;*/
  font-size: 11pt;
  margin-bottom: 10px;
}
@media (max-width: 1025px) {
  .modal {
    min-width: unset;
    padding: 25px 25px;
    max-width: 95%;
    width: calc(95% - 50px);
    padding-bottom: 95px;
  }
}
.modal .modal-header {
  font-weight: 600;
  font-size: 12pt;
  padding-bottom: 10px;
}
.modal .modal-header:after {
  position: relative;
  padding-top: 8px;
  width: 100px;
  border-bottom: solid 2px #0ec6ff;
  content: " ";
  display: block;
}
@media (max-width: 1025px) {
  .modal .modal-header:after {
    width: 100%;
  }
}
.modal .modal-content {
  position: relative;
  overflow-y: auto;
  max-height: 60vh;
  padding: 0px 5px;
  z-index: 1;
}
.modal .modal-content::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(215, 215, 215, 0.99);
  border-radius: 8px;
}
.modal .modal-content::-webkit-scrollbar-thumb {
  background-color: #b9b9b9;
  border-radius: 8px;
}
.modal .modal-content h4, .modal .modal-content .pseudo-h4 { /* header */
  font-size: 24pt;
  text-transform: capitalize;
  margin: 0;
}
.modal .modal-content p {
  margin: 20px 0px;
}
.modal .modal-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  padding: 10px;
  background: #fff;
  z-index: 2;
}
.modal .modal-footer:not(:empty) {
  box-shadow: 1px -4px 7px rgba(222, 222, 222, 0.3411764706);
}
.modal.shown {
  display: block;
  transform: scaleX(1) scaleY(1);
}
.modal.fullscreen {
  background: rgba(0, 0, 0, 0.7803921569);
  top: 0;
  width: calc(100% - 80px);
  padding: 40px;
  margin: 0;
  max-width: unset;
  /* right: 10px; */
  border-radius: 0;
  height: calc(100% - 80px);
}
.modal.fullscreen .close-modal-button {
  width: 20px;
  height: 20px;
  font-size: 22px;
  position: absolute;
  top: 3px;
  cursor: pointer;
  right: 10px;
  z-index: 999;
  color: white;
  border-radius: 999px;
  background: rgba(80, 80, 80, 0.2901960784);
}
.modal.fullscreen .modal-content {
  max-height: unset;
}
.modal.on-right {
  right: 0px;
  margin: 0px;
  left: unset;
  height: 100%;
  top: 0px;
  border-radius: 0px;
  width: 500px;
  max-width: unset;
}
.modal.on-right .modal-content {
  max-height: 100vh;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #bbb;
  margin-block: 0.5rem;
}

.desktop-only {
  display: none;
}
@media (min-width: 1001px) {
  .desktop-only {
    display: block;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 1000px) {
  .mobile-only {
    display: block;
  }
}

.big-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  padding: 25px;
  padding-bottom: 50px;
  padding-left: 30px;
  flex: 1 1 600px;
}

.big-card .icon-button {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 30px;
  padding: 10px 15px 10px 15px;
  width: fit-content;
}

.big-card .icon-button .icon-holder {
  position: unset;
}

.big-card h1 {
  width: 250px;
  color: white;
  padding: 7px 15px 150px 5px;
  font-size: 25px;
}

.big-card .big-card-input {
  margin-bottom: 20px;
  padding: 19px 15px 19px 15px;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 30px;
  backdrop-filter: blur(11.8px);
  border: 1px solid rgb(7, 34, 83);
  font-size: 13px;
  width: 50%;
  color: white;
  outline: none;
  font-weight: 100;
}

.big-card .big-card-input::placeholder {
  color: white;
  opacity: 0.8;
}

.modal .close-modal-button {
  position: absolute;
  right: calc(50% - 125px);
  width: 250px;
  top: -36px;
  background: #3B3AD5;
  color: #fff;
  border-radius: 16px 16px 0 0;
  height: 36px;
  padding-block: 4px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .show-saved-cars-button {
    background-color: #3B3AD5;
    display: flex;
    align-items: center;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 9px;
  }
  .show-saved-cars-button .icon-holder {
    padding: 3px;
  }
  .show-saved-cars-button :hover {
    opacity: 70%;
    cursor: pointer;
  }
}
