.content-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.modalPopUpArea {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: #00000088;
  text-align: center;
}
.modalPopUp {
  display: block;
  width: 300px;
  height: auto;
  padding-top: 20px;
  padding-bottom: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 10px solid #00438e;
  border-radius: 10px;
}
.question-area {
  display: block;
  position: relative;
  width: 100%;
  height: 450px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}
.question-wrap {
  display: block;
  position: absolute;
  width: 100%;
  left: 0%;
  box-sizing: border-box;
  transition: 0.3s ease-in;
}
.question-items {
  display: block;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.6;
}

#scoring {
  left: 2000%;
}
.btn-prev {
  display: inline-block;
  position: relative;
  width: 180px;
  margin-top: 20px;
  margin-right: 20px;
  color: white;
  background-color: rgb(0, 89, 255);
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}
.btn-next {
  display: inline-block;
  position: relative;
  width: 180px;
  margin-top: 20px;
  color: white;
  background-color: rgb(0, 89, 255);
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}
.scored {
  display: block;
  position: relative;
  margin: 50px auto auto auto;
  width: 380px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
#total-score {
  color: rgb(51, 51, 255);
  border-color: rgb(51, 51, 255);
  border: solid 1px;
  border-radius: 5px;
  margin: 0px 0px 0px 10px;
  font-size: 60px;
  font-weight: bold;
}
#total-score:hover {
  background-color: rgb(216, 216, 216);
  cursor: pointer;
}
.btn-score {
  display: block;
  position: relative;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  color: white;
  background-color: rgb(0, 89, 255);
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}
#submit-form {
  display: none;
  width: 300px;
  margin: 15px auto auto auto;
  text-align: center;
}
#submit-score {
  color: black;
  background-color: rgb(165, 164, 164);
  border: solid 1px;
  border-radius: 5px;
}
#submit-score:hover {
  color: blue;
  cursor: pointer;
}
.btn-prev:hover,
.btn-next:hover,
.btn-score:hover {
  cursor: pointer;
}
