﻿
html, body {
    background-color: #12A79D;
    margin: 0;
    color: #333;
}

    html.lightbox,
    html.lightbox body {
        background-color: White;
    }

a {
    color: Blue;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

img {
    border: 0;
}

table {
    border-spacing: 0;
}

td, th {
    text-align: left;
    vertical-align: top;
    font-size: 12px;
    line-height: 13px;
    padding: 0;
}

ol, ul, li, p {
    margin-top: 6pt;
}

p {
    margin-bottom: 6pt;
}

dl dt {
    font-weight: bold;
}

dl dd {
    margin-bottom: 12pt;
    margin-left: 6pt;
    margin-top: 6pt;
}

div.error {
    color: red;
}

div.warning {
    color: darkred;
}


/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
    margin: 6pt 0 0 0;
}

h1 {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

h2 {
    font-size: 16px;
    margin-top: 6pt;
    margin-bottom: 3pt;
}

    h2:first-child {
        margin-top: 0;
    }

h3 {
    font-size: 14px;
}

    h3:first-child {
        margin-top: 0;
    }

#page {
    background-color: White;
    width: 1350px;
    /*width: calc(100vw - 100px);*/
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-shadow: 0 0 20px #444;
}







#logobar {
    width: 100%;
    padding-top: 3px;
    height: 42px;
}

#logo {
    height: 31px;
    padding: 2px;
    float: left;
}




/***************************************************************
**            the top menu
****************************************************************/
.dropbtn::after {
    /*content: '▼';*/ /*U+25BC*/
    content: "▾"; /*U+25BE*/
}

#topmenu {
    background-color: #007a9a;
    height: 38px;
}

    #topmenu nav {
        display: inline-block;
    }


    #topmenu ul {
        background-color: #007a9a;
        list-style: none;
        position: relative;
        margin: 0;
        padding: 0;
    }

    #topmenu li {
        margin-top: 0;
        padding: 3px;
    }

    #topmenu nav > ul > li { /*specifically get the top level menu li elements, and not the sub menu li elements*/
        background-color: #007a9a;
        float: left;
        padding: 0 5px 0 5px;
        font-size: 14px;
        margin: 0 0 0 0;
        border-right: 1px solid #808080;
        display: block;
    }

/*
#page[data-pathlist = property] #topmenu nav ul li.tab_home {
    background-color: #026e8a;
}
#page[data-pathlist = streetreport] #topmenu nav ul li.tab_streetreport {
    background-color: #026e8a;

}
#page[data-pathlist *= home] #topmenu nav ul li.tab_help {
    background-color: #026e8a;
}
*/
    #topmenu nav ul li:hover {
        background-color: #0097bd;
    }

    #topmenu nav ul li a {
        color: white;
        text-decoration: none;
        display: block;
        height: 36px;
        display: block;
        line-height: 36px;
    }


    #topmenu span {
        display: inline-block;
        height: 36px;
        line-height: 36px;
    }


#menu img {
    height: 16px;
    vertical-align: middle;
}


#user img {
    display: inline-block;
    height: 34px;
    vertical-align: middle;
}


#topmenu ul ul {
    background-color: #007a9a;
    position: absolute;
    padding: 3px;
    width: 120px;
    z-index: 19; /* push the sub-menues ahead of everything except lightboxes */
    display: none; /* the submenus are hidden by default */
}


#topmenu ul li:hover > ul {
    display: block; /* show the submenus on hover */
}


#user {
    float: right;
    border-left: 1px solid #808080;
}

    #user li ul { /*pull submenues right*/
        right: 0;
    }


/*****************************
    Mobile menu
******************************/

@media (max-width: 767px) {

    #logobar {
        display: none;
    }

    .dropbtn::after {
        content: "▼";
    }

    #user span { /* loose the user name but keep the picture */
        display: none;
    }

    #menu img { /* loose the images */
        display: none;
    }
}




#sidenav nav {
    background-color: #007a9a;
    /*background-image: linear-gradient(#025c73 0%, #12A79D 42%, #025c73 100%); #025c73;*/
    margin-bottom: 4px;
}

    #sidenav nav ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 0;
    }

        #sidenav nav ul li {
            margin-top: 0;
            display: inline-block;
            padding: 2px;
            font-size: 11px;
            border-left: 1px solid #0083a4;
        }

            #sidenav nav ul li a {
                text-decoration: none;
                color: white;
                display: inline;
            }

                #sidenav nav ul li a img {
                    border: 0;
                    display: inline;
                    height: 28px;
                    margin-top: 4px;
                }

                #sidenav nav ul li a span {
                    border: 0;
                    display: inline;
                }

            #sidenav nav ul li:hover {
                color: white;
                background-color: #0097bd;
            }







#sidenav {
    display: none;
}

/* sidenav dissapears on narrow screens */
@media (min-width: 1349px) {
    #sidenav {
        display: block;
        position: absolute;
        padding-left: 0px;
        font-size: 12px;
        border-left: none;
        width: 48px;
        left: -48px;
        top: 90px;
    }

        #sidenav nav {
            padding-left: 0;
            background-color: transparent;
        }

            #sidenav nav ul li {
                display: block;
                height: 70px;
                background-color: #025c73;
                border: 1px solid #005c74;
                border-top-left-radius: 6px;
                border-bottom-left-radius: 6px;
                margin-bottom: 4px;
            }

                #sidenav nav ul li a {
                    text-align: center;
                }

                    #sidenav nav ul li a span {
                        display: block;
                    }

                    #sidenav nav ul li a img {
                        border: 0;
                        display: block;
                        margin-left: auto;
                        margin-right: auto;
                    }

                #sidenav nav ul li:hover {
                    background-color: #0097bd;
                }
}


#logobar .expander_label {
    display:block;
    float:right;
    border: 1px solid #bdf;
    line-height: 1.0;
    color: #2492ff
}
    #logobar .expander_label::after {
        font-size: 14px;
        /*content: '▲'; U+25B2*/
        content: '▴'; /*U+25B4*/
    }
#message_expander:checked ~ .expander_label::after {
    /*content: '▼';*/
    content: "▾";
}

#message_expander:checked ~ #messages {
    height: 3px;
    overflow: hidden;
}


#messages {
    box-sizing: border-box;
    display: block;
    background-color: lightyellow;
    padding: 1px;
    overflow: auto;
    font-size: 12px;
    font-family: tahoma;
    height: 40px;
    overflow-y: auto;
}

    #messages .message {
        /*border: 1px solid rgba(153,187,221,0.5);
        border-radius: 3px;*/
        margin: 2px 0 2px 0;
        display: table;
        width: 100%;
    }





    #messages .message {
        border-top: 1px solid white;
        display: table;
        width: 100%
    }

        #messages .message .title p, #note-title p {
            margin-bottom: 0;
            margin-top: 0;
        }

        #messages .message .date {
            vertical-align: middle;
            font-size: .72em;
            display: table-cell;
            width: 10px
        }

        #messages .message .more {
            vertical-align: middle;
            display: table-cell;
            width: 40px
        }


#notification-copy {
    /* the dimensions here should ideally match the notification-panel value */
    width: 600px;
    height: 300px;
    overflow-y: scroll
}


