.newSrchWgt {
    background-color: #f1f5f9;
    padding: 40px 20px;
}

    .newSrchWgt .portal-wrapper {
        background-color: #ffffff;
        width: 100%;
        max-width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
    }

    .newSrchWgt .search-section {
        padding: 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 20px;
    }

    .newSrchWgt .main-title {
        font-size: 32px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 28px;
    }

    /* Row 1: Radio Buttons */
    .newSrchWgt .radio-group {
        display: flex;
        gap: 24px;
        margin-bottom: 24px;
    }

    .newSrchWgt .radio-label {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 500;
        color: #1e293b;
        cursor: pointer;
    }

        .newSrchWgt .radio-label input[type="radio"] {
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid #cbd5e1;
            border-radius: 50%;
            margin-right: 10px;
            outline: none;
            display: inline-grid;
            place-content: center;
            transition: all 0.2s ease;
        }

            .newSrchWgt .radio-label input[type="radio"]::before {
                content: "";
                width: 10px;
                height: 10px;
                border-radius: 50%;
                transform: scale(0);
                background-color: #ffffff;
                transition: 0.15s transform ease-in-out;
            }

            .newSrchWgt .radio-label input[type="radio"]:checked {
                border-color: #c5a168;
                background-color: #c5a168;
            }

                .newSrchWgt .radio-label input[type="radio"]:checked::before {
                    transform: scale(1);
                }

    /* Form Grid Map */
    .newSrchWgt .search-form-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 16px;
    }

    .newSrchWgt .col-6 {
        grid-column: span 6;
        padding: 0;
    }

    .newSrchWgt .col-4 {
        grid-column: span 4;
        padding: 0;
    }

    .newSrchWgt .col-12 {
        grid-column: span 12;
        padding: 0;
    }

.col-12.rowRepeat{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    position: relative;
}
.removerech {
    position: absolute;
    right: -30px;
    top: 20px;
    padding: 8px;
}
.removerech img {
    width: 17px;
}

/* Unified Field Containers matching image_48a042.png */
.newSrchWgt .input-box {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 12px 8px 12px 14px;
    background-color: #ffffff;
    min-height: 64px;
    transition: border-color 0.2s ease;
    width: auto;
    max-width: unset;
}

    .newSrchWgt .input-box:hover {
        border-color: #c5a168;
    }

    .newSrchWgt .input-box:focus-within {
        border-color: #c5a168;
        box-shadow: 0 0 0 3px rgba(145, 38, 159, 0.1);
    }

.newSrchWgt .field-icon {
    color: #c5a168;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    flex-shrink: 0;
}

.newSrchWgt .inner-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin: 0;
}
.autocomplete + p {
    position: absolute;
    bottom: -17px;
    left: 0;
    margin: 0;
}
.date-picker-wrapper .month-wrapper table .week-name {
    height: 29px;
}
.newSrchWgt .field-label {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.newSrchWgt .inner-stack input,
.newSrchWgt .inner-stack select {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.newSrchWgt .inner-stack input::placeholder {
color: #64748b;
font-weight: 400;
}

.newSrchWgt .inner-stack select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 20px;
}

.newSrchWgt .select-arrow {
    position: absolute;
    right: 18px;
    color: #64748b;
    pointer-events: none;
    width: 14px;
    height: 14px;
}
.action-row.input-box.col-4 {
    padding: 0;
    border: 0;
}
.newSrchWgt .btn-submit {
    background-color: #c5a168;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(145, 38, 159, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
}

.newSrchWgt .btn-submit:hover {
    background-color: #072d4f;
}

.newSrchWgt .btn-submit:active {
    transform: scale(0.98);
}

/* Right Side: Showcase Side Panel containing sydneyimg.jpg */
.newSrchWgt .showcase-section {
    background-color: #f8fafc;
    border-left: 1px solid #e2e8f0;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 0 24px 24px 0;
}

.newSrchWgt .promo-text-wrapper {
    margin-bottom: 30px;
}

.newSrchWgt .promo-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 12px;
}

