/* open-sans-regular - latin */
@font-face {
    font-family: 'proxima-regular';
    src: url('../resources/fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('../resources/fonts/proximanova-regular-webfont.woff') format('woff');
    /*font-family: 'Open Sans';*/
    font-style: normal;
    font-weight: 400;
    /*src: url('../resources/fonts/open-sans-v16-latin-regular.eot'); /* IE9 Compat Modes */*/
    /*src: local('Open Sans Regular'), local('OpenSans-Regular'),*/
        /*url('../resources/fonts/open-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */*/
        /*url('../resources/fonts/open-sans-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */*/
        /*url('../resources/fonts/open-sans-v16-latin-regular.woff') format('woff'), /* Modern Browsers */*/
        /*url('../resources/fonts/open-sans-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */*/
        /*url('../resources/fonts/open-sans-v16-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */*/
}

* {
    box-sizing: border-box;
    /*font-family: 'Open Sans', sans-serif;*/
    font-family: 'proxima-regular', sans-serif;
    font-weight: normal;
    font-size: 14px;
}
*:focus { outline: none; }
* {
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
}
a {
    text-decoration: none;
}
.headline-text {
    font-size: 20px;
    font-weight: 600;
}
.title-text {
    font-size: 16px;
    font-weight: 600;
}

.ib {
    display: inline-block;
}
.vc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.hc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.hover-p {
    cursor: pointer;
}
.mt10 {
    margin-top: 10px;
}
.valign-t {
    vertical-align: top;
}
.valign-m {
    vertical-align: middle;
}

button, input[type=button], .button {
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    background-color: #d5d5d5;
    /*color: #3a3a3a;*/
    color: #2f4912;
    border: none;
    line-height: 30px;
    min-width: 100px;

    border: 1px solid #99c841;
    cursor: pointer;
}
button:first-child, input[type=button]:first-child, .button:first-child {
    margin-left: 0px;
}
button[data-default], input[type=button][data-default], .button[data-default] {
    background-color: #99c841;
    /*color: #2f4912;*/
    color: #ffffff;
}
.button[data-default] {
    color: #ffffff;
}

input, textarea {
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

html {
    min-width: 1200px;
    height: 100%;
    overflow: hidden;
}

html[data-widget] { min-width: auto; }
html[data-widget] body {
    margin-left: 80px;
    width: calc(100% - 80px);
    background-color: transparent;
    position: relative;
}

html[data-temperature-c] .temperature-display-f,
html[data-temperature-f] .temperature-display-c  {
    display: none !important;
}

/* editable list item style */
html[data-operate=edit] *[data-hide-on-edit=true],
html[data-operate=edit] .item-display,
html[data-operate=edit] #header #normal,
html[data-operate=edit] #header #searchable,
html[data-operate=normal] *[data-hide-on-edit=false],
html[data-operate=normal] .item-editor,
html[data-operate=normal] #header #editable,
html[data-operate=normal] #header #searchable,
html[data-operate=search] *[data-hide-on-edit=false],
html[data-operate=search] .item-editor,
html[data-operate=search] #header #normal,
html[data-operate=search] #header #editable {
    display: none !important;
}
html[data-operate=edit] .list-item input,
html[data-operate=edit] .list-item .delete,
html[data-operate=edit] .list-item .reorder {
    pointer-events: all;
}

.list-item .item-display .title,
.list-item .item-display .sub-title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.panel .ind {
    background-image: url('/resources/icons/icon-fold-n@3x.png');
}
.ind.edit {
    background-image: url('/resources/icons/icon-edit-n@3x.png');
}
.panel[data-active=false] .ind {
    background-image: url('/resources/icons/icon-fold-n@3x.png');
}
.reorder {
    float: left;
    width: 40px;
    height: 34px;
    cursor: pointer;
}

body {
    opacity: 0;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
body[data-initialized] {
    opacity: 1;
}
iframe {
    border: none;
    background-color: white;
    padding: 0px;
    margin: 0px;
}

.template {
    display: none;
}

#app-prompt:not(:empty)::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
}
#app-prompt {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 1;
}
#app-prompt > * {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    /*padding: 24px;*/
    padding: 0px;
    box-shadow: 2px 2px 12px gray;
}
#app-prompt:empty {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    width: 0%;
}

