

.inquiz-answer {
  width: 50%;
  height: 5vw;
  border: 2px solid black;
  border-radius: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  cursor: pointer;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  padding-left: 1vw;
  padding-right: 1vw;
  transition: background-color 0.15s;
}

.inquiz-answer:hover {
  background-color: #e1e0e0;
}

.inquiz-answer-current {
  width: 50%;
  height: 5vw;
  border: 3px solid black;
  border-radius: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
  padding-left: 1vw;
  padding-right: 1vw;
}

.inquiz-answers-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 5vw;
}

.inquiz-answer-right {
  border: 4px solid rgb(0, 187, 0);
  color: rgb(0, 187, 0);
  font-weight: 500;
}

.inquiz-answer-wrong {
  border: 4px solid rgb(209, 0, 0);
  color: rgb(209, 0, 0);
  font-weight: 500;
}

.inquiz-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background-color: white;
}

.inquiz-leave-button {
  border: 2px solid black;
  background-color: white;
  height: 4vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 1vw;
  margin-right: 1vw;
  padding-left: 1vw;
  padding-right: 1vw;
  cursor: pointer;
  transition: background-color 0.15s;
}

.inquiz-leave-button:hover {
  background-color: #f0f0f0;
}

.inquiz-leave-button img {
  width: 2.5vw;
  margin-right: 1vw;
}

.inquiz-leave-button p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
}

.inquiz-main-container {
  width: 100%;
  height: calc(100% - 5vw);
  box-sizing: border-box;
  margin-top: 5vw;
  background-color: white;
}

.inquiz-mode-select-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.inquiz-mode-select-item {
  width: 20vw;
  height: 20vw;
  border: 2px solid black;
  background-color: #f0f0f0;
  border-radius: 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.inquiz-mode-select-item-current {
  border-width: 4px;
  background-color: #23fff4;
}

.inquiz-mode-select-item img {
  width: 3vw;
}

.inquiz-mode-select-item-description {
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  text-align: center;
  margin-left: 2vw;
  margin-right: 2vw;
}

.inquiz-mode-select-item-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.7vw;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.inquiz-question {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 3vw;
  margin-top: 3vw;
  width: calc(100% - 20vw);
  text-align: center;
  margin-left: 20vw;
  margin-right: 20vw;
}

.inquiz-question-back-button {
  width: 17vw;
  height: 4vw;
  position: absolute;
  bottom: 4vw;
  left: 4vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
  border-radius: 4vw;
  cursor: pointer;
  background-color: white;
}

.inquiz-question-back-button:hover {
  background-color: #f0f0f0;
}

.inquiz-question-back-button img {
  width: 2vw;
  margin-right: 1vw;
}

.inquiz-question-back-button p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.3vw;
}

.inquiz-question-submit-button {
  width: 17vw;
  height: 4vw;
  position: absolute;
  bottom: 4vw;
  right: 4vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
  border-radius: 6vw;
  cursor: pointer;
}

.inquiz-question-submit-button img {
  width: 2vw;
  margin-left: 1vw;
}

.inquiz-question-submit-button p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
}

.inquiz-quiz-start-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 3px solid black;
  width: 30vw;
  height: 6vw;
  border-radius: 7vw;
  margin-top: 5vw;
  cursor: pointer;
}

.inquiz-quiz-start-button img {
  width: 3vw;
  margin-right: 3vw;
}

.inquiz-quiz-start-button p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 2vw;
}

.inquiz-vertical-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}