.d-none{
  display: none;
}

.red{
  color: red !important;
}

.alert_login{
    border-radius: 10% !important;
    padding: 5px !important;
    margin-bottom: 8px !important;
}

.todays_tasks .col-md-5 {
  border-style: solid;
  border-width: 1px;
  border-color: #673AB7;
  border-radius: 5px;
}

.card-body{
  padding: 9px !important;
}

.rotation {
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}