/* -------------------------------------------------------
   Jobika — additive component styles.

   style.css and plugins.css are the sample template, byte
   for byte. Nothing here overrides them; this file only
   adds components the template did not ship (nav CTAs,
   dispatch board, phone mockups, store badges, steps),
   drawn in the same language: #1b1b1b / #222 surfaces,
   #aa8453 gold accent, Gilda Display headings,
   Barlow Condensed uppercase labels.
------------------------------------------------------- */

/* ============ 01. Navbar sizing + logo mark ============
   The template sizes its navbar around a 160px-wide <img> logo and pads both
   .logo-wrapper AND .logo h2. Swapping in a mark + wordmark makes those two
   paddings stack (92px of padding around a 34px mark), which pushed the logo
   out of the bar entirely below 992px. Everything here collapses that stack
   and trims the bar; style.css is untouched. */
.navbar {
    height: 78px;
}

.nav-scroll {
    height: 66px;
}

.navbar > .container {
    height: 100%;
    align-items: center;
}

.logo-wrapper,
.nav-scroll .logo-wrapper {
    float: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-wrapper .logo {
    display: block;
    line-height: 0;
}

.logo-wrapper .logo h2,
.nav-scroll .logo-wrapper .logo h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    width: auto;
    padding: 0;
    margin: 0;
    font-size: 23px;
    line-height: 1;
}

.logo-wrapper .logo h2 .jb-mark {
    width: 29px;
    height: 29px;
    display: block;
    flex: 0 0 29px;
}

@media screen and (max-width: 991px) {
    .navbar,
    .nav-scroll {
        height: 62px;
    }

    .logo-wrapper,
    .nav-scroll .logo-wrapper {
        padding: 0 0 0 15px;
    }

    .logo-wrapper .logo h2,
    .nav-scroll .logo-wrapper .logo h2 {
        font-size: 20px;
        gap: 8px;
    }

    .logo-wrapper .logo h2 .jb-mark {
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
    }

    /* The template gives the toggler a 10px top margin sized for the taller bar. */
    .navbar button {
        margin-top: 0;
    }
}

@media screen and (max-width: 400px) {
    .logo-wrapper .logo h2,
    .nav-scroll .logo-wrapper .logo h2 {
        font-size: 18px;
    }

    .logo-wrapper .logo h2 .jb-mark {
        width: 23px;
        height: 23px;
        flex: 0 0 23px;
    }
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo span {
    font-family: 'Gilda Display', serif;
    font-size: 26px;
    color: #aa8453;
    letter-spacing: 1px;
}

/* ============ 02. Navbar CTAs ============ */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 28px;
}

.nav-btn {
    position: relative;
    overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 11px 18px;
    line-height: 1.2em;
    white-space: nowrap;
    transition: all .3s ease;
}

.nav-btn span {
    position: relative;
    z-index: 2;
}

.nav-btn:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: #3b3b3b;
    transition: all .3s ease;
}

.nav-btn:hover:after {
    left: 0;
    width: 100%;
}

.nav-btn-primary {
    background: #aa8453;
    color: #fff;
}

.nav-btn-primary:hover {
    color: #fff;
}

.nav-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
}

.nav-btn-ghost:hover {
    color: #fff;
    border-color: #aa8453;
}

@media screen and (max-width: 991px) {
    .nav-cta {
        margin: 10px 0 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-btn {
        text-align: center;
    }
}

/* ============ 03. Request bar (customer / provider modes) ============ */
.jb-mode-tabs {
    display: flex;
    gap: 0;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
}

.jb-mode-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(27, 27, 27, .85);
    color: #adadad;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(170, 132, 83, .25);
    border-bottom: 0;
    transition: all .3s ease;
}

.jb-mode-tab img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.jb-mode-tab:hover {
    color: #fff;
}

.jb-mode-tab.active {
    background: #aa8453;
    color: #fff;
    border-color: #aa8453;
}

.jb-mode-panel {
    display: none;
}

.jb-mode-panel.active {
    display: block;
}

.jb-provider-pitch {
    background: #1b1b1b;
    border: 1px solid rgba(170, 132, 83, .25);
    padding: 34px 30px;
}