.notification-container {
    visibility: visible;
    opacity: 1;
    z-index: 12;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    width: 1px;
    margin: auto;
    transition: all 0.7s ease-in-out;
}

    .notification-container:target {
        height: 100%;
        width: 100%;
        visibility: visible;
        background-color: #00000020;
        z-index:101;
    }


.notification-panel {
    width: 600px;
    height: 500px;
    margin: auto;
    margin-top: 15px;
    box-shadow: 7px 7px 7px #444;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    opacity: 1;
}




.notification-container .notification-body {
    padding: 20px;
    height: 415px;
    overflow-y: scroll;
    background: #fff;
}

.notification-container .panel-heading {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    background-color: grey;
    color: white;
    margin-top: 0;
    padding: 10px;
}



.notification-container .control {
    color: white;
    font: bolder;
    float: right;
}

.notification-container .panel-footer {
    background-color: grey;
    color: white;
    margin-top: 0;
    padding: 10px;
    height: auto;
}



#main {
    margin-left: 26px;
    margin-right: 26px;
    clear: both;
    min-height: calc(100vh - 220px);
}

#footer {
    position: relative;
    padding-top: 30px;
    font-size: 12px;
}

    #footer .links {
        position: absolute;
        left: 0;
        bottom: 0;
    }

    #footer .copyright {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    #footer .bla {
        color: #12a79d; /* main background colour */
        font-size: 20px;
        text-align: center;
    }

    #footer a {
        color: #808285;
    }


        #footer a:hover {
            color: Blue;
            text-decoration: underline;
        }

sup {
    vertical-align: baseline;
    position: relative;
    top: -0.5em;
}

table.three {
    width: 100%;
    border-spacing: 0;
}

    table.three td {
        width: 33%;
        padding: 0
    }

        table.three td + td {
            text-align: center;
        }

            table.three td + td + td {
                text-align: right;
            }


        table.three td > div {
            text-align: left;
            display: inline-block;
        }



span.powered {
    display: inline-block;
    color: #12A79D;
    font-weight: bold;
    font-size: 14px;
}

hr {
    margin: 0;
    border: 0;
    border-top: 2px solid #dddddf;
}




/*** MAIN PAGE ***/
td {
    text-align: left;
}


/*** PROPERTY LAYOUT ***/

div.frame {
    background-color: White;
}

    div.frame + div.frame {
        margin-top: 15px;
    }

div.items {
    overflow: auto;
    margin-top: 15px;
    max-height: calc(100% - 400px)
}

.has-items,
.no-items {
    height: 24px;
    line-height: 24px;
}

div.list-item {
    position: relative;
    cursor: default;
}

    div.list-item:not([style*='display: none']) ~ div.list-item {
        margin-top: 5px;
    }

    div.list-item.map {
        height: 50px;
    }

html.lightbox div.property-detail {
    margin: 5px;
}

div.property-detail div.thumbnail {
    float: right;
    margin-left: 5px;
}

.property-list-item .thumbnail img, .property-list-item .aerialthumbnail img {
    max-height: 50px;
    max-width: 75px;
}

.aerialthumbnailcontainer {
    width: 78px;
    height: 50px;
}

.subject .aerialthumbnailcontainer {
    width: 0px;
    height: 50px;
}

.subject .aerialthumbnail {
    display: none;
}





img.lazy[src^=data] {
    height: 50px;
    width: 75px;
}

div.entity-heading div.thumbnail img + img {
    position: absolute;
    left: 5px;
}

div.entity-heading label {
    font-weight: bold;
    font-family: Arial, Helvetica;
}

div.list-item h4 {
    margin-top: 4px;
    margin-bottom: 2px;
}


.entity,
.entity h4 {
    font-size: 12px;
    line-height: 12px;
}

    .entity h4,
    .entity label,
    .entity th {
        color: #555;
    }


a.command {
    display: block;
    height: 20px;
    line-height: 20px;
    padding-left: 20px;
    padding-right: 5px;
    background-repeat: no-repeat;
    background-position: 2px center;
    white-space: nowrap;
    font-family: arial;
    font-size: 14px;
}

    a.command.remove {
        background-image: url(/content/images/map/minus-16.png);
    }

    a.command.add {
        background-image: url(/content/images/map/plus-16.png);
    }

    a.command.view {
        background-image: url(/content/images/map/view16.png);
    }

a.normal {
    color: Blue;
    outline: none;
}

    a.normal:hover {
        text-decoration: underline;
    }

a.property-button {
    display: block;
    line-height: 15px;
    color: Blue;
    padding-left: 16px;
    background-repeat: no-repeat;
    background-position: 0 center;
    border: 1px solid #E6E7E9;
}

    a.property-button:hover {
        text-decoration: underline;
    }

a.property-button {
    margin-bottom: 2px;
}


    a.property-button.remove {
        background-image: url(/content/images/map/minus-13.png);
    }

    a.property-button.add {
        background-image: url(/content/images/map/plus-13.png);
    }

    a.property-button.view {
        background-image: url(/content/images/map/view-13.png);
    }

.property-list-item td.buttons {
    padding-left: 10px;
}

#property-information a.property-button.add {
    display: none;
}

.overflow-parent {
    height: 12px;
}

    .overflow-parent .overflow {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

        .overflow-parent .overflow:hover {
            height: auto;
            padding: 2px;
            border: 1px solid #999;
            border-radius: 2px;
            left: -3px;
            right: -3px;
            top: -3px;
            white-space: normal;
            background-color: White;
            color: #222;
            z-index: 1;
            position: absolute;
        }

/*** END PROPERTY LAYOUT ***/

#map-window, #property-window {
    width: 480px;
    float: right;
}



#property-window {
    clear: right;
}

#map-window .tab_container {
    margin-bottom: 0;
}

#search-window{
    width: calc(100% - 480px);
    float: left;
}




#search_help_text {
    position: relative;
    margin-top: 16px;
    /*background-color: white;*/
    height: 180px;
    border-radius: 3px;
}

    #search_help_text .logo {
        display: block;
        position: relative;
        margin: auto;
        padding: 50px 0 0 0;
    }




#map-window {
    position: relative;
    transition: height,width 0.6s ease;
}

    #map-window .prover-map {
        transition: height 0.4s ease;
    }

        #map-window .prover-map canvas:hover {
            cursor: all-scroll;
        }


#page.big-map .prover-map {
    height: 586px;
}

#search-spacer {
    width: 0px;
    height: 0px;
}

#search_text {
}

#form-control:focus {
    border: 1px solid #809020;
    box-shadow: 0 0 2px #4DAFFF inset;
    outline: 0;
}

#search-window .tab_container {
    margin-right: 0;
}

#search-tabs {
    min-width: 300px;
}

    #search-tabs .display-box {
        height: 279px;
        background-color: #afbc4f;
        background-image: linear-gradient(#afbc4F 50%,#809020);
        position: relative;
    }

        #search-tabs .display-box.sales,
        #search-tabs .display-box.for-sale {
            display: none;
            overflow: auto;
        }



    div .display-box {
    border-radius: 4px;
    border-top-left-radius: 0;
}

