/* Minification failed. Returning unminified contents.
(52,40): run-time error CSS1039: Token not allowed after unary operator: '-background-color'
(74,40): run-time error CSS1039: Token not allowed after unary operator: '-background-color'
(481,21): run-time error CSS1039: Token not allowed after unary operator: '-background-color'
(514,32): run-time error CSS1039: Token not allowed after unary operator: '-background-color'
(518,28): run-time error CSS1039: Token not allowed after unary operator: '-background-color'
(637,22): run-time error CSS1039: Token not allowed after unary operator: '-cluster-color'
(656,26): run-time error CSS1039: Token not allowed after unary operator: '-cluster-color'
(670,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(674,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(678,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html, body, form {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

main {
    height: 100%;
    width: 100%;
}

    main .map-wrapper {
        position: relative;
        height: 100%;
        width: 100%;
        /*min-height: 560px;*/
    }

    main .map {
        width: 100%;
        height: 100%;
        display: block;
        background-color: #333;
        position: relative;
        text-align: center;
    }

        main .map .pin {
            position: absolute;
            left: -42px;
            bottom: 0;
        }

            main .map .pin .wrapper {
                padding: 3px;
                /*border-radius: 3px;*/
                border-radius: 50%;
                background-color: #fff;
                background-color: var(--background-color);
                /*box-shadow: 0 0 5px 1px rgba(34,35,35,0.97);*/
                position: relative;
                z-index: 2;
            }

            main .map .pin img {
                display: block;
                border-radius: 0px;
            }

            main .map .pin .wrapper:after {
                top: 48px;
                left: 50%;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-color: rgba(255, 255, 255, 0);
                border-top-color: #ffffff;
                border-top-color: var(--background-color);
                border-width: 17px;
                margin-left: -17px;
            }

            main .map .pin .small img {
                width: 48px;
                height: 48px;
                border: solid 2px #fff;
                border-radius: 50%;
            }

            main .map .pin .large {
                display: none;
            }

            main .map .pin.active .small {
                display: none;
            }

            main .map .pin.active .large {
                display: block;
                background-color: #fff;
            }

            main .map .pin.active {
                width: 276px;
                padding: 4px;
                left: -154px;
            }

                main .map .pin.active .image {
                    width: 100%;
                    /*height: 194px;*/
                    display: block;
                    border-bottom-width: 4px;
                    border-bottom-style: solid;
                    position: relative;
                    overflow: hidden;
                }

                    main .map .pin.active .image img {
                        /*border-radius: 3px 3px 0 0;*/
                        width: 100%;
                    }

                    main .map .pin.active .image a.arrow {
                        position: absolute;
                        top: 90px;
                        z-index: 200;
                        background-color: rgba(255,255,255,0.8);
                        display: block;
                        width: 32px;
                        height: 27px;
                    }

                        main .map .pin.active .image a.arrow:hover {
                            background-color: rgba(255,255,255,1.0);
                        }


                main .map .pin.active .text {
                    padding: 10px 12px;
                    text-align: justify;
                }

                    main .map .pin.active .text p {
                        font-size: 13px;
                        line-height: 18px;
                        margin: 0;
                        padding: 0;
                    }

                        main .map .pin.active .text p.artist {
                            text-transform: uppercase;
                            margin: 0;
                        }

                            main .map .pin.active .text p.artist em {
                                text-transform: none;
                            }

                        main .map .pin.active .text p.title {
                            margin: 5px 0 15px;
                            font-style: italic;
                        }

                        main .map .pin.active .text p.tags {
                            margin: 0 0 3px 0;
                            font-weight: 600;
                        }

                    main .map .pin.active .text div.description {
                        max-height: 162px;
                        padding-bottom: 10px;
                        overflow-y: scroll;
                        /*custom*/
                        padding-right: 5px;
                        margin-right: -12px;
                        font-size: 13px;
                        line-height: 18px;
                    }

                    main .map .pin.active .text p.view3d a {
                        background: #014b85;
                        -moz-user-select: none;
                        color: #fff;
                        cursor: pointer;
                        display: inline-block;
                        font-size: 12px;
                        letter-spacing: 1px;
                        line-height: 0;
                        margin-bottom: 0;
                        padding: 14px 15px;
                        border-radius: 3px;
                        cursor: pointer;
                        transition: color 0.4s linear;
                        position: relative;
                        z-index: 1;
                        border: 0;
                        overflow: hidden;
                        margin: 0;
                    }

                        main .map .pin.active .text p.view3d a::before {
                            content: "";
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            background: #e6373d;
                            z-index: 1;
                            border-radius: 3px;
                            transition: transform 0.5s;
                            transition-timing-function: ease;
                            transform-origin: 0 0;
                            transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
                            transform: scaleX(0);
                            border-radius: 0;
                        }

                        main .map .pin.active .text p.view3d a:hover::before {
                            transform: scaleX(1);
                            color: #fff !important;
                            z-index: -1;
                        }

                        main .map .pin.active .text p.view3d a.btn-directions,
                        main .map .pin.active .text p.view3d a.btn-place-info {
                            padding: 2px !important;
                        }

                    main .map .pin.active .text div.description::-webkit-scrollbar {
                        -webkit-appearance: none;
                    }

                        main .map .pin.active .text div.description::-webkit-scrollbar:vertical {
                            width: 11px;
                        }

                        main .map .pin.active .text div.description::-webkit-scrollbar:horizontal {
                            height: 11px;
                        }

                    main .map .pin.active .text div.description::-webkit-scrollbar-thumb {
                        border-radius: 8px;
                        border: 2px solid white; /* should match background, can't be transparent */
                        background-color: rgba(0, 0, 0, .5);
                    }

                    main .map .pin.active .text div.description::-webkit-scrollbar-track {
                        background-color: #fff;
                        border-radius: 8px;
                    }

                main .map .pin.active a.close {
                    position: absolute;
                    top: -13px;
                    right: -13px;
                    width: 26px;
                    height: 26px;
                    display: block;
                    z-index: 999;
                    /*text-indent: -9999px;*/
                    border: solid 2px #000;
                    border-radius: 50%;
                    font-size: 1.4rem;
                }

    main .map-nav {
        width: 100%;
        display: block;
        /*position: relative;*/
        position: fixed;
        bottom: 0;
    }

        main .map-nav .title {
            background-color: #282828;
            text-align: center;
            text-transform: uppercase;
            color: #b0b0b0;
            font-size: 13px;
            padding: 1px 0;
        }

        main .map-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        main .map-nav li {
            float: left;
            display: block;
            text-align: center;
            margin: 0;
            background-color: #d1d1d1;
        }

            main .map-nav li a {
                text-transform: uppercase;
                padding: 10px 0;
                display: block;
                height: auto !important;
                color: #333;
                font-size: 14px;
                font-family: "Barlow Condensed";
                font-weight: 500;
            }

                main .map-nav li a:hover {
                }

                main .map-nav li a.active {
                    background-image: url(../img/public-active-arrow.png);
                    background-position: center top;
                    background-repeat: no-repeat;
                    color: #fff;
                }

    /* blobs */
    main .map .pin span.blobs {
        border-radius: 50%;
        background-color: rgba(34,35,35,0.3);
        height: 7px;
        width: 14px;
        position: absolute;
        bottom: -15px;
        left: 20px;
        box-shadow: 0 0 5px 1px rgba(34,35,35,0.3);
    }

    main .map .pin.active span.blobs {
        left: 130px;
        bottom: -15px;
    }

    main .map .pin.active .wrapper {
        border-radius: 3px;
    }

        main .map .pin.active .wrapper:after {
            top: 100%;
        }
    /* colours */

    /*white - default*/
    main .map .pin.active a.close {
        background-position: -189px -317px;
        background-color: rgba(255,255,255,1);
        opacity: .9;
    }

    /* purple */
    /*main .map .pin.f1 span.blobs {
        background-color: #943d9c;
    }

    main .map .pin.active.f1 .image {
        border-color: #943d9c;
    }

    main .map .pin.active.f1 .text a {
        color: #943d9c;
    }

    main .map-nav li a.f1 {
        background-color: #d1d1d1;
        color: #707070;
    }

        main .map-nav li a.f1:hover {
            background-color: #e2e2e2;
        }

        main .map-nav li a.f1.active {
            background: #943d9c url(../img/public-active-arrow.png) center top no-repeat;
            color: #fff;
        }

    main .map .pin.active.f1 a.close {
        background-position: -384px -320px;
    }*/

    /* green */
    /*main .map .pin.f2 span.blobs {
        background-color: #55a696;
    }

    main .map .pin.active.f2 .image {
        border-color: #55a696;
    }

    main .map .pin.active.f2 .text a {
        color: #55a696;
    }

    main .map-nav li a.f2 {
        background-color: #d1d1d1;
        color: #707070;
    }

        main .map-nav li a.f2:hover {
            background-color: #e2e2e2;
        }

        main .map-nav li a.f2.active {
            background: #55a696 url(../img/public-active-arrow.png) center top no-repeat;
            color: #fff;
        }

    main .map .pin.active.f2 a.close {
        background-position: -320px -320px;
    }*/

    /* grey */
    /*main .map .pin.f3 span.blobs {
        background-color: #6bc5e6;
    }

    main .map .pin.active.f3 .image {
        border-color: #6bc5e6;
    }

    main .map .pin.active.f3 .text a {
        color: #6bc5e6;
    }

    main .map-nav li a.f3 {
        background-color: #d1d1d1;
        color: #707070;
    }

        main .map-nav li a.f3:hover {
            background-color: #e2e2e2;
        }

        main .map-nav li a.f3.active {
            background: #6bc5e6 url(../img/public-active-arrow.png) center top no-repeat;
            color: #fff;
        }

    main .map .pin.active.f3 a.close {
        background-position: -256px -320px;
    }*/

    /* Spritesheet */

    main .icn {
        display: block;
        background-image: url(../img/sprites.png);
        background-repeat: no-repeat;
    }

        main .icn span {
            display: none;
        }

    main .left-black-arrow {
        background-position: -58px -377px;
        width: 14px;
        height: 11px;
        left: 0;
        position: relative;
        top: 5px;
    }

    main .right-black-arrow {
        background-position: -118px -377px;
        width: 14px;
        height: 11px;
        right: 0;
        position: relative;
        top: 5px;
    }

    main .map .pin .wrapper:before {
        content: attr(title);
        position: absolute;
        display: block;
        text-align: center;
        white-space: nowrap;
        top: -15px;
        font-size: 17px;
        transform: translate(-32%, -50%);
        color: var(--background-color);
        font-family: "Barlow Condensed";
        font-weight: 500;
        text-shadow: 0 0 1px rgba(0,0,0,.9);
    }

    main .map .pin.active .wrapper:before {
        display: none;
    }