.jb-provider-pitch h4 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.jb-provider-pitch p {
    color: #adadad;
    margin-bottom: 20px;
}

/* ============ 04. Dispatch board — "See who's nearby, right now." ============ */
.dispatch-board {
    background: #1b1b1b;
    border: 1px solid rgba(170, 132, 83, .22);
    padding: 0;
}

.dispatch-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.dispatch-head h6 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #aa8453;
    font-size: 13px;
    margin: 0;
}

.dispatch-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #adadad;
}

.dispatch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, .7);
    animation: jbPulse 2s infinite;
}

@keyframes jbPulse {
    0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, .6); }
    70%  { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.dispatch-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background .3s ease;
}

.dispatch-row:last-child {
    border-bottom: 0;
}

.dispatch-row:hover {
    background: rgba(170, 132, 83, .06);
}

.dispatch-avatar {
    position: relative;
    flex: 0 0 auto;
}

.dispatch-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.dispatch-avatar:after {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #1b1b1b;
    background: #4caf50;
}

.dispatch-row.is-busy .dispatch-avatar:after {
    background: #d9a441;
}

.dispatch-id {
    flex: 1 1 auto;
    min-width: 0;
}

.dispatch-id h6 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 18px;
    margin: 0 0 3px;
}

.dispatch-id span {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #aa8453;
}

.dispatch-meta {
    display: flex;
    gap: 26px;
    flex: 0 0 auto;
}

.dispatch-meta div {
    text-align: center;
}

.dispatch-meta strong {
    display: block;
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
}

.dispatch-meta small {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    color: #8b8b8b;
}

.dispatch-cta {
    flex: 0 0 auto;
}

.dispatch-cta span {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #fff;
    background: #aa8453;
    padding: 9px 16px;
}

.dispatch-row.is-busy .dispatch-cta span {
    background: transparent;
    color: #8b8b8b;
    border: 1px solid rgba(255, 255, 255, .18);
}

.dispatch-foot {
    padding: 16px 26px;
    text-align: center;
    color: #8b8b8b;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

@media screen and (max-width: 767px) {
    .dispatch-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .dispatch-meta {
        gap: 20px;
        width: 100%;
        justify-content: flex-start;
    }
}

/* ============ 05. Phone mockups ============ */
.phone-mock {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    background: #101010;
    border: 10px solid #2b2b2b;
    border-radius: 38px;
    padding: 14px 12px 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .55);
    position: relative;
}

.phone-mock:before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 20px;
    background: #2b2b2b;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.phone-screen {
    background: #1b1b1b;
    border-radius: 26px;
    overflow: hidden;
    min-height: 520px;
    padding: 44px 16px 18px;
}

.phone-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.phone-topline img {
    width: 24px;
    height: 24px;
}

.phone-topline strong {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.phone-topline small {
    margin-left: auto;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 10px;
    color: #8b8b8b;
}

.phone-label {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
    color: #aa8453;
    margin-bottom: 8px;
}

.phone-card {
    background: #232323;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.phone-card.is-accent {
    border-color: rgba(170, 132, 83, .45);
    background: rgba(170, 132, 83, .1);
}

.phone-card h6 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 15px;
    margin: 0 0 4px;
}

.phone-card p {
    color: #9a9a9a;
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

.phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-row img.pf {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.phone-row .pmeta {
    margin-left: auto;
    text-align: right;
}

.phone-row .pmeta strong {
    display: block;
    font-family: 'Gilda Display', serif;
    color: #aa8453;
    font-size: 14px;
    font-weight: 400;
}

.phone-row .pmeta small {
    color: #8b8b8b;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.phone-cta {
    display: block;
    text-align: center;
    background: #aa8453;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-top: 14px;
}

.phone-earnings {
    text-align: center;
    padding: 16px 0 10px;
}

.phone-earnings strong {
    display: block;
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.phone-earnings small {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
    color: #8b8b8b;
}

.phone-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 62px;
    margin: 14px 0 4px;
}

.phone-bars i {
    flex: 1;
    background: rgba(170, 132, 83, .35);
    border-radius: 2px 2px 0 0;
    display: block;
}

.phone-bars i.hi {
    background: #aa8453;
}

/* ============ 06. Store badges ============ */
.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 20px 10px 16px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .3);
    color: #fff;
    transition: all .3s ease;
}

