.item {
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.title {
  padding: 20px 17px;
  background: var(--header-footer-bgcolor);
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.title img {
  width: 100%;
}
.selected {
  background-color: red;
  color: #fff;
}

.ques_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ques_container .audio {
  display: flex;
  align-items: center;
  width: 70px;
}
.ques_container .audio img {
  width: 100%;
}
.ques_container .parent_ques {
  display: flex;
  cursor: pointer;
  width: fit-content;
  align-items: center;
}
.question {
  margin: 0;
  margin-left: 10px;
}
.question span {
  display: none;
}
.question span:last-child {
  display: block;
}

.ques_container .words span {
  border: none;
  padding: 0 15px;
  border-bottom: 3px solid;
  cursor: pointer;
  margin: 10px;
  background: #8080805c;
}
.ques_container .answer {
  border: 4px solid #333;
  padding: 0 15px;
  border-radius: 10px;
  height: 72px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.answer span {
  margin: 10px;
}
.checkBtn {
  cursor: pointer;
}

.result {
  width: 202px;
  background: #ff0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 0;
  border-radius: 50px;
  font-size: 1em;
  position: absolute;
  transform: translate(-50%);
}

.reloadBtnAll {
  width: 85px;
}
.checkBtn {
  background: #e58b41;
  padding: 17px 25px;
  font-size: 25px;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
}
.next_question {
  background: #e58b41;
  padding: 17px 25px;
  font-size: 25px;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
}
.correct,
.wrong {
  position: relative;
}
.correct {
  border: 4px solid green !important;
}
.wrong {
  border: 4px solid red !important;
}

.correct::before {
  content: "✓";
  position: absolute;
  top: -45px;
  left: 97%;
  font-weight: bold;
  color: green;
  text-shadow: 3px 3px 8px #000;
}
.wrong::before {
  content: "x";
  position: absolute;
  top: -45px;
  left: 97%;
  font-weight: bold;
  color: red;
  text-shadow: 3px 3px 8px #000;
}

.blue {
  color: #0077ff;
}
