@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary: #f9b000;
  --primary-dark: #c38a00;
  --black: #333;
  --error: #ff5050;
  --success: #6cc86f;
  --blue: #0078f9;
}

body {
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  background-color: #eee;
  font-family: Roboto, sans-serif;
}

.app-page {
  flex-direction: column;
  gap: 60px;
  padding: 20px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-page {
    gap: 30px;
    padding: 0 0 100px;
  }
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgba(249, 176, 0, .25);
}

@media only screen and (max-width: 1023px) {
  .mobile-sticky-bottom {
    background-color: #fff;
    width: 100%;
    padding: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center !important;
    margin: 0 !important;
  }

  .mobile-sticky-bottom .btn {
    width: 100%;
    display: block;
  }
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-disabled-bg: #666;
  --bs-btn-disabled-border-color: #666;
  font-weight: 600;
}

.app-login {
  padding: 60px;
}

.app-login .app-login__logo img {
  width: 150px;
}

.app-login .app-login__wrapper {
  flex-direction: column;
  align-items: center;
  gap: 40px;
  display: flex;
}

.app-login .app-login__title {
  text-align: center;
  font-size: 20px;
}

.app-login .app-login__wrapper > .d-flex {
  width: 100%;
  max-width: 760px;
}

.app-login .card {
  width: 100%;
}

.app-login .form-control {
  padding: .45rem .55rem;
  font-size: .95rem;
}

.app-login .form-control::-ms-input-placeholder {
  color: #aaa;
  opacity: 1;
  font-size: .9em;
}

.app-login .form-control::placeholder {
  color: #aaa;
  opacity: 1;
  font-size: .9em;
}

@media (max-width: 767px) {
  .app-login {
    padding: 16px;
  }

  .app-login .app-login__logo img {
    width: 90px;
  }

  .app-login .app-login__wrapper {
    gap: 16px;
  }

  .app-login .app-login__title {
    font-size: 16px;
  }

  .app-login .form-control {
    padding: 8px 12px;
  }
}

.card {
  --bs-card-border-radius: 12px;
  --bs-border-radius: 12px;
  border: 0;
}

