*,
**,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.quiz-container {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  flex: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

header .quiz-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-bar {
  background-color: #e9e9ea;
}

.progress {
  background-color: #0f766e;
  height: 4px;
  width: 0;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 6px;
  gap: 4px;
  background-color: #0f766e1a;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
}

.timer img {
  width: 20px;
  height: 20px;
}

.quiz-main {
  padding-top: 60px;
  padding-bottom: 20px;
}

.question-text {
  padding-bottom: 40px;
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
  font-size: 24px;
}

.options-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  background-color: #d0e8d8;
  font-weight: 500;
  font-size: 16px;
  padding: 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.option-text-color:nth-child(2) {
  background-color: #e8f5ec;
}

.option-text-color:nth-child(3) {
  background-color: #fdf5d8;
}

.option-text-color:nth-child(4) {
  background-color: #f8e6e6;
}

.option-text-color:nth-child(5) {
  background-color: #f5d6d6;
}

.option:hover {
  opacity: 0.8;
}

.pagination {
  margin-top: 60px;
  padding: 8px;
  gap: 4px;
  border: 1px solid #deebfe;
  border-radius: 8px;
}

.pagination-list {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
}

.question-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  height: 470px;
}

.question-images-main {
  height: 366px;
}

.question-images-title {
  text-align: center;
  padding: 0 20px;
  margin: 0;
  margin-bottom: 24px;
}

.question-images-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-img-btn {
  height: 97px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #f9fafb;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.option-img-btn:hover {
  background-color: #f1f1f1;
}

.option-img-btn img {
  width: 56px;
  height: 40px;
}

#prev-btn,
#next-btn {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #000;
  transition: all 0.3s ease-in-out;
}

/* .pagination_list_item:hover, */
#prev-btn:hover,
#next-btn:hover {
  background-color: #0f766e;
  color: #fff;
  opacity: 0.4;
}

/* .pagination_list_item.active {
  background-color: #0f766e;
  color: #fff;
} */

.pagination_list_item {}

.start {
  padding-top: 64px;
  border-top: 2px solid #e5e7eb;
}

.start .quiz-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
}

.rotate-180 {
  transform: rotate(180deg);
}

.start-img {
  width: 80px;
  height: 80px;
}

.start-title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.start-title--blue {
  color: #006fee;
}

.start_list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

.start-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #3f3f46;
  margin-bottom: 8px;
}

.start-item img {
  width: 28px;
  height: 28px;
  padding: 5px;
  box-sizing: border-box;
}

.start-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.start-button,
.banner-button {
  padding: 0 24px;
  min-width: 144px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f766e;
  height: 48px;
  font-size: 16px;
  font-weight: 300;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.start-button:hover,
.banner-button:hover {
  opacity: 0.8;
}

.banner-button {
  width: 100%;
  box-sizing: border-box;
}

.start-footer {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.banner {
  max-width: 440px;
  margin: 64px auto 0;
  flex: 1;
}

.banner .quiz-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.banner img {
  width: 100%;
  height: 180px;
}

.banner-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.6;
  margin: 0;
}

.banner-title-blue {
  color: #2563eb;
}

.banner-text {
  color: #3f425e;
  font-size: 16px;
}

@media (max-width: 870px) {
  .question-images {
    grid-template-columns: 1fr;
    height: auto;
    gap: 24px;
  }

  .question-images-main {
    margin: 0 auto;
  }
}

@media (max-width: 630px) {
  .question-images-main {
    height: auto;
  }
}

@media (max-width: 430px) {
  .start-buttons {
    flex-direction: column;
  }

  .option {
    padding: 16px;
  }
}

.pagination_disabled {
  display: none;
}

.pagination_list_item--1 {
  display: block;
}

.logo {
  height: 45px;
  width: auto;
}

/*! CSS Used from: https://myiq.com/_next/static/css/dc15a13a1d967453.css */
*,
::after,
::before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scroll-snap-strictness: proximity;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246/0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
}

*,
::after,
::before {
  box-sizing: border-box;
  border: 0px solid rgb(229, 231, 235);
}

::after,
::before {
  --tw-content: "";
}

button {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0px;
  padding: 0px;
}

button {
  text-transform: none;
}

button {
  appearance: button;
  background-color: initial;
  background-image: none;
}

p {
  margin: 0px;
}

button {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

.relative {
  position: relative;
}

.z-0 {
  z-index: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 1rem;
}

.box-border {
  box-sizing: border-box;
}

.inline-flex {
  display: inline-flex;
}

.h-\[60px\] {
  height: 60px;
}

.w-full {
  width: 100%;
}

.min-w-16 {
  min-width: 4rem;
}

.max-w-\[600px\] {
  max-width: 600px;
}

.transform-gpu {
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  user-select: none;
}

.appearance-none {
  appearance: none;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-3 {
  gap: 0.75rem;
}

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-small {
  border-radius: var(--heroui-radius-small);
}

.bg-green-custom {
  --tw-bg-opacity: 1;
  background-color: rgb(13 118 110/var(--tw-bg-opacity, 1));
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-normal {
  font-weight: 400;
}

.text-\[\#404040\] {
  --tw-text-opacity: 1;
  color: rgb(64 64 64/var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity, 1));
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0/0.1), 0 4px 6px -4px rgb(0 0 0/0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
}

.shadow-lg {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-default\/50 {
  --tw-shadow-color: hsl(var(--heroui-default)/0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.outline-transparent {
  outline-color: transparent;
}

.gap-3 {
  gap: 0.75rem;
}

.tap-highlight-transparent {
  -webkit-tap-highlight-color: transparent;
}

.transition-transform-colors-opacity {
  transition-property: transform, scale, color, background, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-text-decoration-color;
  transition-timing-function: ease;
  transition-duration: 0.25s;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0px;
}

button {
  font-family: inherit;
  font-size: 1.6rem;
  color: inherit;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  margin: 0px;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .motion-reduce\:transition-none {
    transition-property: none;
  }
}

@media (min-width: 1024px) {
  .lg\:text-left {
    text-align: left;
  }
}

.resultWrapper {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.resultWrapper button {
  margin-top: 2rem;
  border-radius: .5rem;
}

.resultWrapper button:hover {
  opacity: 0.8;
}