<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.summary-area {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
    background: var(--green-dark);
    box-shadow: 3px 0 3px -3px rgba(0, 0, 0, 1);
    z-index: 1000;
}

.route-area {
    background: var(--green-dark);
    box-shadow: 0 0 3px rgba(0, 0, 0, 1);
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
}

.route-area .removeall {
    float: right;
    font-size: 11px;
    line-height: 30px;
    padding-left: 1em;
    cursor: pointer;
}

.route-area .add {
    font-size: 22px;
    float: right;
    line-height: 30px;
    cursor: pointer;
}

.route-area h1 {
    background: var(--green-dark);
    color: white;
    margin: 0;
    padding: 20px 10px 30px 20px;
    font-size: 24px;
    font-weight: normal;
}

.route-area ul#flightList {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    width: 440px;
    height: 100%;
}

.route-area ul#flightList li {
    background: var(--green-dark);
    /*max-height: 440px;*/
    /*line-height: 40px;*/
    color: lightgray;
    padding-top: 10px;
}

.options .dropdown {
    position: absolute;
}

.options .dropdown .dropdown-content i.fa-plane {
    margin-right: 12px;
}

.options .dropdown .dropdown-content .content.selected {
   font-weight: 700;
}

.route-area ul#flightList li.selected, .route-area ul#flightList li:nth-child(2n).selected {
    color: white;
    background: #1783b5;
}

.route-area ul#flightList li.selected input {
    background: #fff;
}

.route-area ul#flightList li input::placeholder {
    color: #4d4d4d;
}

.route-area ul#flightList li:nth-child(2n) {
    background: #478072;
}

.route-area ul#flightList li:hover {
    cursor: pointer;
}

.route-area ul#flightList li:hover span {
    width: 30px;
    opacity: 1;
}

.route-area input {
    font-size: 13px;
    text-align: center;
    letter-spacing: 1px;
    background: #eee;
    width: 290px;
    float: left;
    border: none;
    box-sizing: border-box;
    height: 40px;
}

.route-area input:focus {
    background: #eee;
    outline: none;
    border: 2px solid #eee;
}

.route-area #flightList span {
    height: 45px;
    text-align: center;
    color: white;
    width: 0px;
    display: inline-block;
    transition: 0.2s linear;
    opacity: 0;
    float: right;
    vertical-align: middle;
    line-height: 45px;
    position: absolute;
    right: 0;
}


.route-area span.edit {
    background: #2162b3;
    margin-right: -15px;
}

.route-area span.remove {
    background: #af3333;
    margin-top: 45px;
}

i[class^="fas fa-plane-"] {
    font-size: 24px;
    padding-top: 10px;
}

#flightRouteTemplate {
    display: none;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: lightgray;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: lightgray;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: lightgray;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: lightgray;
}

.route-grid-container {
    display: grid;
    grid-template-columns: 6% 16% auto;
}

.route-grid-item {
    vertical-align: middle;
    text-align: center;
    margin-bottom: 10px;
}
div.airport-country-list-cell {
    padding-top: 10px;
    padding-bottom: 10px;

}
a.airport-country-list-cell {
    color: var(--grey-color);

}
.plane-deco {
    color: darkblue;
    height: 40px;
    width: 40px;
    transition-timing-function: ease-in;
    transition: width 2s, height 2s, transform 2s;
    padding-top: 3px;
}

number {
    float: right;
}

div.plane-chooser {
    position: fixed;
    margin: -5px 0 0 30px;
}

div.plane-chooser input {
    width: 200px;
}

.autocomplete-itemstrue, .autocomplete-itemsfalse {
    position: absolute;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    width: 290px;
    margin-top: 40px;
}

.autocomplete-listtrue {
    width: 290px;
}

.autocomplete-itemstrue div, .autocomplete-itemsfalse div {
    cursor: pointer;
    background-color: #fff;
    color: black;
    width: 290px;
    font-size: 12px;
}

/*When hovering an item*/
.autocomplete-itemsfalse div:hover, .autocomplete-itemstrue div:hover {
    background-color: var(--selected-color);
}

/*When navigating through the items using the arrow keys*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/*Overwrite for z-index fix*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: none !important;
    animation-fill-mode: none !important
}

button:focus {outline:0;}

/*Dropdown Menu for plane chooser*/
.dropbtn {
    color: white;
    border: none;
    cursor: pointer;
    background: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 170px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-left: -170px;
    margin-top: 10px;
}

.dropdown-content div {
    color: black;
    display: block;
    background: white;
    font-size: 12px;
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
}

.dropdown div:hover {background-color: #ddd;}

.show {display: block;}

.inputDeparture.empty, .inputArrival.empty {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}</pre></body></html>