* {
  box-sizing: border-box;
}

.quiz-submit-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
  width: 100%;
  height: 100%;
}

.quiz-submit-popup-sub-container {
  opacity: 0;
  position: relative;
  padding: 24px 25px 0 25px;
  width: auto;
  height: 260px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background-color: rgba(255, 255, 255, 1);
}

.quiz-submit-popup-button-container input {
  border: 2px solid #e8ecf2;
  outline: none;
  height: 56px;
  width: 100%;
  padding: 0 15px 0 15px;
  margin: 10px 0 0 0;
  background-color: #e8ecf2;
}

.quiz-submit-popup-button-container label {
  font-weight: 700;
  font-size: 17px;
}

.quiz-form-submit {
  border: none;
  outline: none;
  border-radius: 3px;
  width: 100%;
  height: 56px;
  margin-top: 15px;
  padding: 0;
  background-color: #e58d35;
  transition: 200ms;
  margin: 15px 0 0 0;
}

.quiz-form-submit:hover {
  background-color: #db8936;
}

.quiz-submit-popup-button-container input::placeholder {
  font-size: 15px;
  color: #34465e;
}

.quiz-submit-popup-button-container {
  width: 240px;
  margin: 0 25px 0 0;
  padding: 0 0 26px 0;
}

.quiz-submit-popup-button-container span {
  color: #e58d35;
}

.quiz-submit-popup-img-container img {
  width: 230px;
}

.close-popup {
  position: absolute;
  width: 38px;
  top: 17px;
  left: 20px;
  z-index: 1;
  cursor: pointer;
}

.quiz-holder {
  display: flex;
  justify-content: space-between;
}

.quiz-img-container img {
  width: 450px;
}

/* Customize the label (the container) */
.input-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-top: -2px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #34465e;
}

.input-container p {
  transform: translateY(-2px);
}

/* Hide the browser's default checkbox */
.input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 23px;
  width: 23px;
  border-radius: 3px;
  background-color: #e8ecf2;
}

/* On mouse-over, add a grey background color */
.input-container:hover input ~ .checkmark {
  background-color: #d7dbe0;
}

/* When the checkbox is checked, add a blue background */
.input-container input:checked ~ .checkmark {
  background-color: #293443;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.input-container input:checked ~ .checkmark:after {
  display: block;
}

.input-container .checkmark:after {
  left: 6.3px;
  top: -2.5px;
  width: 7px;
  height: 16px;
  border: solid white;
  border-width: 0 3.2px 3.2px 0;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.quiz-form-container {
  width: 600px;
}

.quiz-title {
  font-weight: 700;
  font-size: 32px;
}

.quiz-tests-title {
  font-weight: 700;
  font-size: 21px;
}

.quiz-img-container {
  margin-top: 50px;
}

.quiz-continue-btn {
  border: none;
  outline: none;
  border-radius: 7px;
  width: 275px;
  height: 55px;
  margin-top: 15px;
  font-weight: 500;
  font-size: 23px;
  padding: 0;
  background-color: #e58d35;
  transition: 200ms;
}

.quiz-continue-btn:hover {
  background-color: #db8936;
}

.quiz-required-error {
  display: none;
  color: #d01e1e;
  font-size: 18px;
}

.quiz-main-error {
  display: flex;
  align-items: center;
  display: none;
}

.quiz-main-error p,
.quiz-main-error img {
  margin: 0;
  padding: 0;
}

.quiz-main-error p {
  color: #d01e1e;
  font-size: 18px;
  font-weight: bold;
  margin-left: 5px;
}

.add-error-quiz {
  display: flex;
}

.add-submit-error label,
.add-submit-error span {
  color: #d01e1e;
}

.add-submit-error input {
  border: 2px solid #d01e1e;
  transition: 200ms;
}