/*map-legend*/
.map-legend {
    position: absolute;
    top: 110px;
    left: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
    max-width: 320px;
}

@media only screen and (max-width: 991px) {
    .map-legend {
        top: 70px;
    }
}

.map-legend .custom-control-label {
    font-family: "Barlow Condensed";
}

    .map-legend .custom-control-label:before {
        background-color: var(--background-color);
    }

.map-legend .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--background-color);
}

/*map-legend*/
.map-legend .btn-expand {
    position: absolute;
    top: 100%;
    border: none;
    border-top: solid 1px #ccc;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
    background-color: rgba(255,255,255,0.9);
    color: #000;
    cursor: pointer;
    padding: 0px 15px;
    font-size: .75rem;
}

.map-legend.expanded .controls {
    /*position: absolute;
    background: #fff;
    border-bottom: solid 1px #ccc;
    left: 0px;
    right: 0px;*/
}

.map-legend .btn-collapse {
    display: none;
    border: none;
    border-top: solid 1px #ccc;
    color: #000;
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    cursor: pointer;
}

.map-legend .legend {
    max-height: 100%;
    /*max-height: calc(100% - 27px);*/
    overflow: auto;
}

    .map-legend .legend .info {
        display: none;
    }

.map-legend.expanded .legend .info {
    display: block;
    /*margin-top: 24px;*/
}