#map-window div.tab_container,
#property-window div.tab_container {
    padding-left: 12px;
}



#search-window div.tab_container {
    padding-right: 12px;
}

div.prover-map {
    border-radius: 4px;
    border: 2px solid #24aae1;
    height: 289px;
    overflow: hidden;
    position: relative;
    background-color: White;
}



/* styles for a big map */
.big-map #map-window{
    width: 100%;
}

    .big-map #map-window .tab_container {
        padding-left: 0px;
    }


@media (max-width: 1520px) {

    #page {
        width: 1210px;
    }
}



@media (max-width: 1210px) {

    #page {
        width: 100%;
    }

    .narrowhide, .aerialthumbnail {
        display: none
    }

    .aerialthumbnailcontainer {
        width: 0px;
        height: 50px;
    }
}


/* squish things up on really small screens */
@media (max-width: 995px) {
    #main {
        margin-left: 2px;
        margin-right: 2px;
    }

    #search-window div.tab_container {
        padding-right: 0;
        transition: 0;
    }

    #map-window div.tab_container,
    #property-window div.tab_container {
        padding-left: 5px;
        transition: padding 0s;
    }

    div.display-box {
        padding-left: 5px;
        padding-right: 5px;
    }

    .container-2col .left-data {
        width: 150px;
    }
}

/* twice the map width */
@media (max-width: 920px) {
    #map-window, #property-window {
        width: 50%;
        float: right;
    }

    #search-tabs .tab {
        padding-left: 5px;
        padding-right: 5px;
    }




    #search-window {
        width: 50%;
        float: left;
    }
}



@media (max-width: 920px) and (min-width: 768px), (max-width: 480px) {
    .property-list-item .container-2col .rightcol {
        float: none;
        width: 100%;
    }

        .property-list-item .container-2col .rightcol a.property-button {
            display: inline-block;
            padding-top: 5px;
            padding-bottom: 5px;
            padding-right: 5px;
            padding-left: 20px;
            background-position-x: 3px;
            width: 20%;
        }
}




@media (max-width: 767px) {

    /** remove heights on small screens */
    #search-tabs .display-box {
        height: auto;
    }

    #search_help_text {
        height: auto;
    }

    #page {
        width: 100%;
        min-width: 360px;
    }

    #main {
        margin-left: 0;
        margin-right: 0;
    }

    #map-window,
    #property-window,
    #search-window
    {
        width: 100%;
        float: none;
    }

    #suggest_dropdown {
        width: calc(100% - 10px);
    }

        #map-window div.tab_container,
        #property-window div.tab_container {
            padding-left: 0px;
        }

    div .prover-map {
        border: 1px solid #24aae1;
    }

    a.tab {
        padding: 2px 3px;
        margin-right: 0px;
    }


    #footer {
        position: relative;
        padding-top: 0px;
        font-size: 12px;
    }

        #footer .bla {
            display: none;
        }

        #footer .links {
            padding-top: 10px;
            position: relative;
            display: inline-block;
        }

        #footer .copyright {
            padding-top: 10px;
            position: relative;
            display: inline-block;
        }




    a.tab /*, a.button, input.button, .button*/ {
        text-transform: none;
    }

    #map-window div.tab_container {
        margin-right: 8px;
        margin-left: 8px;
        margin-top: 0px;
        padding-left: 0px;
    }


    .notification-panel {
        width: 96%;
    }
}




/*** SLIDER ***/
div.single-slider {
    position: relative;
}

.single-slider div.pitch {
    width: 240px;
    height: 2px;
    border-radius: 5px;
    border-top: 1px solid #025c73;
    background-color: #24aae1;
    border-bottom: 1px solid #4AF;
    position: relative;
    margin: 10px 0;
}

.single-slider .pitch div.knob {
    width: 17px;
    height: 17px;
    background-color: #FFF;
    border: 1px solid #ABD;
    position: absolute;
    border-radius: 9px;
    overflow: hidden;
    top: -9px;
    cursor: pointer;
    margin-left: -9px;
}

    .single-slider .pitch div.knob:hover {
        border-color: #4DAFFF;
        background: linear-gradient(to bottom, #FFF 20%,#EEE 100%);
        border-radius: 10px;
        top: -10px;
        height: 19px;
        width: 19px;
        margin-left: -10px;
    }

/*** DROP DOWN SELECT ***/
a.dropdown-menu,
a.dropdown-menu:after {
    border: 1px solid #abd;
}

a.dropdown-menu {
    padding: 0 5px 0 5px;
    margin: 0 17px 0 0;
    position: relative;
    display: inline-block;
    background-color: White;
    color: Black;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 0 15px;
    line-height: 22px;
}

    a.dropdown-menu:after {
        position: absolute;
        content: '▼';
        display: block;
        width: 17px;
        right: -17px;
        top: -1px;
        bottom: -1px;
        color: #abd;
        text-align: left;
        font-size: 11px;
        font-family: Arial;
        background-color: White;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        line-height: 23px;
        text-align: center;
    }

    a.dropdown-menu:hover,
    a.dropdown-menu.active {
        border-color: #4DAFFF;
        text-decoration: none;
        background: linear-gradient(to bottom, #fff 20%,#eee 100%);
    }

        a.dropdown-menu.active,
        a.dropdown-menu.active:after {
            z-index: 10;
        }

            a.dropdown-menu:hover:after,
            a.dropdown-menu.active:after {
                border-color: #4DAFFF;
                color: #4DAFFF;
                background-color: #E7F3FD;
                background: linear-gradient(to bottom, #fff 20%, #E7F3Fd 100%);
            }

    a.dropdown-menu.active {
        border-bottom-left-radius: 0;
    }

        a.dropdown-menu.active:after {
            border-bottom-right-radius: 0;
        }

    a.dropdown-menu.disabled,
    a.dropdown-menu.disabled:hover {
        background: #eee;
        border-color: #abd;
        cursor: default;
    }

        a.dropdown-menu.disabled:after {
            background: #eee;
            border-color: #abd;
            color: #abd;
        }

/* SPECIAL TABS AND BUTTONS */
#search-tabs a.tab {
    background-color: #eff1dc;
    color: #7F8C1F;
}

    #search-tabs a.tab:hover {
        background-color: #E7ECBE;
    }

    #search-tabs a.tab.selected {
        background-color: #afbc4f;
        color: White;
    }


    #map-window a.tab {
    background-color: #d4eef9;
    color: #24aae1;
}

    #map-window a.tab:hover {
        background-color: #A9E3FD;
    }

    #map-window a.tab.selected {
        background-color: #24aae1;
        color: White;
    }

/* UI */

/*
input
{
    line-height: 16px;
    border-radius: 3px;
    padding: 1px 15px;
    margin: 0;
}

input:focus[type=text]
{
    border: 1px solid #4DAFFF;
    outline: 0;
}
*/

/*** COPIED FROM map.css ***/
div.map-expand {
    z-index: 1;
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url(/content/images/expand1a.png);
    background-repeat: no-repeat;
}

    div.map-expand:hover {
        background-image: url(/content/images/expand1ah.png);
    }

