#hia-destination-map {
    height:800px;
}
.header{
    background: #001a45;
}
.hia-flight-map label  {
    color:white;
    width:100%;
}
.hia-flight-map input.form-control, .hia-flight-map select.form-control {
    background-color: #cce8f2;
    border-radius: 4px;
    height:34px;
    line-height:34px;
    color: #001a45;
    font-family: 'Lato';
}
.hia-flight-map .col-lg-3{
   padding-left: 6px;
   padding-right: 6px;
}
.hia-flight-map .row{
    margin-top: 12px;
    margin-bottom: 12px;
}
.gm-style .gm-style-iw {
    text-align: center;
}
#airline{
    padding-left: 12px;
}

.hia-flight-map .vertical-center {
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

.hia-flight-map .map-container {
    position:relative;
    overflow:hidden;
}
.hia-flight-map #destination-view {
    border-top:3px solid #001a45;
}

.hia-flight-map #destination-view .destinations .destination {
    white-space: normal;
    border-bottom: 1px solid #001a45;
    font-family: calibri, 'Lato', sans-serif;
    text-align:center;
    padding: 20px 20px;
}


.hia-flight-map #destination-view .destinations .destination .logo {
    height: 50px;
}

.hia-flight-map #destination-view .destinations .destination .logo a {
    height: 100%;
}

.hia-flight-map #destination-view .destinations .destination .logo img {
    max-height: 100%;
}

.hia-flight-map #destination-view .destinations {
    padding: 0;
}

.hia-flight-map #destination-view .destinations .destination:last-of-type {
    border:0;
    margin-right:0;
}

.hia-flight-map #destination-view .close {
    display:none;
}

.hia-flight-map #destination-view .destinations .destination h3 {
    font-size: 22px;
    font-weight: bold;
    color: #001a45;
    margin-bottom:0;
    font-family: calibri, 'Lato', sans-serif;
    margin-top:10px;
}

.hia-flight-map #destination-view .destinations .destination p {
    margin-top: 0;
    margin-bottom: 0;
    font-size:16px;
    font-family: calibri, 'Lato', sans-serif;
}

.hia-flight-map #destination-view .destinations .destination p.description {
    line-height:1.1;
}

.hia-flight-map #destination-view .destinations .destination p.flight-type {
    margin-bottom:10px;
}
@media(min-width: 801px) and (max-width: 1000px){
    .hia-flight-map .col-lg-3{
        width: 25%;
        display: inline-block;
    }
}
@media(max-width: 800px){
    .hia-flight-map .container{
        width: 100%;
    }
    .header{
       padding: 20px;
    }
    .hia-flight-map .row{
        margin-top: 0;
    }
    .hia-flight-map .form-controls > div:not(:last-child){
        margin-bottom: 15px;
    }
    #wrapper #main .destination{
        width: 100%;
    }
}
@media(min-width: 801px){
    .form-controls{
        padding-left: 30px;
    }
}
@media (min-width:800px) {
    .hia-flight-map #destination-view {
        width: 100%;
        bottom: 0;
        position: absolute;
        background: rgba(202, 231, 241, 0.9);
        height: 25%;
        opacity:0;
        pointer-events: none;
        bottom: -50px;
        -webkit-transition: all .4s; /* Safari */
        transition: all .4s;
    }

    .hia-flight-map #destination-view.visible {
        opacity:1;
        pointer-events: all;
        bottom: 0;
        -webkit-transition: all .4s; /* Safari */
        transition: all .4s;
    }

    .hia-flight-map #destination-view .destinations {
        overflow: auto;
        overflow-y: hidden;
        margin: 0 auto;
        white-space: nowrap;
        height:100%;
        padding:20px;
    }

    .hia-flight-map #destination-view .destinations .destination {
        display: inline-block;
        height: 100%;
        overflow: hidden;
        float:none;
        border-right: 1px solid #001a45;
        border-bottom:0;
        padding: 0 20px;
    }

    .hia-flight-map #destination-view .destinations .destination .logo {
        height: 30px;
    }

    .hia-flight-map #destination-view .close {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #001a45;
        opacity: 1;
        z-index: 10;
        text-shadow: unset;
        filter: alpha(opacity=100);
        display:block;
    }
}


