.results-spinner {
  animation: spin 1s linear infinite;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #722470;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

.loading-spinner__wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.125);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.close-button {
  position: relative;
  color: #fff;
  top: -15%;
  left: 25%;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  padding: .390625em 0;
}

.close-button::after {
  content: "";
  background-image: url("../imgs/close-white.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transform: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

