html,
body,
#container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body {
  padding-top: 4em;
  font-size: 1rem;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 0;
}

#container {
  padding-top: 1em;
  font-weight: 500;
}

#sidebar {
  display: block;
  width: 20vw;
  height: 100%;
  /*max-width: 100%;*/
  transition: all 0.3s;
  float: left;
}
/* Sidebar Toggle */
#sidebar.hide {
  width: 50px;
}

#sidebar.hide #features > *:not(.panel-heading) {
  display: none;
}

#sidebar.hide .panel-heading {
  display: block;
  transform: rotate(90deg) translateX(-40px);
  width: 250px;
  transform-origin: left bottom;
}

#sidebar.hide .panel-heading h5 {
  flex-direction: row-reverse;
}

#sidebar.hide .panel-heading #sidebar-hide-btn {
  transform: rotate(90deg);
  margin-right: 10px;
}

#map {
  width: auto;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#loading {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 45%;
  left: 56.63%;
  z-index: 20001;
}
#features {
  margin: 0px;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 100%;
}
#features div.tab-content {
  height: 79%;
}

#sidebar-hide-btn {
  margin-top: -2px;
}
#aboutTabsContent {
  padding-top: 10px;
}
.progress-bar-full {
  width: 100%;
}
.white {
  color: #ffffff;
}
.panel-heading {
  width: inherit;
}
.panel-body {
  width: inherit;
}
.feature-row {
  cursor: pointer;
  width: inherit;
}
.feature-row .feature-name {
  width: 80%;
  word-break: break-all;
}
.sidebar-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.sidebar-table {
  position: relative;
  width: 100%;
  overflow: auto;
  height: 100%;
  max-height: 85%;
}

@media screen and (max-height: 660px) {
  .sidebar-table {
    max-height: 80%;
  }
}

.leaflet-control-layers {
  overflow: auto;
}
.leaflet-control-layers label {
  font-weight: normal;
  margin-bottom: 0px;
}
.leaflet-control-layers-list input[type="radio"],
input[type="checkbox"] {
  margin: 2px;
}
.table {
  margin-bottom: 0px;
}
.navbar .navbar-brand {
  font-weight: bold;
  font-size: 25px;
  color: #ffffff;
}
.navbar-collapse.in {
  overflow-y: hidden;
}
.navbar-header .navbar-icon-container {
  margin-right: 15px;
}
.navbar-header .navbar-icon {
  line-height: 50px;
  height: 50px;
}
.navbar-header a.navbar-icon {
  margin-left: 25px;
}
.typeahead {
  background-color: #ffffff;
}
.tt-dropdown-menu {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin-top: 4px;
  padding: 4px 0;
  width: 100%;
  max-height: 300px;
  overflow: auto;
}
.tt-suggestion {
  font-size: 14px;
  line-height: 20px;
  padding: 3px 10px;
}
.tt-suggestion.tt-cursor {
  background-color: #0097cf;
  color: #ffffff;
  cursor: pointer;
}
.tt-suggestion p {
  margin: 0;
}
.tt-suggestion + .tt-suggestion {
  border-top: 1px solid #ccc;
}
.typeahead-header {
  margin: 0 5px 5px 5px;
  padding: 3px 0;
  border-bottom: 2px solid #333;
}
.has-feedback .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
@media (max-width: 992px) {
  .navbar .navbar-brand {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #sidebar {
    display: none;
  }
  .url-break {
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  /*.dropdown-menu a i{*/
  /*  color: #FFFFFF;*/
  /*}*/
}
/* Print Handling */
@media print {
  .navbar {
    display: none !important;
  }
  .leaflet-control-container {
    display: none !important;
  }
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 20px;
  float: right;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input.default:checked + .slider {
  background-color: #444;
}
input.primary:checked + .slider {
  background-color: #2196f3;
}
input.success:checked + .slider {
  background-color: #8bc34a;
}
input.info:checked + .slider {
  background-color: #3de0f5;
}
input.warning:checked + .slider {
  background-color: #ffc107;
}
input.danger:checked + .slider {
  background-color: #f44336;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#filterModal .card-header {
  font-weight: bold;
}

#feature-list tbody .card ul li input {
  float: right;
  height: 17px;
  width: 17px;
  margin: 0;
}

#feature-list tbody .feature-row input {
  float: right;
  height: 15px;
  width: 15px;
  margin: 0;
  padding: 0;
}

