﻿
.dropdownflight {
    display: none;
}

.country-pluscity {
    display: flex;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    width: 900px;
    position: absolute;
    left: 0px;
    top: 80px;
    font-size: 15px;
    z-index: 99;
    border-radius: 5px;
    background: #fff;
}

.countrylist {
    padding: 20px 10px;
    width: 650px;
    border-radius: 5px 0px 0px 5px;
    min-height: 300px;
    background: #f7f7ff;
}

.country-column {
    background: #f7f7ff;
    display: flex;
}

.cityLabel, .countryname {
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    color: #293134;
}

    .countryname.highlihtedcountry {
        font-weight: 600;
    }

.country-column ul li:hover {
    background-color: #0095da;
}

    .country-column ul li:hover span {
        color: #fff;
    }


.newtag {
    background: #0094da;
    font-size: 12px;
    border-radius: 5px;
    padding: 2px 7px;
    color: #fff;
}

.airportlist {
    margin-top: 0px;
    width: 250px;
    text-align: left;
    padding: 20px 15px 30px 15px;
    border-radius: 0px 5px 5px 0px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
}

.country-pluscity::before {
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 30px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f7f7ff;
    position: absolute;
}

.countrylist .country-column ul, .airportlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .countrylist .country-column ul li, .airportlist ul li {
        text-align: left;
        display: block;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        font-weight: 500;
        text-decoration: none;
        padding: 3px 12px;
        font-size: 16px;
        margin: 5px 0;
        text-overflow: ellipsis;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.pickcountry, .airportpick {
    color: #21409a;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0px;
    text-align: left;
    padding: 0 13px;
}

.country-column {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

    .country-column ul {
        flex: 1;
        max-width: 33.33%;
        list-style: none;
        margin: 0;
        padding: 0;
    } 