﻿@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600italic,300,400,700,600);
@import url(https://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
@import url(https://fonts.googleapis.com/css?family=Heebo:300italic,400italic,700italic,600italic,300,400,700,600);

:root {
  --main-text-color:    #4a4a4a; /* rgba(74, 74, 74, 1) */
  --site-color:         #6abfc8; /* rgba(106, 191, 200, 1) */
  --site-color-light:   #93CED4; /* rgb(147, 206, 212, 1) */
  --title-text-color:   #004152; /* rgba(0, 65, 82, 1) */
  --background-color:   #f0f6f7; /* rgba(240, 246, 247, 1) */
  --grayed-out-color:   #9b9b9b; /* rgba(155, 155, 155, 1) */
  --title-bar-color:    #EB4036;
  --site-font:  'Open Sans',sans-serif;
}

html {
    height: 100%;
}

body {
    font-family: var(--site-font);
    min-width: 1024px;
    width: 100%;
    height: 100%;
    min-height: 550px;
    margin: 0;
    padding: 0;
    background-color: #171219;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

input {
    font-family: var(--site-font);
}

label {
    font-family: var(--site-font);
}

span {
    font-family: var(--site-font);
}

button {
    cursor: pointer;
    font-family: var(--site-font);
    padding: 0;
}

div {
    resize:none;
}

:focus {
    outline: none;
}

.ui-widget, .ui-widget button {
    font-family: var(--site-font);
}

.heb {
    font-family: Heebo,'Open Sans Hebrew',var(--site-font);
}

a {
    font-family: var(--site-font);
    text-decoration: none;
    color: #5B9BC5;
}

em {
    font-style: normal;
    font-weight: 700;
}

svg {
    font-family: var(--site-font);
}

.s14 {
    width:14px;
    height:14px;
}

button:disabled {
    cursor: default;
}

button:focus {
    outline: none;
}

.hidden {
    display: none;
}

.smaller {
    font-size: smaller;
}

table th {
    text-align: left;
}

.gm-style {
    font-family: var(--site-font);
}

.gm-style-iw {
    border-radius: 3px;
    background-color: transparent;
}

#bg-wait-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    min-height: 68px !important;
}

    #bg-wait-div img {
        width: 48px;
        height: auto;
        margin-right: 20px;
    }

    #bg-wait-div p {
        max-width: 200px;
        margin: 0;
    }

/*#region special species*/
.protected {
    background-color: green;
}

.fprotected {
    color: green !important;
}

.invasive {
    background-color: orange;
}

.finvasive {
    color: orange !important;
}

.endangered {
    background-color: red;
}

.fendangered {
    color: red !important;
}
/*#endregion*/

/*#region Menu*/
#mainmenu {
    background-color: var(--title-text-color);
    height: 76px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 0 10px;
    flex-grow: 0;
    flex-shrink: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#main-menu-logo {
    width: 60px;
}

    #main-menu-logo img {
        width: auto;
        height: 70px;
    }

#main-menu-main {
    text-align: center;
}

#main-menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

    #main-menu-nav ul {
        list-style: none;
        padding: 0;
        display: inline;
    }

    #main-menu-nav > ul > li {
        padding: 0 25px;
        display: inline;
        border-left: solid 1px white;
    }

        #main-menu-nav > ul > li:first-child {
            border-left: none;
            padding-left: 0;
        }

        #main-menu-nav > ul > li:last-child {
            padding-right: 0;
        }

    #main-menu-nav a {
        color: white;
        text-decoration: none;
        margin: 0;
        display: inline-block;
    }

    #main-menu-nav ul a:hover {
        color: #EB4036;
    }

    #main-menu-nav ul .active {
        color: #EB4036;
    }

    #main-menu-nav a > img {
        display: block;
    }

    #main-menu-nav li.submenu ul {
        display: none;
        list-style: none outside none;
        margin: 0;
        padding: 7px 25px;
        position: absolute;
        z-index: 999999;
        background-color: var(--title-text-color);
        overflow: visible;
    }

        #main-menu-nav li.submenu ul li {
            padding: 3px 0;
            text-align: left;
        }

    #main-menu-nav > a {
        margin-left: 25px;
    }

#main-menu-lang {
    /*width:130px;*/
    font-size:18px;
}

    #main-menu-lang button {
        background-color: transparent;
        border: none;
        color: white;
    }

