html {
  position: relative;
  height: 100vh;
}

body {
  margin-bottom: 25px;
  font-size: 13px;
  overflow: hidden;
  height: 100vh;
  color: #333d47;
  font-family: "AtlasGrotesk", "Open Sans", sans-serif;
}

footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

nav {
  width: 100%;
}

li {
  margin-left: 0.25vw;
}

body ::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}

body ::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

body ::-webkit-scrollbar-track {
  background-color: transparent;
}

.table thead th,
.table tbody td {
  vertical-align: middle;
}

.navbar {
  padding: 0vh 0vh;
  height: 40px;
}

.dropdown-item {
  color: rgba(0, 0, 0, .5);
  width: auto;
}

.dropdown-menu,
.form-control {
  font-size: 13px;
}

.nav-link {
  padding: 3px;
}

img {
  width: 30px;
  height: 30px;
}

.logo {
  padding-left: 5px;
}

.dropdown-item.active {
  color: rgba(0, 0, 0, .9);
  background-color: #f0f1f1;
}

.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

.temp-body {
  /* padding-bottom: 60px; */
  height: calc(100vh - 100px);
  overflow-y: auto;
}

.avt-sm {
  width: 25px;
  height: 25px;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.footer {
  height: 60px;
}

.footer-mobile {
  display: none;
}

.row {
  margin-left: 0px;
  margin-right: 0px;
}

#mapid {
  height: calc(100vh - 100px);
}

table {
  display: table;
  box-sizing: border-box;
  text-indent: initial;
  width: 100%;
}

thead {
  vertical-align: middle;
  background: rgb(255, 255, 255);
  top: 0px;
  position: sticky;
}

.table-container {
  height: 75vh;
  display: block;
  overflow: scroll;
  width: 100%;
}

.table-bordered,
.table-bordered td,
.table-bordered th {
  border: none;
}

.table-bordered thead th {
  border-bottom-width: 0px;
}


td,
th,
tr {
  text-align: center;
  vertical-align: middle;
}

td {
  height: 45px;
}

tbody>tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
  padding-left: 0px;
  padding-right: 0px;
}

[data-tooltip] {
  position: relative;
  cursor: help;
}

/* Tooltip styling */
[data-tooltip]:before {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  background: rgb(245, 245, 245);
  padding: 10px;
  color: #333d47;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  width: 150px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
}

/* Dynamic horizontal centering */
[data-tooltip-position="top"]:before,
[data-tooltip-position="bottom"]:before {
  left: 50%;
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* Dynamic vertical centering */
[data-tooltip-position="right"]:before,
[data-tooltip-position="left"]:before {
  top: 50%;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

[data-tooltip-position="top"]:before {
  bottom: 100%;
  margin-bottom: 6px;
}

[data-tooltip-position="top-left"]:before {
  bottom: 100%;
  right: 50%;
  margin-bottom: 6px;
}

[data-tooltip-position="top-right"]:before {
  bottom: 100%;
  left: 50%;
  margin-bottom: 6px;
}

[data-tooltip-position="bottom"]:before {
  top: 100%;
  margin-top: 6px;
}

[data-tooltip-position="bottom-left"]:before {
  top: 100%;
  right: 50%;
  margin-top: 6px;
}

[data-tooltip-position="bottom-right"]:before {
  top: 100%;
  left: 50%;
  margin-top: 6px;
}

[data-tooltip-position="right"]:before {
  left: 100%;
  margin-left: 6px;
}

[data-tooltip-position="left"]:before {
  right: 100%;
  margin-right: 6px;
}

/* Tooltip arrow styling/placement */
[data-tooltip]:after {
  content: '';
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* Dynamic horizontal centering for the tooltip */
[data-tooltip-position="top"]:after,
[data-tooltip-position="bottom"]:after {
  left: 50%;
  margin-left: -6px;
}

/* Dynamic vertical centering for the tooltip */
[data-tooltip-position="right"]:after,
[data-tooltip-position="left"]:after {
  top: 50%;
  margin-top: -6px;
}

[data-tooltip-position="top"]:after {
  bottom: 100%;
  border-width: 6px 6px 0;
  border-top-color: rgb(255, 255, 255);
}

[data-tooltip-position="right"]:after {
  left: 100%;
  border-width: 6px 6px 6px 0;
  border-right-color: rgb(255, 255, 255);
}

[data-tooltip-position="bottom"]:after {
  top: 100%;
  border-width: 0 6px 6px;
  border-bottom-color: rgb(255, 255, 255);
}

[data-tooltip-position="left"]:after {
  right: 100%;
  border-width: 6px 0 6px 6px;
  border-left-color: rgb(255, 255, 255);
}

/* Show the tooltip when hovering */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  display: block;
  z-index: 50;
}


.canvasjs-chart-credit {
  display: none;
}





@media (max-width: 992px) {
  .navbar {
    height: auto;
  }
}





.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, .8) url('http://i.stack.imgur.com/FhHRx.gif') 50% 50% no-repeat;
}

.modal.loading {
  overflow: hidden;
  display: block;
}


.add-mobile.False {
  height: 300px;
  display: none;
}

.add-mobile.True {
  height: 300px;
  display: block;
}





::-webkit-input-placeholder { /* Edge */
  color: rgb(121, 121, 121);
  font-size: 13px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgb(121, 121, 121);
  font-size: 13px;
}

::placeholder {
  color: rgb(121, 121, 121);
  font-size: 13px;
}