@charset "UTF-8";/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.8.0
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2019 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2019-01-16T15:45:48.418Z
 */@-webkit-keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}@-o-keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);-o-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);-o-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}@keyframes cm-spin{0%{-webkit-transform:translateY(-50%) rotate(0);-o-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}100%{-webkit-transform:translateY(-50%) rotate(359deg);-o-transform:translateY(-50%) rotate(359deg);transform:translateY(-50%) rotate(359deg)}}
.context-menu-icon.context-menu-icon--fa::before, .context-menu-icon::before {
    top: 50%;
    left: 0;
    width: 2em;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute
}
@font-face {
    font-family: context-menu-icons;
    font-style: normal;
    font-weight: 400;
    src: url(font/context-menu-icons.eot?2lkho);
    src: url(font/context-menu-icons.eot?2lkho#iefix) format("embedded-opentype"), url(font/context-menu-icons.woff2?2lkho) format("woff2"), url(font/context-menu-icons.woff?2lkho) format("woff"), url(font/context-menu-icons.ttf?2lkho) format("truetype")
}
.context-menu-icon-add:before {
    content: "\EA01"
}
.context-menu-icon-copy:before {
    content: "\EA02"
}
.context-menu-icon-cut:before {
    content: "\EA03"
}
.context-menu-icon-delete:before {
    content: "\EA04"
}
.context-menu-icon-edit:before {
    content: "\EA05"
}
.context-menu-icon-loading:before {
    content: "\EA06"
}
.context-menu-icon-paste:before {
    content: "\EA07"
}
.context-menu-icon-quit:before {
    content: "\EA08"
}
.context-menu-icon::before {
    font-family: context-menu-icons;
    line-height: 1;
    color: #2980b9;
    transform: translateY(-50%)
}
/*.context-menu-icon.context-menu-hover:before {
 color: #fff
 }*/
.context-menu-icon.context-menu-disabled::before {
    color: #bbb
}
.context-menu-icon.context-menu-icon-loading:before {
    -webkit-animation: cm-spin 2s infinite;
    -o-animation: cm-spin 2s infinite;
    animation: cm-spin 2s infinite
}
.context-menu-icon.context-menu-icon--fa {
    display: list-item;
    font-family: inherit;
    line-height: inherit
}
.context-menu-icon.context-menu-icon--fa::before {
    font-family: FontAwesome;
    line-height: 1;
    color: #2980b9;
    transform: translateY(-50%)
}
.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
    color: #fff
}
.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
    color: #bbb
}
.context-menu-icon.context-menu-icon--fa5 {
    display: list-item;
    font-family: inherit;
    line-height: inherit
}
.context-menu-icon.context-menu-icon--fa5 i, .context-menu-icon.context-menu-icon--fa5 svg {
    position: absolute;
    top: .3em;
    left: .5em;
    color: #2980b9
}
.context-menu-icon.context-menu-icon--fa5.context-menu-hover > i, .context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
    color: #fff
}
.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i, .context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg {
    color: #bbb
}
.context-menu-list {
    position: absolute;
    display: inline-block;
    /* min-width: 13em; */
    /* max-width: 26em; */
    padding: .25em 0;
    margin: .3em;
    font-family: inherit;
    font-size: inherit;
    list-style-type: none;
    background: #fff;
    border: 1px solid #bebebe;
    border-radius: .2em;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.5);
    box-shadow: 0 2px 5px rgba(0,0,0,.5);
    /* margin-left: 159px; */
    width: 7.4%;
    top: 76.5%;
    left: 91.5%;
}
.context-menu-item {
    position: relative;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: .5px .2px;
    color: #2f2f2f;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff3f3;
    font-size: 12px;
    font-family: arial;
}
.context-menu-separator {
    padding: 0;
    margin: .35em 0;
    border-bottom: 1px solid #e6e6e6
}
.context-menu-item > label > input, .context-menu-item > label > textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.context-menu-item.context-menu-disabled {
    color: #bbb;
    cursor: default;
    background-color: #fff
}
.context-menu-input.context-menu-hover {
    color: #2f2f2f;
    cursor: default
}
.context-menu-submenu:after {
    position: absolute;
    top: 50%;
    right: .5em;
    z-index: 1;
    width: 0;
    height: 0;
    content: '';
    border-color: transparent transparent transparent #2f2f2f;
    border-style: solid;
    border-width: .25em 0 .25em .25em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}
.context-menu-item.context-menu-input {
    padding: .3em .6em
}
.context-menu-input > label > * {
    vertical-align: top
}
.context-menu-input > label > input[type=checkbox], .context-menu-input > label > input[type=radio] {
    position: relative;
    top: .12em;
    margin-right: .4em
}
.context-menu-input > label {
    margin: 0
}
.context-menu-input > label, .context-menu-input > label > input[type=text], .context-menu-input > label > select, .context-menu-input > label > textarea {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.context-menu-input > label > textarea {
    height: 7em
}
.context-menu-item > .context-menu-list {
    top: .3em;
    right: -.3em;
    display: none
}
.context-menu-item.context-menu-visible > .context-menu-list {
    display: block
}
.context-menu-accesskey {
    text-decoration: underline
}

/*========================Crop SAP Crop Legend=================*/

.bg-sapo {
    background-color: rgba(205, 205, 102, 1)
}
.bg-cit {
    background-color: rgba(137, 205, 102, 1)
}
.bg-grap {
    background-color: rgba(245, 122, 182, 1)
}
.bg-guav {
    background-color: rgba(255, 211, 127, 1)
}
.bg-mango {
    background-color: rgba(197, 0, 255, 1)
}
.bg-pome {
    background-color: rgba(232, 190, 255, 1)
}
.bg-uncon {
    background-color: rgba(178, 178, 178, 1)
}
.bg-coco {
    background-color: rgba(122, 142, 245, 1)
}


.imgctnsap {

}
.imggrmchicpeasap {

}
.imgpegtursap {

}
.imgricesap {

}
.imgsoysap {

}
/*-------------------------------------------------*/
.dot {
    /*-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;*/
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    width: 10px;
    height: 10px;
    content: '';
  	margin-right: 5px;
	margin-bottom: 5px;
}
.context-menu-root {
    width: 172px;
    top: 833px;
    left: 1731px;
    z-index: 1;
}
.detailLegend {
    margin-left: 12px;
}
.hidden {
    visibility: hidden;
}
.info {
    width: 200px;
    height: 100px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    position: absolute;
    margin-left: 1438px;
}

/************Tooltip Popup Demo**********/
.tooltipDemo {
    width: 180px;
    height: auto;
    padding: 3px;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    position: relative;
    top: -21px;
    display: none;
    overflow-y: scroll;
    background: #f1f8e9;
    margin-left: 90%;
}

.tooltipDemo {
    z-index: 100;
}

.link:hover+ .tooltipDemo {
    display: block;
}
.link {

}

/*.tooltipDemo:hover {
 display: block;
 }*/
.tooltiptext {
    font-size: 11px;
    color: black;
}