div.map-shrink {
    z-index: 1;
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url(/content/images/shrink1a.png);
    background-repeat: no-repeat;
}

    div.map-shrink:hover {
        background-image: url(/content/images/shrink1ah.png);
    }

div.map-info {
    background-image: url("/content/images/map/point-info-16.png");
    height: 16px;
    width: 16px;
    padding: 0;
    margin: 0;
    position: absolute;
    overflow: hidden;
    display: block;
    background-position: 0 0px;
    z-index: 4;
}

    div.map-info:hover,
    div.map-info.hover {
        background-position: 0 -16px;
        z-index: 6;
        cursor: pointer;
    }

    div.map-info.selected {
        background-position: -16px 0;
    }

        div.map-info.selected:hover,
        div.map-info.selected.hover {
            background-position: -16px -16px;
        }

    div.map-info.subject {
        background-position: -32px 0;
        z-index: 5;
    }

        div.map-info.subject:hover,
        div.map-info.subject.hover {
            background-position: -32px -16px;
            z-index: 6;
        }



    /*****************************************************************************
    Flag styles
******************************************************************************/

    div.map-info.flag {
        padding-top: 2px;
        width: 26px;
        height: 10px;
        background-image: none;
        overflow: visible;
        z-index: 5;
        border-radius: 5px;
        font-size: 8px;
        line-height: 10px;
    }




        div.map-info.flag.forSale {
            background-color: lightgreen;
            border: 1px solid green;
        }

        div.map-info.flag.sold {
            background-color: cornflowerblue;
            border: 1px solid blue;
        }

        div.map-info.flag.subject {
            background-color: red;
            border: 1px solid darkred;
        }

        div.map-info.flag.forSale::before {
            content: "SALE";
            margin: 2px;
        }

        div.map-info.flag.sold::before {
            content: "SOLD";
            margin: 2px;
        }

        div.map-info.flag.subject::before {
            content: "";
            margin: 4px;
        }



        div.map-info.flag::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 100%;
            border-width: 6px;
            margin-left: -6px;
            border-style: solid;
            z-index: 5;
        }


        div.map-info.flag.forSale::after {
            border-color: green transparent transparent transparent;
        }

        div.map-info.flag.sold::after {
            border-color: blue transparent transparent transparent;
        }

        div.map-info.flag.subject::after {
            border-color: darkred transparent transparent transparent;
        }


/****************************************************************************
    Marks Plugin styles
*****************************************************************************/
.mark-info {
    position: absolute;
    z-index: 4;
    cursor: pointer;
}

/****************************************************************************
    Location Plugin styles
*****************************************************************************/
@keyframes sizenme {
    0% {
        width: 80px;
        height: 80px;
        left: -30px; /* (newwidth - originalwidth) / 2 */
        top: -30px;
    }

    100% {
        width: 20px;
        height: 20px;
        left: 0;
        top: 0;
    }
}

@keyframes shadowmeErr {
    10% {
        filter: drop-shadow(0 0 1px red);
    }

    20% {
        filter: none;
    }
}

@keyframes shadowme {
    10% {
        filter: drop-shadow(0 0 1px blue);
    }

    20% {
        filter: none;
    }
}



.location-pin {
    height: 20px;
    width: 20px;
}

    .location-pin > img {
        height: 20px;
        width: 20px;
    }

    .location-pin.throb > img {
        animation: shadowme 4s infinite;
    }

    .location-pin.throb.error > img {
        animation: shadowmeErr 4s infinite;
    }

    .location-pin.ping > img {
        animation: sizenme 0.25s;
    }

/****************************************************************************
    Plans Plugin styles
*****************************************************************************/
.plan-info {
    position: absolute;
    z-index: 4;
    font-size: 10px;
    background-color: aliceblue;
    border: 1px solid lightblue;
    border-radius: 3px;
    padding-left: 2px;
    padding-right: 2px;
}

    .plan-info.subject {
        z-index: 5;
        border-color: darkred;
        background-color: greenyellow;
    }

    .plan-info a {
        white-space: nowrap;
        color: green;
    }

        .plan-info a[data-series=SO] {
            color: darkblue;
        }

        .plan-info a[data-series=ML] {
            color: red;
        }

        .plan-info a:hover {
            text-decoration: none;
        }





.prover-map-control {
    position: static;
    height: 0;
}

    .prover-map-control div {
        position: absolute;
    }

html.no-canvas div.prover-map-control {
    z-index: 4;
}

div.prover-map-button, div.prover-map-toggle {
    width: 24px;
    height: 24px;
    margin: 4px;
    margin-left: 16px;
    z-index: 5;
    cursor: pointer;
}

    div.prover-map-button.large {
        margin-left: 4px;
        width: 48px;
        height: 48px;
    }

    div.prover-map-button, div.prover-map-button div {
        background-image: url("/content/images/map/map-control-2.png");
    }

        div.prover-map-button.button-rect {
            top: 56px;
            background-position: -96px -96px;
        }

            div.prover-map-button.button-rect:hover,
            div.prover-map-button.button-rect.selected {
                background-position: -96px -120px;
            }

        div.prover-map-button.button-in {
            top: 88px;
            background-position: -96px -48px;
        }

            div.prover-map-button.button-in:hover {
                background-position: -96px -72px;
            }

        div.prover-map-button.button-out {
            top: 112px;
            background-position: -120px -48px;
        }

            div.prover-map-button.button-out:hover {
                background-position: -120px -72px;
            }

    div.prover-map-toggle.button-pos {
        top: 136px;
    }

        div.prover-map-toggle.button-pos > input {
            display: none;
        }

            div.prover-map-toggle.button-pos > input:checked + label > img {
                filter: drop-shadow(0px 0px 2px red)
            }


@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    div.prover-map-control > div.prover-map-toggle.button-pos {
        display: none !important;
    }
}


div.prover-map-button.measure {
    position: absolute;
    top: 0;
    right: 0;
    background-position: left top;
    background-image: url("/content/images/map/measure-24.png");
}

div.prover-map-button.button-pan div {
    position: absolute;
    width: 48px;
    height: 48px;
}

    div.prover-map-button.button-pan div.north {
        background-position: -48px 0px;
    }

    div.prover-map-button.button-pan div.south {
        background-position: 0px -48px;
    }

    div.prover-map-button.button-pan div.east {
        background-position: -96px 0px;
    }

    div.prover-map-button.button-pan div.west {
        background-position: -48px -48px;
    }

    div.prover-map-button.button-pan div.nz {
        background-position: 0px -96px;
    }

div.qmap-tile {
    z-index: 1;
    position: absolute;
    overflow: hidden;
    width: 256px;
    height: 256px;
}

div.popup-menu {
    position: absolute;
    z-index: 21;
    display: none;
    background-color: White;
    border: 1px solid #4DAFFF;
    border-radius: 3px;
    border-top-left-radius: 0;
    cursor: pointer;
    font-family: Tahoma, Helvetica, Arial;
    white-space: pre;
    max-height: 320px;
    overflow: hidden;
    overflow-y: auto;
}

    div.popup-menu > .menu-item,
    div.popup-menu > a {
        height: 24px;
        line-height: 22px;
        color: Blue;
        text-decoration: none;
        display: block;
        padding: 0 27px 0 15px;
        background-repeat: no-repeat;
        font-size: 13px;
        font-family: Arial;
        white-space: pre;
    }

    div.popup-menu.with-icons > div.menu-item {
        padding-left: 24px;
    }

    div.street:hover,
    div.popup-menu > .menu-item:hover,
    div.popup-menu > .menu-item.selected,
    div.popup-menu > a:hover,
    div.popup-menu > a.selected,
    #suggest_dropdown .matches .selected {
        text-decoration: none;
        color: White;
        background-color: #4DAFFF;
    }