.store-badge:hover {
    background: #aa8453;
    border-color: #aa8453;
    color: #fff;
}

.store-badge i {
    font-size: 26px;
    line-height: 1;
}

.store-badge span {
    display: flex;
    flex-direction: column;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    line-height: 1.2;
}

.store-badge span em {
    font-style: normal;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: .75;
}

/* Footer download rows */
.dl-app + .dl-app {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.dl-app-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.dl-app-head img {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
}

.dl-app-head strong {
    display: block;
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.dl-app-head small {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    color: #8b8b8b;
}

.dl-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dl-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #adadad;
    transition: all .3s ease;
}

.dl-badge:hover {
    border-color: #aa8453;
    color: #fff;
}

.dl-badge i {
    font-size: 19px;
}

.dl-badge span {
    display: flex;
    flex-direction: column;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 1.2;
}

.dl-badge span em {
    font-style: normal;
    font-size: 9px;
    opacity: .7;
}

.footer-contact-info .footer-contact-phone a,
.footer-contact-info .footer-contact-mail a {
    color: inherit;
}

/* ============ 07. Numbered steps ============ */
.step-card {
    position: relative;
    background: #1b1b1b;
    border: 1px solid rgba(170, 132, 83, .2);
    padding: 46px 30px 34px;
    height: 100%;
    margin-bottom: 30px;
    transition: all .3s ease;
}

.step-card:hover {
    border-color: rgba(170, 132, 83, .6);
}

.step-num {
    position: absolute;
    top: -22px;
    left: 30px;
    width: 46px;
    height: 46px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    background: #aa8453;
    color: #fff;
    font-family: 'Gilda Display', serif;
    font-size: 19px;
}

.step-card h5 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 21px;
    margin-bottom: 12px;
}

.step-card p {
    color: #adadad;
    margin-bottom: 0;
}

/* ============ 08. Category blocks ============ */
.cat-block {
    background: #1b1b1b;
    border: 1px solid rgba(170, 132, 83, .2);
    margin-bottom: 30px;
    overflow: hidden;
}

.cat-block .cat-head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 30px;
    cursor: pointer;
}

.cat-block .cat-head span.ico {
    font-size: 34px;
    color: #aa8453;
    line-height: 1;
}

.cat-block .cat-head h4 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 24px;
    margin: 0 0 4px;
}

.cat-block .cat-head p {
    color: #8b8b8b;
    margin: 0;
    font-size: 15px;
}

.cat-block .cat-head .toggle {
    margin-left: auto;
    color: #aa8453;
    font-size: 15px;
    transition: transform .3s ease;
}

.cat-block.open .cat-head .toggle {
    transform: rotate(180deg);
}

.cat-body {
    display: none;
    padding: 0 30px 26px;
}

.cat-block.open .cat-body {
    display: block;
}

.cat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.cat-links li a {
    display: inline-block;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #adadad;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    transition: all .3s ease;
}

.cat-links li a:hover {
    background: #aa8453;
    border-color: #aa8453;
    color: #fff;
}

/* ============ 09. Feature / check lists ============ */
.jb-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.jb-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    color: #adadad;
    line-height: 1.7;
}

.jb-list li:before {
    content: '\e64c';
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 2px;
    color: #aa8453;
    font-size: 13px;
}

/* ============ 10. Stat strip ============ */
.stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid rgba(170, 132, 83, .2);
}

.stat-strip > div {
    flex: 1 1 200px;
    padding: 34px 22px;
    text-align: center;
    border-right: 1px solid rgba(170, 132, 83, .2);
}

.stat-strip > div:last-child {
    border-right: 0;
}

.stat-strip strong {
    display: block;
    font-family: 'Gilda Display', serif;
    color: #aa8453;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-strip span {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #8b8b8b;
}

