:root {
    --driver-ink: #17231e;
    --driver-road: #253832;
    --driver-paper: #fffdf8;
    --driver-cream: #f6f2e9;
    --driver-lime: #c8f34c;
    --driver-orange: #ef6b3c;
    --driver-line: #d8d8cb;
    --driver-section-space: clamp(40px, 5vw, 72px);
}

body {
    min-height: 100vh;
    background: var(--driver-cream);
}

body:has(#logged-out-wrap) {
    background: var(--driver-ink);
}

.driver-shell {
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--driver-line);
    background: var(--driver-paper);
}

.driver-shell__inner,
.driver-shell-footer__bottom {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.driver-shell__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.driver-shell__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    color: var(--driver-ink);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
}

.driver-shell__mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--driver-lime);
    color: var(--driver-ink);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.driver-shell__nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.driver-shell__nav a {
    color: var(--driver-ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.driver-shell__nav a:hover {
    color: var(--driver-orange);
}

.driver-home-hero {
    position: relative;
    padding: 56px 0 64px;
    background: url("https://images.pexels.com/photos/6868176/pexels-photo-6868176.jpeg?auto=compress&cs=tinysrgb&w=1200") center 23% / 100% auto no-repeat;
}

.driver-home-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(10, 22, 17, .55);
}

.driver-home-hero__inner {
    display: grid;
    grid-template-columns: 1fr .93fr;
    align-items: stretch;
    gap: 40px;
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.driver-home-hero__copy {
    padding: 0;
    text-align: center;
}

.driver-home-hero__slideshow {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(10, 22, 17, .42);
}

.driver-home-hero__slideshow .carousel,
.driver-home-hero__slideshow .carousel-inner,
.driver-home-hero__slideshow .carousel-item {
    height: 100%;
    min-height: 0;
}

.driver-home-hero__slideshow .carousel {
    position: absolute;
    inset: 0;
}

.driver-home-hero__slideshow .carousel-item {
    text-align: center;
}

.driver-home-hero__slideshow img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.driver-home-hero__slideshow .carousel-indicators {
    z-index: 2;
}

.driver-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 7px 11px;
    border: 1px solid var(--driver-line);
    background: var(--driver-paper);
    color: var(--driver-road);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.driver-home-hero__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #55a94c;
}

.driver-page .driver-home-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(55px, 7vw, 94px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .88;
    text-transform: uppercase;
}

.driver-home-hero h1 em {
    color: var(--driver-orange);
    font-style: normal;
}

.driver-home-hero__lead {
    max-width: 510px;
    margin: 0 auto;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

.driver-home-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 16px 21px;
    background: var(--driver-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.driver-home-hero__cta:hover {
    background: var(--driver-ink);
    color: #fff;
}

.driver-home-hero__details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 16px 0 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.driver-home-hero__details strong {
    color: #fff;
}

/* Shared driver-first content system for all legacy HTM page bodies. */
.driver-page {
    background: var(--driver-cream);
    color: var(--driver-ink);
    text-align: center;
}

.driver-page .container {
    max-width: 1180px;
}

.driver-page .row {
    justify-content: center;
}

.driver-page .text-start {
    text-align: center !important;
}

.driver-page ul,
.driver-page ol {
    padding-left: 0;
    list-style-position: inside;
}

.driver-page>section:not(.driver-home-hero):not(.hero-section) {
    padding-top: var(--driver-section-space) !important;
    padding-bottom: var(--driver-section-space) !important;
    border-top: 1px solid var(--driver-line);
    background: var(--driver-paper);
}

.driver-page .bg-light {
    background: #ebe7dc !important;
}

.driver-page>section:not(.driver-home-hero):not(.hero-section).text-white {
    color: var(--driver-ink) !important;
}

.driver-page>section:not(.driver-home-hero):not(.hero-section) .text-white:not(.btn):not(.badge) {
    color: var(--driver-ink) !important;
}

.driver-page>section:not(.driver-home-hero):not(.hero-section) .text-white-50:not(.btn):not(.badge) {
    color: #58675e !important;
}

.driver-page>section:not(.driver-home-hero):not(.hero-section):nth-of-type(odd) {
    background: var(--driver-paper) !important;
}

.driver-page>section:not(.driver-home-hero):not(.hero-section):nth-of-type(even) {
    background: #ebe7dc !important;
}

.driver-page.driver-page--general>section.custom-hero.custom-hero {
    background: #0c2340 !important;
    color: #fff !important;
}

.driver-page.driver-page--general>section.custom-hero h1,
.driver-page.driver-page--general>section.custom-hero h2,
.driver-page.driver-page--general>section.custom-hero h3,
.driver-page.driver-page--general>section.custom-hero p,
.driver-page.driver-page--general>section.custom-hero strong {
    color: #fff !important;
}

.driver-page.driver-page--bot .card.blacklane-download-card {
    background: #1d1d1d !important;
    color: #fff !important;
}

.driver-page.driver-page--bot .card.curri-download-card {
    background: #007b68 !important;
    color: #fff !important;
}

.driver-page.driver-page--bot .blacklane-download-card h1,
.driver-page.driver-page--bot .blacklane-download-card h2,
.driver-page.driver-page--bot .blacklane-download-card h3,
.driver-page.driver-page--bot .blacklane-download-card p,
.driver-page.driver-page--bot .curri-download-card h1,
.driver-page.driver-page--bot .curri-download-card h2,
.driver-page.driver-page--bot .curri-download-card h3,
.driver-page.driver-page--bot .curri-download-card p {
    color: #fff !important;
}

.driver-page.driver-page--bot>section.blacklane-section-dark {
    background: #111 !important;
    color: #fff !important;
}

.driver-page.driver-page--bot>section.blacklane-section-dark h1,
.driver-page.driver-page--bot>section.blacklane-section-dark h2,
.driver-page.driver-page--bot>section.blacklane-section-dark h3,
.driver-page.driver-page--bot>section.blacklane-section-dark p {
    color: #fff !important;
}

.driver-page>.aff-banner-wrap {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.affiliate-intro {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    box-sizing: border-box;
}

.driver-page h1,
.driver-page h2,
.driver-page h3,
.driver-page h4,
.driver-page .display-2,
.driver-page .display-3,
.driver-page .display-4 {
    color: var(--driver-ink);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.driver-page h2,
.driver-page .display-4 {
    line-height: .98;
}

.driver-page .lead,
.driver-page .text-muted {
    color: #58675e !important;
}

.driver-page .hero-section {
    padding: clamp(48px, 7vw, 88px) 0 !important;
    box-shadow: none;
}

.driver-page .hero-section h1,
.driver-page .hero-section h2,
.driver-page .hero-section h3,
.driver-page .hero-section h4,
.driver-page .hero-section .display-2,
.driver-page .hero-section .display-3,
.driver-page .hero-section .display-4,
.driver-page .hero-section .h3,
.driver-page .hero-section .lead {
    color: #fff !important;
}

.driver-page .hero-section .lead {
    color: rgba(255, 255, 255, .78) !important;
}

.driver-page .hero-section .text-white-50,
.driver-page .hero-section .apk-version,
.driver-page .hero-section .apk-size,
.driver-page .hero-section p[style*="color"] {
    color: rgba(255, 255, 255, .84) !important;
}

.driver-page .hero-section p[style*="color"] a {
    color: rgba(255, 255, 255, .96) !important;
}

.driver-page .hero-eyebrow {
    letter-spacing: 0;
}

.driver-page .hero-step-marker {
    width: 60px;
    height: 60px;
}

.driver-page .hero-step-marker--large {
    width: 80px;
    height: 80px;
}

.driver-page .hero-rating {
    color: #f5a623;
    font-size: 1.2rem;
}

.driver-page .hero-step-marker--compact {
    width: 60px;
    height: 60px;
}

.driver-page .hero-step-marker--wide {
    width: 80px;
    height: 80px;
}

.driver-page--bot .hero-section .container,
.driver-page--app .hero-section .container {
    max-width: 1180px;
}

.driver-page--bot .hero-section .carousel-inner,
.driver-page--app .hero-section .carousel-inner {
    border-radius: 6px !important;
    box-shadow: none !important;
}

.driver-page--bot .hero-section .carousel-inner {
    background: rgba(0, 0, 0, .3);
    padding: 20px;
}

.driver-page--bot .hero-section .carousel-item img {
    object-fit: contain;
}

.driver-page--bot .hero-section .aff-device-card>.row>.col-lg-7>p,
.driver-page--app .hero-section .aff-device-card>.row>.col-lg-7>p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
}

.driver-page--bot .hero-section .aff-price-row>span:last-child,
.driver-page--app .hero-section .aff-price-row>span:last-child {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

.driver-page--bot .hero-affiliate-copy,
.driver-page--app .hero-affiliate-copy {
    color: rgba(255, 255, 255, .82) !important;
    font-size: 1.05rem !important;
}

.driver-page--bot .hero-warranty,
.driver-page--app .hero-warranty {
    color: rgba(255, 255, 255, .7) !important;
    font-size: .9rem !important;
}

@media (min-width: 992px) {

    .driver-page--bot .hero-section .row,
    .driver-page--app .hero-section .row {
        align-items: stretch;
    }

    .driver-page--bot .hero-section .row>.col-lg-6:last-child,
    .driver-page--app .hero-section .row>.col-lg-6:last-child {
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-height: 0;
    }

    .driver-page--bot .hero-section #heroCarousel,
    .driver-page--app .hero-section #heroCarousel,
    .driver-page--bot .hero-section #heroCarousel .carousel-inner,
    .driver-page--app .hero-section #heroCarousel .carousel-inner {
        height: 100%;
    }

    .driver-page--bot .hero-section #heroCarousel .carousel-inner,
    .driver-page--app .hero-section #heroCarousel .carousel-inner {
        box-sizing: border-box;
        min-height: 0 !important;
    }

    .driver-page--bot .hero-section #heroCarousel .carousel-item,
    .driver-page--app .hero-section #heroCarousel .carousel-item {
        height: 100%;
    }

    .driver-page--bot .hero-section #heroCarousel .carousel-item img,
    .driver-page--app .hero-section #heroCarousel .carousel-item img {
        width: 100%;
        height: 100%;
        max-height: none !important;
        object-fit: contain;
    }

    .driver-page--bot .hero-section .grubhub-phone,
    .driver-page--bot .hero-section .shipt-phone,
    .driver-page--bot .hero-section .vromo-phone {
        box-sizing: border-box;
        min-height: 0;
    }

    .driver-page--bot .hero-section .grubhub-screen {
        height: 100%;
        min-height: 0;
        overflow: hidden;
    }

    .driver-page--bot .hero-section .shipt-screen,
    .driver-page--bot .hero-section .vromo-screen {
        height: 100%;
        min-height: 0;
        overflow-y: auto;
    }
}

.driver-page--help>section:first-child,
body .driver-page.driver-page--legal>section.py-5.bg-light {
    background: #ebe7dc;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.driver-page--legal .legal-content>h1.display-4 {
    margin-bottom: 12px !important;
}

.driver-page--legal .legal-content>p.text-muted {
    margin-bottom: 20px !important;
}

.driver-page--help .card-title,
.driver-page--help .card h3 {
    color: var(--driver-ink) !important;
}

.driver-page--help .ratio {
    overflow: hidden;
    border: 1px solid var(--driver-line);
    border-radius: 6px !important;
    background: var(--driver-ink);
}

.driver-page--legal .legal-content {
    max-width: 880px;
}

.driver-page--legal .legal-content>.card {
    margin-bottom: 20px !important;
}

.driver-page--legal .legal-content>.card>.card-body {
    padding: 24px !important;
}

.driver-page--legal .legal-content>.card>.card-body>h2 {
    margin-bottom: 16px !important;
}

.driver-page--legal .legal-content>.card>.card-body>p {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    line-height: 1.55;
}

.driver-page--legal .legal-content>.card>.card-body>*:last-child {
    margin-bottom: 0 !important;
}

.driver-page--legal .legal-content li {
    margin-bottom: 8px;
    color: #58675e;
}

.driver-page--legal .legal-content li:last-child {
    margin-bottom: 0;
}

.driver-page--account #logged-out-wrap,
.driver-page--account #logged-in-wrap {
    min-height: calc(100vh - 72px);
    height: auto;
    padding: 24px 16px;
    background: #ebe7dc;
    box-sizing: border-box;
}

