.load__icon {
  animation: linear load 2s infinite;
  width: 32px;
  height: 32px;
}

.load__icon-wrap {
  margin: auto;
}

.load {
  height: calc(100vh - 16px);
  width: 100%;
  display: flex;
  align-items: center;
}

@keyframes load {
  from {
    transform: rotate(0deg) scale(2);
  }
  to {
    transform: rotate(360deg) scale(2);
  }
}

::-webkit-scrollbar {
  width: 4px;
  height: 6px;
	background-color: #F5F5F5;
	border-radius: 50px;
}

::-webkit-scrollbar-track {
  background-color: #eaecec !important;
  border-radius: 50px;
} /* the new scrollbar will have a flat appearance with the set background color */

::-webkit-scrollbar-thumb {
  background-color: rgb(158, 153, 153) !important;
  border-radius: 50px;
}

::-webkit-scrollbar-corner{
  background-color: #71717a;
}