:root {
  --BG-Black: black;
  --BG-Button: #1D1D1D;
  --accent: #D3AE71;
  --font-white: white;
  --font-grey: #B0B0A2;
  --border-grey: #2E2E2D;
  --border-greyL: #707070;
  --flash: radial-gradient(
                                  ellipse 50% 16% at center,
                                  rgb(255, 255, 255) 2%,
                                  #D3AE71 30%,
                                  rgba(211,174,113,0) 100%
                              );
  --flash-null: radial-gradient(
                                  ellipse 50% 16% at center,
                                  rgba(255, 255, 255, 0) 2%,
                                  #d3ad7100 30%,
                                  rgba(211, 173, 113, 0) 100%
                              );
  --glow: drop-shadow(0px 2px 8px red);
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--BG-Black);
  padding: 0;
  margin: 0;
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
  font-weight: 400;
}

p {
  font-family: "Poppins", sans-serif;
}

header {
  text-align: center;
  margin-top: 8vh;
  transition: 0.2s ease-in-out;
  transform: scale(0.8);
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text span {
  font-family: "Cinzel", serif;
  color: var(--accent);
  font-size: 24px;
}
.logo-text span span {
  color: var(--font-white);
}
.logo-text small {
  color: var(--font-grey);
  font-size: 12px;
}

.logo {
  fill: var(--accent);
  width: 60px;
  height: auto;
}

.diagnostic-section {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  transition: 0.3s ease-in-out;
}
.diagnostic-section h1:nth-of-type(1) {
  color: var(--font-white);
  font-size: 50px;
  margin: 0;
  margin-bottom: -18px;
  margin-top: 60px;
}
.diagnostic-section h1:nth-of-type(2) {
  color: #7B7B7B;
  margin: 0;
  font-size: 36px;
  letter-spacing: 16px;
}
.diagnostic-section p:nth-of-type(1) {
  text-transform: uppercase;
  color: var(--font-white);
  letter-spacing: 5px;
  font-size: 16px;
  margin-top: 40px;
}

.line-div {
  height: 20px;
  background: var(--flash);
  margin-left: auto;
  margin-right: auto;
  filter: var(--glow);
}

.button-diag {
  position: relative;
  margin-top: 40px;
  margin-bottom: 90px;
  background-color: var(--BG-Button);
  border: solid 1px var(--border-greyL);
  border-radius: 100px;
  padding: 0;
}
.button-diag .btn-div {
  position: absolute;
  height: 18px;
  width: 80%;
  background: var(--flash);
  filter: var(--glow);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.button-diag .btn-div:nth-of-type(1) {
  top: -10px;
}
.button-diag .div2 {
  bottom: -10px;
}
.button-diag .btn {
  position: relative;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
  transition: 0.25s ease-in-out;
  border-radius: 100px;
  overflow: hidden;
  padding: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.button-diag .btn p {
  color: var(--font-white);
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
  margin-left: 20px;
  font-size: 16px;
}
.button-diag .btn svg {
  fill: var(--font-white);
  width: 40px;
  height: auto;
  transition: 0.3s ease-in-out;
  transform-origin: center;
}
.button-diag .btn::after {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0) 28%, rgba(255, 255, 255, 0.5) 50%, rgba(0, 0, 0, 0) 70%);
  animation: lightSweep 2s ease infinite;
}
.button-diag .btn:hover {
  box-shadow: 0px 0px 120px 2px rgba(255, 111, 0, 0.571);
  padding-right: 20px;
}
.button-diag .btn:hover p {
  color: var(--font-white);
}
.button-diag .btn:hover svg {
  transform: rotate(360deg) translateX(10px) scale(1.1);
  fill: var(--accent);
}
.button-diag .btn:hover::after {
  left: 20px;
}

.questions-section {
  transform: translate(100%);
  opacity: 0;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  overflow: hidden;
  position: relative;
  background-color: #111111;
  border: solid 1px #313131;
  border-radius: 20px;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.progress-bar {
  background-color: #363636;
  border-radius: 30px;
  height: 4px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.progress-bar div {
  background-color: var(--font-white);
  height: inherit;
  border-radius: 30px;
  width: 10%;
}

.back-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--font-grey);
  min-height: 40px;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  cursor: pointer;
}
.back-btn svg {
  height: 26px;
  width: auto;
}

.next {
  transform: scale(0.9);
  margin-left: auto;
  margin-bottom: 40px;
  display: block;
}

.answer {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(120deg, rgb(43, 43, 43) 0%, rgb(27, 27, 27) 100%);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  color: rgb(198, 198, 198);
  padding: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  display: block;
  transition: 0.25s ease-in-out;
}
.answer::before {
  content: "";
  height: 20px;
  width: 90%;
  display: block;
  z-index: 2;
  position: absolute;
  bottom: -10px;
  transition: 0.3s ease-in-out;
  background: var(--flash-null);
}
.answer::after {
  content: "";
  height: 20px;
  width: 90%;
  display: block;
  z-index: 2;
  position: absolute;
  top: -10px;
  transition: 0.3s ease-in-out;
  background: var(--flash-null);
}
.answer:hover::after {
  filter: var(--glow);
  background: var(--flash);
}
.answer:hover::before {
  filter: var(--glow);
  background: var(--flash);
}
.answer:hover {
  background: linear-gradient(120deg, rgb(86, 61, 44) 0%, rgb(24, 19, 19) 60%);
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 50px;
}

.quest-container {
  display: flex;
  gap: 60px;
  transition: 0.25s ease-in-out;
}

.mcq {
  width: 100%;
  flex-shrink: 0;
}
.mcq p {
  color: var(--font-white);
  margin-bottom: 40px;
  margin-top: 16px;
}

.slide-left {
  transform: translateX(-50vh);
  opacity: 0;
}

.question-anim {
  transform: translate(0);
  opacity: 1;
  pointer-events: auto;
}

.diagnostic-anim {
  transform: translate(-100%);
  opacity: 0;
  pointer-events: none;
}

.progress {
  transition: 0.3s ease-in-out;
}

.selected {
  background: linear-gradient(120deg, rgb(86, 61, 44) 0%, rgb(24, 19, 19) 60%);
}
.selected::before {
  filter: var(--glow);
  background: var(--flash);
}
.selected::after {
  filter: var(--glow);
  background: var(--flash);
}

.header-active {
  margin-top: 2vh;
}

.view-result {
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spinner {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-bottom: 50%;
}
.spinner svg {
  width: 60px;
  height: auto;
  fill: var(--accent);
  transition: 0.2 s ease-in-out;
  animation: spin 2s ease infinite;
  filter: var(--glow);
}
.spinner small {
  margin-top: 10px;
  text-align: center;
  color: var(--font-grey);
}

.result-section {
  text-align: center;
}
.result-section h2 {
  color: var(--font-white);
  font-size: 40px;
  margin-bottom: 0;
}
.result-section p {
  color: var(--font-grey);
}
.result-section small {
  color: var(--font-white);
  display: block;
}

#unlock-btn svg {
  height: 20px;
}

.form-section {
  background-color: #111111;
  border: solid 1px var(--border-grey);
  border-radius: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-section .button-diag {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.form-section .button-diag .btn {
  gap: 20px;
}
.form-section .button-diag .btn p {
  font-size: 14px;
}
.form-section .button-diag .btn svg {
  height: 26px;
}

.form-col2 {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-c-inp {
  width: 100%;
}
.form-c-inp label {
  color: #bca277;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
.form-c-inp input, .form-c-inp select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: black;
  border: solid 1px var(--border-grey);
  border-radius: 6px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  padding: 6px;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--font-white);
}
.form-c-inp input::-moz-placeholder, .form-c-inp select::-moz-placeholder {
  color: #2E2E2D;
  font-style: italic;
  font-size: 13px;
}
.form-c-inp input::placeholder, .form-c-inp select::placeholder {
  color: #2E2E2D;
  font-style: italic;
  font-size: 13px;
}
.form-c-inp input:focus, .form-c-inp select:focus {
  outline: none;
}
.form-c-inp textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: black;
  border: solid 1px var(--border-grey);
  border-radius: 6px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  padding: 6px;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--font-white);
  resize: none;
}
.form-c-inp textarea::-moz-placeholder {
  color: #2E2E2D;
  font-style: italic;
  font-size: 13px;
}
.form-c-inp textarea::placeholder {
  color: #2E2E2D;
  font-style: italic;
  font-size: 13px;
}
.form-c-inp textarea:focus {
  outline: none;
}
.form-c-inp select {
  margin-bottom: 10px;
}
.form-c-inp small {
  font-size: 12px;
}

.err input, .err textarea, .err select {
  border-color: rgb(174, 22, 22) !important;
}
.err small {
  color: rgb(170, 22, 22) !important;
}

.universal-loader {
  background-color: rgba(0, 0, 0, 0.503);
  backdrop-filter: blur(10px);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  transition: 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.universal-loader .spinner {
  margin-top: auto;
  margin-bottom: auto;
}

.loader {
  display: none;
}

.confirmation-section {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 200px;
  max-width: 500px;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}
.confirmation-section i {
  color: var(--font-grey);
  display: block;
}
.confirmation-section p {
  color: var(--font-white);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lightSweep {
  0% {
    transform: translateX(290px);
  }
  100% {
    transform: translateX(-290px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .diagnostic-section {
    width: 600px;
  }
}
@media screen and (min-width: 400px) and (max-width: 767px) {
  header {
    margin-top: 5vh;
  }
  .diagnostic-section {
    width: 340px;
  }
  .diagnostic-section h1:nth-of-type(1) {
    line-height: 55px;
  }
  .diagnostic-section h1:nth-of-type(2) {
    line-height: 40px;
    letter-spacing: 6px;
  }
  .diagnostic-section .button-diag {
    margin-top: 15vh;
  }
  .questions-section {
    width: 350px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 25px;
    height: 80vh;
  }
  .mcq p {
    font-size: 14px;
  }
  .answer {
    font-size: 12px;
  }
  .result-section {
    margin-left: 36px;
    margin-right: 36px;
  }
  .result-section h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 320px) and (max-width: 399px) {
  header {
    margin-top: 0vh;
    transform: scale(0.6);
  }
  body {
    justify-content: start;
  }
  .diagnostic-section {
    width: 270px;
  }
  .diagnostic-section h1:nth-of-type(1) {
    line-height: 55px;
    font-size: 30px;
  }
  .diagnostic-section h1:nth-of-type(2) {
    line-height: 40px;
    letter-spacing: 6px;
    font-size: 24px;
  }
  .diagnostic-section p:nth-of-type(1) {
    font-size: 12px;
  }
  .diagnostic-section .button-diag {
    margin-top: 15vh;
  }
  .questions-section {
    width: 300px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 25px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .mcq p {
    font-size: 14px;
    margin-top: 0;
  }
  .answer {
    font-size: 12px;
  }
  .back-btn {
    margin-top: 10px;
  }
  .back-btn svg {
    height: 20px;
  }
  .result-section {
    margin-left: 36px;
    margin-right: 36px;
  }
  .result-section h2 {
    font-size: 32px;
  }
}/*# sourceMappingURL=diagnostic.css.map */