
/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype");  */
/* } */

/* defines a css property so it can be updated and animated with transistions */
@property --pgPercentage {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

/* animates percent from 0 to current value on load */
@keyframes growProgressBar-cf4135ea {
from {
    --pgPercentage: 0;
}
to {
    --pgPercentage: var(--end);
}
}
div[role="progressbar"][data-v-cf4135ea] {
  /* tracks the percent prop which is passed into :style */
  --pgPercentage: var(--end);
  position: relative;
  width: 145px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--fg);

  /* initial animation on page load from 0 to current percent */
  animation: growProgressBar-cf4135ea 3s 1;
  /* animated value on change i.e. after a question is answered */
  transition: --pgPercentage 3s;
  /* calculates what percentage of the wheel is filled */
  background: conic-gradient(var(--header-blue) calc(var(--pgPercentage) * 1%), #F7F7F7 0);
}
.cirlce__text[data-v-cf4135ea] {
  font-family: Roboto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 95px;
  width: 95px;
  font-size: 10px;
  text-align: center;
  background: var(--text-gray-dark);
  color: #fff;
}
.cirlce__text__large[data-v-cf4135ea] {
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-top: -7px;
}
.cirlce__text__small[data-v-cf4135ea] {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-top: -5px;
}
/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype");  */
/* } */
ul[data-v-3126703d] {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.survey__profile-builder__update__menu[data-v-3126703d] {
  font-family: Roboto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  cursor: pointer;
  border: 1px solid #dddddd;
  border-radius: 6px;
  margin: 30px 0 25px 0;
  max-width: 852px;
  min-width: 50%;
}
.survey__profile-builder__update__menu__list[data-v-3126703d] {
  margin-bottom: 0;
  width: 100%;
  padding: 0;
  max-width: 852px;
}
.survey__profile-builder__update__menu__list li:first-child > div[data-v-3126703d] {
  background: white;
  color: var(--text-gray-dark);
  width: 95%;
  padding: 16px 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.survey__profile-builder__update__menu__list li:first-child > div[data-v-3126703d]:hover {
  background: white;
  color: var(--text-gray-dark);
}
.survey__profile-builder__update__menu__list__item[data-v-3126703d] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0 6px 20px 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: var(--text-gray-dark);
  min-height: 53px;
}
.survey__profile-builder__update__menu__list__item__hover[data-v-3126703d] {
  width: 100%;
  border-radius: 6px;
  height: 75%;
  display: flex;
  align-items: center;
  padding: 0 0 0 8px;
}
.survey__profile-builder__update__menu__list__item__hover[data-v-3126703d]:hover {
  background: var(--cta-blue);
  color: #fff;
}
.survey__profile-builder__update__menu__caret[data-v-3126703d] {
  position: absolute;
  top: 23px;
  right: 23px;
}
@media only screen and (max-width: 768px) {
.survey__profile-builder__update__menu__list li:first-child > div[data-v-3126703d] {
    width: 85%;
}
}
/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype");  */
/* } */
/* Customize the label (the checkbox-container) */
.checkbox-container[data-v-be6ae372] {
  font-family: Roboto;
  display: block;
  position: relative;
  padding-left: 37px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-gray-dark);
}

/* Hide the browser's default checkbox */
.checkbox-container input[data-v-be6ae372] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  top: 8px;
}

