.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #333 #333 transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent #0f6a37 #0f6a45;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.search-results {
  display: none;
}

.search-results.search-active {
  display: block;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  position: absolute;
  top: 67px;
  right: 0;
  z-index: 100;
  min-width: 350px;
}

.search-item:hover a {
  background-color: #eee;
  cursor: pointer;
}

.search-item-title {
  font-size: 14px;
  padding-right: 10px;
}

.search-item:hover a .search-item-title {
  color: red;
}
