@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}
:root {
  --leftNavWidth: 300px;
  --rightBarWidth: 315px;
  --topNavHeight: 52px;
  --navFooterHeight: 70px;
  --navTabsHeight: 52px;
}

/* common css */
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-control:focus {
  box-shadow: 0 0 0 !important;
}
.form-control {
  font-size: 13px;
}
.btn {
  font-size: 13px;
}
button:focus {
  outline: 0;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 0em;
  font-size: 16px;
  font-weight: 700;
  color: #348fe2;
  border-bottom: 1px solid lightgrey;
}

table.dataTable > thead .sorting,
table.dataTable > thead .sorting_asc,
table.dataTable > thead .sorting_desc,
table.dataTable > thead .sorting_asc_disabled,
table.dataTable > thead .sorting_desc_disabled {
  border-bottom: 1px solid lightgrey;
}

.custom-control-label::before,
.custom-control-label::after {
  top: 2px;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #12b8ec;
  background-color: #12b8ec;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 18px;
  border-radius: 33px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 33px;
}
::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 6px;
}
.scrollbar {
  overflow: scroll !important;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: transparent;
}
.scrollbar:hover::-webkit-scrollbar-thumb {
  background: #ddd;
}
/* end custom scrollbar */

#dock {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* navbar */
.navbar img {
  height: 44px;
  margin-right: 8px;
}
.short-bar .navbar {
  height: var(--topNavHeight);
}
.nav-right {
  flex-grow: 1;
}