/*#endregion*/

/*#region Footer*/
.footer {
    height: 62px;
    color: #656565;
    background-color: #171219;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px 0;
}

    .footer > div {
        -ms-flex: 1 1 33%;
        -webkit-flex: 1 1 33%;
        flex: 1 1 33%;
    }

        .footer > div:first-child {
            display: flex;
        }

            .footer > div:first-child a {
                padding: 0 10px;
                display: inline-block;
            }

                .footer > div:first-child a:not(:first-child) {
                    border-left: 1px solid #656565;
                }

        .footer > div:nth-child(2) {
            text-align: center;
        }

        .footer > div:last-child {
            text-align: right;
        }

    .footer a img {
        height: 48px;
        width: auto;
        display: block;
    }

/*#endregion*/

/*#region jquery ui*/

.ui-autocomplete-loading {
    background: white url('data:image/gif;base64,R0lGODlhEAAQAPMPAN3d3bu7uzMzM5mZmVVVVXd3dwAAABERESIiIoiIiGZmZu7u7qqqqkRERAARAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAPACwAAAAAEAAQAAAEcfDJt6gideoHEFiGAVCbBBjI4ojLqAFjYiQrnElLM4MOQXymDEDnCLhwQNyCITjiNImGb1CiLK7RRoNaul6tgcItqFkkDg1nyzgpIAbmBAzAoLA5I4AgwBgA5E8TCwQFDwNUAHAlAAUjhxIBYyUBAVURACH5BAUHAA8ALAAAAAAPABAAAARd8Mn5ipKLziaRBAejScKCOABiBKM0IMdgcBMRL4dgGUaWSQSDADAJEFu01oOhKBRYyseAoFBAo5/B6DdhNAhbwC/RYCwGDID6KNYoAAHzVVPQxiVzzCBzfxyVaiMRACH5BAUHAA8ALAAAAAAQAA8AAARa8Mn5RqJYKtnQWkImOcTSLYS4VAbTMRMQSIXAgE2SCAaQGD3NIRUbAA2zSUCxUhoukoBuAMh8royCVsR9wLoURaLZHRQCiwD6qpIkAPAFgIwZzOAPOfeLz1MiACH5BAUHAA8ALAAAAAAQABAAAARc8MkpB72yrEeaJAH2CAXnKdgmHUEXogsgJYrcFMPgLdahFqSH6hFAiB4liqy22AwYDJHicHCAcgPZRWHoCiihC2AMUAESluMkkH2M1ULJItAcHgOyJtwtt8P1GBEAIfkEBQcACAAsAAAAABAADgAABEUQyYlKoVgSaQzP3NYhBygVXjeQGHEEiCFYXhVPhLFh9UrtGMEEgBj4gh1DyXLJlD5DTECWOU6mHSJCa0pmuJQAUAIGRQAAIfkEBQcADgAsAAAAABAAEAAABGvQyelCoNgtJlORBZAtBZckToKIGaAAJ3CgVMCIyWAVQoU0kkUgEVhMFgCCQ8CSADiURWNg1ACuVcqAQGgkrtjMAIE4KKIYgGCAQTYdTwkwCDAuqgdD0nHIZhgGSg5QaBMIBhcjaQZsGY5+EQAh+QQFBwAPACwAAAAAEAAQAAAEW/DJ+QCgWAY5Bs/cxXhDA0rJMj4Ng1nLwwTWoEjNLQF0phwEzOKCUbgmiySIoVAEk8oMoyEQFE4TAiOK3TwUMVBBgXgsboLTwZB4XHmgxZpIjDsMF8cxThCEKREAIfkEBQcADgAsAQABAA8ADwAABFbQSSBDkEzqWm9Q2+ZdyuUspwZQDlM4AJFIC4CGhfBu95aYoWCgQMwENR+C7EgrBWusGsKx2xgMiURjOmv4DAUEYuCYhQBXymEhODIMl8PagQCqNIRjBAAh+QQFBwAPACwAAAAAEAAQAAAEXfDJ+daiWN4HgAwbBlwdN4TU4nVL4mGbZQWMlAwZPCh4jg0vHwWQKAongIKy9kEEMK5hw2DoTRqHhMZhEHgQA4ai8RggFJLB0yYQ1HrBCWLRfhAcPsdXICHnNko5EQAh+QQFBwAOACwAAAEAEAAPAAAEWtDJ6daSgGppZdha922ZBpTDCE5MElxUSamOctwKyOyBYPwN0GDgWpwGB5lksHK8JguFgClB1BaIBsORIDgJBQlDNiA0AoctTCNwmB2F9iZgdTSCNeUmkQBFAAAh+QQFBwAPACwAAAEAEAAPAAAEWPDJSd+qeC5QAcfARRlGUolL8AWk8U2AWhUG04kSomdP4AMEx+FQyPgYnwWjgbFVCJKXJKFwPgSPYoPgGygkhYEkIBEzCgoAlndgoh8DJkiugC6KvLIYEwEAIfkEBQcADwAsAAABAA8ADwAABFrwyXCAvPgGg7KXhMF8UvcAhuEBy2kO47Ww2OAEWSslQtMknhkAUEAYgbmhpRUgeHCywuPgYSSgTqCiMGQMTrDT5BBISBWWh04tUDzMD0ZhfXG/pY8vKR7DRAAAOw==') right center no-repeat;
}