html[data-popup] body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.4);
    padding: 0px;
}
html[data-popup] body > .panel {
    padding: 0px;
    margin: 0px;
}

.panel-buttons {
    position: absolute;
    bottom: 0px;
    width: 100%;
    border-top: 1px solid #a0a0a0;
    text-align: center;
    padding: 20px;
}


html #header {
    background-color: transparent;
    height: 50px;
    padding: 0px;
    vertical-align: middle;
    line-height: 22px;
    z-index: 1000;
    pointer-events: none;
}

html #header > #title {
    padding: 14px 0px;
    position: absolute;
    left: 16px;
    display: inline-block;
    text-align: left;
    pointer-events: all;
    color: white;
}

html #header > #title-v2 {
    padding: 4px 0px;
    position: absolute;
    left: 11px;
    display: inline-block;
    text-align: left;
    pointer-events: all;
    color: white;
}

html #header > #links {
    position: absolute;
    right: 0px;
    display: inline-block;
    text-align: right;
    pointer-events: all;
}
html #header > #links > * {
    padding: 14px 16px 14px 16px;
    display: inline-block;
}
html #footer {
    position: absolute;
    bottom: 0px;
    height: 60px;
    width: 100%;
    text-align: center;
    padding: 20px 0px;
}

.dock[data-active=false] {
    left: -80px;
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
}
.dock {
    position: absolute;
    left: 0px;
    top: 50px;
    /*top: 50%;
    transform: translateY(-50%);*/
    z-index: 1000;

    width: 75px;
    /*height: 652px;*/
    height: calc(100% - 60px);
    border-radius: 12px;
    background-color: #99c841;
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
}
.dock-item {
    display: block;
    position: relative;
    line-height: 65px;
    width: 65px;
    height: 60px;
    margin: 5px;
    border-radius: 12px;
    color: #407504;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    cursor: pointer;
}
.dock-item[data-active=true],
.dock-item[data-active=false]:hover {
    background-color: #649e1a;
    color: #ffffff;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
}
.dock-item[data-active=false] .i,
.dock-item[data-active=true] .a,
.dock-item[data-active=false]:hover .a {
    opacity: 1;
}
.dock-item[data-active=true] .i,
.dock-item[data-active=false] .a,
.dock-item[data-active=false]:hover .i {
    opacity: 0;
}
.dock-item > img {
    position: absolute;
    top: 3px;
    left: 15px;
    width: 35px;
    height: 35px;
    margin: 0px;
}
.dock-item > div {
    position: absolute;
    top: 40px;
    width: 65px;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    font-weight: 600;
}
.dock-item[data-active=false] > div {
    font-weight: 100;
}
.dock-more {
    width: 100%;
    height: 15px;
    cursor: pointer;
}
.dock-more-indicator {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 5px;
    background-color: #bbb;
    border-radius: 3px;
}

.panel {
    position: relative;
    height: 400px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.4);
    background-color: #eeeeee;
    padding: 10px;
}
.panel:last-child {
    margin-right: 0px;
}
.panel-side {
    border-radius: 10px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.4);
    background-color: #eeeeee;
    padding: 10px;
}
.panel-float {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
}
.panel-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #3a3a3a;
    margin-bottom: 10px;
}
.fieldgroup-1 {
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #3a3a3a;
    padding: 5px;
}
.fieldgroup-2 {
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #d5d5d5;
    padding: 5px;
}
.fieldgroup-3 {
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 5px;
}

.mode-icon,
.status-icon,
.reorder-icon,
.reorder-icon-w,
.reorder-icon-b,
.button-icon,
.ownership-icon {
    background-repeat: no-repeat;
    background-size: 24px 24px;
}
.ownership-icon {
    background-position: left 8px top;
}

.map-icon {
    background-image: url(/resources/icons/icon-map-green@3x.png);
}

.reorder-icon-w {
    background-image: url(/resources/icons/icon-move-w@3x.png);
}
.reorder-icon-b,
.reorder-icon {
    background-image: url(/resources/icons/icon-move-bk@3x.png);
}