/* Create a custom checkbox */
.checkmark[data-v-be6ae372] {
  top: 5px;
  position: absolute;
  left: 0;
  height: 23px;
  width: 23px;
  background-color: transparent;
  border: 2px solid var(--text-gray-dark);
  border-radius: 6px;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark[data-v-be6ae372] {
  background-color: var(--text-gray-dark);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark[data-v-be6ae372]:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark[data-v-be6ae372]:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark[data-v-be6ae372]:after {
  left: 0px;
  top: 2px;
  width: 18px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7.05263L7.13333 14L16 2' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
.checkmark[data-v-be6ae372]{
    top: 50%;
    transform: translateY(-50%);
}
}

.grid[data-v-d8eb405d] {
  width: 100%;
  display: grid;
}
.grid-label[data-v-d8eb405d] {
  padding: 10px 0px 0px 10px;
  font-size: 20px;
}

/* input[type="radio"] {
  width: 100%;
  transform: scale(1.5);
} */

/* Customize the label (the container) */
.radio-container[data-v-d8eb405d] {
  left: 50%;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: Roboto;
}

/* Hide the browser's default radio button */
.radio-container input[data-v-d8eb405d] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark[data-v-d8eb405d] {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 2px solid var(--text-gray-dark);
  border-radius: 50%;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark[data-v-d8eb405d]:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark[data-v-d8eb405d]:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark[data-v-d8eb405d]:after {
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-gray-dark);
}
.none[data-v-57a8497b] {
  display: none;
}
.survey__profile-builder__update[data-v-57a8497b] {
  display: flex;
  flex-direction: column;
  background: #ebf8ec;
  border: 1px solid #66cc66;
  margin: 20px 100px 20px 100px;
  padding: 24px 40px;
  border-radius: 6px;
}
.survey__profile-builder__update__header[data-v-57a8497b] {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.survey__profile-builder__update__header__title[data-v-57a8497b] {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-gray-dark);
}
.survey__profile-builder__update__header__options[data-v-57a8497b] {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.survey__profile-builder__update__header__options__skip[data-v-57a8497b] {
  text-decoration: underline;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--text-gray-dark);
}
.survey__profile-builder__update__header__options__spacer[data-v-57a8497b] {
  width: 30px;
}
.survey__profile-builder__update__header__options__btn[data-v-57a8497b] {
  outline: none;
  color: var(--text-gray-dark);
  display: block;
  width: 200px;
  font-weight: 500;
  height: 35px;
  line-height: 30px;
  text-align: center;
  border: 2px solid var(--text-gray-dark);
  font-size: 0.9375rem;
  background-color: transparent;
  text-transform: uppercase;
  position: relative;
  align-self: flex-end;
  border-radius: 20px;
}
.survey__profile-builder__update__txt[data-v-57a8497b] {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray-dark);
}
.survey__profile-builder__txt__input[data-v-57a8497b] {
  margin-bottom: 0;
  width: 100%;
  max-width: 852px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 6px 0 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: var(--text-gray-dark);
  height: 53px;
}
.swiper-lazy-preloader[data-v-57a8497b] {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--orange);
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin-57a8497b 1s infinite linear;
  position: relative;
  margin: 20px;
}
@keyframes swiper-preloader-spin-57a8497b {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
@media screen and (max-width: 768px) {
.survey__profile-builder__update[data-v-57a8497b] {
    margin: 5vw;
    width: 90vw;
    padding-bottom: 60px;
    position: relative;
}
.survey__profile-builder__update__header__options__skip[data-v-57a8497b] {
    position: absolute;
    bottom: 30px;
    left: 15%;
}
.survey__profile-builder__update__header__options__btn[data-v-57a8497b] {
    position: absolute;
    bottom: 20px;
    right: 15%;
}
}
@media screen and (max-width: 380px) {
.survey__profile-builder__update__header__options__btn[data-v-57a8497b] {
    position: absolute;
    bottom: 20px;
    right: 15%;
    width: 160px;
}
}/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype");  */
/* } */
.profile-button[data-v-7bd03867] {
  font-family: Roboto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--text-gray-dark);
  border-radius: 130px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text-gray-dark);
}
.profile-button--edit[data-v-7bd03867] {
  padding: 3px 24px;
  gap: 8px;
  transition: background 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.profile-button--unlocked[data-v-7bd03867] {
  padding: 3px 24px;
  gap: 8px;
}
.profile-button--locked[data-v-7bd03867] {
  padding: 3px 24px;
  gap: 8px;
  border: 2px solid #BABABA;
  color: #BABABA;
}
.profile-button--edit[data-v-7bd03867]:hover {
  border: 2px solid var(--cta-blue);
  background: var(--cta-blue);
  color: #fff;
}
.profile-button--unlocked[data-v-7bd03867]:hover {
  border: 2px solid var(--cta-blue);
  background: var(--cta-blue);
  color: #fff;
}
.profile-button--answer[data-v-7bd03867] {
  background: #fff;
  padding: 16px 24px 16px 24px;
}
.profile-button--answer[data-v-7bd03867]:hover {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
}
.profile-button--answer[data-v-7bd03867]:focus {
  border: 2px solid var(--cta-blue);
  background: var(--cta-blue);
  color: #fff;
  box-shadow: none;
}
.profile-button--next[data-v-7bd03867] {
  padding: 8px 32px;
}
.profile-button--save[data-v-7bd03867] {
  padding: 8px 32px;
  background: var(--cta-blue);
  border: 2px solid var(--cta-blue);
  color: #fff;
}
.profile-button--pagination-left[data-v-7bd03867] {
  transition: background 0.2s;
  transition: color 0.2s;
  height: 26px;
  width: 26px;
  transform: rotateY(180deg);
  border-radius: 100%;
}
.profile-button--pagination-right[data-v-7bd03867] {
  transition: background 0.2s;
  transition: color 0.2s;
  height: 26px;
  width: 26px;
  border-radius: 100%;
}
.profile-button__text[data-v-7bd03867] {
  font-weight: 500;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
.profile-button--pagination-left[data-v-7bd03867]:hover, .profile-button--pagination-right[data-v-7bd03867]:hover {
    /* border: 2px solid var(--cta-blue); */
    background: var(--cta-blue);
    color: #fff;
}
.profile-button--pagination-left[data-v-7bd03867]:right {
    /* border: 2px solid var(--cta-blue); */
    background: var(--cta-blue);
    color: #fff;
}
}
.category__top[data-v-9e2227d1] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
}
.category__labelwrapper[data-v-9e2227d1] {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  justify-content: space-evenly;
}
.category__labelvue[data-v-9e2227d1] {
  display: flex;
  align-items: flex-end;
  height: 27px;
  font-weight: 700;
  margin-left: 16px;
}
.pointer[data-v-9e2227d1] {
  cursor: pointer;
}
.back[data-v-9e2227d1] {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  text-decoration: underline;
  align-items: center;
  width: 300p;
  width: 60px;
  justify-content: space-between;
}
.category__completed[data-v-9e2227d1] {
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
.category__top[data-v-9e2227d1] {
    padding-top: 10px;
}
.category__completed[data-v-9e2227d1] {
    display: flex;
    align-items: flex-end;
    margin-top: 4px;
}
.category__labelvue[data-v-9e2227d1] {
    font-size: 23px;
    align-items: baseline;
    margin-left: -8px;
    margin-top: -3px;
}
.category__labelwrapper[data-v-9e2227d1]{
    margin-top: -36px;
}
.back[data-v-9e2227d1] {
    align-items: flex-end;
}
.category__top__backsvg[data-v-9e2227d1] {
    align-self: center;
}
.category__labelcontainer[data-v-9e2227d1] {
}
}
.unlock__button[data-v-108eb6eb] {
  color: #c9c9c9;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 2rem 2rem 2rem;
  background: white;
  border-radius: 1.125rem/50%;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  height: 40px;
  display: inline-block;
  text-decoration: none;
  border: #c9c9c9 3px solid;
}
.profile-question__sensitive[data-v-108eb6eb] {
  width: 100%;
  position: relative;
}
.profile-question__sensitive__overlay[data-v-108eb6eb] {
  background-color: #c9c9c9;
  height: 100%;
  width: 100%;
  z-index: 10;
  filter: opacity(0.15);
  position: absolute;
  transform: translateY(-100%);
  cursor: not-allowed;
}
.disabled[data-v-108eb6eb] {
  cursor: not-allowed !important;
}
.savingtext[data-v-108eb6eb] {
  color: var(--cta-blue) !important;
  cursor: not-allowed !important;
}
.saving[data-v-108eb6eb] {
  cursor: not-allowed;
  width: 30px;
  height: 30px;
  position: relative;
  left: 0;
  right: 0;
  top: -120%;
  margin: auto;
  z-index: 10;
  box-sizing: border-box;
  border: 4px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin-108eb6eb 1s infinite linear;
}
@keyframes swiper-preloader-spin-108eb6eb {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype");  */
/* } */
.profile-question__text[data-v-108eb6eb] {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.grid[data-v-108eb6eb] {
  display: grid;
  align-items: center;
  grid-column-gap: 25px;
}
.profile-question__grid > div[data-v-108eb6eb]:nth-child(even) {
  background-color: #f7f7f7;
}
.profile-question__grid[data-v-108eb6eb] {
  border: none;
}
.profile-question__label[data-v-108eb6eb] {
  text-align: center;
}

/*
.profile-question__label-spacer {
  width: 30%;
}

.profile-question__grid-radio__question {
  width: 30%
} */
.question[data-v-108eb6eb] {
  margin: 20px 100px 20px 100px;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: var(--text-gray-dark);
}
.question-mobile[data-v-108eb6eb] {
  margin: auto;
  width: 90vw;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: var(--text-gray-dark);
}
.question__choices__choice[data-v-108eb6eb] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50px;
  padding: 15px;
}
.question__choices__choice[data-v-108eb6eb]:nth-child(even) {
  background-color: #f7f7f7;
}
.question__bottom[data-v-108eb6eb] {
  justify-content: center;
  display: flex;
}
.save[data-v-108eb6eb] {
  display: flex;
  flex-direction: row-reverse;
}
.save__button[data-v-108eb6eb] {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 4rem;
  color: white;
  background: var(--profile-button-color-dt);
  border-radius: 1.125rem/50%;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  height: 40px;
  display: inline-block;
  text-decoration: none;
}
.back[data-v-108eb6eb] {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  text-decoration: underline;
  align-items: center;
  width: 300p;
  width: 60px;
  justify-content: space-between;
}
.pointer[data-v-108eb6eb] {
  cursor: pointer;
}
.padding[data-v-108eb6eb] {
  padding: 10px 10px;
}
.exit[data-v-108eb6eb] {
  margin-right: 40px;
  padding-top: 16px;
}
.profile-question__grid-cell--select[data-v-108eb6eb] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-question__grid-cell[data-v-108eb6eb] {
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
.profile-question__grid-cell--select[data-v-108eb6eb] {
    /* make sure cell doesnt exit screen when long question is saved on menu  */
    max-width: 90vw;
}
.profile-question__grid[data-v-108eb6eb] {
    padding: 0;
}
.profile-question__grid-cell[data-v-108eb6eb] {
    padding: 0;
}
.question[data-v-108eb6eb] {
    margin: 20px;
}
.multi-completed[data-v-108eb6eb] {
    display: flex;
    align-items: center;
}
.question__bottom[data-v-108eb6eb] {
    position: absolute;
}
.question__choices[data-v-108eb6eb] {
    margin-bottom: 32px;
}
.question__choices__choice[data-v-108eb6eb] {
    height: auto;
    align-items: center;
}
.form-check-label[data-v-108eb6eb] {
    max-width: 90%;
}
.exit[data-v-108eb6eb] {
    margin-bottom: 40px;
}
}.unlock__button[data-v-8a94ef21] {
  color: #c9c9c9;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 2rem 2rem 2rem;
  background: white;
  border-radius: 1.125rem/50%;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  height: 40px;
  display: inline-block;
  text-decoration: none;
  border: #c9c9c9 3px solid;
}
.profile-question__sensitive[data-v-8a94ef21] {
  width: 100%;
  position: relative;
}
.profile-question__sensitive__overlay[data-v-8a94ef21] {
  background-color: #c9c9c9;
  height: 100%;
  width: 100%;
  z-index: 10;
  filter: opacity(0.15);
  position: absolute;
  transform: translateY(-100%);
  cursor: not-allowed;
}
.disabled[data-v-8a94ef21] {
  cursor: not-allowed !important;
}
.savingtext[data-v-8a94ef21] {
  color: var(--cta-blue) !important;
  cursor: not-allowed !important;
}
.saving[data-v-8a94ef21] {
  cursor: not-allowed;
  width: 30px;
  height: 30px;
  position: relative;
  left: 0;
  right: 0;
  top: -120%;
  margin: auto;
  z-index: 10;
  box-sizing: border-box;
  border: 4px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin-8a94ef21 1s infinite linear;
}
.back[data-v-8a94ef21] {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  text-decoration: underline;
  align-items: center;
  width: 300p;
  width: 60px;
  justify-content: space-between;
}
@keyframes swiper-preloader-spin-8a94ef21 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype");  */
/* } */
.question__choices__grid[data-v-8a94ef21] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.question[data-v-8a94ef21] {
  margin: 20px 100px 20px 100px;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: var(--text-gray-dark);
}
.question-mobile[data-v-8a94ef21] {
  margin: auto;
  width: 90vw;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: var(--text-gray-dark);
}
.question__choices__grid__choice[data-v-8a94ef21] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
}
.question__choices__grid .question__choices__grid__choice[data-v-8a94ef21]:nth-child(6n-5),
.question__choices__grid .question__choices__grid__choice[data-v-8a94ef21]:nth-child(6n-4),
.question__choices__grid .question__choices__grid__choice[data-v-8a94ef21]:nth-child(6n-3) {
  background-color: #f7f7f7;
}
.question__bottom[data-v-8a94ef21] {
  justify-content: center;
  display: flex;
}
.save[data-v-8a94ef21] {
  display: flex;
  flex-direction: row-reverse;
}
.save__button[data-v-8a94ef21] {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 4rem;
  color: white;
  background: var(--profile-button-color-dt);
  border-radius: 1.125rem/50%;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  height: 40px;
  display: inline-block;
  text-decoration: none;
}
.pointer[data-v-8a94ef21] {
  cursor: pointer;
}
.padding[data-v-8a94ef21] {
  padding: 10px 10px;
}
.exit[data-v-8a94ef21] {
  margin-right: 40px;
  padding-top: 16px;
}
@media only screen and (max-width: 768px) {
.question__choices__grid[data-v-8a94ef21] {
    display: grid;
    grid-template-columns: 1fr;
}
.question__choices__grid .question__choices__grid__choice[data-v-8a94ef21]:nth-child(6n-5),
  .question__choices__grid .question__choices__grid__choice[data-v-8a94ef21]:nth-child(6n-4),
  .question__choices__grid .question__choices__grid__choice[data-v-8a94ef21]:nth-child(6n-3) {
    background-color: #fff;
}
.question__choices__grid .question__choices__grid__choice[data-v-8a94ef21]:nth-child(even) {
    background-color: #f7f7f7;
}
.question[data-v-8a94ef21] {
    margin: 20px;
}
.multi-completed[data-v-8a94ef21] {
    display: flex;
    align-items: center;
}
.question__bottom[data-v-8a94ef21] {
    position: absolute;
}
.question__choices[data-v-8a94ef21] {
    margin-bottom: 32px;
}
.question__choices__grid__choice[data-v-8a94ef21] {
    height: auto;
    align-items: center;
}
.form-check-label[data-v-8a94ef21] {
    max-width: 90%;
}
.exit[data-v-8a94ef21] {
    margin-bottom: 40px;
}
}.unlock__button[data-v-ceb41457] {
  color: #c9c9c9;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 2rem 2rem 2rem;
  background: white;
  border-radius: 1.125rem/50%;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  height: 40px;
  display: inline-block;
  text-decoration: none;
  border: #c9c9c9 3px solid;
}
.profile-question__sensitive[data-v-ceb41457] {
  width: 100%;
  position: relative;
}
.profile-question__sensitive__overlay[data-v-ceb41457] {
  background-color: #c9c9c9;
  height: 105%;
  width: 100%;
  z-index: 10;
  filter: opacity(0.15);
  position: absolute;
  transform: translateY(calc(-100% - 20px));
  cursor: not-allowed;
}
.disabled[data-v-ceb41457] {
  cursor: not-allowed !important;
}
.savingtext[data-v-ceb41457] {
  color: var(--cta-blue) !important;
  cursor: not-allowed !important;
}
.saving[data-v-ceb41457] {
  cursor: not-allowed;
  width: 30px;
  height: 30px;
  position: relative;
  left: 0;
  right: 0;
  top: -120%;
  margin: auto;
  z-index: 10;
  box-sizing: border-box;
  border: 4px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin-ceb41457 1s infinite linear;
}
@keyframes swiper-preloader-spin-ceb41457 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype"); */
/* } */
.question[data-v-ceb41457] {
  margin: 20px 100px 20px 100px;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: var(--text-gray-dark);
}
.question-mobile[data-v-ceb41457] {
  margin: auto;
  width: 90vw;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: var(--text-gray-dark);
}
.question__choices__choice[data-v-ceb41457] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50px;
  padding: 15px;
}
.question__choices__choice[data-v-ceb41457]:nth-child(even) {
  background-color: #f7f7f7;
}
.question__bottom[data-v-ceb41457] {
  justify-content: center;
  display: flex;
}
.save[data-v-ceb41457] {
  display: flex;
  flex-direction: row-reverse;
}
.save__button[data-v-ceb41457] {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 4rem;
  color: white;
  background: var(--profile-button-color-dt);
  border-radius: 1.125rem/50%;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  height: 40px;
  display: inline-block;
  text-decoration: none;
}
.back[data-v-ceb41457] {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  text-decoration: underline;
  align-items: center;
  width: 300p;
  width: 60px;
  justify-content: space-between;
}
.pointer[data-v-ceb41457] {
  cursor: pointer;
}
.padding[data-v-ceb41457] {
  padding: 10px 10px;
}
.exit[data-v-ceb41457] {
  margin-right: 40px;
  padding-top: 16px;
}
.category__labelwrapper[data-v-ceb41457] {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  justify-content: space-evenly;
}
@media only screen and (max-width: 768px) {
.question[data-v-ceb41457] {
    margin: 20px;
}
.category__label[data-v-ceb41457] {
    font-size: 24px;
    align-items: baseline;
    font-weight: 700;
}
.question__bottom[data-v-ceb41457] {
    position: absolute;
}
.question__choices[data-v-ceb41457] {
    margin-bottom: 32px;
}
.single-completed[data-v-ceb41457] {
    display: flex;
    align-items: center;
}
.category__labelwrapper[data-v-ceb41457] {
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    justify-content: space-evenly;
    margin-top: -30px;
}
.profile-question__text[data-v-ceb41457] {
    margin-top: 16px;
    font-weight: 500;
    font-size: 22px;
    margin-left: 0;
}
.question__choices__choice[data-v-ceb41457] {
    height: auto;
    align-items: center;
}
.form-check-label[data-v-ceb41457] {
    max-width: 90%;
}
.exit[data-v-ceb41457] {
    margin-bottom: 40px;
}
}
.profile-category__header {
  color: var(--text-gray-dark);
}
.profile-builder-mobile {
  width: 100%;
  padding: 0;
  margin: auto;
}
.padding {
  padding: 20px;
}
.profile-category__completed {
  order: 3;
  flex-grow: 1;
  color: var(--text-gray-dark);
  font-weight: 400;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
.profile-category {
    padding: 1rem 0 1rem 1rem;
}
:deep(.profile-category__icon svg){
    height:15px;
    width: 19px;
    margin-top: -3px;
}
}
/* @font-face { */
/*   font-family: "Roboto"; */
/*   src: url("./fonts/Roboto-Regular.ttf") format("truetype");  */
/* } */
.category[data-v-f3101e9e] {
  margin: 20px 100px 20px 100px;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: var(--text-gray-dark);
}
.category__labelwrapper[data-v-f3101e9e] {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  justify-content: space-evenly;
}
.category__question[data-v-f3101e9e] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  padding-top: 20px;
  align-items: center;
}
.category__question__query[data-v-f3101e9e] {
  max-width: 40%;
  align-items: center;
}
.category__question__user-answers[data-v-f3101e9e] {
  padding-right: 20px;
  white-space: pre-line;
  max-width: 300px;
}
.category__question__edit[data-v-f3101e9e] {
  display: flex;
  align-items: center;
}
.pointer[data-v-f3101e9e] {
  cursor: pointer;
}
.back[data-v-f3101e9e] {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  text-decoration: underline;
  align-items: center;
  width: 300p;
  width: 60px;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
.category[data-v-f3101e9e] {
    margin: 20px;
}
.category__question[data-v-f3101e9e] {
    flex-direction: column;
}
.category__labelwrapper[data-v-f3101e9e] {
    margin-bottom: 40px;
}
.category__completed[data-v-f3101e9e] {
    display: flex;
    align-items: flex-end;
}
.back[data-v-f3101e9e] {
    align-items: flex-end;
}
.category__question__edit[data-v-f3101e9e] {
    width: 100%;
    justify-content: space-between;
}
.category__question__query[data-v-f3101e9e] {
    max-width: none;
    margin-bottom: 16px;
    color: var(--text-gray-dark);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 16px;
    width: 100%;
}
}
.swiper-lazy-preloader[data-v-f3101e9e] {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  z-index: 10;
  box-sizing: border-box;
  border: 4px solid var(--orange);
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin-f3101e9e 1s infinite linear;
}
@keyframes swiper-preloader-spin-f3101e9e {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}#categories-wrapper[data-v-ac2c5f01] {
  min-height: 300px;
  position: relative;
}
.swiper-lazy-preloader[data-v-ac2c5f01] {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  z-index: 10;
  box-sizing: border-box;
  border: 4px solid var(--orange);
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin-ac2c5f01 1s infinite linear;
}
@keyframes swiper-preloader-spin-ac2c5f01 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.survey__card__content__personal-achievements__middle[data-v-868747bc] {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  justify-content: space-between;
}
.survey__card__content__personal-achievements__middle__header[data-v-868747bc] {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.survey__card__content__personal-achievements__middle__badge[data-v-868747bc] {
  width: 170px;
  margin: 16px 0 16px 0;
  animation: animate-pop-868747bc 0.3s forwards;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-delay: 0.5s;
}
.survey__card__content__personal-achievements__middle__title[data-v-868747bc] {
  color: var(--header-gray);
  font-weight: 500;
  font-size: 18px;
}
.survey__card__content__personal-achievements__middle__footer[data-v-868747bc] {
  color: var(--text-gray-dark);
  text-align: center;
  margin: 32px 0 32px 0;
}
/* Animation */
@keyframes animate-pop-868747bc {
0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
}
100% {
    opacity: 1;
    transform: scale(1, 1);
}
}
#stars[data-v-868747bc] {
  width: 500px;
  height: 500px;
}
.badge-animation__stars[data-v-868747bc] {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.badge-animation[data-v-868747bc] {
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 102;
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.badge-animation__content[data-v-868747bc] {
  position: absolute;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
@media screen and (max-width: 760px) {
    height: 80%;
}
}
.badge-animation__content header p[data-v-868747bc] {
  margin-bottom: 0rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.badge-animation__content header p.header_line2[data-v-868747bc] {
  color: #66cc66;
}
.badge-animation__content header[data-v-868747bc] {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
.badge-animation__content header[data-v-868747bc] {
        margin-bottom: 150px;
}
}
.badge-animation__content__image[data-v-868747bc] {
  width: 176px;
  opacity: 0;
  margin-bottom: 15px;
  animation: animate-pop-868747bc 0.3s forwards;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-delay: 0.5s;
}
.badge-animation__content__heading[data-v-868747bc] {
  opacity: 0;
  font-weight: 700;
  font-size: 30px;
  transition: 0.5s ease-in-out;
}
.badge-animation__content__heading-m[data-v-868747bc] {
  opacity: 0;
  font-weight: 700;
  font-size: 20px;
  transition: 0.5s ease-in-out;
  text-align: center;
}
.badge-animation__content__txt[data-v-868747bc] {
  opacity: 0;
  font-size: 15px;
  transition: 0.5s ease-in-out;
}
.badge-animation__content__txt__tokens[data-v-868747bc] {
  opacity: 0;
  font-size: 20px;
  transition: 0.5s ease-in-out;
  color:#ffbc02;
  width: 90%;
  text-align: center;
}

.badge-container[data-v-2c84ebc9] {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 11px 24px 12px;
  gap: 16px;
  height: 240px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  max-width: 156px;
  min-width: 156px;
}
.badge-container__image[data-v-2c84ebc9]{
  width: 100%
}
.badge-container__text[data-v-2c84ebc9] {
  font-weight: 500;
  font-size: 18px;
  color: var(--header-gray);
  text-align: center;
  max-height: 27px;
}
.badge-container__toggle[data-v-2c84ebc9] {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
.badge-container__hover-container[data-v-2c84ebc9] {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--header-gray);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  border-radius: 8px;
  padding: 16px;
  opacity: 0;
  cursor: default;
  /* fade in help text on all browsers */
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.hovering[data-v-2c84ebc9] {
  opacity: 1;
}
/* MODAL */
.badge__modal[data-v-2c84ebc9] {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 32;
}
.badge__modal__content[data-v-2c84ebc9] {
  background-color: #fff;
  margin: auto;
  padding: 24px;
  width: 80%;
  max-width: 335px;
  max-height: 335px;
  border-radius: 12px;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.badge__modal__content__header[data-v-2c84ebc9] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.badge__modal__content__header__title[data-v-2c84ebc9] {
  color: var(--text-gray-dark);
  font-size: 18px;
  font-weight: 700;
}
.badge__modal__content__body[data-v-2c84ebc9] {
  overflow-y: scroll;
  margin-top: 5%;
  font-size: 14px;
  color: var(--text-gray-dark);
  padding-right: 7%;
}


.carousel__wrapper {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.carousel__container {
  height: 268px;
  width: 90%;
  margin-top: 40px;
}
#swiper .swiper-button-prev,
#swiper .swiper-button-next {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--header-gray);
  transition: background-color 1s;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:10px;
  outline: none;
  z-index: 10;
  top: unset;
}
#swiper .swiper-button-prev {
  left: -.5rem;
}
#swiper .swiper-button-next {
  right: -.5rem;
}
#swiper .swiper-button-prev::after,
#swiper .swiper-button-next::after {
  font-size: unset;
  color: white;
}
#swiper .swiper-button-prev:hover,
#swiper .swiper-button-next:hover {
  background-color: #66cc66;
}
#swiper {
  padding: 0 0 1rem 0;
  margin: 0 1rem;
}
#special-badges {
  display: flex;
  justify-content: center;
}
.swiper-slide {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
.carousel__button{
        display: none;
}
.carousel__container {
        width: 100%;
}
}

