/* Global */
* {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: calc(1200px + 30px);
  margin: 0 auto;
  width: 100%;
  padding: 0px 15px;
  position: relative;
  z-index: 2;
}

.quiz-page .header {
  border-bottom: 1px solid #ddd;
  background: #f8f8f8;
}
.quiz-page .header .header-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  position: relative;
}
.quiz-page .header .header-cont .btn-back {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: absolute;
  left: 0px;
}
.quiz-page .header .header-cont .btn-back p {
  color: #241f21;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.quiz-page .header .header-cont .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 266px;
}
.quiz-page .header .header-cont .logo img {
  width: 100%;
}
.quiz-page .quiz {
  padding: 40px 0px;
}
.quiz-page .quiz .quiz-cont {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.quiz-page .quiz .quiz-cont .progress-container {
  width: 100%;
  max-width: 160px;
  height: 6px;
  border-radius: 16px;
  background-color: #f8f8f8;
  margin: 0 auto;
  margin-bottom: 20px;
}

.quiz-page .quiz .quiz-cont .progress-container .progress-line {
  height: 100%;
  background: #241f21;
  border-radius: 16px;
  width: 0%;
  transition: all 0.2s;
}
.quiz-page .quiz .quiz-cont h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #241f21;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.quiz-page .quiz .quiz-cont p {
  color: #241f21;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.quiz-page .quiz .quiz-cont .list .itm {
  position: relative;
  margin-bottom: 8px;
  display: block;
  transition: all 0.2s;
}
.quiz-page .quiz .quiz-cont .list .itm input {
  display: none;
}
.quiz-page .quiz .quiz-cont .list .itm .itm-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 20px;
  height: 64px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #ddd;
  cursor: pointer;
  color: #241f21;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s;
}
.quiz-page .quiz .quiz-cont .list .itm:hover .itm-content {
  border-color: #939393;
}
.quiz-page .quiz .quiz-cont .list .itm input:checked + .itm-content {
  border-color: #9158db;
  background-color: #edebf1;
}

.quiz-page .quiz .quiz-cont textarea {
  border-radius: 8px;
  border: 1px solid #0b0b0b;
  background: #fff;
  padding: 15px 20px;
  width: 100%;
  min-height: 128px;
  resize: none;
  margin-bottom: 20px;
}
.quiz-page .quiz .quiz-cont textarea::placeholder {
  color: #939393;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.quiz-page .quiz .quiz-cont .btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 64px;
  background: #9158db;
  border: 0px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transform-style: preserve-3d;
}
.quiz-page .quiz .quiz-cont .btn-send span {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(5px);
}
.quiz-page .quiz .quiz-cont hr.line {
  width: 100%;
  background-color: #ddd;
  border: 1px solid #ddd;
  margin-top: 0px;
  margin-bottom: 20px;
  display: block;
  box-sizing: border-box;
}
.quiz-page .quiz .quiz-cont .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}
.quiz-page .quiz .quiz-cont .row select {
  flex: 1;
  border-radius: 8px;
  border: 2px solid #ddd;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 64px;
  padding: 0px 20px;
  padding-right: 40px;
  cursor: pointer;
  -webkit-appearance: none;
  background: #fff url(../img/down.svg);
  background-position: calc(100% - 8px) center;
  background-repeat: no-repeat;
  transition: all 0.2s;
}
.quiz-page .quiz .quiz-cont .row select:hover {
  border-color: #939393;
}

@media only screen and (max-width: 768px) {
  .quiz-page .header .header-cont .btn-back p {
    display: none;
  }
  .quiz-page .header .header-cont {
    height: 42px;
  }
  .quiz-page .header .header-cont .logo {
    width: 182px;
  }
  .quiz-page .quiz .quiz-cont h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 375px) {
  .quiz-page .quiz .quiz-cont .row select {
    height: 54px;
    padding: 0px 10px;
    padding-right: 30px;
  }
  .quiz-page .quiz .quiz-cont .list .itm .itm-content {
    height: 54px;
  }
}