.mode-icon {
    padding: 6px 6px 6px 40px;
    background-position: left 6px center;
}
.mode-icon.growth {
    background-image: url(/resources/icons/icon-growth-n.png);
}
.mode-icon.tracking {
    background-image: url(/resources/icons/icon-tracking-n.png);
}
.mode-icon.storage {
    background-image: url(/resources/icons/icon-storage-n.png);
}
.mode-icon.idle {
    background-image: url(/resources/icons/icon-idle.png);
}
.mode-icon.preplant {
    background-image: url(/resources/icons/icon-idle.png);
}
.mode-icon.offline {
    background-image: url(/resources/icons/icon-offline-n.png);
}

.status-icon.user {
    background-image: url(/resources/icons/icon-user-n@3x.png);
}
.status-icon.growth {
    background-image: url(/resources/icons/icon-growth-2@3x.png);
}
.status-icon.critical {
    background-image: url(/resources/icons/icon-critical-n@3x.png);
}
.status-icon.warning {
    background-image: url(/resources/icons/icon-warning-n@3x.png);
}
.status-icon.normal {
    background-image: url(/resources/icons/icon-normal-n@3x.png);
}
.status-icon.preplant {
    background-image: url(/resources/icons/icon-idle@3x.png) !important;
}
.status-icon.offline {
    background-image: url(/resources/icons/icon-offline-n@3x.png);
}
.status-icon.idle {
    background-image: url(/resources/icons/icon-idle@3x.png);
}
.status-icon.active {
    background-image: url(/resources/icons/icon-growth-2@3x.png);
}
.status-icon.inactive {
    background-image: url(/resources/icons/icon-offline-2-n@3x.png);
}
.status-icon.moisture {
    background-image: url(/resources/icons/icon-moisture-n@3x.png);
}
.status-icon.co2 {
    background-image: url(/resources/icons/icon-co2-n@3x.png);
}
.status-icon.humidity {
    background-image: url(/resources/icons/icon-humidity-n@3x.png);
}
.status-icon.temperature {
    background-image: url(/resources/icons/icon-temp-n@3x.png);
}
.status-icon.temperature.highlight {
    background-image: url(../resources/icons/icon-temp-w@3x.png);
}
.status-icon.grouped {
    background-image: url(/resources/icons/icon-grouped-n@3x.png);
}
.status-icon.ungrouped {
    background-image: url(/resources/icons/icon-ungrouped-n@3x.png);
}
.status-icon.irrigation {
    background-image: url(/resources/icons/icon-irrigation-n@3x.png);
}
.status-icon.season {
    background-image: url(/resources/icons/icon-seasons-n@3X.png);
}
.status-icon.chilling-hours {
    background-image: url(/resources/icons/icon-leaf-b@3x.png);
}
.status-icon.soil {
    background-image: url(/resources/icons/icon-soil@3x.png);
}
.status-icon.windgust {
    background-image: url(/resources/icons2/icon-wind-gust96.png);
}
.status-icon.windspeed {
    background-image: url(/resources/icons2/icon-wind-speed100.png);
}
.status-icon.winddir {
    background-image: url(/resources/icons2/icon-wind-dir64.png);
}
.status-icon.et {
    background-image: url(/resources/icons2/icon-evaporation64.png);
}
.ownership-icon.owner {
    background-image: url(/resources/icons2/icon-user96.png);
}
.ownership-icon.alias {
    background-image: url(/resources/icons2/icon-user96-gray.png);
}
.button-icon.start-season {
    background-image: url(/resources/icons/restart-season-s@3x.png);
    padding: 0 6px 0 35px;
    background-position: left 6px center;
}
.notation-icon.todos {
    background-image: url(/resources/icons/icon-todo@3x.png);
}
.notation-icon.notes {
    background-image: url(/resources/icons/icon-check-g@3x.png);
}
.notation-icon.warning {
    background-image: url(/resources/icons/icon-warning-n@3x.png);
}
.icon-info {
    background-image: url(/resources/icons/icon-info-n@3x.png);
}
.icon-marker {
    background-image: url(/resources/icons/icon-field-n@3x.png);
}