/*Get boostrap variables*/
.footer {
  color: #bbbaba;
}
.footer .social-bar {
  position: relative;
  height: 90px;
  margin: 20px auto;
  background-color: var(--header-gray);
  border-radius: 10px;
}
.footer .social-bar__title {
  font: 700 18px arial;
  color: #b7cd5f;
  padding: 10px 10px 10px 20px;
  text-transform: uppercase;
  float: left;
}
.footer .social-bar hr {
  display: inline-block;
  width: 80%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 17px;
  border: 0;
}
.footer .social-bar__container {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.footer .social-bar__container .item {
  font-size: 12px;
  height: 85%;
  width: 15%;
  color: #fff;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}
.footer .social-bar__container .item a {
  display: inline-flex;
  text-decoration: unset;
  color: #fff !important;
  margin: 10px 0 0 0;
  cursor: pointer;
}
.footer .social-bar__container .item a:hover {
  text-decoration: underline;
}
.footer .social-bar__container .item.pch-blog {
  width: 300px;
}
.footer .social-bar__container .item:last-child {
  border-right: none;
}
.footer .social-bar__container .item .icon {
  background-image: url(/dist/assets/footer-social-bar-sprite-90191adb.png);
  background-repeat: no-repeat;
  margin: -10px 0 0 10px;
}
.footer .social-bar__container .item .icon.pch-blog-icon {
  width: 131px;
  height: 23px;
  background-position: -5px -48px;
  margin: -2px 10px;
}
.footer .social-bar__container .item .icon.facebook-icon {
  width: 32px;
  height: 33px;
  background-position: -5px -5px;
}
.footer .social-bar__container .item .icon.instagram-icon {
  width: 32px;
  height: 32px;
  background-position: -47px -5px;
}
.footer .social-bar__container .item .icon.twitter-icon {
  width: 32px;
  height: 32px;
  background-position: -131px -5px;
}
.footer .social-bar__container .item .icon.youtube-icon {
  width: 32px;
  height: 32px;
  background-position: -146px -47px;
}
.footer .social-bar__container .item .icon.pinterest-icon {
  width: 32px;
  height: 32px;
  background-position: -89px -5px;
  border-right: unset;
}
.footer__link {
  text-decoration: none;
  color: #bbbaba;
  font-size: 0.8rem;
  padding: 0.1rem 0.8rem;
}
.footer__link:hover {
  text-decoration: underline;
  color: #bbbaba;
}
.footer__li {
  padding: 50px;
}
.footer__wrapper-1 {
  background-color: #464646;
  text-align: center;
}
.footer__wrapper-1--row {
  padding: 1rem 0;
}
.footer__wrapper-1--row .col-sm-4 {
  border-right: 1px solid #bbbaba;
}
.footer__wrapper-1--row .col-sm-4:last-child {
  border: none;
}
.footer__wrapper-1--row:first-child {
  /*padding-top:0;*/
}
.footer__wrapper-2 {
  background-color: #3b3b3b;
}
.footer__wrapper-2--row {
  padding: 1rem 0;
}
.footer--h3 {
  font-size: 1.4rem;
  /*margin-top: 1.4rem;*/
}
.footer {
  /*Social section*/
}
.footer__social-links {
  /*padding-left: $spacer;*/
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
.footer__social-links__title {
  display: block;
  font-size: 0.8rem;
  line-height: 0.5rem;
}
.footer__social-links__sub {
  font-size: 0.9rem;
  line-height: 0.9rem;
  font-weight: 700;
}
.footer__social-links__name {
  line-height: 0.9rem;
}
.footer__social-links__wrapper {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 15px;
}
.footer__social-links__wrapper a:nth-child(1) img {
  padding-left: 0;
}
.footer__social-links__wrapper img {
  vertical-align: top;
  padding-left: 0.8rem;
}
.footer {
  /*Legal section*/
}
.footer__legal, .footer__trademarks-info, .footer__log-reference {
  font-size: 0.8rem;
  text-align: center;
  margin: 1rem 0;
}
.footer__trademarks-info, .footer__log-reference {
  font-size: 0.7rem;
  padding-bottom: 3rem;
  margin-bottom: 0;
}
.footer__other-links--nav-link {
  font-size: 0.8rem;
  line-height: 0.8rem;
  padding: 0.1rem 0.4rem;
  color: #bbbaba;
}
.footer__other-links--nav-link:hover {
  text-decoration: underline;
  color: #bbbaba;
}
.footer__other-links--nav-item {
  border-left: 1px solid #bbbaba;
  margin-top: 10px;
}
.footer--nav li:first-child {
  border-left: none;
}
/*Override bootstraps container, make all containers on mobile 100%*/
.device-mobile .container,
.device-mobile .container-fluid {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}
.device-mobile .footer .social-bar {
  display: none;
}
.device-mobile .footer .container,
.device-mobile .footer .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}
.device-mobile .footer__link {
  /*border-right: 1px solid $textColor;*/
  font-size: 0.7rem;
}
.device-mobile .footer__wrapper-1--row .col-sm-4 {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  position: relative;
  padding: 0 4px;
}
.device-mobile .footer__social-links__wrapper {
  width: 95%;
  display: flex;
  justify-content: center;
}
.device-mobile .footer__social-links__wrapper .truste {
  display: block;
  margin-bottom: 0.5rem;
}
.device-mobile .footer__social-links__wrapper img {
  padding-left: 0.1rem;
}
.device-mobile .footer__social-links__blog, .device-mobile .footer__social-links__facebook, .device-mobile .footer__social-links__twitter, .device-mobile .footer__social-links__pinterest {
  margin-top: 1rem;
}
.device-mobile .footer--h3 {
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 4vw;
}.modal--dark-fade .close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 25px;
  height: 25px;
  padding: 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 1;
  background: linear-gradient(to bottom, #8a8989 0, #585858 100%);
  font-weight: 400;
}
.modal--dark-fade .close:focus {
  outline: 0;
}
.modal--dark-fade .close span {
  color: #fff;
  position: absolute;
  top: -5px;
  left: 4px;
}
.modal--dark-fade .modal-content {
  background: linear-gradient(to bottom, #010101 0, #797979 100%);
  border: 2px solid #fff;
  border-radius: 1rem;
  padding: 1rem;
  color: #fff;
}
.modal--golden-border .close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 25px;
  height: 25px;
  padding: 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 1;
  background: linear-gradient(to bottom, #8a8989 0, #585858 100%);
  font-weight: 400;
}
.modal--golden-border .close:focus {
  outline: 0;
}
.modal--golden-border .close span {
  color: #fff;
  position: absolute;
  top: -5px;
  left: 4px;
}
.modal--golden-border .modal-content {
  background: none repeat scroll 0 0 #FFF;
  border: 3px solid #ba892d;
  border-radius: 4px;
  box-shadow: 0 0 10px 2px #000;
}.modal-no-password img {
  margin: 0 auto;
}
.modal-no-password__welcome {
  font-size: 2.6rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.modal-no-password--btn-primary {
  margin-top: 1.7rem;
}
.modal-no-password__form {
  text-align: center;
  margin-top: 2rem;
}
.modal-no-password__links {
  text-align: center;
}
.modal-no-password__links a {
  color: #fff;
  font-size: 0.8rem;
  text-decoration: underline;
}
.modal-no-password__links a:hover {
  text-decoration: none;
}
.modal-no-password .invalid-feedback {
  text-align: left;
  padding-left: 0.8rem;
}