/* Incio carregamento geral =============================================================================================== */

#carregamento {
    background: #f3f3f3;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    display: block;
  }
  
  .loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 101; 
  }
  
  .loader:before,
  .loader:after {
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3) inset;
  }
  
  .loader:after {
    box-shadow: 0 3px 0 #1a17c0 inset;
    animation: rotate 2s linear infinite;
  }
  
/* Fim carregamento geral =============================================================================================== */

/* Incio carregamento quadras buscadas =============================================================================================== */

  .carregamento-quadras {
    background-color: #f3f3f3; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    z-index: 10; 
    display: flex; 
    flex-direction: column;
    justify-content: start; 
    align-items: center; 
  }

  .loader-quadras {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 101;  
  }
  
  .loader-quadras:before,
  .loader-quadras:after {
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3) inset;
  }
  
  .loader-quadras:after {
    box-shadow: 0 3px 0 #1a17c0 inset;
    animation: rotate 2s linear infinite;
  }

  .texto-carregando {
    margin-top: 16px; 
    font-size: 22px; 
    font-weight: 550;
    color: #000081; 
    text-align: center; 
  }

  /* Fim carregamento quadras buscadas =============================================================================================== */
  
  /* Incio carregamento timeline tela agendamentos =============================================================================================== */

  .carregamento-timeline { 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 40px 0;
}

.loader-timeline {
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 101;
}

.loader-timeline:before,
.loader-timeline:after {
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3) inset;
}

.loader-timeline:after {
  box-shadow: 0 3px 0 #1a17c0 inset;
  animation: rotate 2s linear infinite;
}

.texto-carregando-timeline {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 550;
  color: #000081;
  text-align: center;
}

  /* Fim carregamento timeline tela agendamentos =============================================================================================== */
  


  @keyframes rotate {
    0% {
      transform: rotate(0)
    }
  
    100% {
      transform: rotate(360deg)
    }
  }
  
  