.wrapper {
  width: 90%;
  max-width: 1150px;
  margin: 5px auto;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.result-wrapper {
  width: 90%;
  max-width: 1150px;
  margin: 5px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #ecc2c2;
  border-bottom-color: #1e1b1b;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.visible {
  display: block;
}
.hidden {
  display: none;
}
