/* Cab New — extras only; shell uses flight classes */

#cnSearchForm.input-field {
    min-height: 450px;
    /* padding-top: 40px !important; */
    /* padding-bottom: 48px !important; */
    box-sizing: border-box;
}

#cnPage {
    position: relative;
    width: 100%;
}

#cabHistoryBack .wenofwfw {
    color: #fff;
}

#cnSearchForm #cnPickupValue,
#cnSearchForm #cnReturnValue {
    font-size: 16px;
}

#cabHistoryBack .wenofwfw i {
    color: #fff;
}

#cab-new-page-content {
    padding-bottom: 1rem;
}

#cab-new-page-content .reviewBtnTe1 {
    background: var(--dynamic-text, #1a73e8);
    color: #fff;
    border: 0;
    padding: 6px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1.4;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

#cab-new-page-content .reviewBtnTe1:hover {
    opacity: 0.92;
}

#cab-new-page-content .reviewBtnTe1:active {
    transform: scale(0.98);
}

#cab-new-page-content .imagee {
    margin-top: -48px;
}

.cn-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 120;
    background: #fff;
    border: 1px solid #e1e7ee;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(20, 24, 40, 0.14);
    display: none;
}

.cn-panel.is-open,
.cn-pax-panel.active {
    display: block;
}

/* Location dropdown — flight-style, flush under field */
.cn-suggest {
    top: 54% !important;
    margin-top: 0 !important;
    width: 26rem;
    max-width: min(26rem, 92vw);
    max-height: none;
    overflow: hidden;
    padding: 0;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    box-shadow: 4px 4px 10px #00000040;
    z-index: 200;
    left: -1px;
}

.cn-suggest__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #ececec;
}

.cn-suggest__search i {
    color: #9aa1ab;
    font-size: 14px;
}

.cn-suggest__search input {
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 14px;
    background: transparent;
    color: #222;
}

.cn-suggest__list {
    max-height: 360px;
    overflow: auto;
    padding: 4px 0 8px;
}

.cn-suggest__label {
    padding: 10px 16px 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9aa1ab;
    font-weight: 600;
}

.cn-suggest__row {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.1s ease;
}

.cn-suggest__row:hover,
.cn-suggest__row.is-active {
    background: #f0f0f0b0;
}

.cn-suggest__row-icon {
    color: #9f9f9f;
    font-size: 18px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.cn-suggest__row-icon.is-airport {
    transform: rotate(-30deg);
}

.cn-suggest__skeleton {
    padding: 8px 0 12px;
}

.cn-suggest__skel-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.cn-suggest__skel-icon,
.cn-suggest__skel-line,
.cn-suggest__skel-code {
    background: linear-gradient(90deg, #cfd5de 0%, #e8ebf0 45%, #cfd5de 90%);
    background-size: 200% 100%;
    animation: cnSuggestShimmer 1.1s ease-in-out infinite;
    border-radius: 6px;
}

.cn-suggest__skel-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cn-suggest__skel-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cn-suggest__skel-line {
    height: 12px;
    width: 72%;
}

.cn-suggest__skel-line.is-sub {
    height: 10px;
    width: 88%;
    opacity: 0.9;
}

.cn-suggest__skel-code {
    width: 34px;
    height: 14px;
    flex-shrink: 0;
}

.cn-suggest__skel-row:nth-child(2) .cn-suggest__skel-line {
    width: 64%;
    animation-delay: 0.08s;
}

.cn-suggest__skel-row:nth-child(2) .cn-suggest__skel-line.is-sub {
    width: 78%;
    animation-delay: 0.12s;
}

.cn-suggest__skel-row:nth-child(3) .cn-suggest__skel-line {
    width: 70%;
    animation-delay: 0.16s;
}

.cn-suggest__skel-row:nth-child(3) .cn-suggest__skel-line.is-sub {
    width: 82%;
    animation-delay: 0.2s;
}

.cn-suggest__skel-row:nth-child(4) .cn-suggest__skel-line {
    width: 58%;
    animation-delay: 0.24s;
}

.cn-suggest__skel-row:nth-child(4) .cn-suggest__skel-line.is-sub {
    width: 74%;
    animation-delay: 0.28s;
}

.cn-suggest__skel-row:nth-child(5) .cn-suggest__skel-line {
    width: 66%;
    animation-delay: 0.32s;
}

.cn-suggest__skel-row:nth-child(5) .cn-suggest__skel-line.is-sub {
    width: 80%;
    animation-delay: 0.36s;
}

@keyframes cnSuggestShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.cn-suggest__row-main {
    flex: 1;
    min-width: 0;
}

.cn-suggest__row-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2430;
    line-height: 1.2;
}

.cn-suggest__row-sub {
    font-size: 12px;
    color: #666;
    line-height: 1.25;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cn-suggest__row-code {
    font-size: 14px;
    font-weight: 700;
    color: #1f2430;
    flex-shrink: 0;
}

.cn-pax-panel {
    right: 0;
    left: auto;
    width: 280px !important;
    min-width: 0;
    z-index: 130;
}

.cn-pax-panel .first {
    padding: 18px 16px !important;
}

.cn-pax-panel .first > .d-flex {
    justify-content: center !important;
    gap: 28px !important;
}

.cn-pax-panel .ygugyuyvyuyvu .act {
    cursor: pointer;
}

.cn-pax-panel .second {
    justify-content: flex-end;
}

.cn-datetime-panel {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: auto;
    width: min(640px, 94vw);
    padding: 10px 14px 14px;
    z-index: 140;
    margin-top: 0;
}

#cnSearchForm .wefwewf {
    position: relative;
}

.cn-cal-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 4px;
    min-height: 0;
}