/* nav tabs */
.nav-tabs {
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.nav-tabs .nav-link {
  border-radius: 0;
  padding: 15px 25px !important;
  border: 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  border-bottom: 2px solid #12b8ec;
  color: #12b8ec;
  font-weight: 600;
}

.layout .fieldbox {
  border-radius: 4px;
}

.layout .fieldbox .field {
  padding: 2px 6px;
}

.dlg_wrapper button,
.adder {
  background-color: #12b8ec !important;
  padding: 5px 20px;
  border-radius: 4px;
}
.fields .field {
  margin: 4px 0px 0px 20px;
  border-radius: 4px;
  background-color: white;
}
.char-fields,
.num-fields {
  margin-top: 10px;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.buttons .btn-light:focus {
  box-shadow: 0 0 0 !important;
}
.buttons .btn-light:hover {
  background-color: #12b8ec !important;
  color: #fff !important;
}
/* End */

/* main menu */
.main-menu .navbar {
  background-color: #4472c4;
  height: 52px;
}

.main-menu .navbar > span,
.short-bar .navbar > span {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  width: 20px;
  text-align: center;
  display: none;
}

.navbar {
  position: relative;
}

.navbar .collapse.show {
  background-color: #fff;
  position: absolute;
  top: 45px;
  right: 10px;
  z-index: 5;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  max-width: 200px;
  width: 100%;
}

.navbar .collapse.show .nav-link {
  color: #555 !important;
}

.navbar .collapse.show .search-form .form-control {
  border: 1px solid #ddd;
}

.short-bar .navbar > span {
  color: #555;
}

.navbar-brand {
  color: #fff;
  font-size: 17px;
}

.search-form {
  position: relative;
}

.search-form .form-control {
  height: 28px;
  border-radius: 33px;
  font-size: 14px;
  border: 0;
}

.search-form button {
  background: none !important;
  border: 0;
  position: absolute;
  top: 5px;
  right: 5px;
  outline: 0;
}

.main-menu .nav-link {
  color: #fff;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.dropdown-item {
  font-size: 14px;
}

.dropdown-item:focus {
  background-color: #fff !important;
  color: #000;
}

/* short bar */
.short-bar {
  background-color: #435766;
  color: white;
}

.short-bar p {
  font-weight: 500;
  margin: 0;
}

.short-bar .nav-link {
  color: #fff;
  font-size: 13px;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* main content */
.main-content {
  transition: 0.5s;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* left-side-nav & right-side-nav*/
.left-side-nav,
.right-side-nav {
  width: 80px;
  left: 0;
  top: 104px;
  position: fixed;
  background-color: #f5f5f5;
  z-index: 5;
}

.right-side-nav {
  background-color: #fff;
  border-left: 1px solid #eee;
}

.left-side-nav ul li,
.right-side-nav ul li {
  display: block;
  width: 100%;
}

.right-side-nav ul li {
  padding: 0 15px;
}

.left-side-nav ul li a span,
.right-side-nav ul li a span {
  display: block;
}

.left-side-nav ul li > a,
.right-side-nav ul li > a {
  display: block;
  text-align: center;
  padding: 10px 5px;
  color: #555;
  text-decoration: none;
  outline: 0;
  transition: 0.5s;
}

.left-side-nav ul li a.active {
  background-color: #fff;
}

.right-side-nav ul li a.active {
  background-color: #12b8ec;
  border-radius: 4px;
}

.right-side-nav ul li a.active img {
  filter: brightness(0) invert(1);
}

.right-side-nav ul li a img {
  width: 20px;
}

.stage {
  scrollbar-width: thin;
  height: 100%;
}

.right-side-nav,
.left-side-nav {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.left-side-nav {
  overflow-y: visible;
  overflow-x: visible;
}

.right-side-nav::-webkit-scrollbar,
.left-side-nav::-webkit-scrollbar {
  display: none;
}

.side-feature {
  padding: 10px;
  background-color: #fff;
  overflow-y: auto;
  height: 100%;
  scrollbar-width: thin;
}

.side-feature-nav > ul > li > a,
.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  text-decoration: none;
  color: #555;
  outline: 0;
}

.side-feature-nav > ul > li > a i,
.dropdown-menu a i {
  margin-right: 10px;
  color: #8f8f8f;
  width: 20px;
  text-align: center;
}

.side-feature-nav > ul > li > a .right {
  margin-left: auto;
  margin-right: 0;
  font-size: 13px;
}

.sub-menu ul {
  padding-left: 20px;
  display: none;
}

.sub-menu ul.expand {
  display: block !important;
}

.sub-menu ul li a {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  color: #666;
  outline: 0;
}

/* tab-content */
.loading {
  display: none;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 99;
  left: 0;
}

.loading > img {
  display: inline;
  height: 64px;
}

.loading.show {
  display: flex;
}

.daummap {
  height: 100%;
}

.daummap .highcharts-container {
  overflow: visible !important;
}

.daummap .highcharts-tooltip span > span {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid;
  padding: 2px 10px;
  border-radius: 2px;
  white-space: pre;
  position: fixed;
}

.jvectormap-title {
  position: absolute;
  z-index: 99;
  pointer-events: none;
  text-anchor: middle;
  text-anchor: middle;
  color: #333333;
  font-size: 36px;
  fill: #333333;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica,
    sans-serif;
  width: 100%;
}

.jvectormap-tip {
  z-index: 1099;
  background-color: whitesmoke;
  color: black;
  border-radius: 15px;
}

.jvectormap-tip-chart {
  width: 200px;
  height: 200px;
  display: inline-block;
}

.vectormap-chart .jvectormap-legend-cnt-v {
  top: auto;
  bottom: 0;
}

.vectormap-chart .jvectormap-legend-cnt-h .jvectormap-legend-inner {
  display: none;
}

.vectormap-chart .jvectormap-legend-cnt-v .jvectormap-legend-tick {
  clear: both;
}

.vectormap-chart .jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
  float: right;
}

.vectormap-chart .jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
  float: right;
  padding-right: 2px;
}

/* 14/03/2023 made for index.html dashboard*/

.left-navigation {
  width: var(--leftNavWidth);
  background-color: #fff;
  position: fixed;
  left: 0;
  z-index: 99999;
  top: var(--topNavHeight);
  height: calc(100vh - var(--topNavHeight));
  padding-bottom: var(--navFooterHeight);
  box-shadow: 6px 0px 70px 15px rgba(0, 0, 0, 0.03);
  transition: 0.5s;
}
.hideLeftNav .left-navigation {
  left: calc(var(--leftNavWidth) * -1);
}
.left-navigation .navigation {
  height: calc(100vh - (var(--topNavHeight) + var(--navFooterHeight)));
  overflow-x: hidden !important;
}

.left-navigation form {
  border-bottom: 1px solid #f5f5f5;
}
.left-navigation .form-group {
  position: relative;
  margin: 15px 25px;
}
.left-navigation .form-group::before {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f002";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.left-navigation .form-control {
  height: 30px;
  font-size: 13px;
  border-radius: 0;
  padding-left: 30px;
  border-color: #f2f2f2;
}
.left-navigation .form-control::placeholder {
  font-size: 13px;
  color: #999;
}
.left-navigation h6 {
  padding: 10px 25px;
  margin: 0;
  background: black;
  color: white;
  /* text-align: center; */
  font-size: 18px;
}
.left-navigation .navigation ul.left-menu > li > a {
  padding: 8px 25px;
  font-size: 14px;
  font-weight: bold;
}
.left-navigation .navigation ul.left-menu > li.active > a {
  background-color: #f9f9f9;
}

.left-navigation .navigation ul.left-menu > li.dropdown > a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
}
.left-navigation .navigation ul.left-menu > li.dropdown > a.collapsed::before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
}
.left-navigation .navigation ul.left-menu > li > a::before {
  content: "";
  width: 20px;
  display: inline-block;
}
.left-navigation ul li a {
  text-decoration: none;
  display: block;
  color: #666;
}
.left-navigation ul ul li a {
  padding: 8px 20px;
  padding-left: 48px;
  transition: 0.5s;
}
.left-navigation ul ul li a:hover,
.left-navigation ul ul li a.active {
  background-color: #bfdde7;
  border-radius: 0px 25px 25px 0px;
}

