@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap");

select {
  width: 20em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

:root {
  --poppins: "Poppins", Arial;
  --lato: "Lato", Arial;

  --light: #f9f9f9;
  --blue: #3c91e6;
  --light-blue: #cfe8ff;
  --grey: #eee;
  --dark-grey: #aaaaaa;
  --dark: #342e37;
  --red: #db504a;
  --yellow: #ffce26;
  --light-yellow: #fff2c6;
  --orange: #fd7238;
  --light-orange: #ffe0d3;
  --green: #50db50;
  --light-green: #b5f0b5;
  --barcolor: #817faa;
}

html {
  overflow-x: hidden;
}

body.dark {
  --light: #0c0c1e;
  --grey: #060714;
  --dark: #fbfbfb;
}

body {
  background: var(--grey);
  overflow-x: hidden;
  height: 100%;
}

/* SIDEBAR */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--light);
  z-index: 2000;
  font-family: var(--lato);
  transition: 0.3s ease;
  overflow-x: hidden;
  scrollbar-width: none;
}
#sidebar::--webkit-scrollbar {
  display: none;
}
#sidebar.hide {
  width: 60px;
}
#sidebar .brand {
  font-size: 24px;
  font-weight: 700;
  height: 56px;
  display: flex;
  align-items: center;
  color: var(--blue);
  position: sticky;
  top: 0;
  left: 0;
  background: var(--light);
  z-index: 500;
  padding-bottom: 20px;
  box-sizing: content-box;
}
#sidebar .brand .bx {
  min-width: 60px;
  display: flex;
  justify-content: center;
}
#sidebar .side-menu {
  width: 100%;
  margin-top: 48px;
}
#sidebar .side-menu li {
  height: 48px;
  background: transparent;
  margin-left: 6px;
  border-radius: 48px 0 0 48px;
  padding: 4px;
}
#sidebar .side-menu li.active {
  background: var(--grey);
  position: relative;
}
#sidebar .side-menu li.active::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -40px;
  right: 0;
  box-shadow: 20px 20px 0 var(--grey);
  z-index: -1;
}
#sidebar .side-menu li.active::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: -40px;
  right: 0;
  box-shadow: 20px -20px 0 var(--grey);
  z-index: -1;
}
#sidebar .side-menu li a {
  width: 100%;
  height: 100%;
  background: var(--light);
  display: flex;
  align-items: center;
  border-radius: 48px;
  font-size: 16px;
  color: var(--dark);
  white-space: nowrap;
  overflow-x: hidden;
}
#sidebar .side-menu.top li.active a {
  color: var(--blue);
}
#sidebar.hide .side-menu li a {
  width: calc(48px - (4px * 2));
  transition: width 0.3s ease;
}
#sidebar .side-menu li a.logout {
  color: var(--red);
}
#sidebar .side-menu.top li a:hover {
  color: var(--blue);
}
#sidebar .side-menu li a .bx {
  min-width: calc(60px - ((4px + 6px) * 2));
  display: flex;
  justify-content: center;
}
/* SIDEBAR */

/* CONTENT */
#content {
  position: relative;
  width: calc(100% - 280px);
  left: 280px;
  transition: 0.3s ease;
}
#sidebar.hide ~ #content {
  width: calc(100% - 60px);
  left: 60px;
}

/* .footer{
} */

.footer p {
  font-family: var(--poppins);
  font-weight: lighter;
}

/* NAVBAR */
#content nav {
  height: 56px;
  background: var(--light);
  padding: 0 24px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
  font-family: var(--lato);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  justify-content: flex-end;
}
#content nav::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -40px;
  left: 0;
  border-radius: 50%;
  box-shadow: -20px -20px 0 var(--light);
}
#content nav a {
  color: var(--dark);
  justify-content: right;
  right: 0;
}
#content nav .bx.bx-menu {
  cursor: pointer;
  color: var(--dark);
}
#content nav .nav-link {
  font-size: 16px;
  transition: 0.3s ease;
}
#content nav .nav-link:hover {
  color: var(--blue);
}
#content nav form {
  max-width: 400px;
  width: 100%;
  margin-right: auto;
}
#content nav form .form-input {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 36px;
}
#content nav form .form-input input {
  flex-grow: 1;
  padding: 0 16px;
  height: 100%;
  border: none;
  background: var(--grey);
  /* border-radius: 36px 0 0 36px; */
  outline: none;
  width: 100%;
  color: var(--dark);
}
#content nav form .form-input button {
  width: 36px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: var(--light);
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 0 36px 36px 0;
  cursor: pointer;
}

/* #content nav .notification {
	font-size: 20px;
	position: relative;
}
#content nav .notification .num {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid var(--light);
	background: var(--red);
	color: var(--light);
	font-weight: 700;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
} */