.cn-cal-nav {
    display: inline-flex;
    gap: 6px;
}

.cn-cal-nav button {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--dynamic-text);
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
}

.cn-cal-nav button:hover {
    background: color-mix(in srgb, var(--dynamic-text) 12%, #fff);
}

.cn-cal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cn-month__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cn-weekdays,
.cn-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cn-weekdays span {
    text-align: center;
    font-size: 12px;
    color: #8b919a;
    padding: 4px 0;
    font-weight: 600;
}

.cn-day {
    border: 0;
    background: transparent;
    height: 34px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2430;
    cursor: pointer;
}

.cn-day:hover:not(:disabled):not(.is-empty) {
    background: #f3f5f8;
}

.cn-day.is-selected {
    background: var(--dynamic-text);
    color: #fff;
}

.cn-day:disabled,
.cn-day.is-empty {
    color: #c5cad3;
    cursor: default;
}

.cn-time-box__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cn-time-datebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f5f6f8;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.cn-time-datebar button {
    border: 0;
    background: transparent;
    color: var(--dynamic-text);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.cn-time-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cn-time-inputs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cn-time-inputs input {
    width: 56px;
    height: 42px;
    text-align: center;
    border: 1px solid #e1e7ee;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.cn-ampm {
    display: inline-flex;
    gap: 8px;
}

.cn-ampm button {
    min-width: 54px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #e1e7ee;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

.cn-ampm button.is-active {
    border-color: var(--dynamic-text);
    color: var(--dynamic-text);
    box-shadow: 0 0 0 1px var(--dynamic-text);
}

.cn-time-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.cn-btn-ghost,
.cn-btn-primary {
    flex: 1;
    height: 44px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.cn-btn-ghost {
    border: 1px solid #e1e7ee;
    background: #fff;
    color: #1f2430;
}

.cn-btn-primary {
    border: 0;
    background: var(--dynamic-text);
    color: #fff;
}

.cn-return-clear {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    background: transparent;
    color: #9aa1ab;
    cursor: pointer;
    line-height: 1;
    padding: 2px 4px;
}

.cn-tip-fare {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 0;
    background: linear-gradient(135deg, rgb(233, 252, 243) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.cn-tip-fare__icon {
    color: #7a9e8d;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.85;
}

.cn-tip-fare__content {
    min-width: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #5f6b73;
}

.cn-tip-fare__title {
    font-weight: 600;
    color: #3f4a52;
    margin-right: 4px;
}

.cn-tip-fare__body {
    font-weight: 400;
    color: #6b7680;
}

.cn-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
}

.cn-overlay.is-open {
    display: block;
}

#cnSearchForm .jhirede {
    background: transparent;
}

#cnSearchForm .from-field,
#cnSearchForm .to-field {
    overflow: visible;
}

@media (max-width: 768px) {
    #cnSearchForm.input-field {
        min-height: 0;
        padding-top: 28px !important;
        padding-bottom: 48px !important;
    }

    #cabHistoryBack .wenofwfw,
    #cabHistoryBack .wenofwfw i {
        color: rgb(101, 110, 129);
    }

    .cn-cal-grid {
        grid-template-columns: 1fr;
    }

    .cn-datetime-panel {
        width: min(100vw - 32px, 420px);
        left: 0;
        right: 0;
    }

    .cn-suggest {
        width: min(100vw - 32px, 26rem);
        left: 0;
        right: auto;
        top: 54% !important;
    }

    .cn-pax-panel {
        width: min(100vw - 32px, 280px) !important;
        left: auto;
        right: 0;
    }
}

/* ===== Cab search listing ===== */
.cn-cab-listing .cn-results-area {
    padding: 20px 0 48px;
    /* background: #eef1f6; */
    min-height: 52vh;
}

.cn-listing-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.cn-filters-panel,
.cn-results-main {
    margin: 0;
    padding: 0;
    min-width: 0;
}

.cn-filters-panel__card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.cn-filters-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid #eef0f4;
}

