.brand-animate {
    -webkit-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;

    transform-origin: 24px 24px;
    -webkit-transform-origin: 24px 24px;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.pace-running .brand-animate{
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

.pace-done .brand-animate{
    opacity: 0;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.textArea{
      width: 100%;
      border-radius: 5px;
      border-color: rgba(120, 130, 140, 0.2);
      padding: 10px;
      background: transparent;
    }
.dashboardIcon{
  font-size: 30px;
  position: absolute;
}
.fa-heart{
  color: #de0202;
}
ul.pagination {
  margin: 0px;
}
.pagination a {
  padding: 3px 10px;
  margin: 1px;
  background-color: #ffffff;
  border: 1px solid #f3f5f5;
  border-radius: 3px;
}
.pagination a:hover{
  box-shadow: inset 0 -10rem 0px rgb(158 158 158 / 20%);

}
.pagination a.active {
  background-color: #2196f3;
  color: white;
  font-weight: 900;
}