.btcclick{
  display: flex;
  margin: 0 auto 1.5rem;
  width: 80%;
  font-size: 2rem;
  /* border: 0.1rem solid rgb(86, 165, 235, 0.25); */
  background-color: #F7F7F7;
  border-radius: 1.5rem;
  color: #1B325F;
}
.choice-container {
 width: 100%;
 position: relative;
}

.choice-container::after{
  content: "";
  /* background: #909090; */
  background-image: url("../images/unselected.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 3.4rem;
  height: 2.8rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.correct.choice-container::after{
  content: "";
  background: #fff;
  -webkit-mask-image: url("../images/correct.svg");
          mask-image: url("../images/correct.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 3.4rem;
  height: 2.8rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color linear 0.5s;
}

.incorrect.choice-container::after{
  content: "";
  background: #fff;
  -webkit-mask-image: url("../images/false.svg");
          mask-image: url("../images/false.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 3.4rem;
  height: 2.8rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color linear 0.5s;
}

.choice-container:hover {
  cursor: pointer;
  /* box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5); */
  /* transform: translateY(-0.1rem); */
  /* transition: transform 150ms; */
}

.choice-prefix {
  padding: 1.5rem 2.5rem;
  background-color: #F7F7F7;
  
}

.choice-text {
  padding: 1.5rem 3rem;
  width: 100%;

}

.btcclick.ak {
  background: linear-gradient(45deg, #1B325F 0%, #00585E 50%, #7FC600 100%);
}

.correct {
  background-color: #7FC600;
  transition: background-color linear 0.5s;
  border-radius: 1.5rem;
}

.incorrect {
  background-color: #ff0000;
  transition: background-color linear 0.5s;
  border-radius: 1.5rem;
}

.incorrect .choice-text,.correct .choice-text ,.btcclick.ak .choice-text  {
  color: #fff!important;
  
}
/* HUD */

#hud {
  display: flex;
  justify-content: center;
}

.hud-prefix {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.hud-main-text {
  text-align: center;
}

/* #progressBar {
  width: 20rem;
  height: 4rem;
  border: 0.3rem solid #56a5eb;
  margin-top: 1.5rem;
}

#progressBarFull {
  height: 3.4rem;
  background-color: #56a5eb;
  width: 0%;
} */

.score{
  display: none;
}
/* LOADER */
#loader {
  border: 1.6rem solid white;
  border-radius: 50%;
  border-top: 1.6rem solid #56a5eb;
  width: 12rem;
  height: 12rem;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
