/* Wrap for positioning dropdown + spinner */
.krs-input-wrap {
  position: relative;
  width: 100%;
}

/* Spinner */
.krs-custom-spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #ccc;
  border-top: 3px solid #3B73B9;
  border-radius: 50%;
  animation: krsSpin 0.9s linear infinite;
  position: absolute;
  left: 125px;
  top: 50%;
  margin-top: -46px;
  display: none;
  z-index: 10000;
}

@keyframes krsSpin {
  to {
    rotate: 360deg;
  }
}

/* Dropdown */
#krs-school-results {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  display: none;
}

/* Dropdown items */
.krs-result-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
}
.krs-result-item:last-child {
  border-bottom: none;
}
.krs-result-item:hover {
  background: #f3f7fc;
}
.krs-noresult {
  color: #999;
  cursor: default;
  font-style: italic;
}
