
.section-title {
    border-bottom: 1px solid var(--color-lightgray-200);
    display: flex;
    flex-direction: column;
    padding-bottom: 1.25rem;
}

.section-title > * {
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
}

.section-title .lead-text {
    font-size: 1.5rem;
}

.content-wrapper {
    gap: 3rem;
    padding-top: 2rem;
}

.content {
    flex-basis: auto;
    flex-grow: 0;
    width: 75%;
}

/*
 * Sort Row
 */
.sort-row {
    color: var(--color-dimgray-200);
    font-size: 0.875rem;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
    gap: 1rem;
}

.sort-buttons {
    display: inline-flex;
}

.sort-buttons button {
    border-color: var(--color-lightgray-200);
    border-width: 1px;
    border-style: solid;
    color: inherit;
    line-height: 1.32;
    min-height: 2rem;
    z-index: 0;
}

.sort-buttons button.active {
    background-color: var(--brand-primary-100);
    border-color: var(--color-lightskyblue);
    color: var(--color-steelblue-200);
    z-index: 1;
}

.sort-buttons button:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.sort-buttons button:not(:first-child) {
    margin-left: -1px;
}

.sort-buttons button:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.sort-buttons button:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.sort-buttons.sort-arrow button {
    padding-left: 9px;
    padding-right: 9px;
}

/*
 * Flight List
 */
.flight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flight-list-item,
.flight-item-list {
    margin-bottom: 1.25rem;
}

.flight-list-item .flight-promo {
    font-weight: 800;
    padding: 0 .5rem;
    background: #fff;
    color: #f37721;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    top: -10px;
    border: 2px solid #f37721;
    display: inline-block;
}

.flight-card {
    background-color: #fff;
    width: 100%;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: var(--dark);
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.875rem;
    color: #000;
}

.card-button {
    border-bottom: 1px solid #e2e2e2;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    /* padding-bottom: 0.675rem;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem; */
    align-items: center;
    justify-content: space-between;
}

.card-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    color: var(--text-body);
}

.card-footer {
    color: var(--color-slategray-100);
    border-top: 1px solid #c9dbf3;
    display: flex;
    flex-direction: row;
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: center;
    justify-content: flex-start;
    min-height: 47px;
}

.footer-icons {
    align-items: center;
    color: #a1a1a1;
    font-size: 1.25rem;
    padding: 0.825rem;
    gap: 0.5rem;
}

.footer-description {
    color: inherit;
    line-height: 1;
    margin: 0;
    font-size: 0.875rem;
}

/*
 * SIDEBAR
 */
.sidebar {
    flex-basis: 0%;
    flex-grow: 1;
    max-width: 100%;
}

.sidebar .title-section {
    align-items: center;
    justify-content: space-between;
}

.sidebar .sidebar-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    margin: 0;
}

.clear-button {
    border: none;
    background-color: var(--brand-primary-100);
    color: var(--color-steelblue-200);
    letter-spacing: 0.02857em;
    font-size: 0.75rem;
    font-weight: 600;
    gap: 0.375rem;
}

.filter-props {
    border-bottom: 1px solid #ccc;
    font-size: 0.875rem;
    padding-bottom: 1rem;
    padding-top: 0.75rem;
}

.filter-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.value-stack {
    gap: 3px;
}

/*
 * Slider
 */
.slider {
    border-radius: 12px;
    color: var(--color-steelblue-200);
    box-sizing: content-box;
    display: inline-block;
    position: relative;
    cursor: pointer;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
    height: 0.21875rem;
    width: 100%;
    padding: 1rem 0;
}

