/*--------------------------------------------------------------
# Media queries
--------------------------------------------------------------*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 576px) {
    .map-filters,
    .map-timeline {
        width: 320px;
    }

    .map-catalogue {
        width: 360px;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .site-header .logo-img {
        margin-right: 1.5rem;
    }
}


/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--bg-color-light);
        z-index: 10;
        height: 80px;
    }

    .uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
        min-height: 80px;
    }
      
    .site-header .logo-img {
        height: 64px;
    }

    .map-filters {
        top: 90px;
        bottom: 70px;
        pointer-events: none;
        background-color: transparent;
        overflow-x: visible;
    }

    .map-layers {
        margin-bottom: auto;
    }      

    .map-catalogue {
        top: 90px;
        bottom: 70px;
    }

    .site-footer {
        height: 44px;
        font-size: .72rem;
    }

    .map-search {
        display: flex;
        align-items: center;
    }

    .map-filters,
    .map-catalogue {
        transform: translateX(0);
    }

    .map-layer .map-layer-panel ul {
        overflow: auto;
        max-height: 25vh;
    }

    .map-filters .map-timeline-list {
        position: absolute;
        top: 0;
        left: 100%;
        transform: translateX(-100%);
        transition: transform .25s ease;
        z-index: 2;
        display: block;
    }

    .map-timeline .map-timeline-list ul {
        background-color: #ffffff;
        display: flex;
        align-items: center;
      }
      
    .map-timeline.uk-open .map-timeline-list {
        transform: translateX(0);
    }

    .map-active-filters {
        display: block;
      }

    .map-main .ol-zoom {
        top: 90px;
        left: 380px;
    }

    .map-main .ol-scale-line {
        bottom: 160px;
    }
      
    .location-slideshow {
        position: absolute;
        top: 0;
        right: 0;
    }

    .location-content .location-section {
        display: flex;
        align-items: flex-start;
    }

    .location-content .location-section > div:first-child {
        margin-bottom: 0;
    }

    .location-content .location-padding {
        padding: 40px;
    }
      
    .location-slideshow.location-slideshow-landscape {
        min-height: auto;
    }

}

@media only screen and (min-width : 1400px) {}

/* Mobile only */
@media screen and (max-width: 600px) {}
