/* stylelint-disable */

.MuiContainer-root {
  display: flex !important;
}

.main-container--center {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.MuiButtonBase-root.dropdown-button {
  height: 100%;
  color: #a0a8c5;
}
.MuiButtonBase-root.dropdown-button .navbar-item-button__text {
  padding: 0 8px;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.dropdown-list .MuiMenu-paper {
  background-color: #191919;
}

.dropdown-list .MuiPaper-rounded {
  border-radius: 0;
}

.dropdown-list .MuiMenu-list {
  padding: 0;
  width: 350px;
  max-height: 450px;
  overflow: auto;
}
.dropdown-list .MuiMenu-list li.dropdown-list__header {
  background-color: #121212;
  padding: 0;
  margin: 0;
  cursor: default;
}
.dropdown-list .MuiMenu-list li.dropdown-list__header > div {
  width: 100%;
}
.dropdown-list .MuiMenu-list li.dropdown-list__header.MuiListItem-button:hover {
  background-color: unset;
}
.dropdown-list .MuiMenu-list li:not(.dropdown-list__header) {
  color: #a0a8c5;
  background-color: #2a2a2a;
}
.dropdown-list .MuiMenu-list li:not(.dropdown-list__header) svg path {
  fill: #a0a8c5;
}

.dropdown-list li.Mui-focusVisible,
.dropdown-list li:hover:not(.dropdown-list__header) {
  background-color: #1c3663;
  color: white;
}
.dropdown-list li.Mui-focusVisible svg path,
.dropdown-list li:hover:not(.dropdown-list__header) svg path {
  fill: white;
}

.dropdown-list .MuiListItem-root.dropdown-item {
  padding: 0;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.dropdown {
  height: 100%;
}

.MuiButton-root.navbar-item-button {
  color: #a0a8c5;
}

.MuiButton-root .navbar-item-button__text {
  padding: 0 8px;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.flex-div {
  display: flex;
}
.flex-div.flex-div--full {
  width: 100%;
}
.flex-div.flex-div--half {
  width: 50%;
}
.flex-div.flex-div--column {
  flex-direction: column;
}
.flex-div.flex-div--center {
  justify-content: center;
  align-items: center;
}
.flex-div.flex-div--space-between {
  justify-content: space-between;
  align-items: center;
}
.flex-div.flex-div--bot-divider {
  border-bottom: 1px solid #a0a8c5;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.notification-content__row {
  align-items: center;
}

.MuiListItemText-root.notification-content-item {
  margin: 0;
}
.MuiListItemText-root.notification-content-item span {
  white-space: normal;
}

.notification-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: black;
  flex: 1 0 auto;
}

.noticiation-icon-type {
  margin-right: 16px;
}

.notification-icon-type--low-connection {
  background-color: #8e24aa;
}

.notification-icon-type--success {
  background-color: #348500;
}

.notification-icon-type--danger {
  background-color: #b50909;
}

.notification-icon-type--alert {
  background-color: #db8700;
}

.notification-icon-type--inactive {
  background-color: #47565e;
}

.notification-icon-type--person {
  background-color: #304ffe;
}

.notification-icon-status {
  width: 12px;
  height: 12px;
  margin-left: 16px;
  background-color: #2b6cdb;
}

.notification-icon-status--read {
  background-color: #72829e;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.users-button__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.users-button__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #2f2f2f;
  flex: 0 0 auto;
}

.users-button__info {
  color: #a0a8c5;
  padding-left: 8px;
  padding-right: 8px;
  overflow: hidden;
}
.users-button__info div {
  text-overflow: ellipsis;
  overflow: hidden;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.MuiAppBar-root.navbar--top {
  width: 100%;
  height: 64px;
  background-color: #191919;
  color: #f1f1f1;
  z-index: 500;
  display: flex;
  flex-direction: row;
}

.MuiAppBar-root .navbar__title {
  width: 430px;
  /* background-color: #2a2a2a; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.MuiAppBar-root .navbar__title a {
  color: white;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}

.MuiAppBar-root .navbar__content {
  background-color: #191919;
  max-height: 64px;
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  padding-right: 0;
}

.MuiAppBar-root .navbar__content-search {
  min-width: 430px;
  flex: 0 1 auto;
}

.MuiAppBar-root .navbar__content-search label,
.MuiAppBar-root .navbar__content-search .MuiInput-formControl {
  color: white;
}

.MuiAppBar-root .navbar__content-menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.MuiAppBar-root .navbar__content-menu > div {
  position: relative;
  padding: 0 8px;
}
.MuiAppBar-root .navbar__content-menu > div:after {
  content: "";
  width: 1px;
  background-color: #a0a8c5;
  position: absolute;
  right: 0;
  top: 15px;
  bottom: 15px;
}
.MuiAppBar-root .navbar__content-menu > div:first-child {
  padding-left: 0;
}
.MuiAppBar-root .navbar__content-menu > div:last-child {
  padding-right: 0;
}
.MuiAppBar-root .navbar__content-menu > div:last-child:after {
  content: none;
}
.MuiAppBar-root
  .navbar__content-menu
  .MuiButtonBase-root.dropdown-button
  .dropdown-button__principal-icon {
  width: 2rem;
  height: 2rem;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.expandable-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: #1e1e1e;
  color: #a0a8c5;
  overflow: hidden;
  transition: width 240ms ease-in-out;
}

.expandable-panel--left--level-1 {
  left: 50px;
  z-index: 2;
  box-shadow: 3px 0px 4px rgba(0, 0, 0, 0.3);
}

.expandable-panel--left--level-2 {
  left: 430px;
  background-color: #1e1e1e;
  z-index: 1;
}

.expandable-panel--open {
  width: 380px;
}

.expandable-panel__title {
  background: #2b6cdb;
  color: #a0a8c5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.expandable-panel__title svg path {
  fill: white;
}
.expandable-panel__title .expandable-panel__title-text {
  flex: 1 1 auto;
  padding-left: 16px;
  color: white;
}
.expandable-panel__title .expandable-panel__close-btn {
  flex: 0 1 auto;
}

.expandable-panel__content {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 380px;
  display: flex;
  flex-direction: column;
  max-height: 100%;
}

.expandable-panel__actions__button.MuiIconButton-root {
  color: #a0a8c5;
  margin-right: -8px;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.MuiAppBar-root.navbar--lateral {
  background-color: #191919;
  color: #f1f1f1;
  z-index: 500;
  height: 100%;
  width: 50px;
}
.MuiAppBar-root.navbar--lateral .navbar__icon-button {
  width: 50px;
  height: 53px;
  border-radius: 0;
  padding: 0;
}
.MuiAppBar-root.navbar--lateral
  .navbar__icon-button.navbar__icon-button--selected,
.MuiAppBar-root.navbar--lateral .navbar__icon-button:focus,
.MuiAppBar-root.navbar--lateral .navbar__icon-button:hover {
  background-color: #232323;
}
.MuiAppBar-root.navbar--lateral .navbar__icon-button svg {
  width: 2rem;
  height: 2rem;
}
.MuiAppBar-root.navbar--lateral .navbar__icon-button svg path:last-child {
  fill: #7f7f7f;
}
.MuiAppBar-root.navbar--lateral > div {
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.structure {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  height: 100vh;
  overflow: hidden;
}

.structure__body {
  display: flex;
}
.structure__body.structure__body--internal-scroll {
  height: calc(100vh - 50px);
  /*z-index: 1299;*/
}

.structure__main {
  /* overflow: auto; */
  width: 100%;
}

.structure__navigation {
  position: relative;
  width: 50px;
  z-index: 500;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.styled-select__wrapper {
  height: 100%;
}
.styled-select__wrapper.form-control {
  background-color: unset;
}
.styled-select__wrapper.text-color--white label,
.styled-select__wrapper.text-color--white select,
.styled-select__wrapper.text-color--white .MuiInputBase-inputSelect {
  color: #a0a8c5 !important;
}
.styled-select__wrapper .MuiSvgIcon-root path:last-child {
  fill: #a0a8c5;
}

.styled-select__menu--lateral-panel.dropdown-list .MuiMenu-list {
  width: 380px;
}

.styled-select__menu--lateral-panel.dropdown-list .MuiMenuItem-root {
  padding-top: 12px;
  padding-bottom: 12px;
}
.styled-select__menu--lateral-panel.dropdown-list
  .MuiMenuItem-root:not(:last-child) {
  border-bottom: 1px solid #a0a8c5;
}

.styled-select__menu--lateral-panel.dropdown-list.styled-select__menu--depth-1
  .MuiMenu-paper {
  left: 50px !important;
}

.styled-select__menu--lateral-panel.dropdown-list.styled-select__menu--depth-2
  .MuiMenu-paper {
  left: 430px !important;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.MuiPickersBasePicker-pickerView {
  background: #2f2f2f;
}
.MuiPickersBasePicker-pickerView .MuiTypography-root {
  color: #f1f1f1;
}
.MuiPickersBasePicker-pickerView .MuiButtonBase-root:hover {
  background: #1e1e1e;
}
.MuiPickersBasePicker-pickerView
  .MuiPickersCalendarHeader-switchHeader
  .MuiButtonBase-root {
  background: #2f2f2f;
  color: #f1f1f1;
}
.MuiPickersBasePicker-pickerView
  .MuiPickersCalendarHeader-switchHeader
  .MuiButtonBase-root:hover {
  background: #1e1e1e;
}

.MuiDialogActions-root {
  background: #2f2f2f;
}
.MuiDialogActions-root .MuiButtonBase-root {
  background: #2f2f2f;
  color: #f1f1f1;
}
.MuiDialogActions-root .MuiButtonBase-root:hover {
  background: #1e1e1e;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.login-container {
  padding: 15px 35px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-around;
  width: 335px;
  height: 615px;
}
.login-container img {
  width: 100%;
}
.login-container.MuiPaper-root {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}
.login-container label + .MuiInput-formControl {
  margin-top: 24px;
}
.login-container .MuiFormLabel-root {
  color: #7f7f7f;
}
.login-container .MuiFormLabel-root.Mui-focused {
  color: white;
}
.login-container .MuiInputBase-root {
  background-color: white;
  padding: 8px;
}

.login__form {
  text-align: center;
  padding-bottom: 20px;
}

.login-container__submit {
  padding-top: 28px;
  width: 100%;
}

.login-container__link {
  text-align: center;
  color: #7f7f7f;
  text-decoration: none;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.notification .MuiSnackbar-anchorOriginTopCenter {
  top: 70px;
}

.notification .notification-message--success .MuiSnackbarContent-root {
  background-color: #348500;
}

.notification .notification-message--danger .MuiSnackbarContent-root {
  background-color: #b50909;
}

.notification .notification-message--alert .MuiSnackbarContent-root {
  background-color: #db8700;
}

.notification .notification-message--info .MuiSnackbarContent-root {
  background-color: #304ffe;
}

@media (min-width: 600px) {
  .notification .MuiSnackbar-anchorOriginTopCenter {
    top: 70px;
  }
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.tab-panel__content {
  max-height: 100%;
  /* overflow: auto; */
  position: relative;
}
.tab-panel__content > div {
  /* overflow: auto; */
  /* overflow: hidden; */
  flex: 1 1 auto;
  max-height: calc(100% - 3rem);
  margin-top: 3rem;
}

.MuiAppBar-positionStatic.tab-panel__content-subtitle {
  background-color: #265ab3;
  padding: 12px;
  height: 3rem;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.expandable-panel__info-block--dark {
  background-color: #121212;
}

.expandable-panel__info-block .expandable-panel__info-block-content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}

.expandable-panel__info-block .form-control label,
.expandable-panel__info-block .form-control .MuiInput-input {
  color: #a0a8c5;
}

.expandable-panel__actions-block {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
}

.expandable-panel__tabs-item {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.expandable-panel__actions-block .form-control {
  flex: 1 1 auto;
}

.expandable-panel__actions-block > div:first-child {
  padding-right: 10px;
}

.period-select {
  position: relative;
}

/* .period-select__custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
} */

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.expandable-panel__actions-block .period-select {
  display: flex;
  flex: 1 1 auto;
}

.expandable-panel__actions-block .extra-filter {
  margin: 0;
  flex: 0 1 auto;
  width: 95px;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.custom-expansion-panel
  .MuiSvgIcon-root.custom-expansion-panel__expand-icon
  path {
  fill: #a0a8c5;
}

.custom-expansion-panel .MuiExpansionPanel-root {
  background-color: #121212;
  color: #7f7f7f;
}
.custom-expansion-panel .MuiExpansionPanel-root .MuiExpansionPanelSummary-root,
.custom-expansion-panel .MuiExpansionPanel-root .MuiExpansionPanelDetails-root {
  padding-left: 16px;
  padding-right: 16px;
}

.custom-expansion-panel .MuiExpansionPanel-root.Mui-expanded {
  margin: 0;
}

.custom-expansion-panel .MuiExpansionPanelSummary-content.Mui-expanded {
  margin: 12px 0;
}

.custom-expansion-panel .MuiExpansionPanel-rounded {
  border-radius: 0 !important;
  border-bottom: none;
  box-shadow: none;
  border-bottom: 1px solid #a0a8c5;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.marker-info__notifications .MuiSvgIcon-root.marker-info__notification-icon {
  padding-top: 8px;
  width: 2rem;
  height: 2rem;
}
.marker-info__notifications
  .MuiSvgIcon-root.marker-info__notification-icon
  path {
  fill: #db8700;
}

.marker-info__notifications .MuiSvgIcon-root.marker-info__expand-icon path {
  fill: #a0a8c5;
}

.marker-info__notifications
  .MuiSvgIcon-root.marker-info__notification-icon--read
  path {
  fill: #47565e;
}

.marker-info__notifications .marker-info__notification-description {
  padding-left: 8px;
}

.marker-info__notifications .marker-info__notificaiton-summary {
  color: #a0a8c5;
}

.marker-info__notifications .marker-info__notification-details {
  padding: 0 30px 0 40px;
}

.marker-info__notifications .MuiExpansionPanel-root {
  background-color: #1e1e1e;
  color: #7f7f7f;
}
.marker-info__notifications
  .MuiExpansionPanel-root
  .MuiExpansionPanelSummary-root,
.marker-info__notifications
  .MuiExpansionPanel-root
  .MuiExpansionPanelDetails-root {
  padding-left: 8px;
  padding-right: 8px;
  overflow: hidden;
}

.marker-info__notifications .MuiExpansionPanel-root.Mui-expanded {
  margin: 0;
}

.marker-info__notifications .MuiExpansionPanelSummary-content.Mui-expanded {
  margin: 12px 0;
}

.marker-info__notifications .MuiExpansionPanel-rounded {
  border-radius: 0 !important;
  border-bottom: none;
  box-shadow: none;
  border-bottom: 1px solid #a0a8c5;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.marker-info__revisions-icon--danger path {
  fill: #b50909;
}

.marker-info__revisions-icon--alert path {
  fill: #db8700;
}

.marker-info__revisions-icon--success path {
  fill: #348500;
}

.marker-info__revisions-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.marker-info__revisions-summary {
  flex: 1 1 auto;
  justify-self: flex-start;
  padding: 0 8px;
}

.marker-info__revisions-date {
  flex: 0;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.marker-info__revisions-icon--danger path {
  fill: #b50909;
}

.marker-info__revisions-icon--alert path {
  fill: #db8700;
}

.marker-info__revisions-icon--success path {
  fill: #348500;
}

.marker-info__revisions-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.marker-info__revisions-summary {
  flex: 1 1 auto;
  justify-self: flex-start;
  padding: 0 8px;
}

.marker-info__revisions-date {
  flex: 0;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.MuiAppBar-root.expandable-panel__tabs {
  background: #2b6cdb;
}
.MuiAppBar-root.expandable-panel__tabs .MuiTab-root {
  min-width: auto;
  flex: 1 1 auto;
}
.MuiAppBar-root.expandable-panel__tabs .MuiButtonBase-root {
  background-color: #1c3663;
}
.MuiAppBar-root.expandable-panel__tabs .MuiButtonBase-root.Mui-selected {
  background-color: #265ab3;
}
.MuiAppBar-root.expandable-panel__tabs .MuiTabs-indicator {
  display: none;
}

.expandable-panel__content-wrapper {
  flex: 1 1 auto;
  /* overflow: auto; */
  display: flex;
  flex-direction: column;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.marker-info__extra-content__image-wrapper {
  height: 215px;
  width: 100%;
  background-color: #1e1e1e;
  position: relative;
  overflow: hidden;
}

.marker-info__extra-content__driver {
  padding: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marker-info__driver__image-wrapper {
  width: 120px;
  height: 120px;
  background-color: #1e1e1e;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.marker-info__driver__info {
  padding-left: 8px;
}

.marker-info__driver__label {
  font-weight: bolder;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.panel-form {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Google autofill replacement */
}
.panel-form hr {
  width: 100%;
  margin: 0 0 24px;
  color: #a0a8c5;
}
.panel-form .panel-form__inline-group > div:not(:last-child) {
  padding-right: 16px;
}
.panel-form .MuiFormControl-root {
  width: 100%;
}
.panel-form .MuiFormControl-root,
.panel-form .MuiIconButton-root {
  padding-bottom: 32px;
}
.panel-form .MuiFormLabel-root,
.panel-form .MuiFormControl-root,
.panel-form .MuiFormControl-root input {
  color: #a0a8c5 !important;
}
.panel-form .MuiInputBase-input {
  background-color: #2f2f2f;
  padding: 12px 8px;
}
.panel-form .MuiFormLabel-root {
  /*
         * Label is transformed to be 75% of the original size so we add a 25%
         * more space to the right to allow it to be a one line text.
         */
  right: -25%;
}
.panel-form label + .MuiInput-formControl {
  margin-top: 24px;
}
.panel-form input:-webkit-autofill,
.panel-form input:-webkit-autofill:hover,
.panel-form input:-webkit-autofill:focus,
.panel-form input:-webkit-autofill:active {
  -webkit-text-fill-color: #a0a8c5 !important;
  -webkit-box-shadow: 0 0 0 30px #2f2f2f inset !important;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.panel-form__inline-group
  .marker-info__revisions-extra__small-input.MuiFormControl-root {
  width: 40%;
}

.panel-form__inline-group
  .MuiIconButton-root.marker-info__revisions-extra__action {
  color: #a0a8c5;
  margin-right: -12px;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/

/*.leaflet-control-layers .leaflet-control-layers-toggle {
  display: none;
}*/
/*
.leaflet-control-layers .leaflet-control-layers-list {
  bottom: 0;
  display: block;
  opacity: 1;
  position: absolute;
  right: 0;
  transition: all 1s ease-in-out;
}*/
/*.leaflet-control-layers .leaflet-control-layers-list label {*/
/* Agrego la siguiente linea para adaptar el icono de los cuadraditos que muestran los layer y se vea la imagen centrada */
/*display: contents;
  padding-top: 12px;
  cursor: pointer;
}*/
/*.leaflet-control-layers .leaflet-control-layers-list label div {*/
/*Agrego la siguiente linea para hacer transparentes los cuadraditos que muestran los layer y se vea la imagen seteada*/
/*background: transparent !important;
  border-radius: 4px;
  border: 2px solid #2a2a2a;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  height: 40px;
  width: 40px;
}*/
/*.leaflet-control-layers .leaflet-control-layers-list label div input {
  opacity: 0;
}
.leaflet-control-layers .leaflet-control-layers-list label div span {
  left: -9999999999999999px;
  position: absolute;
}
.leaflet-control-layers
  .leaflet-control-layers-list
  .leaflet-control-layers-base__div--selected {
  border: 4px solid #348500;
}

.leaflet-control-layers.leaflet-control-layers-expanded {
  padding: 0;
}*/

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
/* .marker-popup { */
/* Variants */
/* } */
/* .marker-popup.marker-popup {
  left: 0 !important;
} */
.marker-popup .leaflet-popup-content-wrapper,
.marker-popup .leaflet-popup-tip {
  background-color: #191919;
  color: white;
}
.marker-popup .leaflet-popup-content-wrapper {
  border-radius: 0;
  padding: 0;
}
.marker-popup .leaflet-popup-tip-container {
  left: 0;
  margin-left: 0;
  width: 20px;
}
.marker-popup .leaflet-popup-tip-container .leaflet-popup-tip {
  width: 20px;
  height: 20px;
  margin: -10px;
  padding: 0;
}
.marker-popup .leaflet-popup-close-button {
  display: none;
}
.marker-popup.marker-popup--low-connection .leaflet-popup-tip {
  background-color: #8e24aa;
}
.marker-popup.marker-popup--success .leaflet-popup-tip {
  background-color: #348500;
}
.marker-popup.marker-popup--danger .leaflet-popup-tip {
  background-color: #b50909;
}
.marker-popup.marker-popup--alert .leaflet-popup-tip {
  background-color: #db8700;
}
.marker-popup.marker-popup--inactive .leaflet-popup-tip {
  background-color: #47565e;
}
.marker-popup.marker-popup--person .leaflet-popup-tip {
  background-color: #304ffe;
}
.marker-popup.marker-popup--generic .leaflet-popup-tip {
  background-color: #121212;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.marker-popup--navigation .leaflet-popup-content {
  margin: 0;
}

.marker-popup--navigation .leaflet-popup-content-wrapper {
  background: none;
}

.marker-popup--navigation .marker-popup__row {
  display: flex;
}
.marker-popup--navigation .marker-popup__row:not(:last-child) {
  border-bottom: 2px solid #121212;
}

.marker-popup--navigation .marker-popup__row--dark {
  background-color: #121212;
}

.marker-popup--navigation .marker-popup__row__item {
  display: flex;
  flex: 1 0 auto;
  width: 50%;
}
.marker-popup--navigation .marker-popup__row__item:not(:last-child) {
  border-right: 1px solid #7f7f7f;
}
.marker-popup--navigation .marker-popup__row__item svg {
  align-self: flex-start;
}

.marker-popup--navigation .marker-popup__row__item--3 .marker-popup__row__item {
  width: 33.33%;
}

.marker-popup--navigation .marker-popup__row__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.marker-popup--navigation .marker-popup__content--extended {
  background-color: #2f2f2f;
  margin-bottom: 2px;
  border-radius: 8px 8px 0 0;
}
.marker-popup--navigation .marker-popup__content--extended .marker-popup__row {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.marker-popup--navigation .marker-popup__content-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7f7f7f;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.marker-popup--navigation .marker-popup__content-icon:focus {
  outline: none;
}
.marker-popup--navigation .marker-popup__content-icon svg {
  width: 100%;
  height: 100%;
}
.marker-popup--navigation .marker-popup__content-icon--low-connection {
  background-color: #8e24aa;
}
.marker-popup--navigation .marker-popup__content-icon--low-connection path {
  fill: #d2a7dd;
}
.marker-popup--navigation .marker-popup__content-icon--success {
  background-color: #348500;
}
.marker-popup--navigation .marker-popup__content-icon--success path {
  fill: #aece99;
}
.marker-popup--navigation .marker-popup__content-icon--danger {
  background-color: #b50909;
}
.marker-popup--navigation .marker-popup__content-icon--danger path {
  fill: #e19d9d;
}
.marker-popup--navigation .marker-popup__content-icon--alert {
  background-color: #db8700;
}
.marker-popup--navigation .marker-popup__content-icon--alert path {
  fill: #f1cf99;
}
.marker-popup--navigation .marker-popup__content-icon--inactive {
  background-color: #47565e;
}
.marker-popup--navigation .marker-popup__content-icon--inactive path {
  fill: #b5bbbf;
}
.marker-popup--navigation .marker-popup__content-icon--person {
  background-color: #304ffe;
}
.marker-popup--navigation .marker-popup__content-icon--person path {
  fill: #acb9ff;
}

.marker-popup--navigation .marker-popup__content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #a0a8c5;
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.marker-popup--navigation .marker-popup__content-text:not(:last-child) {
  border-right: 1px solid #7f7f7f;
}

.marker-popup--navigation .marker-popup__content-text__title {
  font-size: 11px;
  line-height: 15px;
  text-transform: capitalize;
}

.marker-popup--navigation .marker-popup__content-text__info {
  white-space: break-spaces;
}

.marker-popup--navigation .marker-popup__driver-icon {
  background: white;
  border-radius: 50%;
  fill: #348500;
}

@-webkit-keyframes slideUpPanel {
  0% {
    max-height: 0;
    opacity: 0;
  }
  99% {
    max-height: 250px;
    overflow: hidden;
    opacity: 1;
  }
  100% {
    max-height: 250px;
    overflow: visible;
    opacity: 1;
  }
}

@keyframes slideUpPanel {
  0% {
    max-height: 0;
    opacity: 0;
  }
  99% {
    max-height: 250px;
    overflow: hidden;
    opacity: 1;
  }
  100% {
    max-height: 250px;
    overflow: visible;
    opacity: 1;
  }
}

.marker-popup--navigation-open {
  z-index: 2;
}
.marker-popup--navigation-open .leaflet-popup-content {
  width: 100% !important;
}
.marker-popup--navigation-open .marker-popup__content--extended {
  overflow: hidden;
  -webkit-animation: slideUpPanel 240ms ease-in-out;
  animation: slideUpPanel 240ms ease-in-out;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.marker .navigation-svg__drawing {
  fill: white;
}

.marker.marker--low-connection svg .navigation-svg__drawing {
  fill: #d2a7dd;
}

.marker.marker--low-connection svg .navigation-svg__circle {
  fill: #8e24aa;
}

.marker.marker--success svg .navigation-svg__drawing {
  fill: #aece99;
}

.marker.marker--success svg .navigation-svg__circle {
  fill: #348500;
}

.marker.marker--danger svg .navigation-svg__drawing {
  fill: #e19d9d;
}

.marker.marker--danger svg .navigation-svg__circle {
  fill: #b50909;
}

.marker.marker--alert svg .navigation-svg__drawing {
  fill: #f1cf99;
}

.marker.marker--alert svg .navigation-svg__circle {
  fill: #db8700;
}

.marker.marker--inactive svg .navigation-svg__drawing {
  fill: #b5bbbf;
}

.marker.marker--inactive svg .navigation-svg__circle {
  fill: #47565e;
}

.marker.marker--person svg .navigation-svg__drawing {
  fill: #acb9ff;
}

.marker.marker--person svg .navigation-svg__circle {
  fill: #304ffe;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.marker-cluster--colors-alert-danger .cluster-marker-svg__background,
.marker-cluster--colors-alert-inactive .cluster-marker-svg__background,
.marker-cluster--colors-alert-low-connection .cluster-marker-svg__background,
.marker-cluster--colors-alert-person .cluster-marker-svg__background,
.marker-cluster--colors-alert-success .cluster-marker-svg__background,
.marker-cluster--colors-danger-inactive .cluster-marker-svg__background,
.marker-cluster--colors-danger-low-connection .cluster-marker-svg__background,
.marker-cluster--colors-danger-inactive-person .cluster-marker-svg__background,
.marker-cluster--colors-danger-success .cluster-marker-svg__background,
.marker-cluster--colors-inactive-low-connection .cluster-marker-svg__background,
.marker-cluster--colors-inactive-person .cluster-marker-svg__background,
.marker-cluster--colors-inactive-success .cluster-marker-svg__background,
.marker-cluster--colors-low-connection-person .cluster-marker-svg__background,
.marker-cluster--colors-low-connection-success .cluster-marker-svg__background,
.marker-cluster--colors-person-success .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-inactive .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-low-connection
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-person .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-success .cluster-marker-svg__background,
.marker-cluster--colors-alert-inactive-low-connection
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-inactive-person .cluster-marker-svg__background,
.marker-cluster--colors-alert-inactive-success .cluster-marker-svg__background,
.marker-cluster--colors-alert-low-connection-person
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-low-connection-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-person-success .cluster-marker-svg__background,
.marker-cluster--colors-danger-inactive-low-connection
  .cluster-marker-svg__background,
.marker-cluster--colors-danger-inactive-success .cluster-marker-svg__background,
.marker-cluster--colors-inactive-low-connection-person
  .cluster-marker-svg__background,
.marker-cluster--colors-inactive-low-connection-success
  .cluster-marker-svg__background,
.marker-cluster--colors-inactive-person-success .cluster-marker-svg__background,
.marker-cluster--colors-low-connection-person-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-inactive-low-connection
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-inactive-person
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-inactive-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-low-connection-person
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-low-connection-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-person-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-inactive-low-connection-person
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-inactive-low-connection-success
  .cluster-marker-svg__background,
.marker-cluster--colors-danger-inactive-low-connection-person
  .cluster-marker-svg__background,
.marker-cluster--colors-danger-inactive-low-connection-success
  .cluster-marker-svg__background,
.marker-cluster--colors-inactive-low-connection-person-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-inactive-low-connection-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-inactive-low-connection-person
  .cluster-marker-svg__background,
.marker-cluster--colors-danger-inactive-low-connection-person-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-low-connection-person-success
  .cluster-marker-svg__background,
.marker-cluster--colors-alert-danger-inactive-low-connection-person-success
  .cluster-marker-svg__background {
  fill: transparent !important;
}

.marker-cluster--colors-alert-danger:after,
.marker-cluster--colors-alert-inactive:after,
.marker-cluster--colors-alert-low-connection:after,
.marker-cluster--colors-alert-person:after,
.marker-cluster--colors-alert-success:after,
.marker-cluster--colors-danger-inactive:after,
.marker-cluster--colors-danger-low-connection:after,
.marker-cluster--colors-danger-inactive-person:after,
.marker-cluster--colors-danger-success:after,
.marker-cluster--colors-inactive-low-connection:after,
.marker-cluster--colors-inactive-person:after,
.marker-cluster--colors-inactive-success:after,
.marker-cluster--colors-low-connection-person:after,
.marker-cluster--colors-low-connection-success:after,
.marker-cluster--colors-person-success:after,
.marker-cluster--colors-alert-danger-inactive:before,
.marker-cluster--colors-alert-danger-inactive:after,
.marker-cluster--colors-alert-danger-low-connection:before,
.marker-cluster--colors-alert-danger-low-connection:after,
.marker-cluster--colors-alert-danger-person:before,
.marker-cluster--colors-alert-danger-person:after,
.marker-cluster--colors-alert-danger-success:before,
.marker-cluster--colors-alert-danger-success:after,
.marker-cluster--colors-alert-inactive-low-connection:before,
.marker-cluster--colors-alert-inactive-low-connection:after,
.marker-cluster--colors-alert-inactive-person:before,
.marker-cluster--colors-alert-inactive-person:after,
.marker-cluster--colors-alert-inactive-success:before,
.marker-cluster--colors-alert-inactive-success:after,
.marker-cluster--colors-alert-low-connection-person:before,
.marker-cluster--colors-alert-low-connection-person:after,
.marker-cluster--colors-alert-low-connection-success:before,
.marker-cluster--colors-alert-low-connection-success:after,
.marker-cluster--colors-alert-person-success:before,
.marker-cluster--colors-alert-person-success:after,
.marker-cluster--colors-danger-inactive-low-connection:before,
.marker-cluster--colors-danger-inactive-low-connection:after,
.marker-cluster--colors-danger-inactive-person:before,
.marker-cluster--colors-danger-inactive-success:before,
.marker-cluster--colors-danger-inactive-success:after,
.marker-cluster--colors-inactive-low-connection-person:before,
.marker-cluster--colors-inactive-low-connection-person:after,
.marker-cluster--colors-inactive-low-connection-success:before,
.marker-cluster--colors-inactive-low-connection-success:after,
.marker-cluster--colors-inactive-person-success:before,
.marker-cluster--colors-inactive-person-success:after,
.marker-cluster--colors-low-connection-person-success:before,
.marker-cluster--colors-low-connection-person-success:after,
.marker-cluster--colors-alert-danger-inactive-low-connection:before,
.marker-cluster--colors-alert-danger-inactive-low-connection:after,
.marker-cluster--colors-alert-danger-inactive-low-connection
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-inactive-person:before,
.marker-cluster--colors-alert-danger-inactive-person:after,
.marker-cluster--colors-alert-danger-inactive-person
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-inactive-success:before,
.marker-cluster--colors-alert-danger-inactive-success:after,
.marker-cluster--colors-alert-danger-inactive-success
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-low-connection-person:before,
.marker-cluster--colors-alert-danger-low-connection-person:after,
.marker-cluster--colors-alert-danger-low-connection-person
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-low-connection-success:before,
.marker-cluster--colors-alert-danger-low-connection-success:after,
.marker-cluster--colors-alert-danger-low-connection-success
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-person-success:before,
.marker-cluster--colors-alert-danger-person-success:after,
.marker-cluster--colors-alert-danger-person-success
  .marker-cluster__count:before,
.marker-cluster--colors-alert-inactive-low-connection-person:before,
.marker-cluster--colors-alert-inactive-low-connection-person:after,
.marker-cluster--colors-alert-inactive-low-connection-person
  .marker-cluster__count:before,
.marker-cluster--colors-alert-inactive-low-connection-success:before,
.marker-cluster--colors-alert-inactive-low-connection-success:after,
.marker-cluster--colors-alert-inactive-low-connection-success
  .marker-cluster__count:before,
.marker-cluster--colors-danger-inactive-low-connection-person:before,
.marker-cluster--colors-danger-inactive-low-connection-person:after,
.marker-cluster--colors-danger-inactive-low-connection-person
  .marker-cluster__count:before,
.marker-cluster--colors-danger-inactive-low-connection-success:before,
.marker-cluster--colors-danger-inactive-low-connection-success:after,
.marker-cluster--colors-danger-inactive-low-connection-success
  .marker-cluster__count:before,
.marker-cluster--colors-inactive-low-connection-person-success:before,
.marker-cluster--colors-inactive-low-connection-person-success:after,
.marker-cluster--colors-inactive-low-connection-person-success
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-inactive-low-connection-success:before,
.marker-cluster--colors-alert-danger-inactive-low-connection-success:after,
.marker-cluster--colors-alert-danger-inactive-low-connection-success
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-inactive-low-connection-person:before,
.marker-cluster--colors-alert-danger-inactive-low-connection-person:after,
.marker-cluster--colors-alert-danger-inactive-low-connection-person
  .marker-cluster__count:before,
.marker-cluster--colors-danger-inactive-low-connection-person-success:before,
.marker-cluster--colors-danger-inactive-low-connection-person-success:after,
.marker-cluster--colors-danger-inactive-low-connection-person-success
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-low-connection-person-success:before,
.marker-cluster--colors-alert-danger-low-connection-person-success:after,
.marker-cluster--colors-alert-danger-low-connection-person-success
  .marker-cluster__count:before,
.marker-cluster--colors-alert-danger-inactive-low-connection-person-success:before,
.marker-cluster--colors-alert-danger-inactive-low-connection-person-success:after,
.marker-cluster--colors-alert-danger-inactive-low-connection-person-success
  .marker-cluster__count:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.marker-cluster {
  /* position: relative; */
  border-radius: 40px;
}
.marker-cluster svg {
  position: absolute;
  z-index: auto;
  width: 80px;
  height: 80px;
}
.marker-cluster .marker-cluster__count {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
}

.marker-cluster--colors-alert .cluster-marker-svg__background {
  fill: #db8700 !important;
}

.marker-cluster--colors-danger .cluster-marker-svg__background {
  fill: #b50909 !important;
}

.marker-cluster--colors-success .cluster-marker-svg__background {
  fill: #348500 !important;
}

.marker-cluster--colors-low-connection .cluster-marker-svg__background {
  fill: #8e24aa !important;
}

.marker-cluster--colors-person .cluster-marker-svg__background {
  fill: blue !important;
}

/* TWO COLOR CLUSTERS */
.marker-cluster--colors-alert-danger {
  /* Fallback for non conic-gradient browsers */
  background-color: #db8700;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger:after {
  left: 50%;
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger {
    background: conic-gradient(#db8700 50%, #b50909 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-alert-danger:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-inactive {
  /* Fallback for non conic-gradient browsers */
  background-color: #db8700;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-inactive:after {
  left: 50%;
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-inactive {
    background: conic-gradient(#db8700 50%, #47565e 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-alert-inactive:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-low-connection {
  /* Fallback for non conic-gradient browsers */
  background-color: #db8700;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-low-connection:after {
  left: 50%;
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-low-connection {
    background: conic-gradient(#db8700 50%, #8e24aa 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-alert-low-connection:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #db8700;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-person:after {
  left: 50%;
  background-color: #304ffe;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-person {
    background: conic-gradient(#db8700 50%, #304ffe 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-alert-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #db8700;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-success:after {
  left: 50%;
  background-color: #348500;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-success {
    background: conic-gradient(#db8700 50%, #348500 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-alert-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-danger-inactive {
  /* Fallback for non conic-gradient browsers */
  background-color: #b50909;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-inactive:after {
  left: 50%;
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive {
    background: conic-gradient(#b50909 50%, #47565e 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-danger-inactive:after {
    content: none !important;
  }
}

.marker-cluster--colors-danger-low-connection {
  /* Fallback for non conic-gradient browsers */
  background-color: #b50909;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-low-connection:after {
  left: 50%;
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-low-connection {
    background: conic-gradient(#b50909 50%, #8e24aa 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-danger-low-connection:after {
    content: none !important;
  }
}

.marker-cluster--colors-danger-inactive-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #b50909;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-inactive-person:after {
  left: 50%;
  background-color: #304ffe;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-person {
    background: conic-gradient(#b50909 50%, #304ffe 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-danger-inactive-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-danger-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #b50909;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-success:after {
  left: 50%;
  background-color: #348500;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-success {
    background: conic-gradient(#b50909 50%, #348500 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-danger-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-inactive-low-connection {
  /* Fallback for non conic-gradient browsers */
  background-color: #47565e;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-inactive-low-connection:after {
  left: 50%;
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-inactive-low-connection {
    background: conic-gradient(#47565e 50%, #8e24aa 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-inactive-low-connection:after {
    content: none !important;
  }
}

.marker-cluster--colors-inactive-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #47565e;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-inactive-person:after {
  left: 50%;
  background-color: #304ffe;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-inactive-person {
    background: conic-gradient(#47565e 50%, #304ffe 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-inactive-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-inactive-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #47565e;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-inactive-success:after {
  left: 50%;
  background-color: #348500;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-inactive-success {
    background: conic-gradient(#47565e 50%, #348500 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-inactive-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-low-connection-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #8e24aa;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-low-connection-person:after {
  left: 50%;
  background-color: #304ffe;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-low-connection-person {
    background: conic-gradient(#8e24aa 50%, #304ffe 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-low-connection-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-low-connection-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #8e24aa;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-low-connection-success:after {
  left: 50%;
  background-color: #348500;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-low-connection-success {
    background: conic-gradient(#8e24aa 50%, #348500 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-low-connection-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-person-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-person-success:after {
  left: 50%;
  background-color: #348500;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-person-success {
    background: conic-gradient(#304ffe 50%, #348500 0);
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
  }
  .marker-cluster--colors-person-success:after {
    content: none !important;
  }
}

/* THREE COLOR CLUSTERS */
.marker-cluster--colors-alert-danger-inactive {
  /* Fallback for non conic-gradient browsers */
  background-color: #47565e;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-inactive:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-inactive:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #b50909 0 66%, #47565e 0);
  }
  .marker-cluster--colors-alert-danger-inactive:before,
  .marker-cluster--colors-alert-danger-inactive:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-low-connection {
  /* Fallback for non conic-gradient browsers */
  background-color: #8e24aa;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-low-connection:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-low-connection:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-low-connection {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #b50909 0 66%, #8e24aa 0);
  }
  .marker-cluster--colors-alert-danger-low-connection:before,
  .marker-cluster--colors-alert-danger-low-connection:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-person:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-person:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #b50909 0 66%, #304ffe 0);
  }
  .marker-cluster--colors-alert-danger-person:before,
  .marker-cluster--colors-alert-danger-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-success:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #b50909 0 66%, #348500 0);
  }
  .marker-cluster--colors-alert-danger-success:before,
  .marker-cluster--colors-alert-danger-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-inactive-low-connection {
  /* Fallback for non conic-gradient browsers */
  background-color: #8e24aa;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-inactive-low-connection:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-inactive-low-connection:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-inactive-low-connection {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #47565e 0 66%, #8e24aa 0);
  }
  .marker-cluster--colors-alert-inactive-low-connection:before,
  .marker-cluster--colors-alert-inactive-low-connection:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-inactive-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-inactive-person:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-inactive-person:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-inactive-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #47565e 0 66%, #304ffe 0);
  }
  .marker-cluster--colors-alert-inactive-person:before,
  .marker-cluster--colors-alert-inactive-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-inactive-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-inactive-success:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-inactive-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-inactive-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #47565e 0 66%, #348500 0);
  }
  .marker-cluster--colors-alert-inactive-success:before,
  .marker-cluster--colors-alert-inactive-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-low-connection-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-low-connection-person:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-low-connection-person:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-low-connection-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #8e24aa 0 66%, #304ffe 0);
  }
  .marker-cluster--colors-alert-low-connection-person:before,
  .marker-cluster--colors-alert-low-connection-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-low-connection-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-low-connection-success:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-low-connection-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-low-connection-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #8e24aa 0 66%, #348500 0);
  }
  .marker-cluster--colors-alert-low-connection-success:before,
  .marker-cluster--colors-alert-low-connection-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-alert-person-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-person-success:before {
  left: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-person-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #304ffe;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-person-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#db8700 33%, #304ffe 0 66%, #348500 0);
  }
  .marker-cluster--colors-alert-person-success:before,
  .marker-cluster--colors-alert-person-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-danger-inactive-low-connection {
  /* Fallback for non conic-gradient browsers */
  background-color: #8e24aa;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-inactive-low-connection:before {
  left: 50%;
  background-color: #b50909;
}
.marker-cluster--colors-danger-inactive-low-connection:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-low-connection {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#b50909 33%, #47565e 0 66%, #8e24aa 0);
  }
  .marker-cluster--colors-danger-inactive-low-connection:before,
  .marker-cluster--colors-danger-inactive-low-connection:after {
    content: none !important;
  }
}

.marker-cluster--colors-danger-inactive-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-inactive-person:before {
  left: 50%;
  background-color: #b50909;
}
.marker-cluster--colors-danger-inactive-person:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#b50909 33%, #47565e 0 66%, #304ffe 0);
  }
  .marker-cluster--colors-danger-inactive-person:before,
  .marker-cluster--colors-danger-inactive-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-danger-inactive-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-inactive-success:before {
  left: 50%;
  background-color: #b50909;
}
.marker-cluster--colors-danger-inactive-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#b50909 33%, #47565e 0 66%, #348500 0);
  }
  .marker-cluster--colors-danger-inactive-success:before,
  .marker-cluster--colors-danger-inactive-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-inactive-low-connection-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-inactive-low-connection-person:before {
  left: 50%;
  background-color: #47565e;
}
.marker-cluster--colors-inactive-low-connection-person:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-inactive-low-connection-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#47565e 33%, #8e24aa 0 66%, #304ffe 0);
  }
  .marker-cluster--colors-inactive-low-connection-person:before,
  .marker-cluster--colors-inactive-low-connection-person:after {
    content: none !important;
  }
}

.marker-cluster--colors-inactive-low-connection-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-inactive-low-connection-success:before {
  left: 50%;
  background-color: #47565e;
}
.marker-cluster--colors-inactive-low-connection-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-inactive-low-connection-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#47565e 33%, #8e24aa 0 66%, #348500 0);
  }
  .marker-cluster--colors-inactive-low-connection-success:before,
  .marker-cluster--colors-inactive-low-connection-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-inactive-person-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-inactive-person-success:before {
  left: 50%;
  background-color: #47565e;
}
.marker-cluster--colors-inactive-person-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #304ffe;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-inactive-person-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#47565e 33%, #304ffe 0 66%, #348500 0);
  }
  .marker-cluster--colors-inactive-person-success:before,
  .marker-cluster--colors-inactive-person-success:after {
    content: none !important;
  }
}

.marker-cluster--colors-low-connection-person-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-low-connection-person-success:before {
  left: 50%;
  background-color: #8e24aa;
}
.marker-cluster--colors-low-connection-person-success:after {
  top: 50%;
  transform: rotate(45deg);
  background-color: #304ffe;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-low-connection-person-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(#8e24aa 33%, #304ffe 0 66%, #348500 0);
  }
  .marker-cluster--colors-low-connection-person-success:before,
  .marker-cluster--colors-low-connection-person-success:after {
    content: none !important;
  }
}

/* FOUR COLOR CLUSTERS */
.marker-cluster--colors-alert-danger-inactive-low-connection {
  /* Fallback for non conic-gradient browsers */
  background-color: #8e24aa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-inactive-low-connection:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-inactive-low-connection:after {
  top: 50%;
  right: 50%;
  background-color: #47565e;
}
.marker-cluster--colors-alert-danger-inactive-low-connection
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-danger-inactive-low-connection
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-low-connection {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #b50909 0 50%,
      #47565e 0 75%,
      #8e24aa 0
    );
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection:before,
  .marker-cluster--colors-alert-danger-inactive-low-connection:after,
  .marker-cluster--colors-alert-danger-inactive-low-connection
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-inactive-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-inactive-person:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-inactive-person:after {
  top: 50%;
  right: 50%;
  background-color: #47565e;
}
.marker-cluster--colors-alert-danger-inactive-person .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-danger-inactive-person
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #b50909 0 50%,
      #47565e 0 75%,
      #304ffe 0
    );
  }
  .marker-cluster--colors-alert-danger-inactive-person:before,
  .marker-cluster--colors-alert-danger-inactive-person:after,
  .marker-cluster--colors-alert-danger-inactive-person
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-inactive-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-inactive-success:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-inactive-success:after {
  top: 50%;
  right: 50%;
  background-color: #47565e;
}
.marker-cluster--colors-alert-danger-inactive-success .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-danger-inactive-success
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #b50909 0 50%,
      #47565e 0 75%,
      #348500 0
    );
  }
  .marker-cluster--colors-alert-danger-inactive-success:before,
  .marker-cluster--colors-alert-danger-inactive-success:after,
  .marker-cluster--colors-alert-danger-inactive-success
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-low-connection-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-low-connection-person:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-low-connection-person:after {
  top: 50%;
  right: 50%;
  background-color: #8e24aa;
}
.marker-cluster--colors-alert-danger-low-connection-person
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-danger-low-connection-person
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-low-connection-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #b50909 0 50%,
      #8e24aa 0 75%,
      #304ffe 0
    );
  }
  .marker-cluster--colors-alert-danger-low-connection-person:before,
  .marker-cluster--colors-alert-danger-low-connection-person:after,
  .marker-cluster--colors-alert-danger-low-connection-person
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-low-connection-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-low-connection-success:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-low-connection-success:after {
  top: 50%;
  right: 50%;
  background-color: #8e24aa;
}
.marker-cluster--colors-alert-danger-low-connection-success
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-danger-low-connection-success
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-low-connection-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #b50909 0 50%,
      #8e24aa 0 75%,
      #348500 0
    );
  }
  .marker-cluster--colors-alert-danger-low-connection-success:before,
  .marker-cluster--colors-alert-danger-low-connection-success:after,
  .marker-cluster--colors-alert-danger-low-connection-success
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-alert-danger-person-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-danger-person-success:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-danger-person-success:after {
  top: 50%;
  right: 50%;
  background-color: #304ffe;
}
.marker-cluster--colors-alert-danger-person-success .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-danger-person-success
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #b50909;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-person-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #b50909 0 50%,
      #304ffe 0 75%,
      #348500 0
    );
  }
  .marker-cluster--colors-alert-danger-person-success:before,
  .marker-cluster--colors-alert-danger-person-success:after,
  .marker-cluster--colors-alert-danger-person-success
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-alert-inactive-low-connection-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-inactive-low-connection-person:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-inactive-low-connection-person:after {
  top: 50%;
  right: 50%;
  background-color: #8e24aa;
}
.marker-cluster--colors-alert-inactive-low-connection-person
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-inactive-low-connection-person
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-inactive-low-connection-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #47565e 0 50%,
      #8e24aa 0 75%,
      #304ffe 0
    );
  }
  .marker-cluster--colors-alert-inactive-low-connection-person:before,
  .marker-cluster--colors-alert-inactive-low-connection-person:after,
  .marker-cluster--colors-alert-inactive-low-connection-person
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-alert-inactive-low-connection-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-alert-inactive-low-connection-success:before {
  left: 50%;
  bottom: 50%;
  background-color: #db8700;
}
.marker-cluster--colors-alert-inactive-low-connection-success:after {
  top: 50%;
  right: 50%;
  background-color: #8e24aa;
}
.marker-cluster--colors-alert-inactive-low-connection-success
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-alert-inactive-low-connection-success
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-inactive-low-connection-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #db8700 25%,
      #47565e 0 50%,
      #8e24aa 0 75%,
      #348500 0
    );
  }
  .marker-cluster--colors-alert-inactive-low-connection-success:before,
  .marker-cluster--colors-alert-inactive-low-connection-success:after,
  .marker-cluster--colors-alert-inactive-low-connection-success
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-danger-inactive-low-connection-person {
  /* Fallback for non conic-gradient browsers */
  background-color: #304ffe;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-inactive-low-connection-person:before {
  left: 50%;
  bottom: 50%;
  background-color: #b50909;
}
.marker-cluster--colors-danger-inactive-low-connection-person:after {
  top: 50%;
  right: 50%;
  background-color: #8e24aa;
}
.marker-cluster--colors-danger-inactive-low-connection-person
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-danger-inactive-low-connection-person
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-low-connection-person {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #b50909 25%,
      #47565e 0 50%,
      #8e24aa 0 75%,
      #304ffe 0
    );
  }
  .marker-cluster--colors-danger-inactive-low-connection-person:before,
  .marker-cluster--colors-danger-inactive-low-connection-person:after,
  .marker-cluster--colors-danger-inactive-low-connection-person
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-danger-inactive-low-connection-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-danger-inactive-low-connection-success:before {
  left: 50%;
  bottom: 50%;
  background-color: #b50909;
}
.marker-cluster--colors-danger-inactive-low-connection-success:after {
  top: 50%;
  right: 50%;
  background-color: #8e24aa;
}
.marker-cluster--colors-danger-inactive-low-connection-success
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-danger-inactive-low-connection-success
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #47565e;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-low-connection-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #b50909 25%,
      #47565e 0 50%,
      #8e24aa 0 75%,
      #348500 0
    );
  }
  .marker-cluster--colors-danger-inactive-low-connection-success:before,
  .marker-cluster--colors-danger-inactive-low-connection-success:after,
  .marker-cluster--colors-danger-inactive-low-connection-success
    .marker-cluster__count:before {
    content: none !important;
  }
}

.marker-cluster--colors-inactive-low-connection-person-success {
  /* Fallback for non conic-gradient browsers */
  background-color: #348500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback for non conic-gradient browsers */
}
.marker-cluster--colors-inactive-low-connection-person-success:before {
  left: 50%;
  bottom: 50%;
  background-color: #47565e;
}
.marker-cluster--colors-inactive-low-connection-person-success:after {
  top: 50%;
  right: 50%;
  background-color: #304ffe;
}
.marker-cluster--colors-inactive-low-connection-person-success
  .marker-cluster__count {
  position: relative;
  border-radius: 40px;
  height: 60px;
  width: 60px;
}
.marker-cluster--colors-inactive-low-connection-person-success
  .marker-cluster__count:before {
  top: 50%;
  left: 50%;
  background-color: #8e24aa;
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-inactive-low-connection-person-success {
    /* Remove unnecesary things when conic-gradient is present */
    /* Remove unnecesary things when conic-gradient is present */
    background: conic-gradient(
      #47565e 25%,
      #8e24aa 0 50%,
      #304ffe 0 75%,
      #348500 0
    );
  }
  .marker-cluster--colors-inactive-low-connection-person-success:before,
  .marker-cluster--colors-inactive-low-connection-person-success:after,
  .marker-cluster--colors-inactive-low-connection-person-success
    .marker-cluster__count:before {
    content: none !important;
  }
}

/* FIVE COLOR CLUSTERS */
.marker-cluster--colors-alert-danger-inactive-low-connection-success {
  background-color: #db8700;
}
@supports not (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-low-connection-success {
    /* Fallback for non conic-gradient browsers */
    background-color: #8e24aa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fallback for non conic-gradient browsers */
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-success:before {
    left: 50%;
    bottom: 50%;
    background-color: #db8700;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-success:after {
    top: 50%;
    right: 50%;
    background-color: #47565e;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-success
    .marker-cluster__count {
    position: relative;
    border-radius: 40px;
    height: 60px;
    width: 60px;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-success
    .marker-cluster__count:before {
    top: 50%;
    left: 50%;
    background-color: #b50909;
  }
  @supports (background: conic-gradient(red 25%, blue 0)) {
    .marker-cluster--colors-alert-danger-inactive-low-connection-success {
      /* Remove unnecesary things when conic-gradient is present */
      /* Remove unnecesary things when conic-gradient is present */
      background: conic-gradient(
        #db8700 25%,
        #b50909 0 50%,
        #47565e 0 75%,
        #8e24aa 0
      );
    }
    .marker-cluster--colors-alert-danger-inactive-low-connection-success:before,
    .marker-cluster--colors-alert-danger-inactive-low-connection-success:after,
    .marker-cluster--colors-alert-danger-inactive-low-connection-success
      .marker-cluster__count:before {
      content: none !important;
    }
  }
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-low-connection-success {
    background: conic-gradient(
      #db8700 20%,
      #b50909 0 40%,
      #47565e 0 60%,
      #8e24aa 0 80%,
      #348500 0
    );
  }
}

.marker-cluster--colors-alert-danger-inactive-low-connection-person {
  background-color: #db8700;
}
@supports not (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-low-connection-person {
    /* Fallback for non conic-gradient browsers */
    background-color: #8e24aa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fallback for non conic-gradient browsers */
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person:before {
    left: 50%;
    bottom: 50%;
    background-color: #db8700;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person:after {
    top: 50%;
    right: 50%;
    background-color: #47565e;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person
    .marker-cluster__count {
    position: relative;
    border-radius: 40px;
    height: 60px;
    width: 60px;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person
    .marker-cluster__count:before {
    top: 50%;
    left: 50%;
    background-color: #b50909;
  }
  @supports (background: conic-gradient(red 25%, blue 0)) {
    .marker-cluster--colors-alert-danger-inactive-low-connection-person {
      /* Remove unnecesary things when conic-gradient is present */
      /* Remove unnecesary things when conic-gradient is present */
      background: conic-gradient(
        #db8700 25%,
        #b50909 0 50%,
        #47565e 0 75%,
        #8e24aa 0
      );
    }
    .marker-cluster--colors-alert-danger-inactive-low-connection-person:before,
    .marker-cluster--colors-alert-danger-inactive-low-connection-person:after,
    .marker-cluster--colors-alert-danger-inactive-low-connection-person
      .marker-cluster__count:before {
      content: none !important;
    }
  }
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-low-connection-person {
    background: conic-gradient(
      #db8700 20%,
      #b50909 0 40%,
      #47565e 0 60%,
      #8e24aa 0 80%,
      #304ffe 0
    );
  }
}

.marker-cluster--colors-danger-inactive-low-connection-person-success {
  background-color: #b50909;
}
@supports not (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-low-connection-person-success {
    /* Fallback for non conic-gradient browsers */
    background-color: #304ffe;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fallback for non conic-gradient browsers */
  }
  .marker-cluster--colors-danger-inactive-low-connection-person-success:before {
    left: 50%;
    bottom: 50%;
    background-color: #b50909;
  }
  .marker-cluster--colors-danger-inactive-low-connection-person-success:after {
    top: 50%;
    right: 50%;
    background-color: #8e24aa;
  }
  .marker-cluster--colors-danger-inactive-low-connection-person-success
    .marker-cluster__count {
    position: relative;
    border-radius: 40px;
    height: 60px;
    width: 60px;
  }
  .marker-cluster--colors-danger-inactive-low-connection-person-success
    .marker-cluster__count:before {
    top: 50%;
    left: 50%;
    background-color: #47565e;
  }
  @supports (background: conic-gradient(red 25%, blue 0)) {
    .marker-cluster--colors-danger-inactive-low-connection-person-success {
      /* Remove unnecesary things when conic-gradient is present */
      /* Remove unnecesary things when conic-gradient is present */
      background: conic-gradient(
        #b50909 25%,
        #47565e 0 50%,
        #8e24aa 0 75%,
        #304ffe 0
      );
    }
    .marker-cluster--colors-danger-inactive-low-connection-person-success:before,
    .marker-cluster--colors-danger-inactive-low-connection-person-success:after,
    .marker-cluster--colors-danger-inactive-low-connection-person-success
      .marker-cluster__count:before {
      content: none !important;
    }
  }
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-danger-inactive-low-connection-person-success {
    background: conic-gradient(
      #b50909 20%,
      #47565e 0 40%,
      #8e24aa 0 60%,
      #304ffe 0 80%,
      #348500 0
    );
  }
}

.marker-cluster--colors-alert-danger-low-connection-person-success {
  background-color: #b50909;
}
@supports not (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-low-connection-person-success {
    /* Fallback for non conic-gradient browsers */
    background-color: #304ffe;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fallback for non conic-gradient browsers */
  }
  .marker-cluster--colors-alert-danger-low-connection-person-success:before {
    left: 50%;
    bottom: 50%;
    background-color: #b50909;
  }
  .marker-cluster--colors-alert-danger-low-connection-person-success:after {
    top: 50%;
    right: 50%;
    background-color: #8e24aa;
  }
  .marker-cluster--colors-alert-danger-low-connection-person-success
    .marker-cluster__count {
    position: relative;
    border-radius: 40px;
    height: 60px;
    width: 60px;
  }
  .marker-cluster--colors-alert-danger-low-connection-person-success
    .marker-cluster__count:before {
    top: 50%;
    left: 50%;
    background-color: #47565e;
  }
  @supports (background: conic-gradient(red 25%, blue 0)) {
    .marker-cluster--colors-alert-danger-low-connection-person-success {
      /* Remove unnecesary things when conic-gradient is present */
      /* Remove unnecesary things when conic-gradient is present */
      background: conic-gradient(
        #b50909 25%,
        #47565e 0 50%,
        #8e24aa 0 75%,
        #304ffe 0
      );
    }
    .marker-cluster--colors-alert-danger-low-connection-person-success:before,
    .marker-cluster--colors-alert-danger-low-connection-person-success:after,
    .marker-cluster--colors-alert-danger-low-connection-person-success
      .marker-cluster__count:before {
      content: none !important;
    }
  }
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-low-connection-person-success {
    background: conic-gradient(
      #b50909 20%,
      #47565e 0 40%,
      #8e24aa 0 60%,
      #304ffe 0 80%,
      #348500 0
    );
  }
}

/* SIX COLOR CLUSTERS */
.marker-cluster--colors-alert-danger-inactive-low-connection-person-success {
  background-color: #db8700;
}
@supports not (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-low-connection-person-success {
    /* Fallback for non conic-gradient browsers */
    background-color: #8e24aa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fallback for non conic-gradient browsers */
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person-success:before {
    left: 50%;
    bottom: 50%;
    background-color: #db8700;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person-success:after {
    top: 50%;
    right: 50%;
    background-color: #47565e;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person-success
    .marker-cluster__count {
    position: relative;
    border-radius: 40px;
    height: 60px;
    width: 60px;
  }
  .marker-cluster--colors-alert-danger-inactive-low-connection-person-success
    .marker-cluster__count:before {
    top: 50%;
    left: 50%;
    background-color: #b50909;
  }
  @supports (background: conic-gradient(red 25%, blue 0)) {
    .marker-cluster--colors-alert-danger-inactive-low-connection-person-success {
      /* Remove unnecesary things when conic-gradient is present */
      /* Remove unnecesary things when conic-gradient is present */
      background: conic-gradient(
        #db8700 25%,
        #b50909 0 50%,
        #47565e 0 75%,
        #8e24aa 0
      );
    }
    .marker-cluster--colors-alert-danger-inactive-low-connection-person-success:before,
    .marker-cluster--colors-alert-danger-inactive-low-connection-person-success:after,
    .marker-cluster--colors-alert-danger-inactive-low-connection-person-success
      .marker-cluster__count:before {
      content: none !important;
    }
  }
}
@supports (background: conic-gradient(red 25%, blue 0)) {
  .marker-cluster--colors-alert-danger-inactive-low-connection-person-success {
    background: conic-gradient(
      #db8700 16.67%,
      #b50909 0 33.34%,
      #47565e 0 50%,
      #8e24aa 0 66.67%,
      #304ffe 0 83.35%,
      #348500 0
    );
  }
}

/* SEVEN COLOR CLUSTERS */

.base-map--full {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}

/* COLORS */
/* COLORS FOR MARKERS */
/* UNITS*/
.MuiAppBar-root.manage-navbar--top {
  width: 100%;
  height: 64px;
  background-color: #191919;
  color: #f1f1f1;
  z-index: 500;
  display: flex;
  flex-direction: row;
}

.MuiAppBar-root .manage-navbar__title {
  width: 430px;
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.MuiAppBar-root .manage-navbar__title a {
  color: white;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}

.MuiAppBar-root .manage-navbar__content {
  background-color: #191919;
  max-height: 64px;
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  padding-right: 0;
}

.MuiAppBar-root .manage-navbar__content-menu {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  height: 100%;
}

.MuiAppBar-root .manage-navbar__content-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  color: white;
  text-decoration: none;
}
.MuiAppBar-root .manage-navbar__content-menu-item:focus,
.MuiAppBar-root .manage-navbar__content-menu-item:hover,
.MuiAppBar-root .manage-navbar__content-menu-item:visited {
  color: white;
  text-decoration: none;
}

.frame {
  height: 100%;
  overflow-y: auto;
}

.cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: none;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cover-spin::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: #0083c7;
  border-top-color: transparent;
  border-width: 4px;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

* {
  scrollbar-base-color: #858585;
  scrollbar-face-color: #858585;
  scrollbar-3dlight-color: #858585;
  scrollbar-highlight-color: #858585;
  scrollbar-track-color: #373737;
  scrollbar-arrow-color: #373737;
  scrollbar-shadow-color: #373737;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #373737;
}

::-webkit-scrollbar-thumb {
  background-color: #858585;
}

* {
  scrollbar-color: #858585 #373737;
  scrollbar-width: thin;
}

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

body {
  /*background-image: url("/assets/img/background.png");*/
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  font-family: "Roboto", sans-serif;
}

.text-color--white {
  color: white;
}

.flex {
  display: flex;
  width: 100%;
}
.flex.column {
  flex-direction: column;
}
.flex.between {
  justify-content: space-between;
}
.flex.center {
  justify-content: center;
  align-items: center;
}

.pad-1 {
  padding: 4px;
}

.pad-2 {
  padding: 8px;
}

.pad-3 {
  padding: 12px;
}

.pad-4 {
  padding: 16px;
}

.pad-hor-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.pad-hor-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.pad-hor-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.pad-hor-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.pad-hor-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.pad-hor-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.a11y-hidden {
  position: absolute !important;
  left: -99999999px !important;
}

.pad-vert-0 {
  padding-bottom: 0px;
  padding-top: 0px;
}

.pad-vert-1 {
  padding-bottom: 4px;
  padding-top: 4px;
}

.pad-vert-2 {
  padding-bottom: 8px;
  padding-top: 8px;
}

.pad-vert-3 {
  padding-bottom: 12px;
  padding-top: 12px;
}

.pad-vert-4 {
  padding-bottom: 16px;
  padding-top: 16px;
}

.centered-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}

.leaflet-top,
.leaflet-bottom {
  /*position: fixed !important;*/
  z-index: 499 !important;
}
