.aulas-hoje-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aulas-hoje-card {
    background: #FAFBFD;
    border-radius: 15px;
    padding: 1.5rem 1.5rem;
}

.aulas-hoje-title {
    color: #404040;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.aulas-hoje-data {
    margin-top: 2rem;
}

.aulas-hoje-data .ls-label{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.aulas-hoje-data .ls-label .ls-label-text{
    margin-bottom: 0;
    margin-right: 1rem;
}

.aulas-hoje-data .ls-label input {
    width: 8rem;
    border-radius: 15px !important;
}

.aulas-hoje-conteudo-texarea {
    resize: none;
    position: relative;
}

.aulas-hoje-conteudo-texarea-container {
    position: relative;
}

.aulas-hoje-conteudo-texarea-icon {
    position: absolute;
    right: 15px;
    bottom: 5px;
}

.aulas-hoje-dsc-turms {
    color: #5E5E5E;
}

.aulas-hoje-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
    align-items: center;
}

.dots-loading {
  display: flex;
  gap: 3px;
  position: absolute;
  top: -20px;
  right: 0px;
}

.dots-loading div {
    width: 6px;
    height: 6px;
    background: #777;
    border-radius: 50%;
    box-shadow: 0 -0.4rem rgba(60, 0, 80, 0.1) inset;

    animation: cycle 0.8s ease-in-out infinite;
}

.dots-loading div:nth-child(1) {
  animation-delay: 0s;
}

.dots-loading div:nth-child(2) {
  animation-delay: 0.16s;
}

.dots-loading div:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes cycle {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.5rem);
  }

  100% {
    transform: translateY(0);
  }
}
