/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
    position: relative;
    /* padding: 30px 0;
    height: 500px;
    display: flex;
    align-items: start;
    justify-content: center; */
}

.hero-section .banner-search {
    width: 100%;
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

/* .hero-section .banner-sec {
    position: absolute;
    top: 0;
} */

.hero-section .banner-sec .slider-item {
    position: relative;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-section .banner-sec .slider-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Slider Text */
.hero-section .banner-sec .slider-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.hero-section .banner-sec .slider-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-section .banner-sec .slider-text p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
}

/* @media (max-width: 768px) {
    .hero-section {
        height: 520px;
        padding-top: 80px;
    }

    .hero-section .banner-sec .slider-text h1 {
        font-size: 1.8rem;
    }

    .hero-section .banner-sec .slider-text p {
        font-size: 1rem;
    }

    .banner-search .hero-content {
        margin-top: -30px;
    }
} */

.banner-slider,
.slider-item,
.slider-text {
    transition: all 0.4s ease;
}



/* =========================================================
   SEARCH FORM AREA
========================================================= */
.banner-search .hero-content {
    position: relative;
    z-index: 1;
}

.search_tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 14px;
    align-items: center;
}

.search_tabs .tab-link a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 22px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    backdrop-filter: blur(8px);
    color: #333;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.2s ease;
}

.search_tabs .tab-link a span {
    transition: transform 0.25s ease;
    font-size: 18px;
}

.search_tabs .tab-link a sup {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    font-size: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_tabs .tab-link a:hover {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search_tabs .tab-link a:hover span {
    transform: rotate(10deg) scale(1.18);
}

.search_tabs .tab-link a:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.search_tabs .tab-link a.current {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    font-weight: 700;
}

.search_tabs .tab-link a.current span {
    transform: scale(1.05);
}

/* =============== FORM WRAPPER ================= */
.tts__form_wrapper {
    display: flex;
    /* box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15); */
}


/* ============================
   FLIGHT SEARCH BASE
============================ */
.flight-search {
    border-bottom: 1px solid #d4dde8;
    position: relative;
    transition: opacity 0.25s ease-in-out;
    font-size: 12px;
    font-weight: 600;
}

/* ============================
   OPTIONS CONTAINER
============================ */
.flight-search .journey-types {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flight-search .journey-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #4b5a6e;
    padding: 6px 14px;
    transition: all 0.25s ease;
}

.flight-search .journey-option.ms-auto {
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt);
}

.flight-search .journey-option input[type="radio"],
.flight-search .journey-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #9ca8b9;
    border-radius: 4px;
    background: #fff;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.flight-search .journey-option input[type="radio"] {
    border-radius: 50%;
}

.flight-search .journey-option input:checked {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.flight-search .journey-option.ms-auto input:checked+span {
    color: #ffffff;
}

.flight-search .journey-option input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: -1px;
    left: 2px;
}

.flight-search .journey-option input[type="radio"]:checked::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2.5px;
    left: 2.5px;
}

.flight-search .journey-option input:checked+span {
    color: var(--primary-red);
}



.flight-search .journey-option select {
    border: 0;
    width: 100px;
    display: none;
}



.form-toprow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.col-inputfield,
.col-passenger,
.col-calendar,
.col-pickup,
.col-droptime {
    padding: 8px 0;
}

.form-row {
    background-color: #FFF;
    border-bottom-left-radius: 10px;
    flex: 0 0 calc(100% - 100px);
}

.form-row .col-inputfield {
    flex: 0 0 23%;
    max-width: 23%;
}

.form-row .col-passenger {
    flex: 0 0 24%;
    max-width: 24%;
}

.form-row .col-calendar {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
}

.form-row .col-calendar .col-50:first-child {
    flex: 0 0 50%;
    max-width: 50%;
}

.form-row .col-calendar .col-50:last-child {
    flex: 0 0 50.56%;
    max-width: 50.56%;
}

.form-row .col-passenger .form-group {
    border-right: 0;
}

.form-row .calendar-car-two {
    flex: 0 0 29%;
    max-width: 29%;
}

.form-row .col-inputfield.return .form-group {
    padding: 3px 35px 3px 45px;
}

