﻿.select-city {
    width: 460px;
    position: absolute;
    z-index: 5;
    background: var(--vz-header-bg);
    box-shadow: 0 0 1rem rgba(0,0,0,.15);
    color: #333;
}

.region-container {
    display: flex;
    border-top: 1px solid var(--vz-border-color);
}

    .region-container .nav {
        border-right: 1px solid var(--vz-border-color);
    }

        .region-container .nav .nav-link {
            color: inherit;
        }

            .region-container .nav .nav-link.active {
                background: var(--vz-body-bg);
            }

    .region-container .tab-content {
        flex: 1;
        padding: 10px;
        max-height: 486px;
        overflow: auto;
    }

.airport-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .airport-list b {
        color: darkorange;
        font-weight: normal;
    }

.list-point {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

    .list-point > li {
        width: 100%
    }

        .list-point > li > a {
            text-decoration: none;
            display: block;
            padding: 6px;
            border-radius: 3px;
            color: inherit;
        }

            .list-point > li > a:hover {
                background: var(--vz-body-bg);
            }

@media(max-width: 800px) {
    .select-city {
        z-index: 1001;
    }
}

@media(max-width: 767px) {
    .select-city {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(-100%,0,0);
    }

        .select-city.show {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

    .region-container {
        height: 100%;
    }

        .region-container .tab-content {
            max-height: unset;
            height: calc(100% - 70px);
            padding-bottom: 50px;
        }

    /*.list-point {
        height: 100%;
    }*/

    .ui-autocomplete {
        max-height: calc(100% - 120px);
        min-width: unset;
        z-index: 1002;
    }
}