ul.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
}

.ui-autocomplete .ui-menu-item {
    font-family: inherit;
    font-size: 12px;
}

    .ui-autocomplete .ui-menu-item:hover {
        background-color: #efefef;
    }

.ui-dialog {
    padding: 0;
    border: 0px solid #BFBFBF;
    box-shadow: 0px 1px 8px grey;
    background-color: white;
    background-image: none;
    overflow: visible;
}

.ui-dialog-titlebar {
    background-color: var(--title-bar-color);
    color: white;
    background-image: none;
    border: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.ui-dialog-title {
    background-color: var(--title-bar-color);
    color: white;
    background-image: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 17.6px;
}

.ui-dialog .ui-dialog-content {
    padding: 10px 28px 0;
    font-family: var(--site-font);
}

.ui-dialog-titlebar-close {
    background: transparent !important;
    border: none !important;
}

.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only {
    font-size: 14px;
    margin: 0 0.4em 0 0;
    padding: 0;
}

    .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only .ui-button-text {
        padding: 6px 20px;
    }

.ui-icon-closethick {
    background: url("/content/images/general/cross72.png") no-repeat transparent 50% 50% !important;
}

ul.ui-menu {
    font-size: 12px !important;
    max-height: 200px !important;
    font-family: var(--site-font);
}

.ui-dialog ul.ui-menu {
    overflow-y: auto;
}

span.ui-selectmenu-text {
    font-size: 14px;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: var(--site-font);
}

/*#endregion*/

.dialog-no-title div.ui-dialog-titlebar {
    display: none;
}

/*#region ui-dialog-buttonset*/
.ui-dialog div.ui-dialog-buttonset button.ui-button:not(:last-of-type) {
    color: #656565;
    background: none;
    background-color: white;
}

.ui-dialog div.ui-dialog-buttonset button.ui-button:nth-last-child(3) {
    position: absolute;
    left: 15px;
}

.ui-dialog div.ui-dialog-buttonset button.ui-button:last-of-type {
    color: white;
    background: none;
    background-color: var(--title-text-color);
}

.ui-dialog div.ui-dialog-buttonset button.ui-button:disabled {
    cursor: default;
    background-color: white;
    color: #878787;
}

    .ui-dialog div.ui-dialog-buttonset button.ui-button:disabled:hover {
        border: 1px solid rgb(211,211,211);
    }
/*#endregion*/

/*#region buttons icons*/
.eye-button {
    background-image: url('/content/images/general/eye.png');
}

.download-button {
    background-image: url('/content/images/general/download.png');
}

.X-button {
    background-image: url('/content/images/general/closed69new.png');
}

.V-button {
    background-image: url("/content/images/general/checkmark.png");
}

.question-button {
    background-image: url("/content/images/general/checkmark.png");
}

.measure-button {
    background-image: url("/content/images/general/ruler.png");
}

.enlarge-button {
    background-image: url("/content/images/general/new_enlarge.png");
}

.zoom-to-points-button {
    background-image: url("/content/images/general/zoom_points_new_smaller.png");
}

.expand-button {
    background-image: url("/content/images/general/expand.png");
}

.shrink-button {
    background-image: url("/content/images/general/shrink.png");
}

.caution-button {
    background-image: url("/content/images/general/caution8.png");
}

/*#endregion*/

/*#region svg*/
.svg-text-button {
    background: none;
    vertical-align: middle;
    border: none;
}

    .svg-text-button svg {
        vertical-align: middle;
        margin-right: 5px;
    }

.svg.s14 {
    height: 14px;
    width: 14px;
}

.svg.s16 {
    height: 16px;
    width: 16px;
}

.svg.sfill {
    height: 85%;
    width: 85%;
    vertical-align: middle;
    text-align: center;
}

.svg.white rect {
    fill: white;
}

.svg.white line {
    stroke: white;
}

.svg.white polygon {
    fill: white;
}

.svg.gray rect {
    fill: #A6A6A6;
}

.svg.gray line {
    stroke: #A6A6A6;
}

.svg.gray polygon {
    fill: #A6A6A6;
}

/*#endregion*/

/*#region img-buttons*/
.img-text-link-button {
    vertical-align: middle;
    border: none;
    color: var(--site-color);
    background-color: transparent;
}

    .img-text-link-button:hover {
        text-decoration: underline;
    }

    .img-text-link-button span {
        background-position: left center;
        background-repeat: no-repeat;
        background-color: transparent;
        background-size: contain;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        height: 1.2em;
        width: 1.2em;
        margin-right: 0.5em;
        position: relative;
        top: -0.1em;
    }

.img-button {
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: left center;
    background-size: contain;
    border: none;
    vertical-align: middle;
}

.img-span {
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: left center;
    background-size: contain;
    border: none;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-top: 4px;
    margin-right: 5px;
}

.img-text-below-button {
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center top;
    background-size: auto;
    padding-top: 36px;
    text-align: center;
    border: none;
}

/*#endregion*/

/*#region general*/

.updating-wait-center {
    background: transparent url('data:image/gif;base64,R0lGODlhEAAQAPMPAN3d3bu7uzMzM5mZmVVVVXd3dwAAABERESIiIoiIiGZmZu7u7qqqqkRERAARAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAPACwAAAAAEAAQAAAEcfDJt6gideoHEFiGAVCbBBjI4ojLqAFjYiQrnElLM4MOQXymDEDnCLhwQNyCITjiNImGb1CiLK7RRoNaul6tgcItqFkkDg1nyzgpIAbmBAzAoLA5I4AgwBgA5E8TCwQFDwNUAHAlAAUjhxIBYyUBAVURACH5BAUHAA8ALAAAAAAPABAAAARd8Mn5ipKLziaRBAejScKCOABiBKM0IMdgcBMRL4dgGUaWSQSDADAJEFu01oOhKBRYyseAoFBAo5/B6DdhNAhbwC/RYCwGDID6KNYoAAHzVVPQxiVzzCBzfxyVaiMRACH5BAUHAA8ALAAAAAAQAA8AAARa8Mn5RqJYKtnQWkImOcTSLYS4VAbTMRMQSIXAgE2SCAaQGD3NIRUbAA2zSUCxUhoukoBuAMh8royCVsR9wLoURaLZHRQCiwD6qpIkAPAFgIwZzOAPOfeLz1MiACH5BAUHAA8ALAAAAAAQABAAAARc8MkpB72yrEeaJAH2CAXnKdgmHUEXogsgJYrcFMPgLdahFqSH6hFAiB4liqy22AwYDJHicHCAcgPZRWHoCiihC2AMUAESluMkkH2M1ULJItAcHgOyJtwtt8P1GBEAIfkEBQcACAAsAAAAABAADgAABEUQyYlKoVgSaQzP3NYhBygVXjeQGHEEiCFYXhVPhLFh9UrtGMEEgBj4gh1DyXLJlD5DTECWOU6mHSJCa0pmuJQAUAIGRQAAIfkEBQcADgAsAAAAABAAEAAABGvQyelCoNgtJlORBZAtBZckToKIGaAAJ3CgVMCIyWAVQoU0kkUgEVhMFgCCQ8CSADiURWNg1ACuVcqAQGgkrtjMAIE4KKIYgGCAQTYdTwkwCDAuqgdD0nHIZhgGSg5QaBMIBhcjaQZsGY5+EQAh+QQFBwAPACwAAAAAEAAQAAAEW/DJ+QCgWAY5Bs/cxXhDA0rJMj4Ng1nLwwTWoEjNLQF0phwEzOKCUbgmiySIoVAEk8oMoyEQFE4TAiOK3TwUMVBBgXgsboLTwZB4XHmgxZpIjDsMF8cxThCEKREAIfkEBQcADgAsAQABAA8ADwAABFbQSSBDkEzqWm9Q2+ZdyuUspwZQDlM4AJFIC4CGhfBu95aYoWCgQMwENR+C7EgrBWusGsKx2xgMiURjOmv4DAUEYuCYhQBXymEhODIMl8PagQCqNIRjBAAh+QQFBwAPACwAAAAAEAAQAAAEXfDJ+daiWN4HgAwbBlwdN4TU4nVL4mGbZQWMlAwZPCh4jg0vHwWQKAongIKy9kEEMK5hw2DoTRqHhMZhEHgQA4ai8RggFJLB0yYQ1HrBCWLRfhAcPsdXICHnNko5EQAh+QQFBwAOACwAAAEAEAAPAAAEWtDJ6daSgGppZdha922ZBpTDCE5MElxUSamOctwKyOyBYPwN0GDgWpwGB5lksHK8JguFgClB1BaIBsORIDgJBQlDNiA0AoctTCNwmB2F9iZgdTSCNeUmkQBFAAAh+QQFBwAPACwAAAEAEAAPAAAEWPDJSd+qeC5QAcfARRlGUolL8AWk8U2AWhUG04kSomdP4AMEx+FQyPgYnwWjgbFVCJKXJKFwPgSPYoPgGygkhYEkIBEzCgoAlndgoh8DJkiugC6KvLIYEwEAIfkEBQcADwAsAAABAA8ADwAABFrwyXCAvPgGg7KXhMF8UvcAhuEBy2kO47Ww2OAEWSslQtMknhkAUEAYgbmhpRUgeHCywuPgYSSgTqCiMGQMTrDT5BBISBWWh04tUDzMD0ZhfXG/pY8vKR7DRAAAOw==') center center no-repeat;
}

.updating-wait-right {
    background: transparent url('data:image/gif;base64,R0lGODlhEAAQAPMPAN3d3bu7uzMzM5mZmVVVVXd3dwAAABERESIiIoiIiGZmZu7u7qqqqkRERAARAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAPACwAAAAAEAAQAAAEcfDJt6gideoHEFiGAVCbBBjI4ojLqAFjYiQrnElLM4MOQXymDEDnCLhwQNyCITjiNImGb1CiLK7RRoNaul6tgcItqFkkDg1nyzgpIAbmBAzAoLA5I4AgwBgA5E8TCwQFDwNUAHAlAAUjhxIBYyUBAVURACH5BAUHAA8ALAAAAAAPABAAAARd8Mn5ipKLziaRBAejScKCOABiBKM0IMdgcBMRL4dgGUaWSQSDADAJEFu01oOhKBRYyseAoFBAo5/B6DdhNAhbwC/RYCwGDID6KNYoAAHzVVPQxiVzzCBzfxyVaiMRACH5BAUHAA8ALAAAAAAQAA8AAARa8Mn5RqJYKtnQWkImOcTSLYS4VAbTMRMQSIXAgE2SCAaQGD3NIRUbAA2zSUCxUhoukoBuAMh8royCVsR9wLoURaLZHRQCiwD6qpIkAPAFgIwZzOAPOfeLz1MiACH5BAUHAA8ALAAAAAAQABAAAARc8MkpB72yrEeaJAH2CAXnKdgmHUEXogsgJYrcFMPgLdahFqSH6hFAiB4liqy22AwYDJHicHCAcgPZRWHoCiihC2AMUAESluMkkH2M1ULJItAcHgOyJtwtt8P1GBEAIfkEBQcACAAsAAAAABAADgAABEUQyYlKoVgSaQzP3NYhBygVXjeQGHEEiCFYXhVPhLFh9UrtGMEEgBj4gh1DyXLJlD5DTECWOU6mHSJCa0pmuJQAUAIGRQAAIfkEBQcADgAsAAAAABAAEAAABGvQyelCoNgtJlORBZAtBZckToKIGaAAJ3CgVMCIyWAVQoU0kkUgEVhMFgCCQ8CSADiURWNg1ACuVcqAQGgkrtjMAIE4KKIYgGCAQTYdTwkwCDAuqgdD0nHIZhgGSg5QaBMIBhcjaQZsGY5+EQAh+QQFBwAPACwAAAAAEAAQAAAEW/DJ+QCgWAY5Bs/cxXhDA0rJMj4Ng1nLwwTWoEjNLQF0phwEzOKCUbgmiySIoVAEk8oMoyEQFE4TAiOK3TwUMVBBgXgsboLTwZB4XHmgxZpIjDsMF8cxThCEKREAIfkEBQcADgAsAQABAA8ADwAABFbQSSBDkEzqWm9Q2+ZdyuUspwZQDlM4AJFIC4CGhfBu95aYoWCgQMwENR+C7EgrBWusGsKx2xgMiURjOmv4DAUEYuCYhQBXymEhODIMl8PagQCqNIRjBAAh+QQFBwAPACwAAAAAEAAQAAAEXfDJ+daiWN4HgAwbBlwdN4TU4nVL4mGbZQWMlAwZPCh4jg0vHwWQKAongIKy9kEEMK5hw2DoTRqHhMZhEHgQA4ai8RggFJLB0yYQ1HrBCWLRfhAcPsdXICHnNko5EQAh+QQFBwAOACwAAAEAEAAPAAAEWtDJ6daSgGppZdha922ZBpTDCE5MElxUSamOctwKyOyBYPwN0GDgWpwGB5lksHK8JguFgClB1BaIBsORIDgJBQlDNiA0AoctTCNwmB2F9iZgdTSCNeUmkQBFAAAh+QQFBwAPACwAAAEAEAAPAAAEWPDJSd+qeC5QAcfARRlGUolL8AWk8U2AWhUG04kSomdP4AMEx+FQyPgYnwWjgbFVCJKXJKFwPgSPYoPgGygkhYEkIBEzCgoAlndgoh8DJkiugC6KvLIYEwEAIfkEBQcADwAsAAABAA8ADwAABFrwyXCAvPgGg7KXhMF8UvcAhuEBy2kO47Ww2OAEWSslQtMknhkAUEAYgbmhpRUgeHCywuPgYSSgTqCiMGQMTrDT5BBISBWWh04tUDzMD0ZhfXG/pY8vKR7DRAAAOw==') no-repeat;
    background-position: 95% 50%;
}

.alert-dialog {
    display: flex;
}

    .alert-dialog p {
        margin: 0;
    }

.img-text-button {
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: left center;
    background-size: contain;
    padding-left: 20px;
    vertical-align: middle;
    border: none;
}

button.button-checkbox {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #656565;
    border-radius: 3px;
    background-color: transparent;
    color: #656565;
    margin: 0;
    padding: 0;
}

    button.button-checkbox[checked="checked"] {
        background-image: url('/content/images/general/checkmark.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 90%;
    }

button.button-radio {
    background-color: transparent;
    margin: 0;
    padding: 0;
    border: none;
    width: 14px;
    height: 14px;
    position: relative;
    top: 2px;
}

    button.button-radio svg {
        width: 100%;
        height: 100%;
    }

        button.button-radio svg > circle {
            stroke: #656565;
            fill: transparent;
        }

            button.button-radio svg > circle:nth-of-type(2) {
                stroke: transparent;
            }

    button.button-radio[checked="checked"] svg > circle:nth-of-type(2) {
        stroke: #656565;
        fill: #656565;
    }

.link-button {
    background: none;
    border: none;
    color: #5B9BC5;
    padding: 0;
}

    .link-button:not(:disabled):hover {
        text-decoration: underline;
    }

    .link-button:disabled {
        color: #656565;
    }

.table1 {
    background-color: #E7E6E6;
    border-collapse: collapse;
}

    .table1 th {
        font-weight: 600;
        background-color: #F2F2F2;
        border: 1px solid #A6A6A6;
        padding: 5px 10px;
    }

    .table1 td {
        padding: 2px 10px;
        color: #595959;
    }

    .table1 .number, .table1 .number.records, .table1 .number.in-area, .table1 .number.israel, .number.green-line,
    .table1 .number.in-natural-area, .table1 .number.in-protected-area {
        text-align: left;
    }

        .table1 .number.records-wide {
            width: 12.2%;
            vertical-align: top;
        }

        .table1 .number.records {
            width: 10.5%;
            vertical-align: top;
        }

        .table1 .number.in-area-wide {
            width: 12.1%;
        }

        .table1 .number.in-area {
            width: 13.5%;
            vertical-align: top;
        }

        .table1 .number.in-israel-wide {
            width: 13.1%;
        }

        .table1 .number.in-israel {
            width: 13.5%;
            vertical-align: top;
        }

        .table1 .number.in-natural-area {
            width: 17%;
            vertical-align: top;
        }

        .table1 .number.in-protected-area {
            width: 16%;
            vertical-align: top;
        }

    .table1 .clickable-text {
        cursor: pointer;
    }

    .table1 .asc {
        background: url('/content/images/general/blue_arrow2_up.png') no-repeat #F2F2F2;
        background-position: 95% 50%;
    }

    .table1 .desc {
        background: url('/content/images/general/blue_arrow2.png') no-repeat #F2F2F2;
        background-position: 95% 50%;
    }

.dialog-wait {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(200,200,200);
    background-color: rgba(200,200,200,0.8);
    position: absolute;
    text-align: center;
}

    .dialog-wait label {
        top: 40%;
        position: relative;
        font-size: 20px;
    }

.colorbar {
    color: transparent;
    text-align: center;
    border: 1px solid black;
    background-repeat: repeat-y !important;
    background-size: 100% 100% !important;
}

    .colorbar:hover {
        color: inherit;
    }

span.ui-selectmenu-text.colorbar {
    text-align: center;
    color: inherit;
}
/*#endregion*/

/*#region system-message*/
.system-message {
    font-size: 14px;
    max-width: 330px;
    border: none;
    box-shadow: 4px 4px 10px #878787;
}

    .system-message div.ui-dialog-titlebar {
        display: none;
    }

    .system-message .ui-dialog-content {
        background-color: white;
        padding: 1.2em 2em;
        font-size: 1em;
        cursor: move;
        border-radius: 4px;
    }

    .system-message.yndialog .ui-dialog-content {
        cursor: default;
    }

    .system-message.yndialog .ui-dialog-buttonpane.ui-widget-content.ui-helper-clearfix {
        margin-top: 0;
        padding: 0.5em 1em 0.5em 0.4em;
    }

    .system-message div.title {
        text-align: center;
        margin: 0.4em 0 1.2em;
    }

        .system-message div.title label {
            color: white;
            background-color: #EB4036;
            font-size: 18px;
            font-weight: 700;
            padding: 0.2em 1em;
            cursor: move;
        }

    .system-message .ui-dialog-content p {
        padding: 0;
        margin: 0 0 0.2em;
    }

    .system-message .ui-dialog-content a {
        color: #5B9BC5;
    }

        .system-message .ui-dialog-content a:hover {
            text-decoration: underline;
        }

    .system-message .dialog-buttons {
        margin-top: 0.5em;
        float: right;
    }

    .system-message div.dialog-buttons-big button {
        background-color: white;
        height: 35px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #A6A8AB;
        width: 4em;
        text-align: center;
        border-radius: 4px;
    }

        .system-message div.dialog-buttons-big button:last-child {
            background-color: var(--title-text-color);
            color: white;
        }
/*#endregion*/

/*#region tab-header*/
.tab-header {
    margin-bottom: 7px;
    /*border: 1px solid #93CED4;*/
    border-bottom:1px solid var(--site-color-light);
    font-weight: 400;
    color: var(--site-color-light);
    display: flex;
    vertical-align: middle;
    align-items: stretch;
    cursor: pointer;
}

    .tab-header.small {
        margin-bottom: 3px;
    }

    .tab-header span:first-child {
        flex-grow: 1;
        padding: 4px 0 0 10px;
        font-weight: 600;
    }

    .tab-header.small span:first-child {
        padding: 2px 0 0 5px;
    }

    .tab-header.big span:first-child {
        text-align: left;
        font-size: 16px;
        padding: 2px 0 3px;
    }

    .tab-header span:last-child {
        width: 30px;
        height:31px;
        /*background-color: #93CED4;
        border-left: 1px solid #93CED4;*/
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .tab-header.small span:last-child {
        width: 22px;
        height: 22px;
    }

    .tab-header:hover span:last-child {
        background-color: var(--site-color);
    }

    .tab-header span svg {
        height: 80%;
        width: 80%;
        left: 10%;
        position: relative;
        top: 10%;
    }

        .tab-header span svg line {
            stroke: var(--site-color);
        }

        .tab-header:hover span svg line {
            stroke: white;
        }

    .tab-header.close span .up {
        display: none;
    }

    .tab-header.open span .down {
        display: none;
    }

.tab-content-with-vis.close > button {
    display: none;
}

.tab-content-with-vis.close > .vis {
    display: initial;
}

/*#endregion*/

/*#region pntab*/
.pntab svg {
    margin-right: 5px;
    height: 0.8em;
    width: auto;
}

    .pntab svg polygon {
        fill: var(--title-text-color);
    }

.pntab.open svg.close {
    display: none;
}

.pntab.close svg.open {
    display: none;
}
/*#endregion*/

/*#region Help box*/
.help-box div.ui-dialog-titlebar {
    display: none;
}

.help-box .ui-dialog-content {
    background-color: white;
    padding: 16px 20px;
    font-size: 14px;
    cursor: move;
    border-radius: 4px;
    color: #656565;
}

.help-box svg {
    width: 2em;
    height: 2em;
    fill: #EB4036;
}

.help-box > div:first-of-type {
    text-align: center;
}

.help-box h3 {
    text-align: center;
    margin: 0;
}

.help-box h4 {
    margin: 0;
}

    .help-box h4:first-of-type {
        margin-top: 10px;
    }

.help-box.long-text {
    cursor: default;
}

.help-box p {
    margin: 7px 0;
}

.help-box.long-text p {
    margin: 0 0 10px;
}

.help-box em {
    font-weight: 700;
    font-style: normal;
}

.help-box p ol {
    list-style: decimal;
}

.help-box div.image-ex {
    display: flex;
    margin: 0 0 10px;
    align-items: center;
}

    .help-box div.image-ex p {
        margin: 0;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .help-box div.image-ex img {
        flex-grow: 0;
        flex-shrink: 0;
        margin-left: 10px;
    }

.help-box > div:last-child {
    display: flex;
    justify-content: space-between;
}

.help-box.long-text > div:last-child {
    padding-bottom: 10px;
}

.help-box > div:last-child > a {
    color: #5B9BC5;
}

    .help-box > div:last-child > a:hover {
        text-decoration: underline;
    }

.help-box > div:last-child > button {
    background-color: transparent;
    border: 1px solid #A6A8AB;
    border-radius: 3px;
    color: #a6a8ab;
    padding: 2px 10px;
}

.help-box .upper-close {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 16px;
    height: 28px;
}

    .help-box .upper-close svg {
        width: 100%;
    }

/*#endregion*/

/*#region color-profile picker*/

.color-picker tr:first-child td div {
    width: 100%;
    height: 30px;
    margin-bottom: 5px;
    border: 1px solid #656565;
    border-radius: 3px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.color-picker td {
    padding-left: 15px;
}

.color-picker tr:not(:first-child) input {
    width: 50px;
}

.color-picker tr:not(:first-child) td:last-child > div {
    width: 200px;
}
/*#endregion*/

/*#region map-preview*/
.map-preview {
    margin: 5px 0 0 5px;
    background-color: #F7F2D7;
    padding: 3px;
    color: #656565;
    font-size: 14px;
}

    .map-preview > div {
        display: flex;
        font-size: 12px;
        line-height: 14px;
        align-items: center;
    }

        .map-preview > div > span:first-child {
            border: 1px solid black;
            opacity: 0.7;
            width: 9px;
            height: 9px;
            margin-right: 5px;
        }

/*#endregion*/

.ui-widget-overlay {
    background: white;
    opacity: 0.6;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.05em;
    box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.2);
    height: 100%;
    background: rgba(245, 245, 245, 1);
    border: 1px solid #979797;
}

span.ui-selectmenu-text.colorbar{
    height: 14px;
    font-size: 0px;
}

.italic {
    font-style:italic;
}


#roadkill-popup {
    display: none;
    position: fixed;
    top: 80px;
    left: 248px;
    width: 363px;
    height: 83px;
    background: #fff;
    border: 1px solid #d0d7da;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 12px 17px;
    z-index: 2000;
    border-radius: 4px;
}

    #roadkill-popup p {
        margin: 0 0 0 0;
        font-size: 16px;
        line-height: 1.3;
    }

