@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 350px;
  .loading {
    width: 50px;
    height: 50px;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #383636; /* Blue */
    border-radius: 50%;
    animation: spinner 1.5s linear infinite;
  }
}
progress {
  width: 100%;
  border: 0;
  height: 7px;
  border-radius: 4px;
  background-color: #dcdcdc;
  &::-webkit-progress-bar {
    border-radius: 4px;
    background-color: #dcdcdc;
  }
  &::-webkit-progress-value {
    border-radius: 4px;
    background-color: #4a90e2;
  }
  &::-moz-progress-bar {
    background-color: #4a90e2;
  }
  &.ready::-webkit-progress-value {
    background-color: #087d6f;
  }
  &.ready::-moz-progress-bar {
    background-color: #087d6f;
  }
}
.coalition-button {
  width: 312px;
  padding: 12px 16px 13px;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin: auto;
}
@media screen and (max-width: 783px) {
  .coalition-button {
    font-size: 16px;
    margin: auto;
  }
}
