/* Minification failed. Returning unminified contents.
(206,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(207,21): run-time error CSS1039: Token not allowed after unary operator: '-left-panel-width'
(208,17): run-time error CSS1039: Token not allowed after unary operator: '-left-panel-width'
(209,21): run-time error CSS1039: Token not allowed after unary operator: '-left-panel-width'
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Century Gothic', Roboto, 'Trebuchet MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

    body:not(.loading) .ajax-visible {
        display: none;
    }

    .disabled, body.loading .ajax-disabled, *[disabled] {
        opacity: .5;
        pointer-events: none;
        font-style: italic;
    }

a:hover {
    text-decoration: none !important;
}

header nav {
    background-image: url(/content/images/api_bg.png);
    background-size: cover;
}

.enabled:not(.false) .on {
    color: yellowgreen !important;
}

.enabled:not(.false) .off {
    display: none;
}

.enabled.false .on {
    display: none;
}

.hidden {
    display: none;
}

.get-frames {
    margin-left: 1em;
}

.brand-logo img {
    height: 1em;
    margin: 0 .3em;
    vertical-align: middle;
}

#loading-pointer {
    position: absolute;
    z-index: 999;
}

#aoi-polygon-path {
    padding: .5em;
    margin-top: .5em;
    height: initial;
}

label[for=aoi-polygon-path] {
    margin-left: .5em;
}

hr {
    border: none;
    border-top: solid 1px #ccc;
    margin: .5em 0;
}

ul.collection, ul.grid {
    display: grid;
}

ul:empty {
    display: none;
}

button.ok {
    background-color: yellowgreen;
    color: #fff;
}

.select-wrapper.label {
    display: inline-block;
    vertical-align: bottom;
}

    .select-wrapper.label span.caret {
        top: 8px;
    }

    .select-wrapper.label input {
        border: none;
        width: auto;
        display: inline-block;
    }

    .select-wrapper.label .dropdown-content {
        border: none;
        width: auto !important;
        min-width: 0 !important;
    }

label {
    color: rgba(0,0,0,0.9);
    font-weight: bold;
    font-size: 1rem;
}

    label.color {
        position: initial;
        margin-left: .3em;
        margin-bottom: .2em;
    }

input {
    margin: 0 !important;
    height: 2rem !important;
}

    input:not([type]):focus:not([readonly]), input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
        border-bottom: 1px solid #666;
        box-shadow: 0 1px 0 0 #666;
    }

header nav, footer.page-footer > * {
    padding-left: .5em;
}

footer.page-footer {
    z-index: 9;
}

main {
    flex: 1 0 auto;
    overflow: hidden;
}

i.left {
}

.brand-logo i {
    font-size: 2em !important;
    margin-right: 0 !important;
}

header .version {
    position: absolute;
    top: 0;
    right: 18em;
}

header .horizon {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 1em;
    max-height: 100%;
}

    header .horizon img {
        height: 4.26em;
    }

#main-menu {
    margin-left: 15%;
}

#container {
    height: 100vh;
    flex: 1 1 auto;
    display: flex;
    flex-flow: column;
    -ms-flex: 1;
    -ms-flex-flow: column;
}

#left,
#right {
    top: 0;
    height: 100%;
    position: absolute;
    flex: 1 1 auto;
    display: flex;
    flex-flow: column;
    -ms-flex: 1;
    -ms-flex-flow: column;
}

#left {
    --left-panel-width: 35em;
    left: calc(var(--left-panel-width) * (-1));
    width: var(--left-panel-width);
    min-width: var(--left-panel-width);
    border-right: .1em solid rgba(0, 0, 0, 0.3);
    padding-top: 5em;
    box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.4);
    z-index: 9;
    opacity: .7;
    transition: opacity linear .2s;
}

    #left:hover, #left:focus-within, #left:active {
        opacity: 1;
    }

    #left .handle {
        position: absolute;
        top: 45%;
        right: -1.3em;
        display: inline-block;
        height: 2.5em;
        width: 1.3em;
        background-color: #fff;
        border-top-right-radius: 1em;
        border-bottom-right-radius: 1em;
        border: .12em solid rgba(0, 0, 0, 0.3);
        border-left: none;
        cursor: pointer;
        transition: background-color linear .2s;
        z-index: 999;
    }

        #left .handle:not(.collapsed):hover {
            background-color: rgba(220,220,220,.9);
        }

        #left .handle.collapsed {
            background-color: darkorange;
        }

        #left .handle i {
            margin: 4px 0 0 -5px;
        }


    #left .header {
        padding: .001em .5em;
        border-top: solid .1em rgba(0,0,0, 0.2);
        border-bottom: solid .1em rgba(0,0,0, 0.2);
    }

        #left .header .toolbar {
            float: right;
        }

            #left .header .toolbar i {
                cursor: pointer;
                transition: color linear .2s;
            }

                #left .header .toolbar i:hover {
                    color: #fff;
                }

    #left .info .help {
        font-size: 16px;
        vertical-align: middle;
        cursor: help;
    }

    #left .filters {
        padding: .5em;
    }

        #left .filters [type="checkbox"] + label {
            padding-left: 1.7em;
            margin-left: -.2em;
        }

        #left .filters label.light {
            font-weight: normal;
            color: #fff;
        }

            #left .filters label.light::before {
                border-color: #fff;
            }

        #left .filters [type="checkbox"]:checked + label.light:before {
            border-top-color: transparent;
            border-left-color: transparent;
        }

        #left .filters .toolbar {
            float: right;
            margin-top: .1em;
        }

            #left .filters .toolbar i {
                font-size: 18px;
                border: solid transparent;
                border-radius: .2em;
                color: rgba(0,0,0,.8);
                transition: color linear .2s, border-color linear .2s;
            }

                #left .filters .toolbar i:hover {
                    color: #fff;
                    border-color: #fff;
                }

        #left .filters .aois,
        #left .filters .constraints {
            max-height: 25vh;
            overflow-y: auto;
        }

        #left .filters .aois,
        #left .filters .constraint {
        }

        #left .filters .collection-item {
            padding: .1em .3em;
            padding-left: 1em;
            height: 2em;
        }

        #left .filters .aois .collection-item label {
            width: 70%;
        }

        #left .filters .aois .name {
            border: none;
            height: initial !important;
            border: dotted .1em transparent;
        }

            #left .filters .aois .name:focus {
                box-shadow: none;
                background-color: lemonchiffon;
                border-color: #ddd;
            }

        #left .filters .collection-item:hover .toolbar {
            display: inline !important;
            visibility: visible !important;
        }

        #left .filters .collection-item .toolbar i {
            font-size: 20px;
        }

            #left .filters .collection-item .toolbar i:hover {
                color: #64b5f6;
            }

    #left .actions {
        padding: .5em;
    }

#right {
    width: 100%;
    right: 0;
    padding-top: 4.2em;
}

#map {
    height: 100%;
}

#map-toolbar {
    display: inline-block;
    background-color: #577598;
    color: #fff;
    padding: .5em;
    margin: 1em;
    border-radius: .3em;
}

    #map-toolbar i {
        border: solid 1px transparent;
        padding: .1em;
        border-radius: .2em;
        cursor: pointer;
        opacity: .7;
        transition: opacity linear .2s;
    }

        #map-toolbar i:hover {
            opacity: 1;
        }

        #map-toolbar i.state.enabled, #map-toolbar i.state:hover {
            border: solid 1px #fff;
        }

#map-coordinates {
    background-color: #577598;
    color: #fff;
    padding: .5em 1em;
    border-radius: .3em;
    margin: .5em;
    opacity: .8;
    transition: opacity linear .2s;
}

    #map-coordinates:hover {
        opacity: 1;
    }

    #map-coordinates label {
        font-size: 1.1em;
        color: #fff;
    }

    #map-coordinates .value {
        display: inline-block;
        width: 4.5em;
        text-align: right;
    }

    #map-coordinates .latitude {
        margin-right: 10px;
    }

#user-dropdown {
    width: 15em !important;
}

#cart-dropdown {
    width: 30em !important;
    overflow: hidden !important;
}

    #cart-dropdown label {
        color: #fff;
    }

    #cart-dropdown > div {
        padding-left: .5em;
    }

    #cart-dropdown .line {
        height: 3em;
    }

    #cart-dropdown .grid {
        color: #000;
    }

    #cart-dropdown .row {
        margin: 0 !important;
    }

    #cart-dropdown .col {
        white-space: nowrap;
    }

#display-products-on-map {
    padding-left: .5em;
}

#export-aoi-popup label {
    display: inline-block;
    margin-top: .5em;
}

#delete-aois:hover, .btn.delete i:hover {
    color: crimson !important;
}

.result {
    text-align: center;
}

section.instruments > ul {
    overflow-y: auto;
    padding-left: .5em;
    margin-bottom: .5em;
    zoom: .8;
}


section.aois .info,
section.instruments .info {
    color: crimson;
}

#add-instrument-popup select {
    margin-right: 2px;
}

section.instruments .category ul label {
    font-weight: normal;
}

section.instruments input:checked + label {
    font-weight: bold;
}

section.instruments i {
    margin-right: .2em;
}

section.instruments .expander {
    cursor: pointer;
}

    section.instruments .expander.collapsed {
        -ms-transform: rotate(180deg); /* IE 9 */
        -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
        transform: rotate(180deg);
    }

