@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scrollbar-color: var(--home__text_color) var(--sidebar__text_color);
  scrollbar-width: thin;
}

body {
  background-color: #EEF7F6;
  font-family: "Urbanist";
}

:root {
  --primary-color: #2e97b1;
  --primary-clearer-color: #41a3bb;
  --sustain-color: #23ae96;
  --main-color: #1A3E52;
  --primary-box-shadow: rgb(0 0 0 / 3%) 0px 4px 12px;
  --home__modal_text_color: #ffffff;
  --home__main_color: #2B6D9E;
  --home__text_color: #8899B4;
  --home__text_color__hover: #a8bad7;
  --home_main_box_shadow: 0vh 0vh 3vh 0.5vh rgba(149, 149, 149, 0.244);
  --home_warning_color: #FFC107;
  --home_button_background: #ECF9FF;
  --home_button_background_hover: #d1ebf7;
  --sidebar__container_color: #1A3E52;
  --sidebar__text_color: #ffffff;
  --sidebar__hover_button_color: #3D4E68;
  --dashboard-title-color: #7C8DB8;
  --technical__radio-items-color: #8899B4;
  --technical__radio-items-hover-color: #ffffff;
  --technical__radio-items_background-color: #b1cbd9;
  --technical__radio-items_label-background-color: #ffffff;
  --technical__help_title_popover_color: #8899B4;
  --technical__unit: #8899B4;
  --technical__information_container_color: #b1cbd9;
  --secondary-color: #9FA6B2;
  --success-color: #14A44D;
  --danger-color: #DC4C64;
  --warning-color: #E4A11B;
  --info-color: #54B4D3;
  --light-color: #FBFBFB;
  --dark-color: #332D2D;


  /* --sustain-color: #2e97b1; */
}

/* restyle radio items */
/* .main-navbar .form-check {
    padding-left: 0;
  }

  .main-navbar .btn-group > .form-check:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .main-navbar .btn-group > .form-check:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
  } */

/* Hide error message from api calls (if there's any)  */
#user-void-instance {
  visibility: hidden;
}

/* Enable loader display */
#user-void-instance * {
  visibility: visible;
}



.main-navbar-radios .custom-control-label:hover {
  color: var(--sustain-color);
  cursor: pointer;
}

.main-navbar-radios .custom-control-label::before,
.custom-control-label::after {
  display: none;
}

.tab-content-container {
  margin-left: 18vw;
  margin-right: 1vw;
  width: auto;
  max-width: 100%;
}

#main-loader-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #3D4E68;
  font-weight: bold;
  font-size: 2vh;
  /* background-color: rgb(160 160 0 / 80%); */
}

#main-loader {

  /* Light grey */

  /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1.3s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    border: 10px dotted #e4e4e4;
    border-top: 10px dotted var(--primary-color);
  }

  50% {
    transform: rotate(360deg);
    border: 10px dotted #e4e4e4;
    border: 10px dotted var(--primary-color);
  }

  100% {
    transform: rotate(0deg);
    border: 10px dotted var(#e4e4e4);
    border-left: 10px dotted var(--primary-color);
  }
}

._dash-loading {
  text-indent: -9999em;
}