﻿@charset "UTF-8";
@viewport { width: extend-to-zoom; zoom: 1.0; }
@-ms-viewport { width: extend-to-zoom; zoom: 1.0; }


/* Custom */

.offline-site {
    background-color: orange;
    color:black;
    font-weight:bold;
    position:fixed;
    top:0;
    width:100%;
    z-index:1;
    padding:1em;
}
    .offline-site:before {
        content: ' ';
        position: fixed;
        left:0;
        height: 100vh;
        width:3px;
        background-color:orange;
    }

    .offline-site:after {
        content: ' ';
        position: fixed;
        right: 0;
        height: 100vh;
        width: 3px;
        background-color: orange;
    }    


    .offline-site p {
        margin:auto;
    }

    .offline-site + .c-osu {
        margin-top:88px;;
    }

    .offline-logout {
        padding-top:1em;
        color:black;
    }

    .offline-logout:hover {
        text-decoration:underline;
    }

    @media only screen and (min-width: 640px) {
        .offline-site {
            text-align: center;
        }

        .offline-logout {
            padding: 0;
        }

        .offline-site + .c-osu {
            margin-top: 52px;
        }
    }

    .c-gallery {
        display: grid;
        grid-gap: 0;
        grid-template-columns: 50% 50%;
        grid-auto-rows: auto;
        grid-auto-flow: dense;
        margin: 0 -0.5em;
    }

    @media only screen and (min-width: 640px) {
        .c-gallery {
            grid-template-columns: 33.3% 33.3% 33.3%;
        }
    }

    @media only screen and (min-width: 1180px) {
        .c-gallery {
            grid-template-columns: 20% 20% 20% 20% 20%;
        }
    }

    .c-gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0.5em 0.5em 0.5em 0.5em;
    }

    .c-gallery__item:first-child {
        grid-row-end: span 2;
        grid-column-end: span 2;
    }

    .c-gallery__item:nth-child(4n) {
        grid-row-end: span 2;
        grid-column-end: span 2;
    }

/*Map front end */
.c-map-details__summary {
    text-align: initial;
}

.c-document__restricted {
    width: 14px;
    height: 20px;
    line-height: 1em;
}

.c-document__restricted--lockicon {
    left:-6px;
    top:-6px;
    font-size:11px;
}

.c-list__link--viewicon.is-active {
    color: #bb0000;
}


/* Site-level alerts */

    .c-site-alerts { padding: 0 20px; }
       
        .c-site-alert { position: relative; margin: 20px auto; }
            .c-site-alert:last-of-type { margin-bottom: 0; }
            @media only screen and (min-width:640px) {
                .c-site-alert { max-width: 1180px; }
            }

        .c-site-alert__container { position: relative; padding: 0 1em; border-style: solid; border-color: #1B809E; border-width: 1px 1px 1px 5px; background-color: #d9f6ff; }
        
        .c-site-alert h3 { margin: 0.5em 0; color: #1B809E; }

        .c-site-alert a { background: linear-gradient( to bottom, transparent, transparent 1.1em, pink, pink 1.2em, transparent 1px ); }

        .c-site-alert__dismiss { position: absolute; right: 0; top: 0; margin: 1em; }

.c-tag {
    display: inline-block;
    margin: 0 5px 5px 0;
}

.c-tag__link {
    display: block;
    border: 1px solid #ccc;
    color: #000;
    font-weight: 500;
    border-radius: 5px;
    background-color: #fff;
    padding: 5px;
}

.c-tag__inline {
    border: 1px solid #ccc;
    color: #000;
    font-weight: 500;
    border-radius: 5px;
    background-color: #fff;
    padding: 5px;
}

.u-required {
    line-height: 1em;
    height: 20px;
    display: inline-block;
}

.u-description {
    min-height: 145px;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: .5em;
}

#maparea {
    width: 100%;
    height: 600px;
    background: #ccc;
}

    #maparea, #maparea div {
        overflow: visible;
    }