div.street {
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 2px 2px;
    margin-top: 3px;
    cursor: pointer;
}

    div.street.add,
    div.menu-item.add {
        background-image: url(/content/images/map/plus-13.png);
        background-position: 4px 4px;
    }

    div.street.remove,
    div.menu-item.remove {
        background-image: url(/content/images/map/minus-13.png);
        background-position: 4px 4px;
    }

div.menu-item.view {
    background-image: url("/content/images/map/view16.png");
    background-position: 4px center;
}

.hover-info {
    font-family: Arial;
    font-size: 12px;
    line-height: 12px;
    position: absolute;
    z-index: 2;
    padding: 4px 2px 2px 4px;
    border-radius: 5px;
    white-space: nowrap;
    cursor: default;
    max-width: 150px;
    min-width: 40px;
    max-height: 100px;
    overflow: hidden;
    border: 1px solid cornflowerblue;
    background: rgba(255,255,255,0.9);
}

    .hover-info:hover {
        text-align: left;
    }

.Aerial .hover-info {
    border: none;
}





.hover-info div {
    color: black;
    text-shadow: 0 0 1px white, 0 0 2px white, 0 0 2px white,0 0 2px white, 0 0 3px white, 0 0 4px white, 0 0 5px white;
}



.hover-info.hover div,
.hover-info:hover div,
.Aerial .hover-info div {
    color: White;
    text-shadow: 0 0 1px black, 0 0 2px black, 0 0 2px black,0 0 2px black, 0 0 3px black, 0 0 4px black, 0 0 5px black;
}




.Aerial .hover-info {
    background: rgba(0,0,0,0.2);
}







.hover-info:hover,
.hover-info.hover {
    z-index: 3;
    max-width: none;
    max-height: none;
    display: block;
    background: rgba(0,0,0,0.6);
}

.hover-info.hover {
    z-index: 5;
}

.hover-info .item + .item {
    display: none;
}

.hover-info:hover .item + .item,
.hover-info.hover .item + .item {
    display: block;
}

.hover-info .item {
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hover-info.hover .item,
.hover-info:hover .item {
    max-height: none;
}

.hover-info > div.item {
    margin-bottom: 3px;
}

.hover-info div.item > div.item {
    margin-left: 12px;
}

.hidden {
    display: none;
}




/*** Scale Bar ***/
.scale {
    bottom: 4px;
    height: 14px;
    left: 90px;
    position: absolute;
    width: 120px;
    z-index: 4;
}

    .scale, .scale .text {
        border: 1px solid white;
        border-top: 0;
    }

        .scale div {
            background-color: #607;
            float: left;
            height: 11px;
        }

        .scale .side {
            border-top: 1px solid white;
            width: 2px;
        }

        .scale .text {
            background: none;
            color: Black;
            cursor: default;
            font-family: Arial;
            font-size: 11px;
            line-height: 11px;
            padding-left: 2px;
            text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
            width: 112px;
        }

            .scale .text div {
                background: none;
            }



        .scale .bottom {
            height: 2px;
            width: 100%;
        }
/*** END Scale Bar ***/

/*** Metadata Link ***/
.metadata {
    bottom: 0px;
    left: 30px;
    position: absolute;
    z-index: 4;
    cursor: pointer;
    font-size: 16px;
}

#licenceattributions {
    position: absolute;
    bottom: 40px;
    left: 10px;
    border:1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
    pointer-events: auto;
    padding: 5px;
    background-color: white;
    z-index: 3;
}

    #licenceattributions .modal-dialog {
        bottom: 3px;
        left: 10px;
        position: absolute;
        font-size: .7rem;
    }

.fa-info-circle.sitemap {
    color: black;
}

.fa-info-circle.aerial {
    color: white;
}

.fa-info-circle.historicaerial {
    color: white;
}
/*** End Metadata Link ***/

/*** Measuring tools ***/
.measure-tools {
    position: absolute;
    right: 0;
    top: 3px;
    height: 24px;
    z-index: 11;
    padding-top: 4px;
}

    .measure-tools .activate {
        width: 24px;
        height: 24px;
        float: left;
        position: relative;
    }

        .measure-tools .activate .btn {
            width: 24px;
            height: 24px;
            background-image: url(/content/images/map/arrows.png);
            background-position: 0 -24px;
            position: absolute;
            left: 0;
        }

            .measure-tools .activate .btn:hover {
                background-position: -24px -24px;
            }

        .measure-tools .activate.active .btn {
            background-position: 0 0;
        }

            .measure-tools .activate.active .btn:hover {
                background-position: -24px 0;
            }

        .measure-tools .activate .ruler {
            background-image: url(/content/images/map/ruler-segment-right.png);
            position: absolute;
            width: 12px;
            height: 4px;
            left: 0;
            bottom: 0;
        }


    .measure-tools .tool-container {
        width: 108px;
        height: 28px;
        float: left;
        background-image: url(/content/images/map/ruler-segment-right.png);
        background-repeat: repeat-x;
        background-position: 0 24px;
        margin-top: -4px;
        padding-left: 4px;
        overflow: hidden;
        white-space: nowrap;
    }

        .measure-tools .tool-container div {
            width: 24px;
            height: 24px;
            display: inline-block;
            background-image: url(/content/images/map/measure.png);
            margin-right: 3px;
        }

    .measure-tools .remove {
        background-position: 0 -48px;
    }

        .measure-tools .remove:hover {
            background-position: -24px -48px;
        }

        .measure-tools .remove.selected {
            background-position: 0 -72px;
        }

            .measure-tools .remove.selected:hover {
                background-position: -24px -72px;
            }

    .measure-tools .polygon {
        background-position: 0 0;
    }

        .measure-tools .polygon:hover {
            background-position: -24px 0;
        }

        .measure-tools .polygon.selected {
            background-position: 0 -24px;
        }

            .measure-tools .polygon.selected:hover {
                background-position: -24px -24px;
            }

    .measure-tools .line {
        background-position: -48px -0;
    }

        .measure-tools .line:hover {
            background-position: -72px 0;
        }

        .measure-tools .line.selected {
            background-position: -48px -24px;
        }

            .measure-tools .line.selected:hover {
                background-position: -72px -24px;
            }

    .measure-tools .clear-all {
        background-position: -48px -48px;
    }

        .measure-tools .clear-all:hover {
            background-position: -72px 48px;
        }

        .measure-tools .clear-all:active {
            background-position: -48px -72px;
        }

            .measure-tools .clear-all:active:hover {
                background-position: -72px -72px;
            }


/*** END Measuring Tools ***/


