.container {
    /* To position the loading */
    position: relative;
}

.loading {
    /* Absolute position */
    left: 0;
    position: absolute;
    top: 0;

    /* Take full size */
    height: 100%;
    width: 100%;

    /* Center */
    align-items: center;
    display: flex;
    justify-content: center;
}

.yearInput{
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 32px;
    width: 100px;
    font-family: Oswald;
    font-weight: bold;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
  display: flex;
  margin: 10px 0;
}

.slidecontainer span{
  margin: 0 20px;
  font-size: 32px;
  font-family: Oswald;
  font-weight: bold;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  margin: auto;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #106DC4;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #106DC4;
  cursor: pointer;
}

/*#idWaAdminSwitcher{
  display:none;
}*/