.newSrchWgt .promo-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.newSrchWgt .image-container {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

    .newSrchWgt .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
strong.datesIcon {
    font-size: 16px;
    margin-top: 7px;
}
strong.datesIcon + p {
    margin: 0;
}
.AddError {
    font-size: 13px;
    color: #ff0000;
    padding: 8px;
}

.error p#pOrigin {
    color: #ff0000 !important;
}

.error p#pDestination {
    color: #ff0000 !important;
}
/* Responsive Layout Control rules */
@media (max-width: 1024px) {
    .newSrchWgt .portal-wrapper {
        grid-template-columns: 1fr;
    }

    .newSrchWgt .showcase-section {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding: 40px 45px;
    }
}

@media (max-width: 768px) {
    .newSrchWgt .search-section, .showcase-section {
        padding: 30px 20px;
    }

    .newSrchWgt .col-6, .col-4 {
        grid-column: span 12;
    }

    .newSrchWgt .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .newSrchWgt .btn-submit {
        width: 100%;
    }
}

/*AutoSearch*/
/* --- Autocomplete Dropdown List Container (jQuery UI Customization) --- */
.ui-autocomplete.ui-menu {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    padding: 6px 0;
    margin-top: 4px !important;
    list-style: none;
    max-height: 320px;
    overflow-y: auto;
    z-index: 99999 !important;
    left: -46px !important;
    width: 120% !important;
    top: 39px !important;
}

/* Custom Scrollbar for Smooth UX inside Search Results */
.ui-autocomplete::-webkit-scrollbar {
  width: 6px;
}
.ui-autocomplete::-webkit-scrollbar-track {
  background: transparent;
}
.ui-autocomplete::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 10px;
}

/* --- Menu Item Base Layout --- */
.ui-menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Clickable Block Wrapper Layer */
.ui-menu-item-wrapper {
  padding: 0 !important; /* Clear native jQuery defaults */
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

/* Anchor Link Core Content Layout */
.ui-menu-item-wrapper a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  width: 100%;
  color: #1e293b;
  box-sizing: border-box;
}

/* --- Inner Element Visual Hierarchy --- */

/* Airport Vector Icon Styling */
.ui-menu-item-wrapper img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ui-menu-item-wrapper p {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    min-width: 42px;
    /* text-transform: uppercase; */
    letter-spacing: 0.03em;
}
.add-return {
    width: 100%;
    background: rgb(145 38 159 / 10%);
    border-radius: 10px;
    padding: 2px 12px;
    cursor: pointer;
}