.form-row .col-inputfield.return .form-group .myIcon {
    left: 20px;
}

.form-row .form-group {
    position: relative;
    padding: 3px 35px 3px 40px;
    margin-bottom: 0;
    border-right: 0.5px solid #c5d3e3;
}

.form-row .form-group .form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    color: var(--tts-buttton-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-row .form-group .form-label span.cabinclass {
    font-weight: bold;
}

.tts__input__input.form-control,
.tts__input__select.form-select {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: #000000;
}

.tts__input__input.form-control:focus,
.tts__input__input.form-select:focus {
    box-shadow: none;
    outline: 0;
}

.form-row .form-group .flight_text_p {
    display: none;
}


.form-row .returntrip input::placeholder {
    color: blue;
    opacity: 0.8;
    font-size: 10px;
}


.myIcon {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    opacity: 0.7;
    z-index: 3;
}

.myIcon svg {
    fill: var(--tts-buttton-bg);
}

.tts__interchange__arrow {
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    background: #ffffff;
    cursor: pointer;
    z-index: 9;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #c5d3e3;
    transition:
        background 0.25s ease,
        transform 0.35s ease;
}

.tts__interchange__arrow:hover {
    background: #f2f2f2;
}

.tts__interchange__arrow.rotate {
    transform: translateY(-50%) rotate(180deg);
}



.form-toprow .passenger-box .dropdown-menu {
    width: 300px;
    padding: 0;
    right: -50px !important;
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-toprow .passenger-box .dropdown-menu.dropdown-menu-hotel {

    max-height: 300px;
    overflow: auto;
}

.form-toprow .passenger-box .dropdown-item:hover,
.form-toprow .passenger-box .dropdown-item.active {
    background: transparent;
}

.passenger-total-amount span {
    font-size: 16px;
    ;
    color: #000;
}

.form-toprow .passenger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-toprow .form-group h6 {
    margin: 0;
    font-size: 14px;
}

.form-toprow .form-group p {
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-toprow .passenger-qty {
    display: flex;
    align-items: center;
    border-radius: 30px;
}

.form-toprow .passenger-qty select {
    font-size: 12px;
}

.form-toprow .passenger-qty button {
    width: 30px;
    height: 30px;
    border: none;
    font-size: 12px;
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
}

.form-toprow .passenger-qty button.minus-btn{
    border-radius: 30px 0px 0px 30px;
}

.form-toprow .passenger-qty button.plus-btn{
    border-radius: 0px 30px 30px 0px;
}

.form-toprow .passenger-qty .qty-amount {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    border: solid 1px #b6b6b6;
    outline: none;
}

.col-button {
    flex: 0 0 100px;
    max-width: 100px;
}

.col-button .submit-button {
    width: 100%;
    height: 100%;
    padding: 0 15px;
    border: none;
    border-radius: 0 10px 10px 0;
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

.col-button .submit-button:hover {
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
}

.add-city-button {
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    font-size: 14px;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

.flight-search.form-extrascontainer {
    border-top: 1px solid #d4dde8;
    font-size: 12px;
    border-bottom: 0;
}


/*multicity*/
.multicity-addmore .form-row .col-inputfield {
    flex: 0 0 25%;
    max-width: 25%;
}

.multicity-addmore .form-row .col-calendar {
    flex: 0 0 25%;
    max-width: 25%;
}

.multicity-addmore .form-row .col-calendar .col-50 {
    flex: 0 0 100%;
    max-width: 100%;
}


.hotelsearch .form-row .col-inputfield {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.hotelsearch .form-row .col-calendar {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.hotelsearch .form-row .col-passenger {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.visasearch .form-row .col-inputfield {
    flex: 0 0 25%;
    max-width: 25%;
}

.visasearch .form-row .col-calendar {
    flex: 0 0 25%;
    max-width: 25%;
}

.visasearch .form-row .col-passenger {
    flex: 0 0 25%;
    max-width: 25%;
}

.OutstationOneWay .form-row .col-inputfield {
    flex: 0 0 20%;
    max-width: 20%;
}

.OutstationOneWay .form-row .col-calendar {
    flex: 0 0 30%;
    max-width: 30%;
}

.OutstationOneWay .form-row .col-pickup {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
}

.OutstationOneWay .form-row .col-pickup .col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.OutstationOneWay .form-row .col-calendar .col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}



/* =========================================================
   RESPONSIVE MEDIA QUERIES
========================================================= */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {


    /*multicity*/
    .multicity-addmore .form-row .col-inputfield {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .multicity-addmore .form-row .col-calendar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .multicity-addmore .form-row .col-calendar .col-50 {
        flex: 0 0 100%;
        max-width: 100%;
    }


    .hotelsearch .form-row .col-inputfield {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hotelsearch .form-row .col-calendar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hotelsearch .form-row .col-passenger {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .visasearch .form-row .col-inputfield {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .visasearch .form-row .col-calendar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .visasearch .form-row .col-passenger {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .OutstationOneWay .form-row .col-inputfield {
        flex: 0 0 100%;
        max-width: 100%%;
    }

    .OutstationOneWay .form-row .col-calendar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .OutstationOneWay .form-row .col-pickup {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
    }

    .OutstationOneWay .form-row .col-pickup .col-50 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .OutstationOneWay .form-row .col-calendar .col-50 {
        flex: 0 0 100%;
        max-width: 100%;
    }


    .slider-text h1 {
        font-size: 2rem;
    }

    .slider-text p {
        font-size: 1.1rem;
    }

    .search_tabs {
        gap: 8px;
    }

    .search_tabs .tab-link a {
        padding: 8px 20px;
        font-size: 13px;
    }

    .tts__form_wrapper {
        flex-direction: column;
    }

    .form-row .col-inputfield,
    .form-row .col-passenger,
    .form-row .col-calendar,
    .col-button {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mobile (≤767px) */
@media (max-width: 991px) {
    .hero-section {
        height: 100%;
        flex-direction: column;
        padding: 0;
    }

    .hero-section .banner-sec {
        position: relative;
    }

    .hero-section .banner-sec .slider-item {
        height: 250px;
    }

    .slider-text h1 {
        font-size: 1.5rem;
    }

    .slider-text p {
        font-size: 1rem;
    }

    .search_tabs {
        gap: 5px;
    }

    .search_tabs .tab-link a {
        padding: 6px 10px;
        font-size: 12px;
    }

    .tts__form_wrapper {
        flex-direction: column;
    }

    .form-row .col-inputfield,
    .form-row .col-passenger,
    .form-row .col-calendar,
    .form-row .col-button {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 5px 0;
    }

    .form-extraoptions {
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        padding: 20px;
        border-radius: 0;
    }

    .col-button .submit-button {
        border-radius: 0;
        height: 50px;
    }

    .form-row .form-group {
        border: 0.5px solid #c5d3e3;
    }

    .flight-search,
    .flight-search.form-extrascontainer {
        border: none;
    }

    .form-row .col-passenger .form-group {
        border-right: 0.5px solid #c5d3e3;
    }

    .flight-search .journey-option {
        padding: 6px 10px 6px 10px;
    }

    .tts__interchange__arrow {
        left: 50%;
        top: -20px;
        transform: translateX(-50%);
    }
}


/*calendar*/
.ui-widget.ui-widget-content.calendarOuter {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    font-family: inherit !important;
}

.calendarOuter .ui-widget-header .ui-icon {
    background-image: unset;
}

.ui-datepicker.calendarOuter .ui-widget-header {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    border: none;
    border-radius: 8px;
}

.ui-datepicker.calendarOuter .ui-datepicker-prev::after {
    content: "\f100";
    top: 5px;
    left: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

.ui-datepicker.calendarOuter .ui-datepicker-next::after {
    content: "\f101";
    top: 5px;
    right: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

.ui-datepicker.calendarOuter .ui-datepicker-header .ui-corner-all,
.ui-datepicker.calendarOuter .ui-datepicker-header .ui-state-hover {
    cursor: pointer;
    border: 0;
    background: none;
    font-weight: 600;
    top: 0px;
}

.ui-datepicker.calendarOuter td span,
.ui-datepicker.calendarOuter td a {
    display: block;
    padding: 0.2em;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    color: #008B3F;
}

.calendarOuter .ui-state-default,
.ui-widget-content.calendarOuter .ui-state-default {
    border: none;
}

.calendarOuter.ui-state-highlight,
.ui-widget-content.calendarOuter .ui-state-highlight {
   /*  border: 1px solid var(--primary-red); */
   color: blue;
   /*  background: var(--tts-buttton-bg); */
  /* font-weight: 900; */

}

.calendarOuter .ui-state-active,
.ui-widget-content.calendarOuter .ui-state-active {
   border: 1px solid var(--nav-border-color);
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1) !important;
}

.ui-widget-content.calendarOuter .weekend-highlight a {
    color:var(--primary-orange);
    font-weight: 600;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
    font-family: inherit !important;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    margin-right: 5px;
    width: inherit;
}



/* Close button in top corner of datepicker */
.ui-datepicker.calendarOuter .ui-datepicker-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background: var(--tts-buttton-bg);
    border: 1px solid var(--primary-red);
    color: var(--primary-text);
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.2s ease;
    font-size: 10px;
}

.ui-datepicker.calendarOuter .ui-datepicker-close-btn:hover {
    background-color: var(--primary-red, #d32f2f);
    color: #fff;
    border-color: var(--primary-red, #d32f2f);
}

.ui-datepicker.calendarOuter .ui-datepicker-close-btn .ui-icon {
    vertical-align: middle;
}



/* UI Autocomplete */
.ui-autocomplete.tts-autocomplete {
    position: absolute;
    z-index: 1090;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    list-style: none;
    max-height: 300px;
    width: 450px !important;
    overflow-y: auto;
    font-family: inherit !important;
}

.tts-autocomplete .ui-menu-item-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.tts-autocomplete .dest_left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: inherit !important;
}

.dest_left .city {
    font-family: inherit !important;
}

.dest_left .airpotcode {
    font-size: 12px;
    font-family: inherit !important;
}

.tts-autocomplete .ui-menu-item-wrapper div:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tts-autocomplete .aircode {
    font-size: 12px;
    font-family: inherit !important;
}


.tts-autocomplete .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../../../webroot/img/country-flag.png);
    position: relative;
}

.tts-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.tts-autocomplete::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.tts-autocomplete::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.tts-autocomplete.ui-datepicker .ui-datepicker-header .ui-corner-all,
.tts-autocomplete.ui-datepicker .ui-datepicker-header .ui-state-hover {
    cursor: pointer;
    border: 0;
    background: none;
    font-weight: 600;
    top: 3px;
}

.tts-autocomplete.ui-datepicker td span,
.tts-autocomplete.ui-datepicker td a {
    display: block;
    padding: 0.2em;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
}

.tts-autocomplete .ui-state-highlight,
.tts-autocomplete.ui-widget-content .ui-state-highlight {
    border: none;
    background: var(--tts-buttton-bg);
    color: #ffffff;
}

.tts-autocomplete .ui-state-active,
.tts-autocomplete.ui-widget-content .ui-state-active {
    background: var(--tts-buttton-bg);
    color: #ffffff;
}

.tts-autocomplete .ui-state-active:hover,
.tts-autocomplete.ui-widget-content .ui-state-active:hover {
    background: var(--tts-buttton-bg);
    color: #ffffff;
}


.tts-autocomplete.ui-datepicker .ui-datepicker-prev::after {
    content: "\f100";
    left: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}

.tts-autocomplete.ui-datepicker .ui-datepicker-next::after {
    content: "\f101";
    right: 5px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
}


/*@@@@@@@@@@@@@@@@@@ position flag images @@@@@@@@@@@@@@@@@@@@@@*/

.ad {
    background-position: 0 -352px
}

.ae {
    background-position: 0 -368px
}

.af {
    background-position: 0 -384px
}

.ag {
    background-position: 0 -400px
}

.ai {
    background-position: 0 -416px
}

.al {
    background-position: 0 -432px
}

.am {
    background-position: 0 -448px
}

.an {
    background-position: 0 -464px
}

.ao {
    background-position: 0 -480px
}

.aq {
    background-position: 0 -496px
}

.ar {
    background-position: 0 -512px
}

.as {
    background-position: 0 -528px
}

.at {
    background-position: 0 -544px
}

.au {
    background-position: 0 -560px
}

.aw {
    background-position: 0 -576px
}

.az {
    background-position: 0 -592px
}

.ba {
    background-position: 0 -608px
}

.bb {
    background-position: 0 -624px
}

.bd {
    background-position: 0 -640px
}

.be {
    background-position: 0 -656px
}

.bf {
    background-position: 0 -672px
}

.bg {
    background-position: 0 -688px
}

.bh {
    background-position: 0 -704px
}

.bi {
    background-position: 0 -720px
}

.bj {
    background-position: 0 -736px
}

.bm {
    background-position: 0 -752px
}

.bn {
    background-position: 0 -768px
}

.bo {
    background-position: 0 -784px
}

.br {
    background-position: 0 -800px
}

.bs {
    background-position: 0 -816px
}

.bt {
    background-position: 0 -832px
}

.bw {
    background-position: 0 -848px
}

.by {
    background-position: 0 -864px
}

.bz {
    background-position: 0 -880px
}

.ca {
    background-position: 0 -896px
}

.cg {
    background-position: 0 -912px
}

.cf {
    background-position: 0 -928px
}

.cd {
    background-position: 0 -944px
}

.ch {
    background-position: 0 -960px
}

.ci {
    background-position: 0 -976px
}

.ck {
    background-position: 0 -992px
}

.cl {
    background-position: 0 -1008px
}

.cm {
    background-position: 0 -1024px
}

.cn {
    background-position: 0 -1040px
}

.co {
    background-position: 0 -1056px
}

.cr {
    background-position: 0 -1072px
}

.cu {
    background-position: 0 -1088px
}

.cv {
    background-position: 0 -1104px
}

.cy {
    background-position: 0 -1120px
}

.cz {
    background-position: 0 -1136px
}

.de {
    background-position: 0 -1152px
}

.dj {
    background-position: 0 -1168px
}

.dk {
    background-position: 0 -1184px
}

.dm {
    background-position: 0 -1200px
}

.do {
    background-position: 0 -1216px
}

.dz {
    background-position: 0 -1232px
}

.ec {
    background-position: 0 -1248px
}

.ee {
    background-position: 0 -1264px
}

.eg {
    background-position: 0 -1280px
}

.eh {
    background-position: 0 -1296px
}

.er {
    background-position: 0 -1312px
}

.es {
    background-position: 0 -1328px
}

.et {
    background-position: 0 -1344px
}

.fi {
    background-position: 0 -1360px
}

.fj {
    background-position: 0 -1376px
}

.fm {
    background-position: 0 -1392px
}

.fo {
    background-position: 0 -1408px
}

.fr {
    background-position: 0 -1424px
}

.ga {
    background-position: 0 -1440px
}

.gb {
    background-position: 0 -1456px
}

.gd {
    background-position: 0 -1472px
}

.ge {
    background-position: 0 -1488px
}

.gg {
    background-position: 0 -1504px
}

.gh {
    background-position: 0 -1520px
}

.gi {
    background-position: 0 -1536px
}

.gl {
    background-position: 0 -1552px
}

.gm {
    background-position: 0 -1568px
}

.gn {
    background-position: 0 -1584px
}

.gp {
    background-position: 0 -1600px
}

.gq {
    background-position: 0 -1616px
}

.gr {
    background-position: 0 -1632px
}

.gt {
    background-position: 0 -1648px
}

.gu {
    background-position: 0 -1664px
}

.gw {
    background-position: 0 -1680px
}

.gy {
    background-position: 0 -1696px
}

.hk {
    background-position: 0 -1712px
}

.hn {
    background-position: 0 -1728px
}

.hr {
    background-position: 0 -1744px
}

.ht {
    background-position: 0 -1760px
}

.hu {
    background-position: 0 -1776px
}

.id {
    background-position: 0 -1792px
}

.mc {
    background-position: 0 -1792px
}

.ie {
    background-position: 0 -1808px
}

.il {
    background-position: 0 -1824px
}

.im {
    background-position: 0 -1840px
}

.in {
    background-position: 0 -1856px
}

.iq {
    background-position: 0 -1872px
}

.ir {
    background-position: 0 -1888px
}

.is {
    background-position: 0 -1904px
}

.it {
    background-position: 0 -1920px
}

.je {
    background-position: 0 -1936px
}

.jm {
    background-position: 0 -1952px
}

.jo {
    background-position: 0 -1968px
}

.jp {
    background-position: 0 -1984px
}

.ke {
    background-position: 0 -2000px
}

.kg {
    background-position: 0 -2016px
}

.kh {
    background-position: 0 -2032px
}

.ki {
    background-position: 0 -2048px
}

.km {
    background-position: 0 -2064px
}

.kn {
    background-position: 0 -2080px
}

.kp {
    background-position: 0 -2096px
}

.kr {
    background-position: 0 -2112px
}

.kw {
    background-position: 0 -2128px
}

.ky {
    background-position: 0 -2144px
}

.kz {
    background-position: 0 -2160px
}

.la {
    background-position: 0 -2176px
}

.lb {
    background-position: 0 -2192px
}

.lc {
    background-position: 0 -2208px
}

.li {
    background-position: 0 -2224px
}

.lk {
    background-position: 0 -2240px
}

.lr {
    background-position: 0 -2256px
}

.ls {
    background-position: 0 -2272px
}

.lt {
    background-position: 0 -2288px
}

.lu {
    background-position: 0 -2304px
}

.lv {
    background-position: 0 -2320px
}

.ly {
    background-position: 0 -2336px
}

.ma {
    background-position: 0 -2352px
}

.md {
    background-position: 0 -2368px
}

.me {
    background-position: 0 -2384px
}

.mg {
    background-position: 0 -2400px
}

.mh {
    background-position: 0 -2416px
}

.mk {
    background-position: 0 -2432px
}

.ml {
    background-position: 0 -2448px
}

.mm {
    background-position: 0 -2464px
}

.mn {
    background-position: 0 -2480px
}

.mo {
    background-position: 0 -2496px
}

.mq {
    background-position: 0 -2512px
}

.mr {
    background-position: 0 -2528px
}

.ms {
    background-position: 0 -2544px
}

.mt {
    background-position: 0 -2560px
}

.mu {
    background-position: 0 -2576px
}

.mv {
    background-position: 0 -2592px
}

.mw {
    background-position: 0 -2608px
}

.mx {
    background-position: 0 -2624px
}

.my {
    background-position: 0 -2640px
}

.mz {
    background-position: 0 -2656px
}

.na {
    background-position: 0 -2672px
}

.nc {
    background-position: 0 -2688px
}

.ne {
    background-position: 0 -2704px
}

.ng {
    background-position: 0 -2720px
}

.ni {
    background-position: 0 -2736px
}

.nl {
    background-position: 0 -2752px
}

.no {
    background-position: 0 -2768px
}

.np {
    background-position: 0 -2784px
}

.nr {
    background-position: 0 -2800px
}

.nz {
    background-position: 0 -2816px
}

.om {
    background-position: 0 -2832px
}

.pa {
    background-position: 0 -2848px
}

.pe {
    background-position: 0 -2864px
}

.pf {
    background-position: 0 -2880px
}

.pg {
    background-position: 0 -2896px
}

.ph {
    background-position: 0 -2912px
}

.pk {
    background-position: 0 -2928px
}

.pl {
    background-position: 0 -2944px
}

.pr {
    background-position: 0 -2960px
}

.ps {
    background-position: 0 -2976px
}

.pt {
    background-position: 0 -2992px
}

.pw {
    background-position: 0 -3008px
}

.py {
    background-position: 0 -3024px
}

.qa {
    background-position: 0 -3040px
}

.re {
    background-position: 0 -3056px
}

.ro {
    background-position: 0 -3072px
}

.rs {
    background-position: 0 -3088px
}

.ru {
    background-position: 0 -3104px
}

.rw {
    background-position: 0 -3120px
}

.sa {
    background-position: 0 -3136px
}

.sb {
    background-position: 0 -3152px
}

.sc {
    background-position: 0 -3168px
}

.sd {
    background-position: 0 -3184px
}

.se {
    background-position: 0 -3200px
}

.sg {
    background-position: 0 -3216px
}

.si {
    background-position: 0 -3232px
}

.sk {
    background-position: 0 -3248px
}

.sl {
    background-position: 0 -3264px
}

.sm {
    background-position: 0 -3280px
}

.sn {
    background-position: 0 -3296px
}

.so {
    background-position: 0 -3312px
}

.sr {
    background-position: 0 -3328px
}

.st {
    background-position: 0 -3344px
}

.sv {
    background-position: 0 -3360px
}

.sy {
    background-position: 0 -3376px
}

.sz {
    background-position: 0 -3392px
}

.tc {
    background-position: 0 -3408px
}

.td {
    background-position: 0 -3424px
}

.tg {
    background-position: 0 -3440px
}

.th {
    background-position: 0 -3456px
}

.tj {
    background-position: 0 -3472px
}

.tl {
    background-position: 0 -3488px
}

.tm {
    background-position: 0 -3504px
}

.tn {
    background-position: 0 -3520px
}

.to {
    background-position: 0 -3536px
}

.tr {
    background-position: 0 -3552px
}

.tt {
    background-position: 0 -3568px
}

.tv {
    background-position: 0 -3584px
}

.tw {
    background-position: 0 -3600px
}

.tz {
    background-position: 0 -3616px
}

.ua {
    background-position: 0 -3632px
}

.ug {
    background-position: 0 -3648px
}

.us {
    background-position: 0 -3664px
}

.uy {
    background-position: 0 -3680px
}

.uz {
    background-position: 0 -3696px
}

.va {
    background-position: 0 -3712px
}

.vc {
    background-position: 0 -3728px
}

.ve {
    background-position: 0 -3744px
}

.vg {
    background-position: 0 -3760px
}

.vi {
    background-position: 0 -3776px
}

.vn {
    background-position: 0 -3792px
}

.vu {
    background-position: 0 -3808px
}

.ws {
    background-position: 0 -3824px
}

.ye {
    background-position: 0 -3840px
}

.za {
    background-position: 0 -3856px
}

.zm {
    background-position: 0 -3872px
}

.zw {
    background-position: 0 -3872px
}

/*@@@@@@@@@@@@@@@@@@ position flag images @@@@@@@@@@@@@@@@@@@@@@*/

.select2-container {
    z-index: 99;
}


.select2-container--default .select2-selection--single {
    border: 1px solid #dedede;
    border-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212121 !important;
    border-radius: 5px;
    font-size: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
    display: inline-flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span img {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    margin-right: 5px;
}

.select2-container--default .select {
    width: 219px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: absolute;
    top: 50%;
    left: 50%;
    border-color: #616161;
    border-style: solid;
    border-width: 0 1px 1px 0;
    padding: 3px;
    height: 0;
    width: 0;
    margin-left: -6px;
    margin-top: -3px;
    transform: rotate(45deg) translateY(-50%);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #000;
    border-width: 1px 0 0 1px;
    margin-top: 3px;
    padding: 3px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
}

.select2-container--focus .select2-selection--single {
    background: #ffffff !important;
    border-color: #e0e0e0;
}

span.select2-container.select2-container--default.select2-container--open {
    z-index: 9999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.select2-container--classic .select2-selection--single,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple,
.select2-container--classic .select2-selection--single .select2-selection__arrow,
.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #495057;
}

.select2-dropdown {
    border-color: #ced4da;
}

.select2-container--default .select2-selection--multiple {
    line-height: 27px;
    height: auto;
    min-height: inherit;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #ffffff;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-color: #007bff;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #007bff;
}

.select2-container--open .ti-filter {
    z-index: 9999 !important;
}

.select2-results__option span {
    display: inline-flex;
    align-items: center;
}

.select2-results__option span img {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    margin-right: 5px;
}


.select2-container--default .select2-selection--single .select2-selection__clear {
    height: inherit;
    margin-right: 40px;
}



/*modify search*/
.search-control-container{
    padding: 20px 0;
}

.select-wrap{
    width: 220px;
}