/*** Search Tools ***/
.search-tools {
    position: absolute;
    right: 0;
    top: 32px;
    height: 24px;
    z-index: 11;
    padding-top: 4px;
}

    .search-tools div {
        display: inline-block;
    }

    .search-tools .tool-container div {
        width: 24px;
        height: 24px;
        display: inline-block;
        background-image: url(/content/images/map/measure.png);
        margin-right: 3px;
    }

    .search-tools.inactive .tool-container div {
        display: none;
    }

    .search-tools .tool-container .polygon {
        background-position: 0 0;
    }

        .search-tools .tool-container .polygon:hover {
            background-position: -24px 0;
        }

        .search-tools .tool-container .polygon.selected {
            background-position: 0 -24px;
        }

            .search-tools .tool-container .polygon.selected:hover {
                background-position: -24px -24px;
            }

    .search-tools .tool-container .remove {
        background-position: -0px -48px;
    }

        .search-tools .tool-container .remove:hover {
            background-position: -24px 48px;
        }

        .search-tools .tool-container .remove.selected {
            background-position: 0px -72px;
        }

            .search-tools .tool-container .remove.selected:hover {
                background-position: -24px -72px;
            }

    .search-tools .tool-container .clear-all {
        background-position: -48px -48px;
    }
    .search-tools .tool-container .clear-all:hover {
        background-position: -72px -48px;
    }

    .search-tools .show {
        width: 24px;
        height: 24px;
        background-image: url(/content/images/map/arrows.png);
        background-position: 0 0;
    }

    .search-tools.inactive .show {
        background-position: 0 -24px;
    }

/*** END Search Tools ***/



@media (max-width: 480px) {


    .measure-tools { /* measuring tools are to disappear on phone screens*/
        display: none;
    }

    .rightcol .property-button { /* drop below and fatten up subject property remove,details,title buttons*/
        display: inline-block;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 5px;
        padding-left: 20px;
    }
}
/*** PARCEL LABELS ***/
.container {
    width: 150px;
    position: relative;
}

    .container .checkbox {
        width: 120px;
        margin-bottom: -1px;
        cursor: pointer;
    }

        .container .checkbox:hover {
            z-index: 1;
        }

        .container .checkbox.moving {
            z-index: 2;
        }
/* END PARCEL LABELS */

/*** FAQ ***/
.faq h2 {
    padding: 0;
    margin: 0;
    font-size: 1em;
    color: #333;
}

.faq h3 + p {
    margin-top: 0;
}

.faq div.frame > div {
    padding: 15px;
    max-width: 640px;
}

.faq a:link:hover {
    text-decoration: underline;
}


/*** REPORT ITEMS ***/
div.items h1 {
    font-size: 12px;
    line-height: 1.2;
}

.fan .header,
.fan h1.subject {
    position: relative;
    border-radius: 3px 3px 0 0;
}

.fan .frame .header,
.fan .frame h1.subject {
    margin: -3px;
    padding: 3px;
}

.fan .header:hover,
.fan .header.expanded,
.fan h1.subject {
    background-color: #eee;
}

.fan .header:before {
    top: 0;
    left: 0;
    content: "► ";
    font-size: 12px;
}

.fan .header.expanded:before {
    content: "▼ ";
}

.fan .frame .header:before {
    content: normal;
}

.fan .frame .header:after {
    position: absolute;
    top: 0;
    right: 3px;
    content: "►";
    top: 3px;
}

.fan .frame .header.expanded:after {
    content: "▼";
}


.fan .header + .list {
    display: none;
}

.fan .header {
    cursor: pointer;
}

.frame {
    padding: 3px;
    border: 1px solid #888;
    border-radius: 2px;
    overflow: hidden;
}

    .frame .headerblock {
        font-size: 12px;
        line-height: 12px;
        padding: 3px;
        border: 1px solid #888;
        background-color: #fefff5;
    }

        .frame .headerblock h4 {
            margin: 0 0 0 0;
            padding: 0.25rem 0.25rem 0.25rem 0;
        }


    .frame + .frame {
        margin-top: 9px;
    }

.filters :disabled {
    color: darkgray;
    background-color: whitesmoke;
}

table.filters {
    border-collapse: collapse;
    background-color: #E6E7E9;
    width: 100%;
}

    table.filters td,
    table.filters th {
        padding-right: 20px;
    }

    table.filters tr + tr th {
        padding-top: 10px;
    }

table.contact td,
table.contact th {
    padding-top: 10px;
}

table.contact th {
    padding-right: 10px;
}

h3.hide-next {
    text-decoration: underline;
    cursor: pointer;
}

    h3.hide-next + div {
        display: none;
        padding-left: 10px;
    }


/*** FORM TABLE ***/
table.form td,
table.form th {
    line-height: 26px;
}

    table.form td + th {
        padding-left: 10px;
    }

table.form th {
    text-align: right;
    padding-right: 4px;
    padding-top: 2px;
    font-size: 12px;
}

div.form input,
table.form input {
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #abd;
    border-radius: 4px;
    height: 20px;
    line-height: 20px;
    margin: 0 0 4px 0;
}

.form input[type=number] {
    padding-right: 1px;
}

div.form label {
    font-weight: bold;
}

table.form input:hover {
    border-color: #4DAFFF;
}

table.form a.dropdown-menu {
    margin-top: 0;
    margin-bottom: 0;
}


/*** USER HEADER ***/


.map-report-buttons {
    position: absolute;
    bottom: 4px;
    right: 4px;
    z-index: 4;
    text-align: right;
}

    .map-report-buttons a {
        background-color: #808285;
        border: 1px solid #444;
        margin-top: 4px;
    }

        .map-report-buttons a:hover {
            background-color: #A2A3A6;
        }

.inline-block {
    display: inline-block;
}

#map-window-resize {
    z-index: 5;
    left: 4px;
    bottom: 4px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 0px 1px white);
    background-image: url('images/expand.svg');
    padding: 1px;
    background-color: #808285;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
}



.big-map #map-window-resize {
    background-image: url('images/shrink.svg');
}





.tab_header.help > label {
    padding: 15px 25px;
    background-color: transparent;
    font-weight: 600;
    color: #555
}

.tab_header.help > input:checked + label {
    border-top: 2px solid #12A79D;
    border-bottom-color: transparent;
    background-color: #FFF;
    /* padding: 15px 25px;*/
}

.tab_header.help section {
    border-top: 1px solid #12A79D;
}


.help .collapsible {
    margin-top: 3px;
    margin-bottom: 1px;
    border: 1px solid whitesmoke;
}

    .help .collapsible .collapsible-header {
        background-color: whitesmoke;
        color: black;
    }

    .help .collapsible .collapsible-label .expander {
        background-color: white;
        color: #999;
        border: 1px solid #999;
        margin-left: 4px;
    }



    .help .collapsible .collapsible-header .collapsible-label {
        font-size: 16px;
    }



/* width of an iPad portrait - 1px */
@media only screen and (max-width: 767px) {

    .tab_header.help > label {
        padding: 0;
        /*transform: rotate(-90deg);
        transform-origin: 0 0;  X offset Y offset*/
        width: 21%;
        overflow: hidden;
        height: 30px;
        font-size: .85em;
    }

        .tab_header.help > label[for=helptab3] {
            width: 30px;
        }
}





