/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 24 2026 | 15:20:28 */
/* -- PHASE 1: QUESTIONS -- */

.start-test-container {
  margin-top: 40px;
  text-align: center;
}

.start-test {
  width: 50%;
  padding: 6px;
  font-size: .9rem;
  color: #fff;
  border: none;
  border-radius: 4px;
  background-color: #5073aa;
  cursor: pointer;
}

.start-test:hover {
  background-color: #405f90;
}

.test-container {
  max-width: 800px;
  margin: 20px 0 60px 0;
  padding: 20px 20px 40px;
  border: 1px solid #8e8e8e;
  border-radius: 6px;
  overflow-x: hidden;
}

.intro-text-test {
  font-size: 1rem;
  line-height: 1.4;
}

.question-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #8e8e8e;
  overflow-x: hidden;
}

.question-container input {
  display: none;
}

.question-label {
  padding: 10px 16px;
  text-align: center;
  font-size: .8rem;
  line-height: 1.3;
  border: 1px solid #888;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
}

input:not(:checked) + .question-label:hover {
  background-color: #6963;
}

input:checked + label {
  background-color: #696;
  color: #fff;
  border: 1px solid #696;
}

.fadeIn-element {
  margin-bottom: 0;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.animate-element {
  display: inline-block;
  animation: slideInRight 0.5s ease-out forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.question-container .prompt-sections {
  margin: 0;
  font-size: 1rem;
  color: #2f2e2e;
}

.question-container .questions-sections {
  margin: 0;
  text-align: center;
  font-size: .9rem;
  line-height: 1.4;
  font-weight: 600;
  color: #5073aa;
}

.test-container .hidden {
  display: none;
}

/* -- PHASE 2: RESULTS -- */

/* - Summary result - */

.result-summary-container {
  padding: 24px 10px 20px 10px;
  margin: 40px 0 10px 0;
  border-top: 1px solid #8e8e8e;
  border-bottom: 1px solid #8e8e8e;
}

.result-summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0;
  padding: 20px 0 0 0;
  list-style: none;
}

.intro-text-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.main-lang-icon {
  width: 1.7rem;
}

.main-lang-icon svg {
  color: #5073aa;
  width: 1.8rem;
  height: auto;
}

.main-love-language-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #5073aa;
}

.result-summary-list li {
  display: grid;
  grid-template-columns: 46px 2fr .5fr;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 3px 3px 1px 0 #aaa;
}

.result-summary-list li:first-child {
  margin-bottom: 14px;
  border: 2px solid #fff;
  box-shadow: 2px 2px 6px 4px #999;
}

.name-description-lang-container {
  display: flex;
  flex-direction: column;
  gap: -6;
}

.language-icon {
  width: 1.6rem;
  height: auto;
}

.language-name {
  margin-bottom: -8px;
  font-size: 1.1rem;
}

.language-description {
  font-size: .8rem;
}

.language-percentage {
  font-size: 1.3rem;
  font-weight: 600;
}

.language1 {
  background: #5073aa;
}

.language2 {
  background: #5f85be;
}

.language3 {
  background: #6f92c8;
}

.language4 {
  background: #7a9fd5;
}

.language5 {
  background: #8cafe4;
}

/* - Main language result - */

.result-container {
  padding-top: 20px;
}

.header-sections {
  font-size: 1.5rem;
  color: #5073aa;
}

.question-main-language {
  margin-bottom: 10px;
  color: #5073aa;
  font-weight: 600;
}

.result-container .question-supporting-lang {
  margin-bottom: 10px;
  color: #5073aa;
  font-weight: 600;
}

.secondary-language-name {
  margin-bottom: 10px;
  color: #5073aa;
  font-weight: 600;
}

.result-container .language-meaning-text {
  margin-bottom: 20px;
  font-size: .9rem;
  line-height: 1.4;
}

.result-container ul .language-meaning-text {
  margin-bottom: 6px;
  line-height: 1.4;
}

.show-support-lang {
  padding: 10px 28px;
  font-size: 1rem;
  color: #fff;
  border: none;
  border-radius: 4px;
  background-color: #696;
  cursor: pointer;
}

.btns-container-info-langs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0 30px;
}

.btn-show-info-lang {
  width: 50%;
  padding: 10px;
  font-size: .8rem;
  line-height: 1.3;
  color: #fff;
  border: 1px solid #5073aa;
  border-radius: 4px;
  background-color: #5073aa;
  cursor: pointer;
}

.btn-reset-test-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding: 40px 0 0;
  border-top: 1px solid #5073aa;
}

.btn-reset-test {
  width: 18%;
  padding: 4px;
  font-size: .7rem;
  color: #696;
  border: 2px solid #696;
  border-radius: 26px;
  background-color: #fff;
  cursor: pointer;
}

.btn-reset-test:hover {
  background-color: #696;
  border: 2px solid #696;
  color: #fff;
}

/* -- PROGRESS BAR -- */

.progress-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  height: 100px;
  margin: 60px 0 0;
  padding: 18px 60px 0 60px;
  border-top: 1px solid #8e8e8e;
}

.progress-bar-container {
  height: 8px;
  width: 100%;
  border: 1px solid #a8a7a7;
  border-radius: 5px;
}

.progress-container p {
  margin: 0;
  text-align: center;
  font-size: .7rem;
  color: #303030;
}

.progress-bar {
  height: 8px;
  width: 0;
  border-radius: 5px;
  background-color: #696;
  transition: width .5s;
}

/* -- MOBILE VERSION-- */

@media (max-width: 550px) {

  .result-summary-container {
    text-align: center;
  }

  .result-summary-container h3 {
    line-height: 1.2;
  }

  .intro-text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .main-lang-icon {
    height: 26px;
    margin-top: 10px;
  }

  .result-summary-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
	margin-top: 30px;
    padding: 20px 6px;
  }

  .result-summary-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    line-height: 1.3;
  }
	
  .result-summary-list li:first-child {
    width: 100%;
  }
	
  .name-description-lang-container {
    gap: 14px;
  }

  .result-summary-list output {
    padding-top: 20px;
  }

  .result-container .list-main-lang-meaning {
    padding-left: 4px;
  }
	
  .btns-container-info-langs {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .btn-show-info-lang {
    width: 100%;
  }

  .btn-reset-test {
    width: 44%;
  }
}