.card.card--error {
  background-color: var(--error);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.card.card--error .card-body {
  padding: 20px;
}

.card .card-body {
  padding: 40px;
}

@media only screen and (max-width: 1023px) {
  .card .card-body {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .card .card-body {
    padding: 12px;
  }
}

.card .card-header {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .card .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .card .card-header {
    gap: 10px;
    padding: 12px 16px;
  }
}

.form-control {
  padding: 10px 16px;
}

.form-check-input {
  cursor: pointer;
  border-width: 2px;
  width: 1.4em;
  height: 1.4em;
  margin-top: .2em;
}

.form-check-label {
  cursor: pointer;
  padding-left: .4em;
}

.app-nav {
  z-index: 10;
  background-color: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 16px 20px 10px rgba(0, 0, 0, .05);
}

@media only screen and (max-width: 1023px) {
  .app-nav {
    border-radius: 0;
    justify-content: space-between;
    padding: 8px 14px;
  }
}

.app-nav .app-nav__wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-nav .app-nav__wrapper {
    background-color: #fff;
    flex-direction: column;
    height: 100%;
    padding: 80px 20px 20px;
    transition: all .3s;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(100%);
  }

  .app-nav .app-nav__wrapper.show {
    transform: translateX(0%);
  }
}

.app-nav .app-nav__left {
  align-items: center;
  gap: 30px;
  display: flex;
}

.app-nav .app-nav__logo {
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.app-nav .app-nav__logo img {
  width: 70px;
}

@media only screen and (max-width: 1023px) {
  .app-nav .app-nav__logo {
    border: 0;
    padding-right: 0;
  }

  .app-nav .app-nav__logo img {
    width: 56px;
  }
}

.app-nav .app-nav__partner-logo img {
  width: 50px;
}

@media only screen and (max-width: 1023px) {
  .app-nav .app-nav__partner-logo {
    margin-bottom: 20px;
  }

  .app-nav .app-nav__partner-logo img {
    width: auto;
    max-width: 56px;
    max-height: 34px;
  }
}

.app-nav .app-nav__right {
  border-left: 1px solid #eee;
  align-items: center;
  gap: 15px;
  padding-left: 20px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-nav .app-nav__right {
    border: 0;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }

  .app-nav .app-nav__right .btn {
    width: 100%;
    display: block;
  }
}

.app-nav .app-nav__link {
  color: var(--black);
  text-decoration: none;
  transition: all .3s;
}

.app-nav .app-nav__link:hover {
  color: var(--primary);
}

@media only screen and (max-width: 1023px) {
  .app-nav .app-nav__link {
    font-size: 18px;
    font-weight: 700;
  }
}

.app-nav .app-nav__info {
  line-height: 1;
}

.app-nav .app-nav__info svg {
  color: #a8a8a8;
  font-size: 28px;
}

@media only screen and (max-width: 480px) {
  .app-nav .app-nav__info svg {
    font-size: 22px;
  }
}

.app-nav .app-nav__details {
  align-items: center;
  gap: 25px;
  font-size: 14px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-nav .app-nav__details {
    text-align: center;
    flex-direction: column;
    gap: 14px;
    font-size: 16px;
  }
}

.app-nav .app-nav__details-text {
  white-space: nowrap;
}

.app-nav .app-nav__details-text span {
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  .app-nav .app-nav__details-text {
    white-space: normal;
    font-size: 15px;
  }
}

.app-nav .app-nav__mobile-bar {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.app-nav .app-nav__mobile-subject {
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
}

.app-nav .app-nav__mobile-subject span {
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  .app-nav .app-nav__mobile-subject span {
    display: none;
  }
}

.app-nav .app-nav__mobile-save {
  white-space: nowrap;
  flex-shrink: 0;
}

@media only screen and (max-width: 480px) {
  .app-nav .app-nav__mobile-save {
    padding: 4px 8px;
  }
}

.app-nav .app-nav__hamburger {
  width: 35px;
  height: 18px;
  display: none;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .app-nav .app-nav__hamburger {
    display: block;
  }
}

.app-nav .app-nav__hamburger span {
  transform-origin: 0;
  background-color: #000;
  width: 35px;
  height: 2px;
  transition: all .3s;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.app-nav .app-nav__hamburger span:first-of-type {
  opacity: 0;
  width: 0;
  top: 50%;
}

.app-nav .app-nav__hamburger span:nth-of-type(2) {
  top: 50%;
}

.app-nav .app-nav__hamburger span:nth-of-type(3) {
  top: 50%;
}

.app-nav .app-nav__hamburger span:nth-of-type(2) {
  transform: rotate(45deg) translateX(-50%);
}

.app-nav .app-nav__hamburger span:nth-of-type(3) {
  transform: rotate(-45deg) translateX(-50%);
}

.app-nav .app-nav__hamburger span:nth-of-type(4) {
  opacity: 0;
  width: 0;
  top: 50%;
}

.app-nav .app-nav__hamburger.collapsed span:first-of-type {
  opacity: 1;
  width: 35px;
  top: 0;
}

.app-nav .app-nav__hamburger.collapsed span:nth-of-type(2) {
  top: 50%;
  transform: rotate(0) translateX(-50%);
}

.app-nav .app-nav__hamburger.collapsed span:nth-of-type(3) {
  top: 50%;
  transform: rotate(0) translateX(-50%);
}

.app-nav .app-nav__hamburger.collapsed span:nth-of-type(4) {
  opacity: 1;
  width: 35px;
  top: 100%;
}

.app-question {
  border: 1px solid var(--error);
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px;
  transition: all .3s;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .app-question {
    padding: 8px;
  }
}

.app-question.app-question--completed {
  border: 1px solid var(--success);
  background: #f2fef0;
}

.app-question .app-question__mark {
  color: var(--error);
  font-size: 1.4em;
  position: absolute;
  top: 12px;
  right: 12px;
}

.app-question .app-question__mark .mark-done {
  display: none;
}

.app-question .app-question__mark.app-question__mark--completed {
  color: var(--success);
}

.app-question .app-question__mark.app-question__mark--completed .mark-pending {
  display: none;
}

.app-question .app-question__mark.app-question__mark--completed .mark-done {
  display: inline-block;
}

.app-question .app-question__label {
  width: fit-content;
  padding-right: 20px;
  font-weight: 600;
}

.app-question .app-question__label svg {
  color: #919191;
}

.app-question .app-question__helper {
  color: #666;
  padding-left: 16px;
  font-size: 14px;
}

.app-question .app-question__toggle {
  cursor: pointer;
  vertical-align: middle;
  margin-left: 4px;
  font-size: 1.25em;
}

.app-question .app-question__toggle .toggle-opened {
  display: none;
}

.app-question .app-question__toggle[aria-expanded="true"] .toggle-closed {
  display: none;
}

.app-question .app-question__toggle[aria-expanded="true"] .toggle-opened {
  color: var(--primary);
  display: inline-block;
}

.app-question .app-question__container {
  width: 100%;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-question .app-question__container {
    flex-direction: column;
  }
}

.app-question .app-question__left {
  border-right: 1px solid #d5d5d5;
  flex-direction: column;
  margin-right: 20px;
  padding-right: 20px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-question .app-question__left {
    border-bottom: 1px solid #d5d5d5;
    border-right: 0;
    margin-bottom: 20px;
    margin-right: 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}

.app-question .app-question__right {
  flex: 0 0 400px;
}

@media only screen and (max-width: 1023px) {
  .app-question .app-question__right {
    flex: 1 0 auto;
  }
}

.app-question .app-question__right--full {
  flex: auto;
  min-width: 0;
}

.app-question .app-question__radio-wrap {
  text-align: center;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  gap: 8px;
  max-width: 100%;
  display: inline-grid;
}

.app-question .app-question__radio-wrap .form-check {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  display: flex;
}

.app-question .app-question__radio-wrap .form-check label {
  font-size: 14px;
}

.app-question .app-question__radio-wrap .form-check .form-check-input {
  margin: 0;
}

@media only screen and (max-width: 1023px) {
  .app-question .app-question__radio-wrap {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    width: 100%;
    display: grid;
  }
}

.app-question .app-question__radio-button {
  min-width: 0;
}

.app-question .app-question__radio-button .btn {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px 18px;
  font-weight: 500;
  display: flex;
}

.app-question .app-question__radio-button .btn:hover {
  background-color: #eee;
  border-color: #bbb;
}

.app-question .app-question__radio-button .btn-check:checked + .btn {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.app-question .app-question__radio-button .btn-check[data-no-opinion="1"] + .btn {
  color: #888;
  background-color: #fafafa;
  font-size: 12px;
}

.app-question .app-question__radio-button .btn-check[data-no-opinion="1"]:checked + .btn {
  color: #fff;
  background-color: #9a9a9a;
}

.app-question .app-question__radio-button:last-child .btn {
  border-right: 0;
}

@media only screen and (max-width: 1023px) {
  .app-question .app-question__radio-button:last-child .btn {
    border-bottom: 0;
  }
}

.app-question .app-question__label-wrap {
  text-align: center;
  justify-content: space-between;
  display: flex;
}

.app-question.app-question--switch {
  border: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-question.app-question--switch {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.app-question.app-question--switch .app-question__label {
  flex: 0 0 60%;
  gap: 8px;
  display: flex;
}

.app-question-wrapper {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.app-switch {
  background-color: #fff;
  border-radius: 8px;
  gap: 4px;
  width: 175px;
  padding: 4px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-switch {
    width: 100%;
  }
}

.app-switch .app-switch__button-wrap {
  text-align: center;
  flex: 1;
}

.app-switch .app-switch__button-wrap .btn-check:checked + .app-switch__button--error {
  background-color: var(--black);
  color: #fff;
}

.app-switch .app-switch__button-wrap .btn-check:checked + .app-switch__button--success {
  background-color: var(--black);
  color: #fff;
}

.app-switch .app-switch__button {
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  border-radius: 6px;
  width: 100%;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
}

.app-switch .app-switch__button:hover {
  background-color: #f2f2f2;
}

.app-switch .app-switch__divider {
  background-color: #efefef;
  width: 1px;
  height: auto;
  display: block;
}

.app-progress-bar-wrap {
  align-items: center;
  gap: 20px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-progress-bar-wrap {
    width: 100%;
  }
}

.app-progress-bar-wrap .app-progress-bar-wrap__counter {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .app-progress-bar-wrap .app-progress-bar-wrap__counter {
    white-space: nowrap;
  }
}

.app-progress-bar {
  background-color: #eaeaea;
  border-radius: 25px;
  width: 300px;
  height: 10px;
  position: relative;
}

.app-progress-bar span {
  background-color: var(--primary);
  border-radius: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 1023px) {
  .app-progress-bar {
    width: 100%;
  }
}

.app-page__top {
  z-index: 10;
  flex-direction: column;
  gap: 8px;
  display: flex;
  position: sticky;
  top: 0;
}

.app-page__top .app-nav {
  position: relative;
  top: auto;
}

@media only screen and (max-width: 1023px) {
  .app-page__top {
    gap: 0;
  }
}

.app-answer-status-bar {
  background-color: rgba(255, 255, 255, .96);
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 8px 14px;
  font-size: 14px;
  display: flex;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

@media only screen and (max-width: 1023px) {
  .app-answer-status-bar {
    border-radius: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
  }
}

.app-answer-status-bar__label {
  white-space: nowrap;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .app-answer-status-bar__label {
    display: none;
  }
}

.app-question-counter {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .app-question-counter {
    display: contents;
  }
}

.app-question-counter .app-question-counter__item {
  min-height: 28px;
  color: var(--black);
  background-color: #f6f6f6;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 3px 4px 3px 10px;
  font-weight: 600;
  display: inline-flex;
}

@media only screen and (max-width: 1023px) {
  .app-question-counter .app-question-counter__item {
    gap: 4px;
  }
}

.app-question-counter .app-question-counter__item span {
  font-size: 13px;
}

@media only screen and (max-width: 1023px) {
  .app-question-counter .app-question-counter__item span {
    font-size: 12px;
  }
}

.app-question-counter .app-question-counter__item strong {
  background-color: var(--primary);
  color: #fff;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  height: 28px;
  font-size: 14px;
  display: inline-flex;
}

@media only screen and (max-width: 1023px) {
  .app-question-counter .app-question-counter__item strong {
    min-width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

.app-question--invalid {
  outline-offset: 2px;
  background-color: rgba(220, 53, 69, .06);
  border-radius: 6px;
  outline: 2px solid #dc3545;
  transition: outline-color .3s, background-color .3s;
}

.static-content {
  margin: 0 50px;
}

.static-content .highlighted {
  border: 1px solid var(--primary);
  background: rgba(249, 176, 0, .18);
  border-radius: 8px;
  margin-bottom: 40px;
  padding: 20px 20px 0;
}

@media only screen and (max-width: 1023px) {
  .static-content {
    margin: 0;
  }
}

.static-content p {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.static-content p.lead {
  font-weight: 600;
}

.static-content h4 {
  margin-bottom: 45px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.static-content blockquote {
  border-left: 4px solid var(--primary);
  margin-top: 75px;
  margin-bottom: 75px;
  padding-left: 50px;
  position: relative;
}

.static-content blockquote p {
  font-size: 34px;
  line-height: 120%;
}

.static-content blockquote p span {
  font-weight: 600;
}

@media only screen and (max-width: 1023px) {
  .static-content blockquote {
    padding-left: 30px;
  }

  .static-content blockquote p {
    font-size: 20px;
    line-height: 32px;
  }
}

__wrapper.static-content {
  max-width: 660px;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  __wrapper.static-content {
    padding: 0 30px;
  }
}

.static-content .anchor {
  visibility: hidden;
  display: block;
  position: relative;
  top: -100px;
}

.static-content b {
  font-weight: 700;
}

.static-content strong {
  font-weight: 700;
}

.static-content img {
  max-width: 100%;
}

.static-content figure {
  margin: 0 0 48px;
}

.static-content figure img {
  margin-bottom: 15px;
}

.static-content hr {
  border-top: 1px solid #eee;
  border-left: 0;
  margin: 25px 0;
}

.static-content figcaption {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.static-content iframe {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.static-content p img {
  height: auto;
  margin: 0;
}

.static-content h1 {
  margin-top: 30px;
  margin-bottom: 60px;
  font-size: 52px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .static-content h1 {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 30px;
  }
}

.static-content .head-1 {
  margin-top: 30px;
  margin-bottom: 60px;
  font-size: 52px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .static-content .head-1 {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 30px;
  }
}

.static-content h2 {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .static-content h2 {
    font-size: 30px;
  }
}

.static-content .head-2 {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .static-content .head-2 {
    font-size: 30px;
  }
}

.static-content h3 {
  margin-bottom: 25px;
  padding-top: 0;
  font-size: 20px;
}

@media only screen and (max-width: 1023px) {
  .static-content h3 {
    font-size: 18px;
  }
}

.static-content h4 {
  margin-bottom: 20px;
  font-size: 24px;
}

@media only screen and (max-width: 1023px) {
  .static-content h4 {
    font-size: 22px;
  }
}

.static-content h5 {
  margin-bottom: 20px;
  font-size: 20px;
}

.static-content h6 {
  margin-bottom: 20px;
  font-size: 18px;
}

.static-content a:not(.btn) {
  color: var(--primary);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  font-weight: 500;
  text-decoration-line: underline;
}

.static-content a:not(.btn):hover {
  color: var(--primary-dark);
}

--lead.static-content p {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

.static-content ul {
  margin-bottom: 30px;
  padding-left: 15px;
  list-style: none;
}

.static-content ul li {
  margin-bottom: 10px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
}

.static-content ul li:before {
  content: "";
  background-color: var(--black);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 12px;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .static-content ul li {
    font-size: 16px;
    line-height: 22px;
  }
}

.static-content ol {
  counter-reset: counter;
  margin-bottom: 30px;
  padding-left: 15px;
  list-style: none;
}

.static-content ol li {
  counter-increment: counter;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 28px;
  position: relative;
}

.static-content ol li:before {
  content: counter(counter) ". ";
  color: var(--black);
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .static-content ol li {
    font-size: 16px;
    line-height: 22px;
  }
}

.static-content .table-wrapper {
  width: 100%;
  overflow: auto;
}

.static-content table {
  border-collapse: collapse;
  width: 100%;
}

.static-content table td {
  border: 1px solid #cacaca;
  padding: 10px;
  width: 1% !important;
}

.static-content table td p {
  font-size: 14px;
  margin-bottom: 0 !important;
}

.app-consent-text {
  border: 1px solid var(--primary);
  background: #fffdf5;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
}

.app-consent-text b, .app-consent-text strong {
  font-weight: 700;
}

.swal2-popup {
  border: 2px solid var(--primary);
  border-radius: 12px;
}

.swal2-title {
  color: #1a1a1a;
}

.swal2-html-container, .swal2-content {
  color: #333;
}

.swal2-actions .swal2-confirm.swal2-styled {
  font-weight: 600;
  background-color: var(--primary) !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
}

.swal2-actions .swal2-confirm.swal2-styled:focus {
  box-shadow: 0 0 0 3px rgba(249, 176, 0, .4) !important;
}

.swal2-actions .swal2-cancel.swal2-styled {
  color: #fff !important;
  box-shadow: none !important;
  background-color: #1a1a1a !important;
}

.app-success {
  max-width: 500px;
  margin: 0 auto;
}

.app-success .app-success__content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: flex;
}

.app-success .app-success__content svg {
  color: var(--success);
  font-size: 45px;
}

.app-success .app-success__text {
  font-size: 25px;
  font-weight: 700;
}