#terms-of-use {
    padding: 3em;
    padding-bottom: 0;
    padding-top: 2em;
}

    #terms-of-use h1 {
        font-size: 11pt;
        text-align: center;
        margin-top: 0;
    }

        #terms-of-use h1 + p {
            margin-top: 1.5em;
            margin-bottom: 1.5em;
        }

    #terms-of-use p {
        margin: 0;
    }

        #terms-of-use p + p {
            margin-top: 1em;
        }

    #terms-of-use li {
        margin-top: 1em;
        margin-bottom: 1em;
    }

    #terms-of-use ol ol {
        list-style-type: lower-alpha;
    }

    #terms-of-use ul {
        list-style-type: disc;
    }

    #terms-of-use p.definition > b {
        font-style: italic;
    }


/* image display */
div.navleft,
div.navright {
    width: 42px;
    height: 42px;
    top: 50%;
    margin-top: -21px;
    position: absolute;
    background-image: url(/content/images/navigate.png);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
}

div.navright {
    right: 11px;
}

    div.navright:hover {
        background-position: 42px 0;
    }

div.navleft {
    left: 11px;
    background-position: 0 42px;
}

    div.navleft:hover {
        background-position: 42px 42px;
    }

div.checklist {
    max-height: 460px;
    border: 1px solid #888;
    border-radius: 3px;
    overflow: auto;
    margin-bottom: 2px;
}

    div.checklist input {
        margin: 0;
        vertical-align: top;
        margin-top: 2px;
    }

    div.checklist label {
        display: inline-block;
        line-height: 18px;
        padding-left: 3px;
        width: 192px;
    }

        div.checklist label:hover {
            background-color: #4DAFFF;
            color: White;
        }

tr.template.not-linked img {
    opacity: 0.5;
}

tr.template.not-linked {
    color: #999;
}

#property-image-selection div.property-image {
    background-color: white;
    border: 1px solid #AAA;
    padding: 4px;
    width: 80px;
    height: auto;
}

    #property-image-selection div.property-image:hover {
        background-color: #E0E8FF;
        border: 1px solid #89A;
    }

    #property-image-selection div.property-image.selected {
        background-color: #DEF;
        border: 1px solid #008;
    }

#property-image-selection h4 {
    margin-top: 0;
}

#property-image-selection div.property-image > img {
    display: block;
}

/* LIGHTBOXES */
.lightbox-content table.manager > tbody > tr > td {
    padding: 10px;
}


.lightbox-content p {
    margin: 6pt 0;
}

.lightbox-content div.property-image img {
    cursor: pointer;
}

.lightbox-content div.property-image + div {
    margin-top: 5px;
}

.lightbox-content table.list {
    border-collapse: collapse;
}

    .lightbox-content table.list td,
    .lightbox-content table.list th {
        padding: 4px;
        border: 1px solid #ccc;
    }

    .lightbox-content table.list th {
        background-color: #f0f4f8;
    }

.lightbox-content h4 {
    margin-bottom: 6px;
}

    .lightbox-content h4 > span.explain {
        font-weight: normal;
        font-style: italic;
        color: #444;
    }

.lightbox-content h4 {
    margin: 0 0 6px 0;
}

.lightbox-content div.report-layout {
    border: 1px solid #333;
    border-radius: 3px;
    padding: 8px;
    background-color: #EEE;
    width: 250px;
    height: 446px;
    overflow: auto;
}

.lightbox-content div.item {
    margin-top: 6px;
    height: 32px;
    border: 1px solid #CCC;
    background-color: #FFF;
    border-radius: 3px;
    padding: 3px;
}

    .lightbox-content div.item.moving {
        z-index: 1;
    }

    .lightbox-content div.item.PdfDocument {
        cursor: move;
    }

        .lightbox-content div.item.PdfDocument > div.name {
            color: #080;
        }

    .lightbox-content div.item.HardCodedSection.hidden,
    .lightbox-content div.item.CustomPage.hidden {
        color: #999;
        display: block;
    }



    .lightbox-content div.item div.name {
        font-weight: bold;
    }

    .lightbox-content div.item.HiddenByTemplate {
        color: #9A9;
        background-color: #eee;
    }

    .lightbox-content div.item > div.arrow {
        float: right;
        cursor: pointer;
    }

        .lightbox-content div.item > div.arrow:hover {
            color: #acf;
        }

    .lightbox-content div.item > div {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

.ui a.normal,
.lightbox-content a.normal {
    text-decoration: none;
    color: Blue;
}

    .ui a.normal:hover,
    .lightbox-content a.normal:hover {
        text-decoration: underline;
    }

.dialog-buttons {
    padding-top: 15px;
    text-align: right;
}

    .dialog-buttons a.button {
        margin-left: 5px;
    }



/* grayout div */
div#grayout-div {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 19;
}

    div#grayout-div > div {
        background-color: #000;
        height: 100%;
        width: 100%;
        opacity: 0.5;
    }


/* LIGHTBOX */

div.lightbox-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
    pointer-events: none; /*let click events fall through to the greyout div*/
}

div.lightbox {
    background-color: #FFF;
    position: relative;
    top: 4px;
    /*top: 10%;
   transform: perspective(1px) translateY(-10%);*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    z-index: 20;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    border-radius: 4px;
    overflow: auto;
    max-height: calc(100vh - 8px);
    pointer-events: auto; /* make sure clicks are captured*/
}


div.dialog-grayout {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: black;
    opacity: 0.3;
    z-index: 20;
}

div.lightbox.dialog {
    top: 20%;
    filter: drop-shadow(0px 0px 8px black);
    border: 1px solid black;
}


/* ie 11 hack */
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
    div.lightbox {
        display: table;
    }
}

/* microsoft edge up to ver 15 hack */
@supports (-ms-ime-align:auto) {
    div.lightbox {
        display: table;
    }
}


div.lightbox div.lightbox-content {
    margin: 3px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    padding: 1px; /* IE hack to hide scroll bars */
}

    div.lightbox div.lightbox-content.no-overflow {
        overflow: hidden;
    }

div.lightbox h4 {
    font-size: 13px;
    line-height: 13px;
}