@media screen and (max-width: 767px) {
    .stat-strip > div {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(170, 132, 83, .2);
    }
}

/* ============ 11. Coverage cards ============ */
.city-card {
    background: #1b1b1b;
    border: 1px solid rgba(170, 132, 83, .2);
    padding: 28px 26px;
    margin-bottom: 30px;
    height: 100%;
    transition: all .3s ease;
}

.city-card:hover {
    border-color: rgba(170, 132, 83, .6);
}

.city-card h5 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}

.city-card p {
    color: #8b8b8b;
    font-size: 14px;
    margin: 0;
}

.city-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    padding: 4px 11px;
    margin-bottom: 12px;
}

.city-tag.live {
    background: rgba(76, 175, 80, .16);
    color: #6fc072;
    border: 1px solid rgba(76, 175, 80, .35);
}

.city-tag.soon {
    background: rgba(170, 132, 83, .14);
    color: #c9a06b;
    border: 1px solid rgba(170, 132, 83, .4);
}

/* ============ 12. Emergency accents ============ */
.emg-banner {
    background: rgba(191, 76, 56, .1);
    border: 1px solid rgba(191, 76, 56, .45);
    padding: 26px 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emg-banner .ico {
    font-size: 32px;
    color: #c9583f;
}

.emg-banner h5 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    margin: 0 0 4px;
    font-size: 20px;
}

.emg-banner p {
    color: #adadad;
    margin: 0;
}

.emg-banner .act {
    margin-left: auto;
}

.emg-card {
    background: #1b1b1b;
    border: 1px solid rgba(191, 76, 56, .3);
    padding: 30px 26px;
    margin-bottom: 30px;
    height: 100%;
}

.emg-card span.ico {
    font-size: 36px;
    color: #c9583f;
    display: block;
    margin-bottom: 16px;
}

.emg-card h5 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.emg-card p {
    color: #adadad;
    margin: 0;
}

/* ============ 13. Legal / long-form pages ============ */
.legal-body h4 {
    font-family: 'Gilda Display', serif;
    color: #222;
    font-size: 24px;
    margin: 40px 0 14px;
}

.legal-body h4:first-child {
    margin-top: 0;
}

.legal-body p,
.legal-body li {
    color: #666;
    line-height: 1.9;
}

.legal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-meta {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #aa8453;
    margin-bottom: 30px;
    display: block;
}

/* ============ 14. Job / careers rows ============ */
.job-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #1b1b1b;
    border: 1px solid rgba(170, 132, 83, .2);
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: all .3s ease;
}

.job-row:hover {
    border-color: rgba(170, 132, 83, .6);
}

.job-row h5 {
    font-family: 'Gilda Display', serif;
    color: #fff;
    font-size: 20px;
    margin: 0 0 4px;
}

.job-row .jmeta {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #8b8b8b;
}

.job-row .japply {
    margin-left: auto;
}

/* ============ 15. Utilities ============ */
.jb-anchor {
    scroll-margin-top: 86px;
}

.pt-0 { padding-top: 0 !important; }
.mb-0-i { margin-bottom: 0 !important; }

.text-gold { color: #aa8453 !important; }

.jb-note {
    background: rgba(170, 132, 83, .08);
    border-left: 3px solid #aa8453;
    padding: 18px 22px;
    color: #adadad;
    margin-bottom: 26px;
}

/* ============ 16. Field glyph overrides ============ */
/* The template's .input1_inner always paints a calendar glyph, which is right
   for a check-in date and wrong for a place or a search box. Same position,
   same size, same gold — correct symbol. */
.input1_inner.is-place:after {
    content: "\e693";      /* ti-location-pin */
}

.input1_inner.is-search:after {
    content: "\e610";      /* ti-search */
}

/* ============ 17. Brand icon sizing ============ */
/* The template sets a global `img { width: 100% }`, which is right for
   photography and wrong for a logo mark. These are the brand images that
   are sized by attribute rather than by a component rule. */
.jb-icon {
    width: auto;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.jb-icon-64 { width: 64px; height: 64px; }
.jb-icon-72 { width: 72px; height: 72px; }

.footer-logo img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}