/* City / Airport Details Caption Text */
.ui-menu-item-wrapper span {
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Interactive States (Hover / Active Focus) --- */

/* Hover & Active System Selection State mapped directly to soft purple glow */
.ui-menu-item-wrapper:hover,
.ui-menu-item-wrapper.ui-state-active,
.ui-menu-item-wrapper.ui-state-focus {
  background-color: rgba(145, 38, 159, 0.08) !important;
}

/* Typography Accent color response during selection -> Brand Purple */
.ui-menu-item-wrapper:hover p,
.ui-menu-item-wrapper.ui-state-active p {
  color: #c5a168;
}

.ui-menu-item-wrapper:hover img,
.ui-menu-item-wrapper.ui-state-active img {
  opacity: 1;
  transform: scale(1.05);
}

/* Left Accent border on hover/selection -> Brand Orange */
.ui-menu-item-wrapper.ui-state-active a,
.ui-menu-item-wrapper:hover a {
  border-left: 3px solid #c5a168;
  padding-left: 13px; /* Compenses for the 3px border to avoid text shifting */
}
.ClassPopData, .travlerr-data {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    padding: 14px;
    width: 100%;
    width: 380px;
    position: absolute;
    z-index: 99;
    box-sizing: border-box;
    top: 60px;
    left: 0;
}

.mob-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.mob-show .float-left {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* Vector Close Element Graphic Mark */
.close-btn-icon.close-mob {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.close-btn-icon.close-mob:hover {
    transform: rotate(90deg);
}

.close-btn-icon.close-mob::before,
.close-btn-icon.close-mob::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: #64748b;
    border-radius: 2px;
}

.close-btn-icon.close-mob::before {
    transform: rotate(45deg);
}

.close-btn-icon.close-mob::after {
    transform: rotate(-45deg);
}

.travel-class p,
.travel-data p {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    margin-top: 16px;
}
.travel-class p:first-of-type,
.travel-data p:first-of-type {
    margin-top: 0;
}

.travel-class ul,
.travel-data ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.travel-data ul li {
    flex: 1 1 calc(3% - 4px);
    min-width: 30px;
}
.travel-data ul li {
    flex: 1 1 calc(4% - 7px);
    min-width: 31px;
}

.travel-class ul li,
.travel-data ul li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 5px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    margin: 0;
}
.travel-class ul li:hover:not(.active),
.travel-data ul li:hover:not(.active) {
    border-color: #c5a168;
    background-color: rgba(230, 89, 0, 0.04);
    color: #c5a168;
}
.travel-class ul li.active,
.travel-data ul li.active {
    background-color: #c5a168;
    border-color: #c5a168;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(145, 38, 159, 0.25);
}
.searchAirlines {
    display: none;
}
.ClassPopData .travel-class ul {
    gap: 12px;
}
    .ClassPopData .travel-class ul li {
        padding: 10px;
        width: 48%;
    }

.AddError {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #ef4444;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 14px;
}
.apply-btnm,
.apply-cabes,
.apply-btnCls,
.apply-btn {
    width: 100%;
    background-color: #082d51;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    box-shadow: 0 6px 16px rgba(230, 89, 0, 0.2);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.apply-btnm:hover,
.apply-cabes:hover,
.apply-btnCls:hover,
.apply-btn:hover {
    background-color: #082d51;
    box-shadow: 0 8px 20px rgba(230, 89, 0, 0.3);
    opacity: 0.9;
}
.apply-btnm:active,
.apply-cabes:active,
.apply-btnCls:active,
.apply-btn:active {
    transform: scale(0.98);
}
@media (max-width: 500px) {
    .ClassPopData,
    .travlerr-data {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        max-width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        overflow-y: auto;
        padding: 20px;
    }
}

@media (max-width: 620px) {
.newSrchWgt {
    background-color: #f1f5f9;
    padding: 20px 0;
}
.newSrchWgt .main-title {
    display: none;
}
.newSrchWgt .radio-group {
    flex-wrap: wrap;
    gap: 4px 10px;
    flex-direction: unset;
    margin-bottom: 10px;
}
.newSrchWgt .radio-label input[type="radio"] {
    margin-right: 5px;
}
.newSrchWgt .radio-label {
    font-size: 13px;
    letter-spacing: -0.5px;
}
.newSrchWgt .col-4 {
    grid-column: span 12;
}
.removerech {
    right: 0;
    top: 1px;
    padding: 4px;
    background: #ccc;
    border-radius: 0 10px 0 0;
}
.newSrchWgt .search-form-grid {
    gap: 8px;
}
.ClassPopData, .travlerr-data {      
    z-index: 1000;
}
.newSrchWgt .showcase-section {
    display: none;
}

}
.date-picker-wrapper {
    position: absolute;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.02);
    padding: 15px;
    z-index: 10000;
    box-sizing: border-box;
    width: 600px;
}
.date-picker-wrapper .month-wrapper table .day {
    padding: 0;
    line-height: 40px;
    margin: 0;
}
.date-picker-wrapper .month-wrapper {
    border: 0;
    border-radius: 0;
    background-color: #fff;
    padding: 0;
    cursor: default;
    position: relative;
    _overflow: hidden;
    gap: 0;
}
.date-picker-wrapper .month-wrapper:before {
    content: "";
    height: 245px;
    width: 1px;
    left: 50%;
    bottom: 15px;
    display: inline-block;
    position: absolute;
    background: #e5e5e5;
}
.date-picker-wrapper .month-wrapper table .day {
    border: 0;
    box-shadow: none;
}
.date-picker-wrapper table .caption .next, .date-picker-wrapper table .caption .prev {
    background-color: #fff !important;
    color: #000 !important;
    font-size: 15px !important;
    line-height: 23px;
    width: 25px !important;
    height: 25px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    padding: 0 !important;
    box-shadow: 0px 0px 6px #00000021;
}

.date-picker-wrapper .month-wrapper table .day.checked {
    background: #EAF2F8 !important;
    color: #647582 !important;
}
.date-picker-wrapper .month-wrapper table .day.checked.last-date-selected,
.date-picker-wrapper .month-wrapper table .day.checked.first-date-selected {
    background: #c5a168 !important;
    color: #fff !important;
    position: relative;
}
.date-picker-wrapper .month-wrapper table .day.checked.first-date-selected:before {
    content: '';
    position: absolute;
    border-left: 6px solid #c5a168;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    right: -5px;
    top: 8px;
}
.date-picker-wrapper .month-wrapper table .day.checked.last-date-selected:before {
    content: '';
    position: absolute;
    border-right: 6px solid #c5a168;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    left: -5px;
    top: 8px;
}

.date-picker-wrapper .day.toMonth.valid.checked.first-date-selected {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0 !important;
}

.date-picker-wrapper .day.toMonth.valid.checked.last-date-selected {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.date-picker-wrapper .month-wrapper table td, .date-picker-wrapper .month-wrapper table th {
    font-weight: 500;
    font-size: 14px;
    color: #c5a168;
}
.drp_top-bar {
    border-bottom: 2px solid #f8fafc;
    padding-bottom: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.normal-top {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .normal-top .selection-top {
        color: #94a3b8;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.05em;
    }

    .normal-top b.start-day,
    .normal-top b.end-day {
        color: #0b2f53;
        font-weight: 600;
        background: #fdf4ff;
        border: 1px solid #f5d0fe;
        padding: 6px 12px;
        border-radius: 10px;
    }

    .normal-top .separator-day {
        color: #cbd5e1;
        font-weight: 400;
    }

.selected-days {
    font-style: normal;
    font-size: 13px;
    color: #0b2f53;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.selected-days-num {
    color: #0b2f53;
}

.error-top {
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
}

.default-top {
    color: #94a3b8;
    font-size: 14px;
}

.hide {
    display: none !important;
}

.month-wrapper {
    display: flex !important;
    gap: 40px;
    align-items: flex-start;
    width: auto !important;
}

    .month-wrapper table {
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%;
    }

    .month-wrapper th.month-name {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        text-transform: capitalize;
        padding-bottom: 20px;
        text-align: center;
        letter-spacing: -0.02em;
    }

.month-name .month-element {
    display: inline-block;
}

    .month-name .month-element:first-child {
        margin-right: 6px;
    }

.prev, .next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: #64748b;
    font-size: 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    user-select: none;
}

    .prev:hover, .next:hover {
        background-color: #c5a168;
        border-color: #c5a168;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(145, 38, 159, 0.2);
    }

.week-name th {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.08em;
    padding-bottom: 16px;
    text-align: center;
    width: 44px;
}

.month-wrapper td {
    padding: 4px 0;
}

.day {
    width: 38px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.15s ease;
    margin: 0 auto;
}

    .day.invalid {
        color: #e2e8f0 !important;
        cursor: not-allowed !important;
        background: transparent !important;
        opacity: 0.3;
    }

    .day.lastMonth,
    .day.nextMonth {
        color: #cbd5e1;
        font-weight: 400;
    }

    .day.valid:hover:not(.checked) {
        background-color: #fff5ed;
        color: #c5a168;
        border-radius: 12px;
    }

    .day.real-today {
        box-shadow: inset 0 0 0 2px #c5a168;
        color: #c5a168;
        border-radius: 12px;
        font-weight: 700;
    }

    .day.checked {
        background-color: #fae8ff;
        color: #c5a168;
        border-radius: 0;
        font-weight: 600;
    }

    .day.first-date-selected {
        background-color: #c5a168 !important;
        color: #ffffff !important;
        border-radius: 12px 0 0 12px !important;
        font-weight: 700;
        box-shadow: -4px 4px 12px rgba(145, 38, 159, 0.2);
    }

    .day.last-date-selected {
        background-color: #c5a168 !important;
        color: #ffffff !important;
        border-radius: 0 12px 12px 0 !important;
        font-weight: 700;
        box-shadow: 4px 4px 12px rgba(145, 38, 159, 0.2);
    }

    .day.first-date-selected.last-date-selected {
        border-radius: 12px !important;
    }

.dp-clearfix {
    clear: both;
    height: 0;
    font-size: 0;
    overflow: hidden;
}
.date-picker-wrapper .drp_top-bar {
    padding: 0 0 12px 0;
    margin: 0;
}
.ui-datepicker.ui-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    padding: 14px;
    width: 340px;
    box-sizing: border-box;
    font-family: inherit;
    position: absolute;
    top: 70px;
    z-index: 100;
    right: 0;
}

.ui-widget-content {
  background: #ffffff;
  border: none;
}

.ui-datepicker .ui-datepicker-header {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0 15px 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 4px;
    border-radius: 0;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    margin-left: -4px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    position: absolute;
    top: auto;
    left: 0;
    right: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    left: auto;
    right: 0;
}

.ui-datepicker .ui-datepicker-header .ui-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  text-indent: 0;
  overflow: visible;
  color: #64748b;
  width: auto;
  height: auto;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover {
  background: #c5a168;
  border-color: #c5a168;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover .ui-icon,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover .ui-icon {
  color: #ffffff;
}

.ui-datepicker .ui-datepicker-header .ui-state-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent;
  border-color: transparent;
}

.ui-datepicker .ui-datepicker-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  flex-grow: 1;
  text-align: center;
  margin: 0;
  line-height: 1;
}

.ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.ui-datepicker-calendar th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  text-align: center;
}

.ui-datepicker-calendar td {
    padding: 2px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  text-decoration: none;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  background: transparent;
  border: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.ui-datepicker-calendar a.ui-state-default:hover {
  background: rgba(230, 89, 0, 0.08);
  color: #c5a168;
}

.ui-datepicker-calendar a.ui-state-active {
  background: #c5a168 !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(145, 38, 159, 0.25);
}

.ui-datepicker-calendar .ui-datepicker-today .ui-state-default {
  box-shadow: inset 0 0 0 2px #c5a168;
  color: #c5a168;
  font-weight: 700;
}

.ui-datepicker-calendar .ui-datepicker-today a.ui-state-active {
  box-shadow: 0 6px 16px rgba(145, 38, 159, 0.25) !important; 
}

.ui-datepicker-calendar .ui-state-disabled .ui-state-default {
    color: #cbd5e1;
    background: transparent;
    font-weight: 400;
    opacity: 0.6;
    border: 0;
    box-shadow: none;
}
@media (max-width: 767px) {
    .date-picker-wrapper {
        width: 100%;
    }
    .date-picker-wrapper .month-wrapper:before {
        display: none;
    }
    .date-picker-wrapper .drp_top-bar.normal .normal-top .selection-top {
        display: none;
    }
    .normal-top {
        font-size: 11px;
        gap: 5px;
    }
    .selected-days {
        font-size: 11px;
        padding: 6px 5px;
    }
    .normal-top b.start-day, .normal-top b.end-day {
        padding: 6px 5px;
    }
    .date-picker-wrapper {
        left: 0 !important;
        width: 320px;
    }
    div#divreturndate .date-picker-wrapper {
        left: -46px !important;
    }
    .date-picker-wrapper .month-wrapper table {
        width: 287px;
    }
    .day {
        width: 41px;
    }
    .ClassPopData, .travlerr-data {
        width: 100%;
        top: 60px !important;
    }
    .newSrchWgt .cabinCls.col-4,
    .newSrchWgt .traveller.col-4 {
        grid-column: span 6;
    }
    .newSrchWgt .col-6, .col-4 {
        grid-column: span 6;
    }
    .newSrchWgt .fly-1.col-6,
    .newSrchWgt .fly-2.col-6 {
        grid-column: span 12;
    }
    div#multiCitys .col-4 {
    grid-column: span 6;
}
    div#multiCitys .action-row.col-4,
    div#multiCitys .hasDatepicker.col-4 {
        grid-column: span 12;
    }
}