#logo {
  right: 0;
  left: 0;
}
#content nav .profile img {
  position: relative;
  width: 110px;
  height: 24.56px;
  /* object-fit: cover; */
} /*
#content nav .switch-mode {
	display: block;
	min-width: 50px;
	height: 25px;
	border-radius: 25px;
	background: var(--grey);
	cursor: pointer;
	position: relative;
}
#content nav .switch-mode::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: calc(25px - 4px);
	background: var(--blue);
	border-radius: 50%;
	transition: all .3s ease;
}
#content nav #switch-mode:checked + .switch-mode::before {
	left: calc(100% - (25px - 4px) - 2px);
} */
/* NAVBAR */

/* MAIN */
#content main {
  width: 100%;
  height: 100%;
  padding: 36px 24px;
  font-family: var(--poppins);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}
#content main .head-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 16px;
  flex-wrap: wrap;
}
#content main .head-title .left h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
#content main .head-title .left .breadcrumb {
  display: flex;
  align-items: center;
  grid-gap: 16px;
}
#content main .head-title .left .breadcrumb li {
  color: var(--dark);
}
#content main .head-title .left .breadcrumb li a {
  color: var(--dark-grey);
  pointer-events: none;
}
#content main .head-title .left .breadcrumb li a.active {
  color: var(--blue);
  pointer-events: unset;
}
#content main .head-title .btn-download {
  height: 36px;
  padding: 0 16px;
  border-radius: 36px;
  background: var(--blue);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  font-weight: 500;
}

#content main .box-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 24px;
  margin-top: 36px;
  padding-bottom: 20px;
}
#content main .box-info li {
  padding: 24px;
  background: var(--light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
}
#content main .box-info li .bx {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content main .box-info li:nth-child(1) .bx {
  background: var(--light-blue);
  color: var(--blue);
}
#content main .box-info li:nth-child(2) .bx {
  background: var(--light-yellow);
  color: var(--yellow);
}
#content main .box-info li:nth-child(3) .bx {
  background: var(--light-orange);
  color: var(--orange);
}

#content main .box-info li:nth-child(4) .bx {
  background: var(--light-green);
  color: var(--green);
}

#content main .box-info li .text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}
#content main .box-info li .text p {
  color: var(--dark);
}

.dateinput {
  float: right;
  font-family: var(-poppins);
  text-align: center;
}

.dateinput input {
  background-color: lightblue;
  border-color: darkblue;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: center;
}

.dateinput input:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: var(--blue);
}

.imagecountchart {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 10px; /* 5px rounded corners */
  font-family: var(--lato);
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  background-color: whitesmoke;
  height: 310px;
}

/* On mouse-over, add a deeper shadow */
.imagecountchart:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.imagecountchart input {
  float: right;
  text-align: left;
  border: 2px;
  border-radius: 5px;
  border-color: black;
  font-family: var(--poppins);
}

.devicefilterchart {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 10px; /* 5px rounded corners */
  font-family: var(--lato);
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  background-color: whitesmoke;
  height: 400px;
}

/* On mouse-over, add a deeper shadow */
.devicefilterchart:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.devicefilterchart input {
  float: right;
  text-align: left;
  border: 2px;
  border-radius: 5px;
  border-color: black;
  font-family: var(--poppins);
}

.spacer {
  height: 10px;
  width: 100%;
}

.cloudprocchart {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 10px; /* 5px rounded corners */
  font-family: var(--lato);
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  background-color: whitesmoke;
  height: 800px;
}

/* On mouse-over, add a deeper shadow */
.cloudprocchart:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.cloudprocchart input {
  float: right;
  text-align: left;
  border: 2px;
  border-radius: 5px;
  border-color: black;
  font-family: var(--poppins);
}

.cloudprocwkldchart {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 10px; /* 5px rounded corners */
  font-family: var(--lato);
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  background-color: whitesmoke;
  height: 800px;
}

/* On mouse-over, add a deeper shadow */
.cloudprocwkldchart:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.cloudprocwkldchart input {
  float: right;
  text-align: left;
  border: 2px;
  border-radius: 5px;
  border-color: black;
  font-family: var(--poppins);
}

.spacer {
  height: 10px;
  width: 100%;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: none;
  border-top: none;
  width: 100%;
  /* height: 100%; */
}

.loader {
  position: relative;
  top: 300px;
  left: 0;
  /* width: 100vw;
	height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #f7f9fb; */
  transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #7449f5;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

.outermapcanvas {
  position: relative;
  height: 740px;
  /* min-height: 700px; */
  /* position:absolute;  */
  /* width:99%;
	height:98%; */
  /*	border:2px;
	border-color: solid black; */
}

#myMap {
  height: 100%;
}

.mapdateinput {
  position: relative;
  right: 0;
  z-index: 1;
}

.mapdateinput input {
  position: absolute;
  right: 0;
  background-color: lightblue;
  border-color: darkblue;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: center;
  font-family: var(-poppins);
}

.mapdateinput input:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: var(--blue);
}

.enterprisefilterlist {
  position: relative;
  left: 0;
  z-index: 1;
}