.navigation-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--navFooterHeight);
  padding: 15px;
  border-top: 1px solid #eee;
  background: #fff;
}
.navigation-footer p {
  margin: 0;
  font-size: 12px;
  color: #777;
}
.main-content-area {
  padding-left: 0;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--topNavHeight));
}
.main-content-area > .main-area-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.main-content-area > .main-area-content > img {
  margin-top: 120px;
}
.image_center {
  margin-top: calc(100vh / 4);
  text-align: center;
}
.filter-bar {
  display: flex;
}
.filter-bar .stage {
  display: flex;
  gap: 0 15px;
  flex-direction: row;
  align-items: baseline;
  width: 100%;
  flex-wrap: wrap;
  overflow: visible;
  border-bottom: 1px solid #e0e0e0;
}

.filter-bar .default {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  box-shadow: none;
  border: 1px solid #d3d3d3;
  font-size: 13px;
  align-self: stretch;
  border-radius: 2px;
  border: 0 solid #d3d3d3;
  background: 0 0;
  color: #012222;
  padding: 5px 0;
}
.filter-bar .default .clear-filter {
  visibility: hidden;
  opacity: 0;
}
.filter-bar .default:hover .clear-filter {
  visibility: visible;
  opacity: 1;
}

.filter-bar .default img {
  height: 1.5em;
}
.filter-bar .ms-parent {
  width: 150px !important;
}

.filter-bar .default .range {
  margin: 10px 20px 10px 10px;
  min-width: 150px;
}

.crosstable-title h3 {
  font-size: 20px;
}
.crosstable-title h5 {
  font-size: 16px;
}

/* noUi rage slider */
.noUi-target {
  background: #eee;
  border-radius: 33px;
  border: 0;
}
.noUi-horizontal {
  height: 10px;
}

.noUi-horizontal .noUi-handle {
  width: 28px;
  height: 20px;
  right: -17px;
  top: -6px;
  border-radius: 33px;
  border: 0;
  cursor: grab;
  box-shadow: none;
  background-color: #2f80ed;
}
.noUi-tooltip {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
}

.noUi-handle:after,
.noUi-handle:before {
  display: none;
}

.filter-bar .default.dropdown span {
  padding-bottom: 2px;
  border-bottom: 1px dotted #27ae60;
  margin-left: 8px;
  padding-left: 0;
}
.filter-bar input[type="text"],
.filter-bar .ms-choice {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 26px;
  text-align: center;
  width: 150px;
}
.filter-bar input[type="text"].invalid,
input.invalid,
.invalid .ms-choice,
.invalid .select2-container .select2-selection {
  border: 3px dotted #dc3545;
}

.no-padding {
  padding: 0;
}
label.select {
  width: 100%;
}

/* ui jqgrid table */
.ui-jqgrid .ui-jqgrid-htable {
  border: none;
}
.ui-jqgrid .ui-jqgrid-htable th,
.ui-jqgrid tr.jqgrow td {
  border: none;
  padding: 5px 10px;
}
.grid-table {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.ui-jqgrid .ui-jqgrid-pager {
  height: auto;
  padding: 8px 15px !important;
}

.ui-jqgrid .ui-jqgrid-htable th div {
  overflow: visible;
}

/* jquery ui */
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #3a87ad;
  background-color: #d9edf7;
}
.ui-datepicker {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 6px;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  transform: translateX(-50%);
  margin-top: -8px;
  margin-left: 0;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.ui-datepicker td .ui-state-active,
.ui-datepicker td .ui-state-hover,
.ui-datepicker .ui-datepicker-next:hover,
.ui-datepicker .ui-datepicker-prev:hover {
  color: #fff;
  background-color: #007bff;
  border-radius: 6px;
}
.ui-datepicker td .ui-state-highlight {
  border-radius: 6px;
}

.modal-title {
  font-size: 18px;
}

.fieldss {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 4px;
  margin-top: 15px;
}

/* selectpicker */
.select2-selection__choice {
  background-color: #e0edff !important;
  border: 1px solid #e0edff !important;
  color: #007bff;
}
li.select2-selection__choice {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.select2-selection__choice__remove {
  margin-right: 0;
  height: 14px;
  width: 14px;
  background: #007bff;
  margin-left: 4px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  border-radius: 100%;
}

/* flex-radio */
.flex-radio {
  display: flex;
  gap: 10px;
}
.flex-radio label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.default span {
    min-width: 100px;
    text-align: center;
}