/* HoneyPot field */
.pett-ho-field {
  display: none;
  position: absolute;
  left: -500px;
  bottom: -500px;
}

#game-container {
  display: none;
  margin-top: 25px;
}

#loading-game-container {
  display: none;
  margin: 40px;
  text-align: center;
}

.loading-icon {
  font-size: 300px;
  color: #a42525;
}

#restart-game-container {
  display: none;
}

/* Removemos flechas de los inputs type number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.container {
  margin-top: 10px;
}

.logo-img {
  width: 100%;
  height: auto;
  padding: 10px;
  margin-bottom: 15px;
}

.btn-restart {
  margin-top: 15px;
}

#press-button-message {
  font-size: 1.75rem;
  text-align: center;
}

#button-img {
  margin-top: 10px;
  max-width: 300px;
  height: auto;
  cursor: pointer;
}

.roulette-item-img {
  max-width: 100%;
  height: auto;
}

#press-button-message {
  display: none;
}

.win-lose-message {
  text-align: center;
  display: none;
  color: #007bff;
  font-size: 40px;
}

@media only screen and (max-width: 810px) {
  .container {
    margin-top: 5px;
  }

  #button-img {
    max-width: 200px;
  }

  .loading-icon {
    font-size: 150px;
  }

  #game-container {
    margin-top: 10px;
  }

  .win-lose-message {
    font-size: 34px;
  }
}