.map-legend.expanded {
    top: 100px;
    left: 0;
    bottom: 43px;
    border-radius: 0px;
    padding-right: 1px;
}

    .map-legend.expanded .btn-expand {
        display: none;
    }

    .map-legend.expanded .btn-collapse {
        display: inline-block;
    }

.map-legend .custom-control.custom-checkbox {
    margin-left: 5px;
}

.map-legend.expanded .custom-control.custom-checkbox {
    display: inline-block;
    margin-right: 10px;
}

@media only screen and (max-width: 991px) {
    .map-legend.expanded {
        top: 60px;
    }
}

.map-legend .info * {
    font-family: "Barlow Condensed";
    color: inherit;
}

.map-legend .info p {
    line-height: initial;
    margin-bottom: 0px;
}

.map-legend .info .table tbody tr {
    cursor: pointer;
}

/*gmap directions*/
ul#instructions li {
    font-family: "Barlow Condensed";
    list-style: decimal;
    margin-left: 30px;
}

p.view3d {
    display: block;
    overflow: hidden;
}

/*custom-clustericon*/
.cluster div {
    /*margin-left: 27px;*/
}

.cluster img {
    margin-left: -27px;
}

.custom-clustericon {
    background: var(--cluster-color);
    color: #fff;
    border-radius: 100%;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
}

    .custom-clustericon::before,
    .custom-clustericon::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        background: var(--cluster-color);
        opacity: 0.2;
        border-radius: 100%;
    }

    .custom-clustericon::before {
        padding: 7px;
    }

    .custom-clustericon::after {
        padding: 14px;
    }

.custom-clustericon-1 {
    --cluster-color: #00a2d3;
}

.custom-clustericon-2 {
    --cluster-color: #ff9b00;
}

.custom-clustericon-3 {
    --cluster-color: #ff6969;
}

