body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #eeeff9;
}

body, select {
    font-family: "proxima-nova",sans-serif !important;
    font-size: 16px;
}

.map {
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(100vh - 75px);
    margin-top: 75px;
    margin-left: 0%;
}
.map.open {
    width: 100%;
    height: calc(100vh - 300px);
    margin-top: 300px;
    margin-left: 0%;
}
#airport-selection-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    min-width: 250px;
}

#airport-legend {
    position: absolute;
    top: unset;
    right: unset;
    bottom: 0;
    left: 0;
    width: 220px;
    font-size: 65%;
}
#airport-legend-container {
    position: relative;
    background-color: rgba(255, 255, 255, .8);
    padding: 15px 15px 15px 40px;
    box-sizing: border-box;
    margin-top: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
    margin-left: 5px;
}
#airport-legend-container h4 {
    margin: 10px 0px 0px -18px;
}
#airport-legend-container p {
    list-style-position: outside;
    list-style-type: disc;
    display: list-item;
    padding: 0px 0px 0px 10px;
}
#airport-legend-container p.nosmoking::marker {
    color: #2AB874;   
    content: '⬤';
}
#airport-legend-container p::marker {
    color: #FA9014;   
    content: '⬤';
}


.airport-selection-container {
    background-color: #5c61bd;
    padding: 15px;
    height: 75px;
    box-sizing: border-box;
}

.airport-selection-container select {
    padding: 10px 46px 10px 15px;
    border-radius: 10px;
    color: #fff;
    background-color: #7c81cb;
    width: 100%;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 45px;
    box-sizing: border-box;
}

#airport-info-container {
    background-color: rgba(255, 255, 255, .9);
    height: auto;
    display: none;
    box-sizing: border-box;
    padding: 20px;
    max-height: calc(100vh - 75px);
    overflow: auto;
}

#airport-info-container > div {
    margin-bottom: 10px;
}

#airport-selection-overlay.open .airport-selection-container {
    border-radius: 0;
}

#airport-selection-overlay.open #airport-info-container {
    display: block;
}

.location-info {
    background-color: #eeeff9;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    max-height: 75px;
    overflow-y: scroll;
}

.location-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.location-info ul li:not(:last-child) {
    margin-bottom: 7px;
}

.location-info::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

.location-info::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.source-info {
  font-size: 9px;
}
.source-info h6 {
    font-size: 12px;
    margin-bottom: 5px;
}

select.minimal {
    background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%),
        linear-gradient(to right, #fff, #fff);
    background-position:
        calc(100% - 20px) calc(50%),
        calc(100% - 15px) calc(50%),
        calc(100% - 2.5em) 50%;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
}
  
select.minimal:focus {
    background-image:
        linear-gradient(45deg, #fff 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, #fff 50%),
        linear-gradient(to right, #fff, #fff);
    background-position:
        calc(100% - 15px) 50%,
        calc(100% - 20px) 50%,
        calc(100% - 2.5em) 50%;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    outline: 0;
}
  
@media only screen and (min-width: 480px) {
    .map {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        margin-top: 0%;
        margin-left: 0%;
    }
    .map.open {
        width: 100%;
        height: 100%;
        margin-top: 0%;
        margin-left: 0%;
    }
    .location-info {
        max-height: 200px;
    }
    .location-info ul {
        font-size: 14px;
    }
    #airport-info-container > div {
        margin-bottom: 25px;
    }
    #airport-selection-overlay {
        width: 20%;
        max-width: 400px;
    }

    #airport-selection-overlay.open {
        box-shadow: 0 0 5px #dfdfdf;
    }

    .airport-selection-container {
        border-bottom-right-radius: 15px;
    }

    #airport-info-container {
        height: calc(100vh - 75px);
    }
    #airport-legend {
        position: absolute;
        top: 0;
        right: 0;
        bottom: unset;
        left: unset;
        width: 220px;
        font-size: 75%;
    }
    #airport-legend-container {
        position: relative;
        background-color: rgba(255, 255, 255, .8);
        padding: 15px 15px 15px 40px;
        box-sizing: border-box;
        margin-top: 15px;
        margin-right: 15px;
        margin-bottom: 5px;
        margin-left: 5px;
    }
    #airport-legend-container h4 {
        margin: 10px 0px 0px -18px;
    }
    #airport-legend-container p {
        list-style-position: outside;
        list-style-type: disc;
        display: list-item;
        padding: 0px 0px 0px 10px;
    }
    #airport-legend-container p.nosmoking::marker {
        color: #2AB874;   
    content: '⬤';
    }
    #airport-legend-container p::marker {
        color: #FA9014;   
    content: '⬤';
    }
}

@media only screen and (min-width: 600px) {
    #airport-selection-overlay {
        min-width: 300px;
    }
    #airport-legend {
        font-size: 70%;
        width: 300px;
    }

}