.slider-rail {
    display: block;
    position: absolute;
    border-radius: inherit;
    background-color: currentColor;
    opacity: 0.38;
    width: 100%;
    height: inherit;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-track {
    display: block;
    position: absolute;
    border-radius: inherit;
    border: none;
    background-color: currentColor;
    -webkit-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        width 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        bottom 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        height 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        width 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        bottom 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        height 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    height: inherit;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-btn {
    background-color: #fff;
    border: 2px solid var(--color-darkturquoise);
    position: absolute;
    width: 0.875rem;
    height: 0.875rem;
    box-sizing: border-box;
    border-radius: 50%;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition:
        box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        bottom 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        bottom 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slider-input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 100%;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 100%;
    direction: ltr;
}

.input-grid {
    margin: -0.5rem;
}

.grid-item {
    flex-grow: 1;
    flex-basis: 50%;
    width: 50%;
    padding: 0.5rem;
}

.input-label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.filter-props .form-check-input {
    font-size: 1rem;
}

/*custom*/
.cancel-book-btn {
    background-color: #f7a048;
}

.ns-h8cimo {
    margin: 4px;
}

.ns-icon-row {
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.ns-icon-row [class^="ns-icon-"] {
    color: #7C7B7B;
    font-size: 1.125rem;
}

.seat-left .short-seat {
    width: 48px;
}
.seat-left .long-seat {
    width: 73px;
}

.seat-left {
    font-family: 'Roboto';
    position: absolute;
    left: 16px;
    top: 50px;
    padding: 4px 8px !important;
    border-radius: 50rem;
    background: #efefef;
    font-size: 13px;
    width: max-content;
    /* min-height: 34px; */
    display: flex;
    align-items: center;
}

.transit {
    border-color: var(--color-lavender-100);
    border-style: solid;
    border-width: 1px 0;
    padding: 0.375rem 0.625rem;
    width: 100%;
}

.transit-text {
    margin: 0;
}

/*ion range slide*/
.irs-line {
    background-color: #d0cfcf;
}

/* start page static flight */

.section-nav-psf {
    border-bottom: 1px solid var(--color-lightgray-200);
    display: flex;
    flex-direction: column;
    padding-bottom: 0.75rem;
    font-size: 14px;
    line-height: 20px;
}

.airports-title-found {
    margin-left: auto;
    color: var(--greyscale-subheading-text, #969696);
    font-size: 16px;
    line-height: 24px;
}

.side-page-title {
    font-size: 1rem;
    padding-bottom: 1rem;
    padding-top: 1.125rem;
    color: var(--slate-900, #0F172A);
    line-height: 36px;
}

.ap-name {
    color: #555;
    font-weight: 400;
    line-height: 44.5px; /* 278.125% */
    padding-left: 20px;
    font-size: 16px;
}

.line-color-ccc {
    border-bottom: var(--bs-border-width) var(--bs-border-style) #cccccc;
}

.cat_star2 i {
    margin-right: 0px;
    color: #F6AC1A;
    font-size: 18px;
}

.star-mute {
    color:#EFEFEF !important;
}

.txt-frm {
    font-size: 13px;
    margin-right: 6px;
}

.content-fp {
    flex-basis: auto;
    flex-grow: 0;
    width: 66%;
}

.fp-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    margin-top: 1.25rem;
}

.city-title {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.25rem;
}

.town-name {
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
}

.time-title-zone {
    font-size: 16px;
    line-height: 25.2px;
    margin-top: 8px;
}

.ava-city {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    filter: contrast(0.8);
}

.col-desc-town {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
}

.col-desc-text {
    height: 120px;
    flex: 1 0 0;
}

.desc-text {
    color: var(--greyscale-text-label, #555);
    font-size: 16px;
    line-height: 26px;
}

.title-flight-country {
    font-size: 36px;
    font-weight: 400;
    line-height: 51px;
}

.opt-title {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 83rem;
    margin-left: auto;
    margin-right: auto;
}

.opt-section {
    margin-top: 7.5rem;
    background: #F1F5F9;
}

.header {
    background-color: #ffffff !important;
}

.content-fp2 {
    flex-basis: auto;
    flex-grow: 0;
    width: 78%;
}

.country-nm {
    color: #555;
    font-weight: 400;
    line-height: 44.5px;
    padding-left: 20px;
    font-size: 18px;
}

.bc-f8 {
    background-color: #f8f8f8 !important;
}

.drag-bar-fp2 {
    border-radius: 4px !important;
    background: var(--Light-Greyscale-Stroke, #D7D7D7) !important;
    width: 8.708px !important;
    height: 96.879px !important;
}

.country-ttl {
    color: var(--greyscale-text-heading, #333);
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
}

.fp2-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.2rem 3rem;
}

.fp3-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
}

.hp-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 34px;
}

.hp-col-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 0 0;
}

.hp-title {
    font-size: 16px;
    font-weight: 600;
}

.org-bold {
    color: var(--main-secondary, #F37721);
    font-weight: 500;
}

.gp-34 {
    gap:34px;
}

.fprc-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
}

.fprc-desc {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.2px;
}

/*.sorting:before {
    right: 0.5rem;
    left: -17px;
    content: "\e5c7";
    font-family: "Material Symbols Outlined";
    font-size: 1rem;
    top: 0px;
    color: #6E7491;
    opacity: 0.2;
    position: relative;
    font-size: 25px;
    float: inline-end;
}

.sorting:after {
    right: 0px;
    left: 8px;
    content: "\e5c5";
    font-family: "Material Symbols Outlined";
    top: 8px;
    font-size: 1rem;
    color: #6E7491;
    position: relative;
    font-size: 25px;
}*/

.sorting {
    color: var(--main-secondary, #F37721);
    font-size: 20px;
    font-weight: 500;
    line-height: 21px;
}

.title-from-country {
    font-size: 48px;
    font-weight: 600;
    line-height: 51px;
}

.align-base {
    vertical-align: baseline;
}

.info-prc-updt {
    color: #444;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.8px;
}

.month-back-txt {
    color: var(--greyscale-text-body, #444);
    text-align: right;
    font-size: 14px;
    vertical-align: middle;
}

.month-back-logo {
    vertical-align: middle;
    color: #7C7B7B;
}

.al-name {
    font-size: 38px;
    font-weight: 400;
    line-height: normal;
}

.code-title {
    color: var(--text-body, #475569);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin-top: 6px;
}

.desc-al {
    color: var(--text-body, #475569);
    font-size: 16px;
    line-height: 27px;
}

.info-al {
    color: var(--text-body, #475569);
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

.al-ap-name {
    color: #0A73B7;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    padding-left: 20px;
}

.content-al {
    flex-basis: auto;
    flex-grow: 0;
    width: 64%;
}

.al-feat-name {
    color: var(--text-title-heading, #1E293B);
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
}

.item-nm {
    color: var(--slate-500, #64748B);
    font-size: 19.833px;
    font-weight: 400;
    line-height: 44.5px;
    letter-spacing: 0.198px;
    padding-left: 18px;
}

.ap-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 2rem;
    margin-top: 2rem;
}

.benefit-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid var(--color-lightgray-100);
    border-top: 1px solid var(--color-lightgray-100);
}

.benefit-nav {
    --nav-link-padding-x: 1rem;
    --nav-link-padding-y: 0.5rem;
    --nav-link-color: #64748B;
    --nav-link-hover-color: var(
            --color-steelblue-200);
    --nav-link-disabled-color: var(
            --bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.benefit-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--modal-padding);
}

.fw-500 {
    font-weight:500;
}

.benefit-list {
    list-style: disc;
    padding: 16px 5px 16px 25px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem 0rem;
}

.benefit-txt {
    color: var(--text-body, #475569);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.head-table-ap {
    background: #F5F6FA;
    color: #8A93A7;
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 39.6px;
    text-align: center;
    border-bottom: solid 1px transparent;
}

.sparator {
    display: inherit;
    margin-bottom: 10px;
}

.body-table-ap {
    color: #35405A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    vertical-align: middle !important;
    border-top: 1px solid transparent !important;
}

.al-table-logo {
    margin-right: 6px;
    width: 52px;
}

.static-icon-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-xs);
}

.static-circle {
    border-radius: 50%;
    color: #ffffff;
    width: 4rem;
    height: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #0A73B7;
    font-size: 30px;
}

.flx-1 {
    flex:1;
}

.static-circle-bot {
    border-radius: 50%;
    color: #ffffff;
    width: 4rem;
    height: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #F37721;
    font-size: 30px;
}

/* end page static flight */