#feature-list tbody div.card {
  /* height: 3em; */
}

#feature-list tbody div.card ul,
#feature-list tbody div.card ul li {
  height: inherit;
}

#popupDevice .modal-header,
#popupDevice .modal-body {
  padding: 0;
}

#calculateContainer {
  max-width: 83vw;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  outline: none;
  float: right;
  width: 83vw;
}

#calculateContainer.expanded {
  max-width: 100vw;
  width: 100vw;
}

#sendMessageContainer {
  max-width: 83vw;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  outline: none;
  float: right;
  width: 83vw;
}

#sendMessageContainer.expanded {
  max-width: 100vw;
  width: 100vw;
}

#dailyAttendanceContainer {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  outline: none;
  float: right;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  width: 82.5vw;
  max-width: 82.5vw;
}

#dailyAttendanceContainer.expanded {
  max-width: 100vw;
  width: 100vw;
}
.zoom-btn {
  background: black;
  color: white !important;
  width: 30px;
  height: 30px;
  box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.zoom-btn:hover {
  background-color: white !important;
  color: black !important;
}
/* #bannerTimeDiv {
  position: fixed;
  top: 73px;
  left: 50%;
  transform: translateX(-50%);
  background: #f2f2f2;
  width: unset;
  border: 1px solid #dee2e6 !important;
  border-radius: 0 0 10px 10px;
  padding: 10px;
  border-top-color: transparent !important;
}
.h-90 {
  height: calc(100% - 50px) !important;
} */
@media screen and (max-width: 1025px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .navbar-nav .nav-link {
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .daterangepicker .ranges li {
    padding: 3px;
  }
  /* #bannerTimeDiv {
    position: static;
    top: unset;
    left: unset;
    transform: initial;
    border: initial;
    border-radius: initial !important;
    padding: initial;
    border-top-color: initial;
  } */
  .zoom-btn {
    background: padding-box black;
    color: white;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #calculateContainer {
    width: 40vw;
    height: unset;
  }
  #sendMessageContainer {
    width: 40vw;
    height: unset;
  }
  #sidebar {
    width: 60vw;
  }
  #containerDashboard {
    height: inherit;
  }

  .daterangepicker {
    top: 0 !important;
    left: 0 !important;
    max-height: 100vh;
    overflow: auto;
    background: white;
  }
  .daterangepicker .drp-calendar {
    display: block !important;
  }
  .daterangepicker {
    min-width: 300px;
  }
}

#sideTab {
  width: 100%;
}

#containerDashboard {
  padding-top: 1em;
  overflow: auto;
  height: 100%;
  font-weight: 500;
}

::-webkit-scrollbar {
  display: none;
}

#logo {
  width: 49px;
  padding: 0.25rem;
}
.text-green {
  color: #34612f;
}
.dt-button .text-green {
  color: #34612f;
}
.green {
  color: #34612f;
}

.navbar {
  background-color: #f2f2f2;
  font-weight: 500;
}
.navbar-collapse .navbar-nav .nav-item .nav .nav-item .active {
  background-color: #dadada;
}
a:hover {
  color: red;
}
.btn-green {
  color: #34612f;
  border: 1px solid #34612f;
  font-weight: 500;
}
.btn-green:hover {
  color: white;
  background: #34612f;
  font-weight: 500;
}
#downloadSampleBtn {
  border-radius: 50%;
  padding: 0 0.5rem;
  vertical-align: -webkit-baseline-middle;
}
.buttons-csv {
  color: #34612f;
  border: 1px solid #34612f;
  font-weight: 500;
}

.marker-cluster-small {
  background-color: transparent;
}

#feature-list tbody .card ul li {
  position: relative;
}
#feature-list tbody .card ul li input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
}
#feature-list tbody .card ul li a {
  display: flex;
  align-items: center;
  width: calc(100% - 17px);
}
.card>.list-group>li.list-group-item a span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: calc(100% - 75px);
  display: inline-block;
}
.card>.list-group>li.list-group-item a:not(.collapsed) span,
.card>.list-group>li.list-group-item a:hover span {
  text-overflow: unset;
  overflow: visible;
  white-space: break-spaces;
  width: auto;
  display: inline-block;
}