@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.xform-container {
  font-family: "Nunito", sans-serif;
  background-color: #fffbf2;
  padding: 20px 0;
}

#xform-all-container, #xform-single-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 20px;
  max-width: 1140px;
  margin: 20px auto;
  border-radius: 8px;
  font-family: "Nunito", sans-serif;
  /* Loading State Styles */
  /* Progress Bar Styles */
  /* Section Checkboxes Styles */
  /* Disabled Button Styles */
}
@media (max-width: 768px) {
  #xform-all-container, #xform-single-container {
    flex-direction: column;
  }
}
#xform-all-container #xform-sidebar, #xform-single-container #xform-sidebar {
  min-width: 280px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  padding: 16px;
}
#xform-all-container #xform-sidebar h3, #xform-single-container #xform-sidebar h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
#xform-all-container #xform-sidebar .sidebar-section, #xform-single-container #xform-sidebar .sidebar-section {
  background: #E6ECFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  overflow: hidden;
}
#xform-all-container #xform-sidebar .sidebar-section:nth-last-child(1), #xform-single-container #xform-sidebar .sidebar-section:nth-last-child(1) {
  margin-bottom: 0;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-item-header, #xform-single-container #xform-sidebar .sidebar-section .sidebar-item-header {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-left-content, #xform-single-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-left-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-left-content .sidebar-item-header-icon, #xform-single-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-left-content .sidebar-item-header-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-left-content .sidebar-item-header-text, #xform-single-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-left-content .sidebar-item-header-text {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-right-content, #xform-single-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-right-content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-right-content svg, #xform-single-container #xform-sidebar .sidebar-section .sidebar-item-header .sidebar-item-header-right-content svg {
  margin-right: 5px;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-item-header.active .sidebar-item-header-right-content svg, #xform-single-container #xform-sidebar .sidebar-section .sidebar-item-header.active .sidebar-item-header-right-content svg {
  transform: rotate(180deg);
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-section-content ul, #xform-single-container #xform-sidebar .sidebar-section .sidebar-section-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 16px;
  width: 100%;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-section-content ul li, #xform-single-container #xform-sidebar .sidebar-section .sidebar-section-content ul li {
  width: 100%;
  cursor: pointer;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border-left: 3px solid transparent;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-section-content ul li.active, #xform-single-container #xform-sidebar .sidebar-section .sidebar-section-content ul li.active {
  border-color: #35407C;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info, #xform-single-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info {
  width: 100%;
  position: relative;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info .test-name, #xform-single-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info .test-name {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info .test-meta, #xform-single-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info .test-meta {
  font-size: 14px;
  font-weight: 800;
  color: #35407C;
}
#xform-all-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info::after, #xform-single-container #xform-sidebar .sidebar-section .sidebar-section-content ul li .test-info::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #35407C;
  border-radius: 50%;
}
#xform-all-container #xform-main, #xform-single-container #xform-main {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#xform-all-container #xform-main .xform-test-container, #xform-single-container #xform-main .xform-test-container {
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#xform-all-container #xform-main .xform-tests-container, #xform-single-container #xform-main .xform-tests-container {
  padding: 16px;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests, #xform-single-container #xform-main .xform-tests-container .xform-tests {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test {
  flex-grow: 1;
  width: calc(33.3333333333% - 16px);
  min-width: 250px;
  min-height: 250px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(128, 128, 128, 0.1);
  border-radius: 14px;
  padding: 16px;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition-duration: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test:hover, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test:hover {
  box-shadow: 0 4px 8px rgba(128, 128, 128, 0.2);
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-ribbon, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-ribbon {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #35407C;
  color: #fff;
  gap: 8px;
  font-size: 14px;
  border-radius: 0 0 14px 0;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-ribbon .ribbon-icon, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-ribbon .ribbon-icon {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  display: flex;
  align-items: center;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-title, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-title {
  font-size: 20px;
  font-weight: 600;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-meta, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-meta {
  font-size: 14px;
  font-weight: 400;
  color: #35407C;
  text-transform: lowercase;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-description, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-description {
  font-size: 14px;
  margin-top: 10px;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-trigger, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-trigger {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
#xform-all-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-trigger::after, #xform-single-container #xform-main .xform-tests-container .xform-tests .xform-test .xform-test-trigger::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #35407C;
  border-radius: 50%;
  margin-left: 8px;
}
#xform-all-container #xform-main .xform-introduction, #xform-single-container #xform-main .xform-introduction {
  min-width: 100%;
  display: block;
  min-height: 200px;
  overflow: hidden;
  margin: 10px auto;
}
#xform-all-container #xform-main .xform-test-header, #xform-single-container #xform-main .xform-test-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#xform-all-container #xform-main .xform-test-header .xform-title-container, #xform-single-container #xform-main .xform-test-header .xform-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#xform-all-container #xform-main .xform-test-header .xform-title-container .xform-title, #xform-single-container #xform-main .xform-test-header .xform-title-container .xform-title {
  margin: 0;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
}
#xform-all-container #xform-main .xform-test-header .xform-title-container span, #xform-single-container #xform-main .xform-test-header .xform-title-container span {
  display: block;
  font-size: 12px;
  color: #c3636c;
  font-weight: 600;
  min-width: -moz-max-content;
  min-width: max-content;
  border-bottom: 1px solid #c3636c;
  padding: 4px 8px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #xform-all-container #xform-main .xform-test-header .xform-title-container span, #xform-single-container #xform-main .xform-test-header .xform-title-container span {
    display: none;
  }
}
#xform-all-container #xform-main .xform-test-header .xform-steps, #xform-single-container #xform-main .xform-test-header .xform-steps {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: end;
}
@media (max-width: 768px) {
  #xform-all-container #xform-main .xform-test-header .xform-steps, #xform-single-container #xform-main .xform-test-header .xform-steps {
    flex-direction: column-reverse;
    align-items: end;
    justify-content: end;
    max-width: 50%;
  }
}
#xform-all-container #xform-main .xform-test-header .xform-steps .xform-progress-bar, #xform-single-container #xform-main .xform-test-header .xform-steps .xform-progress-bar {
  width: 100%;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 5px;
  overflow: hidden;
}
#xform-all-container #xform-main .xform-test-header .xform-steps .xform-progress-bar .xform-progress-fill, #xform-single-container #xform-main .xform-test-header .xform-steps .xform-progress-bar .xform-progress-fill {
  height: 100%;
  background-color: #20b486;
  transition: width 0.3s ease-in-out;
}
#xform-all-container #xform-main .xform-test-header .xform-steps .xform-steps-counter, #xform-single-container #xform-main .xform-test-header .xform-steps .xform-steps-counter {
  display: block;
  width: 100%;
  max-width: 70px;
  text-align: right;
  font-size: 10px;
  font-weight: bold;
}
#xform-all-container #xform-main .xform-description, #xform-single-container #xform-main .xform-description {
  display: block;
  font-size: 12px;
}
#xform-all-container #xform-main .xform-introduction, #xform-single-container #xform-main .xform-introduction {
  min-width: 100%;
  display: block;
  min-height: 200px;
  overflow: hidden;
  margin: 10px auto;
}
#xform-all-container #xform-main .xform-mcq, #xform-single-container #xform-main .xform-mcq {
  display: block;
}
#xform-all-container #xform-main .xform-mcq h3, #xform-single-container #xform-main .xform-mcq h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
#xform-all-container #xform-main .xform-mcq .xform-field, #xform-single-container #xform-main .xform-mcq .xform-field {
  padding: 10px 0;
  display: block;
}
#xform-all-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image), #xform-single-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 768px) {
  #xform-all-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image), #xform-single-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image) {
    flex-direction: column;
  }
  #xform-all-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image) .field-question, #xform-single-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image) .field-question {
    min-width: 100%;
  }
  #xform-all-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image) .field-options, #xform-single-container #xform-main .xform-mcq .xform-field:has(.field-question.has-image) .field-options {
    max-width: 70%;
  }
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-question, #xform-single-container #xform-main .xform-mcq .xform-field .field-question {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-question.has-image, #xform-single-container #xform-main .xform-mcq .xform-field .field-question.has-image {
  min-width: 50%;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options, #xform-single-container #xform-main .xform-mcq .xform-field .field-options {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options:has(.has-image), #xform-single-container #xform-main .xform-mcq .xform-field .field-options:has(.has-image) {
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
  max-width: 30%;
}
@media (max-width: 768px) {
  #xform-all-container #xform-main .xform-mcq .xform-field .field-options:has(.has-image), #xform-single-container #xform-main .xform-mcq .xform-field .field-options:has(.has-image) {
    max-width: 100%;
  }
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div {
  width: 100%;
  max-width: 400px;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div.xform-field__multiple-indicator, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div.xform-field__multiple-indicator {
  width: -moz-max-content;
  width: max-content;
  border-radius: 50px;
  padding: 3px 20px;
  background-color: #ED7E97;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div input, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div input {
  display: none;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div label, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div label {
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50%;
  min-height: 50px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition-duration: 0.3s;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div label:hover, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div label:hover {
  background-color: #e5e7eb;
  border-color: #6070c0;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div input:checked + label, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div input:checked + label {
  background-color: #35407C;
  color: #fff;
  border-color: #35407C;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div.has-image, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div.has-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: calc(50% - 4px) !important;
  width: auto;
}
#xform-all-container #xform-main .xform-mcq .xform-field .field-options div.has-image label, #xform-single-container #xform-main .xform-mcq .xform-field .field-options div.has-image label {
  padding: 0px 0px;
}
#xform-all-container #xform-main .xform-rating, #xform-single-container #xform-main .xform-rating {
  display: block;
}
#xform-all-container #xform-main .xform-rating .xform-field, #xform-single-container #xform-main .xform-rating .xform-field {
  display: block;
  margin-bottom: 20px;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-question, #xform-single-container #xform-main .xform-rating .xform-field .field-question {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div, #xform-single-container #xform-main .xform-rating .xform-field .field-options div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 8px;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div input, #xform-single-container #xform-main .xform-rating .xform-field .field-options div input {
  display: none;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label span, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label span {
  display: none;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label::before, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 2px solid #e9e9e9;
  border-radius: 50%;
  display: inline-block;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label[data-color="0"]::before, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label[data-color="0"]::before {
  background-color: #fccfd4;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label[data-color="1"]::before, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label[data-color="1"]::before {
  background-color: #fde5e5;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label[data-color="2"]::before, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label[data-color="2"]::before {
  background-color: #ffffff;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label[data-color="3"]::before, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label[data-color="3"]::before {
  background-color: #eaf9e6;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div label[data-color="4"]::before, #xform-single-container #xform-main .xform-rating .xform-field .field-options div label[data-color="4"]::before {
  background-color: #c1efb1;
}
#xform-all-container #xform-main .xform-rating .xform-field .field-options div input:checked + label::before, #xform-single-container #xform-main .xform-rating .xform-field .field-options div input:checked + label::before {
  border-color: #000000;
}
#xform-all-container #xform-main .xform-rating-test-guide, #xform-single-container #xform-main .xform-rating-test-guide {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
}
#xform-all-container #xform-main .xform-rating-test-guide .rating-option span, #xform-single-container #xform-main .xform-rating-test-guide .rating-option span {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  width: 90px;
  font-size: 10px;
  gap: 8px;
}
#xform-all-container #xform-main .xform-rating-test-guide .rating-option span::before, #xform-single-container #xform-main .xform-rating-test-guide .rating-option span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: inline-block;
}
#xform-all-container #xform-main .xform-rating-test-guide .rating-option span[data-color="0"]::before, #xform-single-container #xform-main .xform-rating-test-guide .rating-option span[data-color="0"]::before {
  background-color: #fccfd4;
}
#xform-all-container #xform-main .xform-rating-test-guide .rating-option span[data-color="1"]::before, #xform-single-container #xform-main .xform-rating-test-guide .rating-option span[data-color="1"]::before {
  background-color: #fde5e5;
}
#xform-all-container #xform-main .xform-rating-test-guide .rating-option span[data-color="2"]::before, #xform-single-container #xform-main .xform-rating-test-guide .rating-option span[data-color="2"]::before {
  background-color: #ffffff;
}
#xform-all-container #xform-main .xform-rating-test-guide .rating-option span[data-color="3"]::before, #xform-single-container #xform-main .xform-rating-test-guide .rating-option span[data-color="3"]::before {
  background-color: #eaf9e6;
}
#xform-all-container #xform-main .xform-rating-test-guide .rating-option span[data-color="4"]::before, #xform-single-container #xform-main .xform-rating-test-guide .rating-option span[data-color="4"]::before {
  background-color: #c1efb1;
}
#xform-all-container #xform-main .xform-step-navigation, #xform-single-container #xform-main .xform-step-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}
#xform-all-container .xform-loading-state, #xform-single-container .xform-loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
#xform-all-container .xform-loading-content, #xform-single-container .xform-loading-content {
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 20px;
}
#xform-all-container .xform-loading-content h3, #xform-single-container .xform-loading-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}
#xform-all-container .xform-loading-content h4, #xform-single-container .xform-loading-content h4 {
  font-size: 14px;
  margin: 15px 0;
  color: #555;
}
#xform-all-container .xform-loading-content p, #xform-single-container .xform-loading-content p {
  font-size: 14px;
  font-weight: bold;
}
#xform-all-container .xform-loading-spinner, #xform-single-container .xform-loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #35407C;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  margin: 0 auto 20px;
}
#xform-all-container .xform-loading-progress, #xform-single-container .xform-loading-progress {
  width: 100%;
  height: 10px;
  background-color: #f3f3f3;
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}
#xform-all-container .xform-loading-progress-bar, #xform-single-container .xform-loading-progress-bar {
  height: 100%;
  background-color: #35407C;
  border-radius: 10px;
  transition: width 0.3s ease;
}
#xform-all-container .xform-section-checkboxes, #xform-single-container .xform-section-checkboxes {
  margin: 20px 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#xform-all-container .xform-section-checkbox, #xform-single-container .xform-section-checkbox {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 10px;
}
#xform-all-container .xform-section-checkbox input[type=checkbox]:disabled, #xform-single-container .xform-section-checkbox input[type=checkbox]:disabled {
  display: none;
}
#xform-all-container .xform-section-checkbox::before, #xform-single-container .xform-section-checkbox::before {
  content: "";
  margin-right: 10px;
  min-width: 18px;
  min-height: 18px;
  background-color: #cccccc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 50%;
}
#xform-all-container .xform-section-checkbox:has(:checked)::before, #xform-single-container .xform-section-checkbox:has(:checked)::before {
  content: "✓";
  background-color: #35407C;
}
#xform-all-container .xform-section-checkbox span, #xform-single-container .xform-section-checkbox span {
  font-size: 14px;
  color: #555;
}
#xform-all-container .xform-btn-primary:disabled, #xform-single-container .xform-btn-primary:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#xform-single-container {
  padding: 0 20px;
}