.mapfilterlist {
  display: flex;
  /* position : absolute; */
  border-style: none;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  justify-content: center;
  border: 1px;
  align-self: center;
  align-content: center;
  /* background-color: lightblue;  */
  height: 62px;
  background-image: linear-gradient(
    to right,
    rgba(238, 238, 238, 1),
    rgba(238, 238, 238, 1),
    lightblue,
    rgba(238, 238, 238, 1),
    rgba(238, 238, 238, 1)
  );
}

.filtercontainer {
  position: relative;
  width: 32px;
  height: 51px;
  float: left;
  /* background-color: lightblue;  */
  border-color: lightblue;
  border-radius: 10px;
  border: none;
}
.checkbox {
  position: absolute;
  bottom: -10px;
  right: 0px;
  left: 0px;
  /* background-color: lightblue; 
	border-color: lightblue;
	border-radius: 10px; */
  border: none;
}

@media screen and (max-width: 768px) {
  #sidebar {
    width: 200px;
  }

  #content {
    width: calc(100% - 60px);
    left: 200px;
  }

  #content nav .nav-link {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  #content nav form .form-input input {
    display: none;
  }

  #content nav form .form-input button {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: none;
    color: var(--dark);
  }

  #content nav form.show .form-input input {
    display: block;
    width: 100%;
  }
  #content nav form.show .form-input button {
    width: 36px;
    height: 100%;
    border-radius: 0 36px 36px 0;
    color: var(--light);
    background: var(--red);
  }

  #content nav form.show ~ .notification,
  #content nav form.show ~ .profile {
    display: none;
  }

  #content main .box-info {
    grid-template-columns: 1fr;
  }

  #content main .table-data .head {
    min-width: 420px;
  }
  #content main .table-data .order table {
    min-width: 420px;
  }
  #content main .table-data .todo .todo-list {
    min-width: 420px;
  }
}

.multiselect-dropdown {
  /* display: inline-block; */
  /* padding: 2px 5px 0px 5px; */
  padding-left: 5px;
  position: absolute;
  left: 0;
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");   
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;*/
  width: fit-content;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-display: inherit;
  line-height: 13px;

  background-color: lightblue;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  text-align: left;

  border-style: inset;
  border-color: darkblue;
  border-width: 2px;
}

.multiselect-dropdown:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: var(--blue);
}

.multiselect-dropdown span.optext,
.multiselect-dropdown span.placeholder {
  margin-right: 0.5em;
  margin-bottom: 2px;
  padding: 1px 0;
  border-radius: 4px;
  display: inline-block;
  border: 1px darkblue;
}

.multiselect-dropdown span.optext,
.multiselect-dropdown span.placeholder :hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: var(--blue);
}

.multiselect-dropdown span.optext {
  background-color: lightgray;
  padding: 1px 0.75em;
  background-color: lightblue;
  border-color: darkblue;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: left;
}

.multiselect-dropdown span.optext :hover {
  /* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
	/* cursor: pointer; */
  background-color: var(--blue);
}

.multiselect-dropdown span.optext .optdel {
  float: right;
  margin: 0 -6px 1px 5px;
  font-size: 0.7em;
  margin-top: 2px;
  cursor: pointer;
  color: #666;
}

.multiselect-dropdown span.optext .optdel:hover {
  color: #c66;
  /* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  cursor: pointer;
  background-color: var(--blue); */
}
.multiselect-dropdown span.placeholder {
  color: black;
}

.multiselect-dropdown span.placeholder :hover {
  color: #ced4da;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: var(--blue);
}

.multiselect-dropdown-list-wrapper {
  box-shadow: gray 0 3px 8px;
  z-index: 100;
  /* padding: 2px; */
  border-radius: 4px;
  border: solid 1px #ced4da;
  display: none;
  margin: -1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  width: max-content;
  height: 33em;;
}

.multiselect-dropdown-list-wrapper span:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: var(--blue);
}

.multiselect-dropdown-list-wrapper .multiselect-dropdown-search {
  margin-bottom: 5px;
}
.multiselect-dropdown-list {
  padding: 2px;
  height: 100%;  
  overflow-y: auto;
  overflow-x: hidden;
}
.multiselect-dropdown-list::-webkit-scrollbar {
  width: 6px;
}
.multiselect-dropdown-list::-webkit-scrollbar-thumb {
  background-color: #bec4ca;
  border-radius: 3px;
}

.multiselect-dropdown-list div {
  padding: 5px;
}
.multiselect-dropdown-list input {
  height: 1.15em;
  width: 1.15em;
  margin-right: 0.35em;
}

/* .multiselect-dropdown-list div.checked {
} */

.multiselect-dropdown-list div:hover {
  background-color: #ced4da;
}

.multiselect-dropdown span.maxselected {
  width: 100%;
  background-color: lightblue;
}

.multiselect-dropdown span.optext.maxselected {
  background-color: transparent;
}

.multiselect-dropdown span.optext.maxselected :hover {
  width: 100%;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: var(--blue);
}

.multiselect-dropdown-all-selector {
  border-bottom: solid 1px #999;
}