/*
    weather style
*/
.weather-icon.clear-day {
    background-image: url(/resources/w-icons/clear-day.png);    
}
.weather-icon.clear-night {
    background-image: url(/resources/w-icons/clear-night.png);    
}
.weather-icon.cloudy {
    background-image: url(/resources/w-icons/cloudy.png);    
}
.weather-icon.fog {
    background-image: url(/resources/w-icons/fog.png);    
}
.weather-icon.hail {
    background-image: url(/resources/w-icons/hail.png);    
}
.weather-icon.partly-cloudy-day {
    background-image: url(/resources/w-icons/partly-cloudy-day.png);    
}
.weather-icon.partly-cloudy-night {
    background-image: url(/resources/w-icons/partly-cloudy-night.png);    
}
.weather-icon.rain-snow-showers-day {
    background-image: url(/resources/w-icons/rain-snow-showers-day.png);    
}
.weather-icon.rain-snow-showers-night {
    background-image: url(/resources/w-icons/rain-snow-showers-night.png);    
}
.weather-icon.rain-snow {
    background-image: url(/resources/w-icons/rain-snow.png);    
}
.weather-icon.rain {
    background-image: url(/resources/w-icons/rain.png);    
}
.weather-icon.showers-day {
    background-image: url(/resources/w-icons/showers-day.png);    
}
.weather-icon.showers-night {
    background-image: url(/resources/w-icons/showers-night.png);    
}
.weather-icon.sleet {
    background-image: url(/resources/w-icons/sleet.png);    
}
.weather-icon.snow-showers-day {
    background-image: url(/resources/w-icons/snow-showers-day.png);    
}
.weather-icon.snow-showers-night {
    background-image: url(/resources/w-icons/snow-showers-night.png);    
}
.weather-icon.snow {
    background-image: url(/resources/w-icons/snow.png);    
}
.weather-icon.thunder-rain {
    background-image: url(/resources/w-icons/thunder-rain.png);    
}
.weather-icon.thunder-showers-day {
    background-image: url(/resources/w-icons/thunder-showers-day.png);    
}
.weather-icon.thunder-showers-night {
    background-image: url(/resources/w-icons/thunder-showers-night.png);    
}
.weather-icon.thunder {
    background-image: url(/resources/w-icons/thunder.png);    
}
.weather-icon.wind {
    background-image: url(/resources/w-icons/wind.png);    
}
.left  { float: left; }
.right { float: right; }
.hide  { display: none !important; }
.hidden { visibility: hidden; }
.half  { width: 50%; }