.xform-btn-primary {
  display: inline-block;
  min-width: 150px;
  padding: 10px 20px;
  background-color: #35407C;
  border-color: #35407C;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
}
.xform-btn-primary:hover {
  background-color: #6070c0;
  border-color: #6070c0;
}
.xform-btn-primary:active, .xform-btn-primary:focus {
  background-color: #35407C;
  border-color: #35407C;
}
.xform-btn-primary:active:hover, .xform-btn-primary:focus:hover {
  background-color: #6070c0;
  border-color: #6070c0;
}

.xform-btn-secondary {
  display: inline-block;
  min-width: 150px;
  padding: 10px 20px;
  background-color: #fff;
  border-color: #ED7E97;
  color: #ED7E97;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.xform-btn-secondary:hover {
  background-color: #35407C;
  border-color: #35407C;
}
.xform-btn-secondary:active, .xform-btn-secondary:focus {
  background-color: #fff;
  color: #ED7E97;
  border-color: #ED7E97;
}
.xform-btn-secondary:active:hover, .xform-btn-secondary:focus:hover {
  background-color: #35407C;
  border-color: #35407C;
  color: #fff;
}

.brain_aura_main {
  background-color: #fffbf2;
  background-image: url(../img/bg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: calc(100vh - 200px);
  font-family: "Nunito", sans-serif;
  overflow: hidden;
}
.brain_aura_main.plain {
  background-image: none;
}
.brain_aura_main .login-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  min-height: calc(100vh - 200px);
}
.brain_aura_main .login-form-container .login-form {
  width: 440px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 35px;
  position: relative;
}
.brain_aura_main .login-form-container .login-form::before {
  content: "";
  display: block;
  width: 250px;
  height: 250px;
  background-image: url(../img/brain-fcon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -150px;
  right: -195px;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .brain_aura_main .login-form-container .login-form::before {
    top: -110px;
    right: 50%;
    transform: translate(50%, 0);
    width: 150px;
    height: 150px;
  }
}
.brain_aura_main .brain-aura-form .form-header {
  text-align: center;
  margin-bottom: 28px;
}
.brain_aura_main .brain-aura-form .form-header h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}
.brain_aura_main .brain-aura-form .form-header p {
  font-size: 16px;
}
.brain_aura_main .brain-aura-form .form-field {
  margin-bottom: 16px;
}
.brain_aura_main .brain-aura-form .form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.brain_aura_main .brain-aura-form .form-field input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #D8D8D8;
  background-color: #F1F4F9;
  border-radius: 8px;
}
.brain_aura_main .brain-aura-form .form-field input::-moz-placeholder {
  color: #A6A6A6;
  font-weight: 100;
}
.brain_aura_main .brain-aura-form .form-field input::placeholder {
  color: #A6A6A6;
  font-weight: 100;
}
.brain_aura_main .brain-aura-form .form-field input:hover {
  border-color: #A6A6A6;
}
.brain_aura_main .brain-aura-form .form-field input:focus {
  outline: none;
  border-color: #35407C;
}
.brain_aura_main .brain-aura-form .form-field.otp-fields {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.brain_aura_main .brain-aura-form .form-field.otp-fields input {
  padding: 12px 16px;
  text-align: center;
}
.brain_aura_main .brain-aura-form .form-field.otp-fields input:focus::-moz-placeholder {
  color: transparent;
}
.brain_aura_main .brain-aura-form .form-field.otp-fields input:focus::placeholder {
  color: transparent;
}
.brain_aura_main .brain-aura-form .form-actions {
  text-align: center;
  padding-top: 8px;
}
.brain_aura_main .brain-aura-form .form-actions button {
  padding: 10px 20px;
  background-color: #35407C;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}
.brain_aura_main .brain-aura-form .form-actions button:hover {
  background-color: #6070c0;
}
.brain_aura_main .brain-aura-form .form-actions a {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #ED7E97;
  text-decoration: none;
}
.brain_aura_main .brain-aura-form .form-actions a:hover {
  text-decoration: underline;
}
.brain_aura_main .brain-aura-form .form-errors {
  color: red;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
}
.brain_aura_main .loading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: calc(100vh - 200px);
}
.brain_aura_main .loading-container .loading-dots {
  display: flex;
  gap: 8px;
}
.brain_aura_main .loading-container .loading-dots span {
  width: 10px;
  height: 10px;
  background-color: #ED7E97;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease-in-out;
}
.brain_aura_main .loading-container .loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.brain_aura_main .loading-container .loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.brain_aura_main .loading-container .loading-dots.complete span {
  animation: none;
  background-color: #4CAF50;
}
.brain_aura_main .loading-container .loading-status {
  font-size: 16px;
  font-weight: 800;
  margin-top: 8px;
}
.brain_aura_main .brain-aura-checkout {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 8px;
  border-radius: 10px;
  padding: 20px 40px;
  background-color: #C4D5F2;
  max-width: 1140px;
  margin: 20px auto;
}
.brain_aura_main .brain-aura-checkout .checkout-header {
	padding: 20px 0;
	flex-grow: 1;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-evenly;
	max-width: 100%;
}
.brain_aura_main .brain-aura-checkout .checkout-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #35407C;
}
.brain_aura_main .brain-aura-checkout .checkout-header img {
  width: 100%;
  max-width: 300px;
}
.brain_aura_main .brain-aura-checkout .checkout-body {
  flex-grow: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 100%;
}
.brain_aura_main .brain-aura-checkout .checkout-body .order-details {
  background-color: #E5E8F9;
  border-radius: 10px;
  padding: 15px 25px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .order-details .order-items .order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 16px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .order-details .order-items .order-item:last-child {
  border-top: 1px solid #D8D8D8;
  font-weight: 800;
}
.brain_aura_main .brain-aura-checkout .checkout-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 20px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group {
  flex-grow: 1;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #D8D8D8;
  background-color: #E5E8F9;
  border-radius: 8px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group input::-moz-placeholder {
  color: #A6A6A6;
  font-weight: 100;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group input::placeholder {
  color: #A6A6A6;
  font-weight: 100;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group input:active, .brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group input:focus {
  outline: none;
  border-color: #35407C;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group input.invalid {
  border-color: red;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group button[type=submit] {
  margin-top: 20px;
  display: inline-block;
  min-width: 150px;
  width: 100%;
  padding: 10px 20px;
  background-color: #35407C;
  border-color: #35407C;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group button[type=submit]:hover {
  background-color: #6070c0;
  border-color: #6070c0;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group button[type=submit]:active, .brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group button[type=submit]:focus {
  background-color: #35407C;
  border-color: #35407C;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group button[type=submit]:active:hover, .brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group button[type=submit]:focus:hover {
  background-color: #6070c0;
  border-color: #6070c0;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group:has(input.invalid) label {
  color: red;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .form-row .form-group .stripe-element {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brain_aura_main .brain-aura-checkout .checkout-body .payment-form form .checkout-notice {
  font-size: 14px;
}
.brain_aura_main .highlighted-text {
  color: #ED7E97;
}
.brain_aura_main .dashboard-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 16px;
  border-radius: 10px;
  max-width: 1140px;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .brain_aura_main .dashboard-container {
    flex-direction: column;
    padding: 20px;
    gap: 8px;
  }
  .brain_aura_main .dashboard-container .sidebar, .brain_aura_main .dashboard-container .main-content {
    max-width: 100%;
  }
}
.brain_aura_main .dashboard-container .sidebar, .brain_aura_main .dashboard-container .main-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.brain_aura_main .dashboard-container .sidebar {
  flex-grow: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px 20px;
  max-width: 25%;
}
@media (max-width: 768px) {
  .brain_aura_main .dashboard-container .sidebar {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-header {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-header .sidebar-toggle {
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/chevron-down-circle.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-header {
    margin-bottom: 0px;
    margin-top: 10px;
  }
  .brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-header h2 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-header .sidebar-toggle {
    display: block;
  }
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 768px) {
  .brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links.active {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
  }
  .brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links :first-child {
    margin-top: 10px;
  }
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #35407C;
  border-radius: 5px;
  transition-duration: 0.3s;
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links a:hover {
  background-color: #C4D5F2;
  color: #35407C;
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links a.active {
  background-color: #35407C;
  color: #fff;
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links a.danger {
  background-color: #F2D6D6;
  color: #ED7E97;
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links a.danger:hover {
  background-color: #ED7E97;
  color: #fff;
}
.brain_aura_main .dashboard-container .sidebar .sidebar-content .sidebar-links hr {
  margin: 2px 0;
  border: none;
  border-top: 1px solid #D8D8D8;
  width: 100%;
}
.brain_aura_main .dashboard-container .main-content {
  flex-grow: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 75%;
}
@media (max-width: 768px) {
	.brain_aura_main .dashboard-container .main-content {
		max-width: 100%;
	}
	.brain_aura_main .brain-aura-checkout{
		flex-direction: column !important;
	}
	.brain_aura_main .brain-aura-checkout .checkout-header h1{
		font-size: 30px;
	}

}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}