.cn-filters-panel__head h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    flex: 1;
}

.cn-filters-panel__head #cnFilterReset {
    border: 0;
    background: transparent;
    color: #183e95;
    font-size: 12px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

.cn-filters-panel__head #cnFilterReset:hover {
    text-decoration: underline;
}

.cn-filters-panel__close {
    display: none;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: #f2f4f7;
    color: #344054;
    cursor: pointer;
}

.cn-filters-panel__block {
    padding: 16px 18px;
    border-bottom: 1px solid #eef0f4;
}

.cn-filters-panel__block:last-child {
    border-bottom: 0;
}

.cn-filters-panel__block h3 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #667085;
}

.cn-sort-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cn-sort-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e4e7ec;
    background: #fafbfc;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.cn-sort-item:hover {
    border-color: #c7d2fe;
    background: #f8faff;
}

.cn-sort-item:has(input:checked) {
    border-color: #183e95;
    background: #eef3ff;
    box-shadow: inset 0 0 0 1px #183e95;
}

.cn-sort-item:has(input:checked) span {
    color: #183e95;
}

.cn-sort-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    margin: 0;
}

.cn-sort-item span {
    font-size: 13px;
    font-weight: 600;
    color: #1d2939;
    line-height: 1.3;
}

.cn-price-slider-wrap {
    padding-top: 2px;
}

.cn-price-slider-wrap.is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.cn-price-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 48px;
    margin-bottom: 14px;
}

