#login {
  display: block;
  max-width: 100%;
  width: 100%;
}

.login-container {
  display: block;
  margin: 30% auto;
}

#player-form {
  padding: 10px 0;
}

.player-form-field {
  font-size: 16px;
  margin: 1vb 0 3vb 0;
  display: inline-block;
  width: 100%;
}

.player-form-field select {
  width: 400px;
  padding: 5px;
  font-size: 16px;
}

.player-form-field input {
  width: calc(100% - 2vb);
  padding: 1vb;
  font-size: 3vb;
  height: 4vb;
}

.player-form-field-radio-label {
  display: inline-block;
  font-size: 16px;
}

.player-form-button {
  margin-top: 1vb !important;
  width: 100% !important;
}

.error {
  color: red;
}

#player-form {
  padding: 10px 0;
}

.new-player-info-toggle {
  font-style: italic;
  margin-left: 2vb;
  margin-bottom: 4vb;
  &:hover {
    cursor: pointer;
  }
}

.new-player-info-text {
  display: none;
  margin: -2vb 0 4vb 4vb;
  color: lightblue;
}

.menu-button-icon {
  position: absolute;
  width: 4vb;
  display: block;
  margin: 0 1vb;
}

.menu-button {
  position: absolute;
  display: relative;
  height: 8vh;
  width: 8vh;
  vertical-align: middle;
  /* border-color: #fff6; */
  background-color: #0009;
  padding: 0;
  font-size: 6vh;
}

.menu-button-earth {
  color: #7e4100;
}

.menu-button-water {
  color: #00f;
}

.menu-button-fire {
  color: #f00;
}

#profile-menu-account-button {
  top: 55vb;
}

.membership-text {
  font-family: "Outfit", sans-serif;
  color: white;
  /* text-align: justify; */
  overflow: scroll;
  padding: 0 10px;

  p,
  li {
    font-size: 16px;
    margin: 20px 0;
    line-height: 24px;
  }
}

.elements-menu-button {
  position: absolute;
  margin-left: 10%;
  width: 80%;
  height: 8vb;
}

#elements-menu-button-get {
  top: 40vb;
}

#elements-menu-button-spend {
  top: 50vb;
}

.element-amount-icon {
  display: inline-block;
  vertical-align: middle;
  height: 3vb;
  /* margin: 0 1vb; */
}




#guardian-profile-faq {
  margin: 2vb 0;
}

.guardian-profile-faq-question-text {
  font-size: 2vb;
  &:hover {
    cursor: pointer;
  }
  margin: 1vb 0;
}

.guardian-profile-faq-answer {
  display: none;
  margin-left: 1vb;
  margin-bottom: 2vb;
  font-style: italic;
}

.create-player-button {
  font-size: 16px;
  padding: 1vb 4vb;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  border: solid 1px #bfbfbfbf;
  &:hover {
    background-color: #333;
  }
}

/* CSS */
.upgrade-button {
  float: right;
  font-size: 16px;
  padding: 1vb 4vb;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.upgrade-button:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-upgrade-button 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-upgrade-button {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.upgrade-button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
  transition: 0.2s;
}

.upgrade-button:hover:after {
  background-color: #222c;
}

.pulsing-text {
  -webkit-animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0.5;
}
@-webkit-keyframes pulsate {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.players-seats-available-subheading {
  font-size: 0.8em;
  margin-top: -1em;
}

.players-seats-available {
  margin: 10px 0;
  font-weight: bold;
}