.license-types,
.license-types .items,
.license-types .items .archives,
.license-types .items .catalogs,
.license-types .items .constellations,
.license-types .items .satellites {
    margin-left: 1.5em;
    white-space: nowrap;
}


    .license-types .items .satellites .sensors,
    .license-types .items .products {
        white-space: nowrap;
        margin-left: 3em;
    }

.instrument.visible {
    font-weight: bold;
}

.instrument.tracked {
    color: limegreen;
}

.coordinates-types {
    padding-bottom: 0 !important;
}

    .coordinates-types .collection {
        font-size: .9em;
        margin-left: 2em;
    }

        .coordinates-types .collection .collection-item {
            padding: .5em;
            padding-left: 1em;
            font-size: .9em;
        }

            .coordinates-types .collection .collection-item i {
                font-size: 1.3em;
                margin-top: .3em;
                margin-right: .6em;
            }

.input-field {
    margin-top: .5em;
}

.dropdown-content li > a, .dropdown-content li > span {
    color: #1976D2;
}

.ui-accordion-header .ui-icon {
    display: none;
}

.collection-item.first-in-group {
    border-top: double 5px;
}

.info {
    font-size: .9em;
    font-style: italic;
    padding: 0 .5em;
    margin: 0;
}

    .info.area {
        padding: .2em .7em;
        border-radius: .2em;
        border: dotted 1px;
        width: 100%;
        margin-top: 1em;
    }