.cn-price-chart-bar {
    flex: 1;
    min-width: 2px;
    border-radius: 2px 2px 0 0;
    background: var(--dynamic-text, #183e95);
    opacity: 0.45;
}

.cn-price-slider {
    height: 6px !important;
    margin: 8px 4px 18px;
    border: none !important;
    background: #eef0f4 !important;
    border-radius: 999px;
}

.cn-price-slider .ui-slider-range {
    background: var(--dynamic-text, #183e95) !important;
    border-radius: 999px;
}

.cn-price-slider .ui-slider-handle {
    width: 18px !important;
    height: 18px !important;
    top: 50% !important;
    margin-top: -9px !important;
    border-radius: 50% !important;
    border: 2px solid var(--dynamic-text, #183e95) !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    outline: none;
}

.cn-price-slider-labels {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #344054;
}

.cn-chip-grid,
.cn-seat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cn-chip,
.cn-seat-chip {
    margin: 0;
    cursor: pointer;
}

.cn-chip input,
.cn-seat-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cn-chip span,
.cn-seat-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.15s ease;
}

.cn-seat-chip span {
    min-width: 48px;
}

.cn-chip:hover span,
.cn-seat-chip:hover span {
    border-color: #98a2b3;
}

.cn-chip input:checked + span,
.cn-seat-chip input:checked + span {
    border-color: #183e95;
    background: #183e95;
    color: #fff;
}

.cn-hidden-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.cn-results-main__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

/* When count is hidden, drop the head on desktop so filters + empty card top-align */
@media (min-width: 992px) {
    .cn-results-main__head:has(#cnResultCount[hidden]) {
        display: none;
        margin: 0;
    }
}

.cn-results-main__head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #101828;
}

.cn-filters-open-btn {
    display: none;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.cn-cab-card {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cn-cab-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 10px 24px rgba(24, 62, 149, 0.08);
}

.cn-cab-card__left {
    display: flex;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.cn-cab-media {
    width: 112px;
    height: 76px;
    border-radius: 10px;
    background: linear-gradient(145deg, #f2f4f7, #e8edf5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cn-cab-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cn-cab-media i {
    font-size: 28px;
    color: #98a2b3;
}

.cn-cab-card__cat {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #667085;
}

.cn-cab-card__name {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #101828;
    line-height: 1.25;
}

.cn-cab-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.cn-cab-meta span {
    font-size: 12px;
    font-weight: 500;
    color: #667085;
}

.cn-cab-meta i {
    margin-right: 4px;
    color: #98a2b3;
}

.cn-cab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.cn-cab-tags span {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f2f4f7;
    color: #475467;
    font-size: 11px;
    font-weight: 600;
}

.cn-cab-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    min-width: 120px;
    padding-left: 12px;
    border-left: 1px solid #eef0f4;
}

.cn-cab-card__price {
    font-size: 22px;
    font-weight: 800;
    color: #101828;
    line-height: 1;
}

.cn-cab-card__cta {
    height: 40px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: var(--dynamic-text, #183e95);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.15s ease;
}

.cn-cab-card__cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.cn-cab-empty {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    padding: 0px 0px 36px 0px;
    text-align: center;
}

.cn-cab-empty__img {
    display: block;
    /* width: min(100%, 420px); */
    height: auto;
    /* margin: 0 auto 16px; */
    object-fit: contain;
}

.cn-cab-empty h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: #102a56;
    line-height: 1.3;
}

.cn-cab-empty p {
    margin: 0 auto 24px;
    max-width: 460px;
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    line-height: 1.55;
}

.cn-cab-empty__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 260px);
    margin: 0 auto;
}

.cn-cab-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.cn-cab-empty__btn--primary {
    border: 0;
    background: var(--dynamic-text, #183e95);
    color: #fff;
}

.cn-cab-empty__btn--primary:hover {
    filter: brightness(1.05);
    color: #fff;
}

.cn-cab-empty__btn--ghost {
    border: 1.5px solid var(--dynamic-text, #183e95);
    background: #fff;
    color: var(--dynamic-text, #183e95);
}

.cn-cab-empty__btn--ghost:hover {
    background: #f3f6ff;
    color: var(--dynamic-text, #183e95);
}

.cn-cab-empty__or {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 12px 0;
    color: #98a2b3;
    font-size: 12px;
    font-weight: 600;
}

.cn-cab-empty__or::before,
.cn-cab-empty__or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e4e7ec;
}

.cn-cab-empty__or span {
    padding: 0 12px;
}

.cn-cab-listing .cn-overlay {
    display: none;
}

@media (max-width: 991.98px) {
    .cn-listing-layout {
        grid-template-columns: 1fr;
    }

    .cn-filters-open-btn {
        display: inline-flex;
    }

    .cn-filters-panel {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 1050;
        width: min(100vw - 48px, 320px);
        max-width: 100%;
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        background: transparent;
        padding: 12px;
        overflow: auto;
    }

    .cn-filters-panel.is-open {
        transform: translateX(0);
    }

    .cn-filters-panel__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cn-cab-listing .cn-overlay.is-open {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1040;
        background: rgba(15, 23, 42, 0.45);
    }

    .cn-cab-card {
        flex-direction: column;
    }

    .cn-cab-card__right {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0;
        padding: 12px 0 0;
        border-left: 0;
        border-top: 1px solid #eef0f4;
    }
}