div.lightbox-close {
    border: 1px solid #d00000;
    background: #E00000;
    background: linear-gradient(to bottom, #FF4020 0%,#F02010 100%);
    border-radius: 3px;
    float: right;
    cursor: pointer;
    margin: 2px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    padding: 2px;
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 15px;
    z-index: 21;
}

    div.lightbox-close:hover {
        /* background-image: url(/content/images/ui/close-24-on.png);*/
        background: #FF4020;
        background: linear-gradient(to bottom, #FF4020 0%,#d00000 100%);
    }





div.lightbox div.lightbox-content div.toolbar {
    margin: 0;
    margin-bottom: 1px;
    padding: 0;
}

    div.lightbox div.lightbox-content div.toolbar > div {
        margin: 0;
        margin-right: 0.5em;
        padding: 0;
    }


div.lightbox a.print {
    height: 25px;
    width: 25px;
    background-image: url(/content/images/printer24.png);
    display: inline-block;
    vertical-align: top;
}

    div.lightbox a.print:hover {
        background-image: url(/content/images/printer24h.png);
    }


div.lightbox a.newtab {
    background-image: url(/content/images/OpenNewWindow.png);
    background-size: contain;
    height: 25px;
    width: 25px;
    display: inline-block;
}

div.lightbox-scroll {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

html.lightbox #page {
    box-shadow: none;
    padding: 5px 0;
}

div.lightbox div.lightbox-header h1 {
    text-align: center;
}

@media print {
    div.lightbox-scroll {
        position: static;
        top: auto;
        bottom: auto;
    }

    a.button {
        display: none;
    }

    .report-options {
        display: none;
    }

    .fan .header.expanded:before {
        content: "";
    }

    .fan .header,
    .fan .header + div {
        display: none;
    }

        .fan .header.expanded,
        .fan .header.expanded + div {
            display: block;
        }

    #main div.property-detail {
        margin: 0;
    }

    .property-detail .header.expanded {
        background: inherit;
    }

    a.add-listing {
        display: none;
    }

    div.property-detail div.image-list-container {
        display: none;
    }
}


/* PROPERTY DETAILS */
div.property-detail .image-list-container {
    width: auto;
    overflow-x: scroll;
    height: 79px;
    margin-top: 1px;
}

.property-detail h2 {
    margin: 6pt 0 5pt;
}

.property-detail h4 {
    background-color: #fafafa;
}

.property-detail .default-image .message {
    display: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #EEE;
    font-family: arial;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    padding: 3px;
}

.property-detail .default-image:hover .message {
    display: block;
}

.property-detail div.default-image {
    width: 300px;
    height: 225px;
    overflow: hidden;
    position: relative;
}

    .property-detail div.default-image > img {
        position: absolute;
        left: 0;
        top: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

.property-detail .report-options {
    margin-bottom: 6pt;
}



.property-list-item .datamismatchwarning,
.property-detail table.details .datamismatchwarning {
    display: inline-block;
    width: 10px;
    background-size: 9px;
    background-position: top right;
    background-repeat: no-repeat;
}

 .property-list-item .mismatch,
 .property-detail table.details .mismatch {
    background-image: url('images/alert.svg');
 }

.property-detail table.details .sourceDisplay {
    display: inline-block;
    width: 11px;
    background-size: 11px;
    position: relative;
    top: -3px;
    left: -3px;
    background-position: top left;
    background-repeat: no-repeat;
}

    .property-detail table.details .sourceDisplay[data-source='5'] {
        background-image: url('images/user-circle.svg');
    }





.image-list .property-image {
    text-align: center;
    height: 75px;
    width: 100px;
    float: left;
    border: 1px solid transparent;
    overflow: hidden;
    cursor: pointer;
}

    .image-list .property-image:first-child {
        margin-left: 0;
    }

.property-detail .image-list .property-image {
    width: 80px;
    height: 60px;
    margin: 0;
}

table.details td,
table.details th {
    padding: 4px;
}

table.details th {
    color: Black;
    padding-right: 0;
}

table.details td {
    width: 80px;
}

table.info {
    width: 100%;
}

    table.info td {
        border-bottom: 1px solid #888;
        color: Black;
        background-color: White;
    }

    table.info tr:last-child td {
        border-bottom: 0;
    }

    table.info th, table.info td {
        padding: 3px;
        line-height: 14px;
        font-size: 12px;
        font-family: Helvetica, Arial;
    }


    table.info th {
        font-weight: bold;
        vertical-align: middle;
        background-color: #bdf;
        color: #333;
    }

    table.info p {
        margin: 0;
    }

        table.info p + p {
            margin-top: 0.5em;
        }

table.features td {
    line-height: 1.5;
}

div.document {
    padding: 15px;
}

    div.document,
    div.document td {
        font-size: 13px;
    }

table.blank td,
table.blank th {
    border: none;
    padding: 0;
    background-color: transparent;
}

table.blank th {
    padding-right: 4px;
    color: #333;
}

#affecteduserslist {
    padding: 5px;
}

    #affecteduserslist h5 {
        margin-top: 0px;
        padding: 0px;
    }

    #affecteduserslist.highlight::before {
        content: 'WARNING: CHANGING THIS AFFECTS OTHER USERS';
        font-weight: bold;
    }




    #affecteduserslist.highlight {
        color: white;
        background-color: red;
        border: 1px solid darkred;
        border-radius: 3px;
    }

.salestate {
    color: black;
    font-size:0.68em;
    padding:0px 1px
}
    .salestate.settled {
        color: darkgreen;
        border: 1px solid darkgreen;
        border-radius:2px;
    }
    .salestate.unknown {
        color:darkgray;
    }
    .salestate.unconditional {
        color: green;
        border: 1px solid green;
        border-radius: 3px;
    }


#no-subject-selected-message {
    background-color:white;
    border: 1px solid #999;
    border-radius:3px;
    padding:3px;
    width:350px;
    position:absolute;
    right:0px;
    top:-10px;
    z-index:20;
   
}
    #no-subject-selected-message .down-arrow {
        color: red;
        font-weight: bold;
        font-family: monospace;
        font-size: 3em;
        position: absolute;
        left: 240px;
        bottom: -8px
    }


/**************************************
  
    suggest_dropdown

***************************************/

#suggest_dropdown {
    background-color: white;
    box-sizing: border-box;
    display: inline-block;
    padding: 0.2rem 0.2rem;
    width: 100%;
    line-height: 1.25;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    font-family: Tahoma, Helvetica, Arial;
}

    #suggest_dropdown .matches {
        min-height: 200px;
    }

    #suggest_dropdown .loader {

        visibility: hidden;
        position: absolute;
        left: 10px;
        top: 25px;
        opacity: 0;
        transition: opacity 0.2s;
        transition-delay: 0.8s;
    }

    #suggest_dropdown.searching .loader {
        /*display: block;*/
        visibility: visible;
        opacity: 1;
    }


    #suggest_dropdown .filterblock {
        margin: 6px 2px 3px;
        height: 190px;
        overflow-y: scroll;
        border: 1px solid green;
        border-radius: 3px;
    }
        #suggest_dropdown .filterblock.dropdowns {
            overflow-y:auto;
        }

#suggest_dropdown .breadcrumb {
    font-size: 8px;
    font-variant: small-caps;
    border-bottom: 1px solid lightblue;
    background-color:aliceblue;
}

#suggest_dropdown.searching .breadcrumb {
    border-bottom: 1px solid darkred;
}


/* go 2 column for the owner search if its not a skinny screen*/
@media (min-width: 1024px) {

    #suggest_dropdown[data-searchtype=owner] .matches,
    #suggest_dropdown[data-searchtype=owner] .filters {

        display: inline-block;
        vertical-align: top;
    }
    #suggest_dropdown[data-searchtype=owner] .matches{
        width: 58%;
    }
    #suggest_dropdown[data-searchtype=owner] .filters {
        width: 42%;
    }
}


.print-only.disclaimer {
    display: none;
}


@media print {
    div.print-only.disclaimer {
        display: block;
    }
    .property-detail table.details .datamismatchwarning.mismatch {
        display: none;
    }
}
