#loading{
  position: absolute;
  color: #ffffff;
  font-size: 1.5rem;
  left: calc(50% - 800px);
  top: calc(50% + 0px);
  z-index: 25001;
  text-align: center;
}

.cover {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 25000;
}

#loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  position: fixed;
  z-index: 25002;
  left: calc(50% - 60px);
  top: calc(50% - 90px);
}


#harta {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}


#legenda {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: end;
  background: white;
  border-radius: 5%/5%;
  z-index: 20000;
}

.legenda .eticheta {
  position: relative;
  display: inline-block;
  text-align: center;
}

.fontsize {
  font-size: 12px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  /* background: red; */
}


.circle {
  position: relative;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  /* display: table-cell; */
  vertical-align: middle;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: #cccccc;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;

  /* https://stackoverflow.com/questions/56851845/how-to-change-the-input-slider-thumb-colour-depending-on-value */
  --SliderButtonColor: #cccccc;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--SliderButtonColor);
}

.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--SliderButtonColor);
}