/*
    text css
*/
.red { color: red !important; }
.blue { color: blue !important; }
.tl { text-align: left; }
.tc { text-align: center; }
.tr { text-align: right; }
.blod { font-weight: bold; }
.soiltech-yellow { color: yellow !important; }
.soiltech-green { color: #99c841 !important; }
.font-size16 { font-size: 16px; }

/*
    new icons 2023
*/
.iconbtn {
    cursor: pointer;
}
.iconbtn:hover {
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 #7c7c7c;
}

.icon2026 {
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
}

.icon-chat-edit {
    background-image: url(/resources/icons2/icon-chat-edit48.png);
}
.icon-chat-verify {
    background-image: url(/resources/icons2/icon-chat-verify48.png);
}
.icon-chat-delete {
    background-image: url(/resources/icons2/icon-chat-delete48.png);
}
.icon-chat-reply {
    background-image: url(/resources/icons2/icon-chat-reply48.png);
}
.icon-chat-forward {
    background-image: url(/resources/icons2/icon-chat-forward48.png);
}
.icon-chat-reload {
    background-image: url(/resources/icons2/icon-chat-reload48.png);
}

/*
    icons 24px based

    all icons here will be defined as size of 24px
*/
.icon1624 {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
}

.icon2432 {
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
}

/*
    icons
*/
.icon8 {
    width: 8px;
    height: 8px;
    background-repeat: no-repeat;
    background-size: 8px 8px;
}

.icon16 {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.icon18 {
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 18px 18px;
}

.icon20 {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.icon24 {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

.icon32 {
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 32px 32px;
}

.icon36 {
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: 36px 36px;
}

.setting {
    filter: contrast(0.2);
    background-image: url(/resources/icons/icon-setting-n@3x.png);
    cursor: pointer;
}
.close {
    background-image: url(/resources/icons/icon-close-n@3x.png);
    cursor: pointer;
}
.delete {
    background-image: url(/resources/icons/icon-trash-n.png);
    cursor: pointer;
}
.search {
    background-image: url(/resources/icons/icon-search-n@3x.png);
    cursor: pointer;
}
.logout {
    background-image: url(/resources/icons/icon-logout-n@3x.png);
    cursor: pointer;
}
.edit {
    background-image: url(/resources/icons/icon-edit-n@3x.png);
    cursor: pointer;
}
.edit-cancel {
    background-image: url(/resources/icons/icon-edit-cancel-b@3x.png);
    cursor: pointer;
}
.add {
    background-image: url(/resources/icons/icon-add-n@3x.png);
    cursor: pointer;
}
.arrow {
    background-image: url(/resources/icons/arrow-direction.png);
}
.harvest {
    background-image: url(/resources/icons/icon-season-end-n@3x.png);
    cursor: pointer;
}
.save {
    background-image: url(/resources/icons/icon-save-n@3x.png);
    cursor: pointer;
}
.soiltech-device {
    background-image: url(/resources/icons/icon-device-n@3x.png);
}
.rain-station {
    background-image: url(/resources/icons/icon-weatherstation-w@3x.png);
}
.rain-gauge {
    background-image: url(/resources/icons/icon-rngauge-w@3x.png);
}
.rain-gauge2 {
    background-image: url(/resources/icons/icon-rngauge-g@3x.png);
}
.weather-station {
    background-image: url(/resources/icons/icon-weatherstation-g@3x.png);
    cursor: pointer;
}
.download {
    background-image: url(/resources/icons/icon-download-b@3x.png);
    cursor: pointer;
}
.mail {
    background-image: url(/resources/icons/icon-mail-w@3x.png);
    cursor: pointer;
}
.reply {
    background-image: url(/resources/icons/icon-reply-w@3x.png);
    cursor: pointer;
}
.forward {
    background-image: url(/resources/icons/icon-forward-w@3x.png);
    cursor: pointer;
}
.reset {
    background-image: url(/resources/icons2/icon-reset96.png);
    cursor: pointer;
}

div.table { display: table; }
div.row   { display: table-row; }
div.col   { display: table-cell; }
div.colspan,
div.colspan+div.col { border: 0; }
div.group { display: table-row-group; }
div.caption { caption-side: bottom; display: table-caption; }

div.button { cursor: pointer; }
div.button:hover {}

.set-password {
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center right 7px;
}

.set-password:focus {
    background-image: url(/resources/icons/icon-eye-o.png);
}

.set-password {
    background-image: url(/resources/icons/icon-eye-x.png);
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #d5d5d5;
}

/* 
    tab 
*/
.tab {
    overflow: hidden;
    background-color: transparent;
}

.tab button {
    background-color: transparent;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 0px 0px 0px;
    transition: 0.3s;
    font-size: 13px;
    color: #3a3a3a;
    margin: 0 !important;
    margin-left: 16px !important;
    min-width: 50px !important;
    border-radius: 0 !important;
    border-bottom: 2px solid transparent;
    line-height: 30px;
}

.tab button:first-child {
    margin-left: 0px !important;
}

.tab button:hover {
}

.tab button.active {
    border-bottom: 2px solid #99c841;
}

.tab-content-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.tab-content {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.tab-content.active {
    z-index: auto;
    opacity: 1;
    pointer-events: all;
}

.content-title {
    font-weight: 600;
    font-size: 13px;
    color: #3a3a3a;
}

.content-wrapper {
    margin: 10px 0px 10px 0px;
}
.content-wrapper > div {
    display: inline-block;
}
.content-wrapper > .arrow {
    margin: 0 9px 0 9px;
}

.content-line {
    display: block !important;
    margin-bottom: 8px;
}
.content-line > div {
    display: inline-block;
}
.content-line > .arrow {
    margin: 0 5px;
}

.content-text {
    font-size: 13px;
    color: #3a3a3a;
}

.disabled {
    opacity: 0.6 !important;
    pointer-events: none !important;
}

/*
    spinner, progress bar ...
*/
.spinner-view-blocker {
    pointer-events: auto;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000002;
    background-color: #000000;
    opacity: 0.6;
}
.spinner-bulletin {
    color: #ffffff;
    font-size: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.spinner-preloader {
    color: official;
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}
.spinner-preloader div {
    transform-origin: 40px 40px;
    animation: spinner-preloader 1.2s linear infinite;
}
.spinner-preloader div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}
.spinner-preloader div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.spinner-preloader div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.spinner-preloader div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.spinner-preloader div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.spinner-preloader div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.spinner-preloader div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.spinner-preloader div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.spinner-preloader div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.spinner-preloader div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.spinner-preloader div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.spinner-preloader div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.spinner-preloader div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes spinner-preloader {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.progress-view-blocker {
}
.progress-bar {
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    z-index: 1000003;
    margin: 20px;
    width: 400px;
    height: 8px;
}

/* select */
select {
    height: 30px;
    line-height: 30px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    background-color: #ffffff;
}

select option {
    background-color: #ffffff;
    color: #3d3d3d !important;
}

select optgroup {
    color: #8d8d8d !important;
}

.select-v1 {
    border-radius: 4px;
    border-color: #c8c8c8;
    pointer-events: all;
    cursor: pointer;
}

/* input */
.input-v1 {
    background: transparent;
    /*border: 0px;*/
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
input[readonly] {
    border: 0px solid transparent;
    background-color: transparent;
    cursor: default;
}

.map-button-bar {
    position: absolute;
    top: 10px;
    height: 30px;
    line-height: 30px;
    left: 50%;
    background-color: white;
    border-radius: 2px;
    padding: 0 5px;
}

.label {
    padding: 0;
    margin-right: 12px;
    cursor: pointer;
}
.label input[type=checkbox] {
    display: none;
}
.label input[type=checkbox]+span {
    display: inline-block;
    padding-left: 26px;
    line-height: 20px;
    background: url(../resources/icons/cbx-off.svg) no-repeat;
}
.label input[type=checkbox]:checked+span {
    background: url(../resources/icons/cbx-on.svg) no-repeat;
}

.new {
    background-color: red;
    color: white;
    border-radius: 6px;
    line-height: 20px;
    height: 20px;
}

/*
    marquee
*/
.marquee {
    /*
        width
        height
    */
    overflow: hidden;
    position: relative;
}

.marquee .marquee-wrap {
    display: block;
    width: 200%;
    /*
        height
    */

    position: absolute;
    overflow: hidden;

    animation: marquee 35s linear infinite;
}

.marquee .marquee-content {
    float: left;
    width: 50%;
}

@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}

datalist {
    display: none !important;
}

/*
    tooltip
*/
.uni-tooltip {
    visibility: hidden;
    background-color: #eeeeee;
    color: #000000;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    min-width: 120px;
    min-height: 24px;
    line-height: 24px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);

    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 999;
}
.uni-tooltip.show-unitt {
    visibility: visible;
}
.uni-tooltip.close {
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position-x: calc(100%);
}

/*
    badge
*/
.badge {
    position: relative;
    padding: 2px 6px;
    border-radius: 50%;
    background-color: transparent;
    color: white;
    display: none;
}
.badge[data-show="true"] {
    display: initial;
}

/* apex chart */
.xaxis-labels {
    font-size: 13px;
    fill: #3a3a3a;
}

.apexcharts-title-text {
    opacity: 0 !important;
}

/*
    arrow
*/

.triangle-arrow:after {
    position: absolute;
    content: '';
    top: 0px;
    right: 0px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-color: #649e1a transparent transparent transparent;
}
.triangle-arrow.arrow-up:after {
    border-color: transparent transparent #649e1a transparent;
    top: 0px;
}

/*
    google map
*/
/* infowindow close button */
.gm-style-iw-chr button {
    width: 24px !important;
    height: 24px !important;
}
.gm-style-iw-chr span {
    margin: 0px !important;
}

/*
    HTML: <div class="star"></div> 
*/
.star {
    width: 30px;  
    aspect-ratio: 1;
    background: #407504;
    clip-path: polygon(50% 0, 
        calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
        calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
        calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
        calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))) 
    );
}