.head {
    font-size: 1em;
    padding: .3em;
    border-radius: .2em;
    margin-top: .5em;
    margin-bottom: .2em;
    min-height: 2.2em;
}

    .head i {
        color: rgba(0,0,0,.5);
        margin-right: .2em;
        cursor: pointer;
    }

    .head .collapse {
        display: none;
    }

    .head.expanded .expand {
        display: none;
    }

    .head.expanded .collapse {
        display: initial;
    }

    .head span {
        vertical-align: middle;
        color: #fff;
    }

.cesium-viewer-animationContainer {
    left: initial;
    right: 0;
    z-index: 99;
}

.cesium-viewer-timelineContainer {
    left: 0 !important;
}

.fix-bottom {
    position: fixed;
    bottom: .3em;
}

.error {
    color: crimson !important;
}

.drag-target {
    display: none;
}

.grid-overlay {
    background-color: red;
}

.ui-dialog {
    box-shadow: 0px 0px 15px 8px rgba(0,0,0,0.4);
}

.collection .collection-item.active {
    background-color: #eee;
    color: #fff;
}

.delete {
    cursor: pointer;
    transition: color linear .2s;
}

    .delete:hover {
        color: crimson;
    }

.constraint .value {
    margin-left: .5em;
}

.instrument [data-id] {
    background-color: #eee;
    border-radius: 2px;
    padding: 2px 5px;
    margin-right: 2px;
    font-size: .9em;
}

footer .copyright {
    float: left;
}

footer .horizon {
    float: right;
    margin-right: 1em;
}

.flag {
    width: 3em;
    vertical-align: middle;
}

sub {
    font-style: italic;
}

ol li {
    list-style-type: decimal;
}

.content {
    padding: 1em 2em;
}

    .content.body {
        margin: 3em 0;
    }

.release {
    border: none;
    border-left: dashed 1px #000;
    border-top-left-radius: 10px;
    margin-bottom: 3em;
    padding-bottom: 0;
}

    .release .version {
        border: solid 1px #000;
        border-radius: 3px;
        padding: 5px 10px;
        font-size: 1.2em;
        border-left-width: 4px;
        margin-left: 4px;
        margin-right: 1em;
    }

    .release .group {
        margin-top: 1em;
    }

    .release i {
        border: dotted 1px #ccc;
        padding: 2px 6px;
        margin: 0 1px;
        background-color: #fafafa;
    }

    .release ul {
        border: none;
    }

    .release .change {
        border: none;
    }

    .release .thumbnail {
        border-radius: 3px;
        vertical-align: middle;
        max-width: 100%;
        margin-left: 10px;
        box-shadow: 3px 3px 6px 1px rgba(0,0,0,0.3);
    }

        .release .thumbnail.height3 {
            zoom: .7;
        }

.change {
    margin-bottom: 2em;
    margin-left: -1px;
}

    .change::before {
        padding: 0px 6px;
        border: solid 1px;
        border-radius: 3px;
        font-style: italic;
        min-width: 5em;
        text-align: center;
        display: inline-block;
        margin-right: .5em;
        font-size: .8em;
    }

    .change.new::before {
        content: "new";
        color: limegreen;
        border-color: limegreen;
    }

    .change.update::before {
        content: "update";
        color: dodgerblue;
        border-color: dodgerblue;
    }

.czml {
    display: none;
}

[data-czml=true] .czml {
    display: initial;
}

@media only screen and (max-width: 992px) {
    nav .brand-logo {
        left: auto;
        right: 1%;
        -webkit-transform: none;
        transform: none;
    }
}