body:has(.driver-page--account) {
    scrollbar-width: none;
}

body:has(.driver-page--account)::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html:has(.driver-page--account) {
    scrollbar-width: none;
}

html:has(.driver-page--account)::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.driver-page--account #logged-out-wrap {
    min-height: 0;
    justify-content: flex-start;
    gap: 16px;
}

body:has(#logged-out-wrap)>.driver-shell-footer {
    margin-top: 0;
}

body:has(#logged-in-wrap) #logged-in-wrap {
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    gap: 24px;
    padding: 24px 16px;
    box-sizing: border-box;
}

body:has(#logged-in-wrap) #logged-in-wrap>#your_current_balance,
body:has(#logged-in-wrap) #logged-in-wrap>#fees-section,
body:has(#logged-in-wrap) #logged-in-wrap>#affiliate-program-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body:has(#logged-in-wrap) #logged-in-wrap>#your_current_balance {
    margin-bottom: 0 !important;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.35;
}

body:has(#logged-in-wrap) #your_current_balance>span {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}

body:has(#logged-in-wrap) #your_current_balance>#add_balance_link {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 16px 28px !important;
    background: var(--driver-lime) !important;
    color: var(--driver-ink) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 18px rgba(23, 35, 30, .18) !important;
}

body:has(#logged-in-wrap) #your_current_balance>#add_balance_link:hover {
    background: #d9ff72 !important;
    color: var(--driver-ink) !important;
    transform: translateY(-1px) !important;
}

body:has(#logged-in-wrap) #fees-section>.card>#fees-content>.card-body {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

body:has(#logged-in-wrap) #fees-section .fees-card-toggle {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

body:has(#logged-in-wrap) #fees-section .fees-card-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

body:has(#logged-in-wrap) #affiliate-program-section .affiliate-card-toggle {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

body:has(#logged-in-wrap) #affiliate-program-section .affiliate-card-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

body:has(#logged-in-wrap) #fees-section .dt-layout-row:first-child {
    margin-top: 0;
}

body:has(#logged-in-wrap) #fees-section .card-header h3,
body:has(#logged-in-wrap) #fees-section .card-header h3 i {
    color: #fff !important;
}

body:has(#logged-in-wrap) #affiliate-program-section .card-header h3,
body:has(#logged-in-wrap) #affiliate-program-section .card-header h3 i {
    color: #fff !important;
}

body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center {
    align-items: stretch !important;
}

body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-7,
body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-5 {
    display: flex;
}

body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-5 {
    margin-top: 0 !important;
}

body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-7>div,
body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-5>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex: 1 1 auto;
    margin-bottom: 0 !important;
}

@media (min-width: 768px) {
    body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-7>div {
        min-height: 187px;
    }

    body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-5>div {
        position: relative;
        top: 1px;
        height: 187px;
        min-height: 184px;
    }
}

@media (max-width: 767.98px) {
    body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center {
        row-gap: 16px;
    }

    body:has(#logged-in-wrap) #affiliate-program-section .affiliate-commission-highlight h3 {
        flex-wrap: wrap;
        gap: 8px;
    }

    body:has(#logged-in-wrap) #affiliate-program-section .affiliate-commission-highlight .badge {
        white-space: nowrap;
    }

    body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-7>div,
    body:has(#logged-in-wrap) #affiliate-program-section .row.align-items-center>.col-md-5>div {
        min-height: 220px;
    }
}

.driver-page--account #logged-out-wrap .feature-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body:has(#logged-in-wrap) #affiliate-program-section .affiliate-intro {
    margin-bottom: 28px !important;
}

.driver-page--account #logged-out-wrap .form-container {
    padding: 24px;
}

.driver-page--account #logged-out-wrap .form-title {
    margin-bottom: 16px;
}

.driver-page--account #logged-out-wrap #toggleText {
    display: block;
    margin-bottom: 4px;
}

.driver-page--account #logged-out-wrap .form-container,
.driver-page--account #logged-out-wrap .form-control,
.driver-page--account #logged-out-wrap #submitButton,
.driver-page--account #logged-out-wrap .feature-list {
    border-radius: 6px;
}

.driver-page--account #logged-out-wrap #submitButton {
    border-radius: 6px !important;
}

.driver-page--account #logged-out-wrap>h1,
.driver-page--account #logged-in-wrap>h1 {
    margin-bottom: 24px;
    text-align: center;
}

.driver-page--account .form-container {
    max-width: 440px;
    padding: 28px;
}

.driver-page--account .list-group-item {
    box-sizing: border-box;
    height: 40px;
    padding: 8px 16px;
    border-color: var(--driver-line);
    background: var(--driver-paper);
    color: var(--driver-ink);
}

.driver-page--account .user-nav-menu,
.driver-page--account .user-nav-container {
    border-radius: 6px;
    background: var(--driver-paper);
}

.driver-page .btn,
.driver-page .download-btn,
.driver-page .main-download-btn {
    padding: 14px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--driver-orange) !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transform: none !important;
}

.driver-page .btn:hover,
.driver-page .download-btn:hover,
.driver-page .main-download-btn:hover {
    background: var(--driver-ink) !important;
    color: #fff !important;
}

.driver-page .card,
.driver-page .benefit-card,
.driver-page .stats-card,
.driver-page .accordion-item,
.driver-page .form-container {
    border: 1px solid var(--driver-line) !important;
    border-radius: 6px !important;
    background: var(--driver-paper) !important;
    box-shadow: 0 10px 22px rgba(23, 35, 30, .08) !important;
}

.driver-page .card-body,
.driver-page .benefit-card {
    padding: 28px !important;
    text-align: center;
}

.driver-page .benefit-card p,
.driver-page .card p {
    color: #58675e;
    line-height: 1.55;
}

.driver-page .feature-icon {
    color: var(--driver-orange) !important;
}

.driver-page .bot-card {
    align-items: center;
    border: 1px solid var(--driver-line) !important;
    border-top: 5px solid var(--driver-lime) !important;
    border-radius: 6px !important;
    background: var(--driver-paper) !important;
    box-shadow: none !important;
    color: var(--driver-ink) !important;
}

.driver-page .bot-card-title,
.driver-page .bot-card-description {
    color: var(--driver-ink) !important;
    text-align: center !important;
}

.driver-page .bot-card-description {
    color: #58675e !important;
}

.driver-page .bot-card-icon {
    color: var(--driver-orange);
}

.driver-page .stat-number {
    background: none !important;
    color: var(--driver-orange) !important;
    -webkit-text-fill-color: currentColor !important;
}

.driver-page .accordion-item {
    overflow: hidden;
}

.driver-page .accordion-button {
    position: relative;
    justify-content: center;
    padding: 18px 20px;
    background: var(--driver-paper) !important;
    color: var(--driver-ink) !important;
    box-shadow: none !important;
    font-weight: 700;
    text-align: center;
}

.driver-page .accordion-button::after {
    position: absolute;
    right: 20px;
}

.driver-page .accordion-button:not(.collapsed) {
    border-bottom: 1px solid var(--driver-line);
}

.driver-page .accordion-body {
    color: #58675e;
    line-height: 1.6;
    text-align: center;
}

.driver-page .form-control,
.driver-page .form-select {
    min-height: 46px;
    border: 1px solid var(--driver-line);
    border-radius: 4px;
    background: #fff;
    color: var(--driver-ink);
    text-align: center;
}

.driver-page label,
.driver-page .form-label {
    display: block;
    text-align: center;
}

.driver-page .form-control:focus,
.driver-page .form-select:focus {
    border-color: var(--driver-orange);
    box-shadow: 0 0 0 3px rgba(239, 107, 60, .16);
}

.driver-page .table {
    overflow: hidden;
    border: 1px solid var(--driver-line);
    border-radius: 6px;
    background: var(--driver-paper);
}

.driver-page .table> :not(caption)>*>* {
    border-color: var(--driver-line);
    text-align: center;
}

.driver-page iframe {
    border: 0;
}

.driver-page .aff-banner-wrap,
.driver-page .aff-device-section,
.driver-page .aff-gear-section {
    padding: clamp(32px, 5vw, 64px) 0 !important;
    background: var(--driver-road) !important;
}

.driver-page .aff-banner,
.driver-page .aff-device-card,
.driver-page .aff-gear-card {
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.driver-page .aff-banner-title,
.driver-page .aff-device-headline,
.driver-page .aff-gear-card h2,
.driver-page .aff-gear-card h3 {
    color: #fff !important;
}

.driver-page .aff-cta,
.driver-page .gear-btn,
.driver-page .device-btn {
    border-radius: 0 !important;
}

.driver-essentials {
    padding: var(--driver-section-space) 0;
    background: #ebe7dc;
}

.driver-essentials__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.driver-essentials__label {
    margin: 0 0 8px;
    color: var(--driver-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.driver-essentials h2 {
    margin: 0 0 32px;
    color: var(--driver-ink);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.driver-essentials__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.driver-product {
    display: grid;
    grid-column: span 2;
    grid-template-rows: 220px auto;
    overflow: hidden;
    background: var(--driver-paper);
    border: 1px solid var(--driver-line);
    color: var(--driver-ink);
    text-decoration: none;
}

.driver-product:nth-child(4) {
    grid-column: 2 / span 2;
}

.driver-product:nth-child(5) {
    grid-column: 4 / span 2;
}

.driver-product:hover {
    color: var(--driver-ink);
    box-shadow: 0 10px 24px rgba(23, 35, 30, .12);
    transform: translateY(-3px);
}

.driver-product__image {
    display: grid;
    place-items: start center;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    background: #e9e5dc;
}

.driver-product:nth-child(2) .driver-product__image {
    background: #e4edf0;
}

.driver-product:nth-child(3) .driver-product__image {
    background: #f1e9df;
}

.driver-product:nth-child(4) .driver-product__image {
    background: #e7ece1;
}

.driver-product:nth-child(5) .driver-product__image {
    background: #e9e3dc;
}

.driver-product__image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center top;
    mix-blend-mode: multiply;
}

.driver-product__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px;
    color: #58675e;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.driver-product__type {
    color: var(--driver-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.driver-product__type--fastest {
    color: #356f2a;
}

.driver-product strong {
    color: var(--driver-ink);
    font-size: 18px;
    line-height: 1.2;
}

.driver-product__footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    color: var(--driver-ink);
    font-size: 13px;
    font-weight: 700;
}

.driver-product__footer em {
    font-style: normal;
}

.driver-shell-footer {
    --driver-footer-row-gap: 40px;
    margin-top: auto;
    padding: 40px 0 24px;
    background: var(--driver-ink);
    color: #fff;
}

.driver-shell-footer__languages {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.driver-shell-footer__bots {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 0 !important;
    width: min(1180px, calc(100% - 48px));
    margin: var(--driver-footer-row-gap) auto 0;
    text-align: center;
}

.driver-shell-footer__bots h2 {
    flex-basis: 100%;
    margin-bottom: 2px;
}

.driver-shell-footer__resources {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 0 !important;
    margin-left: 0;
    padding-left: 13px;
}

.driver-shell-footer__resources::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 1em;
    background: rgba(255, 255, 255, .24);
    content: '';
    transform: translateY(-50%);
}

.driver-shell-footer__brand {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.driver-shell-footer__languages>.driver-shell-footer__brand {
    display: block;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
}

.driver-shell-footer__brand .driver-shell__mark {
    color: var(--driver-ink);
}

.driver-shell-footer p {
    max-width: 320px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.5;
}

.driver-language-switcher {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0 !important;
    max-width: 1180px;
    margin: 18px auto 0;
}

.driver-shell-footer .driver-language-switcher a {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

.driver-shell-footer .driver-language-switcher a:hover {
    color: var(--driver-lime);
}

.driver-shell-footer h2 {
    margin: 8px 0 16px;
    color: var(--driver-lime);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.driver-shell-footer nav {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 10px;
}

.driver-shell-footer a {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    text-decoration: none;
}

.driver-shell-footer nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.driver-shell-footer .driver-language-switcher a,
.driver-shell-footer__bots a,
.driver-shell-footer__resources a {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0 12px;
    line-height: 1.5;
}

.driver-shell-footer .driver-language-switcher a:first-of-type,
.driver-shell-footer__bots a:first-of-type,
.driver-shell-footer__resources a:first-of-type {
    padding-left: 0;
}

.driver-shell-footer .driver-language-switcher a:last-of-type,
.driver-shell-footer__bots a:last-of-type,
.driver-shell-footer__resources a:last-of-type {
    padding-right: 0;
}

.driver-shell-footer .driver-language-switcher a:not(:last-child)::after,
.driver-shell-footer__bots a:not(:last-child)::after,
.driver-shell-footer__resources a:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 1em;
    background: rgba(255, 255, 255, .24);
    content: '';
    transform: translateY(-50%);
}

.driver-shell-footer__resources a+a {
    padding-left: 13px;
}

.driver-shell-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: var(--driver-footer-row-gap);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 800px) {

    .driver-shell__inner,
    .driver-shell-footer__bottom {
        width: min(100% - 32px, 600px);
    }

    .driver-shell__inner {
        flex-wrap: wrap;
        gap: 10px;
        min-height: 64px;
        padding: 10px 0;
    }

    .driver-shell__brand {
        font-size: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .driver-shell-footer .driver-shell-footer__brand {
        font-size: 25px;
    }

    .driver-shell__download {
        padding: 10px;
        font-size: 13px;
    }

    .driver-shell__nav {
        order: 3;
        width: 100%;
        gap: 16px;
        margin-left: 0;
        justify-content: safe center;
        overflow-x: auto;
        scrollbar-width: none;
        white-space: nowrap;
    }

    .driver-shell__nav::-webkit-scrollbar {
        display: none;
    }

    .driver-shell__nav a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .driver-home-hero {
        padding: 24px 0 48px;
        background-position: center 20%;
        background-size: cover;
    }

    .driver-home-hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        width: min(100% - 32px, 600px);
    }

    .driver-home-hero__copy {
        padding: 0;
    }

    .driver-home-hero__slideshow {
        height: 390px;
    }

    .driver-page .row.align-items-center.g-5 {
        margin-right: 0;
        margin-left: 0;
    }

    .driver-home-hero h1 {
        font-size: clamp(54px, 16vw, 76px);
    }

    .driver-essentials__inner {
        width: min(100% - 32px, 600px);
    }

    .driver-essentials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .driver-product,
    .driver-product:nth-child(4),
    .driver-product:nth-child(5) {
        grid-column: auto;
        grid-template-columns: 128px 1fr;
        grid-template-rows: auto;
    }

    .driver-product__image {
        min-height: 160px;
        padding: 8px;
    }

    .driver-product__body {
        gap: 8px;
        padding: 16px;
    }

    .driver-shell-footer {
        padding-top: 40px;
    }

    .driver-shell-footer__languages>.driver-shell-footer__brand {
        font-size: 12px;
    }

    .driver-shell-footer__bottom {
        display: block;
        margin-top: var(--driver-footer-row-gap);
    }

    .driver-shell-footer__bottom {
        flex-direction: column;
    }

    .driver-shell-footer__bottom span+span,
    .driver-shell-footer__bottom .driver-shell-footer__resources {
        margin-top: 8px;
    }

    .driver-shell-footer__bottom .driver-shell-footer__resources {
        padding-left: 0;
    }

    .driver-shell-footer__resources a+a {
        padding-left: 12px;
    }

    .driver-shell-footer__resources::before {
        display: none;
    }
}