@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  margin-top: 0px !important;
}

body {
  background-image: none;
}

/* Align */
.left {
  float: left;
}

.right {
  float: right;
}

/* Icons */
.icon-clone {
  content: "";
  display: block;
  height: 30px;
  width: 25px;
  background: url(../css/icons/icon-clone.svg) no-repeat 100%;
  cursor: pointer;
}

.icon-edit {
  content: "";
  display: block;
  height: 30px;
  width: 25px;
  background: url(../css/icons/icon-edit.svg) no-repeat 100%;
  cursor: pointer;
}

.icon-delete {
  content: "";
  display: block;
  height: 30px;
  width: 25px;
  background: url(../css/icons/icon-delete.svg) no-repeat 100%;
  cursor: pointer;
}

.icon-language {
  content: "";
  display: block;
  height: 30px;
  width: 25px;
  background: url(../css/icons/icon-language.svg) no-repeat 100%;
  cursor: pointer;
}

.icon-link {
  content: "";
  display: block;
  height: 30px;
  width: 25px;
  background: url(../css/icons/icon-link.svg) no-repeat 100%;
  cursor: pointer;
}

.icon-view {
  content: "";
  display: block;
  height: 30px;
  width: 20px;
  background: url(../css/icons/icon-view.svg) no-repeat 100%;
  cursor: pointer;
}

.icon-auto {
  content: "";
  display: block;
  height: 30px;
  width: 25px;
  background: url(../css/icons/icon-auto.svg) no-repeat 100%;
  cursor: pointer;
}

.titleContainer-v2 {
  height: 75px;
  background: #003c44;
  color: #fff;
  width: 100%;
  max-width: none;
  text-align: center;
  margin-bottom: 30px;
}
.titleContainer-v2 .logo {
  width: 150px;
  height: 75px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
  z-index: 10000;
}
.titleContainer-v2 .logo .personify-logo {
  width: 100%;
  height: 100%;
}
.titleContainer-v2 h3 {
  width: calc(100% - 150px);
  display: inline-block;
  font-weight: 300;
  font-family: "Fira Sans", sans-serif;
}
.titleContainer-v2 .back-button {
  cursor: pointer;
  font-size: 18px;
  position: relative;
  white-space: nowrap;
  text-align: left;
  font-family: "Fira Sans", sans-serif;
  display: inline-block;
  transform: translateX(120px);
}
.titleContainer-v2 .back-button a {
  color: #fff;
  text-decoration: none;
}
.titleContainer-v2 .back-button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.titleContainer-v2 .back-button:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}

.form-container-v2 {
  width: 100%;
  max-width: unset;
  padding-left: 170px;
  border: unset;
}
.form-container-v2 .title {
  text-align: center;
  display: none;
  font-family: "Fira Sans", sans-serif;
}
.form-container-v2 .form-contorls {
  width: 150px;
  height: 100%;
  background: #003c44;
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  transition: 0.3s;
}
.form-container-v2 .form-contorls #TranslationsFields {
  display: none;
  margin-top: 75px;
}
.form-container-v2 .form-contorls #TranslationsFields .label-container-v2 {
  width: 100%;
  text-align: center;
}
.form-container-v2 .form-contorls #TranslationsFields .input-container-v2 {
  width: 100%;
  text-align: center;
}
.form-container-v2 .form-contorls #TranslationsFields .input-container-v2 .vp-button {
  font-size: 10px !important;
}
.form-container-v2 .form-contorls .checkbox-elements-container-v2 {
  display: none;
}
.form-container-v2 .form-contorls .checkbox-elements-container-v2::before {
  content: "Save form";
  width: 100%;
  display: block;
  margin: 10px 0;
  font-family: "Fira Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.form-container-v2 .form-contorls .options {
  color: #fff;
  position: absolute;
  top: 50%;
  width: 150px;
}
.form-container-v2 .form-contorls .options .title {
  display: block;
  width: 100%;
  transform: rotate(90deg) translateY(10px) translateX(-50px);
  white-space: nowrap;
}
.form-container-v2 .form-contorls .options .arrow {
  transition: 0.3s;
  width: 40px;
  display: inline-block;
  cursor: pointer;
  transform: translate(100px, -50px);
  padding: 10px;
}
.form-container-v2 .form-contorls .options .arrow svg {
  width: 100%;
  height: 100%;
}
.form-container-v2 .form-contorls.open {
  width: 350px;
  padding-top: 100px;
}
.form-container-v2 .form-contorls.open #TranslationsFields {
  display: block;
}
.form-container-v2 .form-contorls.open .checkbox-elements-container-v2 {
  display: block;
}
.form-container-v2 .form-contorls.open .options .title {
  display: none;
}
.form-container-v2 .form-contorls.open .options .arrow {
  transform: rotate(180deg) translateX(-300px);
}
.form-container-v2 .form-contorls.open .title {
  display: block;
}
.form-container-v2 .element-container {
  box-shadow: 5px 10px 21px rgba(0, 0, 0, 0.4);
  display: block;
  border-radius: 30px;
  padding: 30px;
  margin: 20px 0;
  overflow-x: scroll;
}
.form-container-v2 .element-container .button-icon {
  display: block;
  background-color: #ffffff;
  border: none;
  box-shadow: none;
  padding: 5px;
}
.form-container-v2 .element-container .label-container-v2.large {
  width: 100%;
}
.form-container-v2 .element-container .question-btn-container {
  text-align: center;
}
.form-container-v2 .element-container .question-btn-container .question-btn {
  text-transform: uppercase;
  border-radius: 30px;
  padding: 0.6em 1.5em;
  letter-spacing: 0.6px;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  border: none;
  width: auto;
  font-weight: 600;
  color: #fff;
  background-color: #003c44;
  box-shadow: inset 0 -2px 1px 0 #003c44;
  text-shadow: none;
}
.form-container-v2 .element-container .question-btn-container .question-btn:hover {
  color: #fff;
  background-color: #003c44;
  box-shadow: none;
}
.form-container-v2 .element-container .question-btn-container .question-btn:disabled {
  background-color: #888888;
  box-shadow: none;
}
.form-container-v2 .element-container .input-container-v2 {
  float: none;
  width: calc(50% - 5px);
  display: inline-block;
}
.form-container-v2 .element-container .input-container-v2 svg > g > g:last-child {
  pointer-events: none;
}
.form-container-v2 .element-container .input-container-v2.large {
  width: 100%;
}
.form-container-v2 .element-container .input-container-v2.large textarea {
  min-height: 150px;
  padding: 15px;
}
.form-container-v2 .element-container .input-container-v2.button {
  text-align: right;
}
.form-container-v2 .element-container .input-container-v2.small {
  width: calc(30% - 5px);
}
.form-container-v2 .element-container .input-container-v2.small.button {
  width: calc(10% - 5px);
}
.form-container-v2 .element-container .input-container-v2 input,
.form-container-v2 .element-container .input-container-v2 textarea {
  font-size: 14px;
  font-family: "Fira Sans", sans-serif;
  border-radius: 30px;
  box-shadow: 10px 4px 21px rgba(0, 0, 0, 0.21);
  border: 1px solid #707070;
}
.form-container-v2 .element-container .input-container-v2 select,
.form-container-v2 .element-container .input-container-v2 .select2-selection {
  font-size: 12px;
  box-shadow: 10px 4px 21px rgba(0, 0, 0, 0.21);
  border-radius: 30px;
  background: url(../css/icons/selectArrow.svg) no-repeat right 100%;
  background-size: 25px;
  background-position-x: 99%;
  background-position-y: 4px;
  -webkit-appearance: none;
  border: 1px solid #707070;
  transform: translateY(10px);
}
.form-container-v2 .element-container .input-container-v2 .select2-selection {
  background: none;
  height: 35px;
}
.form-container-v2 .element-container .input-container-v2 .select2-selection .select2-selection__rendered {
  line-height: 32px;
}
.form-container-v2 .element-container .input-container-v2 .select2-selection__arrow {
  background: url(../css/icons/selectArrow.svg) no-repeat right 100%;
  background-size: 26px;
  background-position-x: 60%;
  background-position-y: 4px;
  width: 30px;
  height: 30px;
}
.form-container-v2 .element-container .input-container-v2 .select2-selection__arrow b {
  display: none;
}
.form-container-v2 .element-container .input-container-v2 .switch {
  height: 20px;
  position: relative;
  display: inline-block;
}
.form-container-v2 .element-container .input-container-v2 .switch-input {
  display: none;
}
.form-container-v2 .element-container .input-container-v2 .switch-input:checked + .switch-label:before {
  background-color: #003c44;
}
.form-container-v2 .element-container .input-container-v2 .switch-input:checked + .switch-label:after {
  left: 24px;
}
.form-container-v2 .element-container .input-container-v2 .switch-label {
  display: block;
  width: 44px;
  height: 24px;
  text-indent: -150%;
  clip: rect(0 0 0 0);
  color: transparent;
  user-select: none;
}
.form-container-v2 .element-container .input-container-v2 .switch-label:before {
  width: 100%;
  height: 100%;
  background-color: #dedede;
  border-radius: 9999em;
  transition: background-color 0.25s ease;
  transform: translateY(1px);
}
.form-container-v2 .element-container .input-container-v2 .switch-label:after {
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
  transition: left 0.25s ease;
}
.form-container-v2 .element-container .input-container-v2 .switch-label:before,
.form-container-v2 .element-container .input-container-v2 .switch-label:after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
}
.form-container-v2 .element-container .label-container-v2 {
  float: none;
}
.form-container-v2 .element-container.disabled {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
}
.form-container-v2 .element-container .resaults-table {
  width: calc(100% + 60px);
  margin: -30px;
  border-collapse: separate !important;
}
.form-container-v2 .element-container .resaults-table td,
.form-container-v2 .element-container .resaults-table th {
  padding: 8px;
}
.form-container-v2 .element-container .resaults-table thead {
  padding: 10px;
}
.form-container-v2 .element-container .resaults-table thead tr {
  background: #003c44;
}
.form-container-v2 .element-container .resaults-table thead tr:first-child th:first-child {
  border-radius: 30px 0 0 0;
  -moz-border-radius: 30px 0 0 0;
  -webkit-border-radius: 30px 0 0 0;
}
.form-container-v2 .element-container .resaults-table thead tr:first-child th:last-child {
  border-radius: 0 30px 0 0;
  -moz-border-radius: 0 30px 0 0;
  -webkit-border-radius: 0 30px 0 0;
  text-align: center;
}
.form-container-v2 .element-container .resaults-table thead tr th {
  border: 0.1px solid #003c44;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #fff;
  text-align: center;
}
.form-container-v2 .element-container .resaults-table thead tr:nth-child(2) {
  text-align: center;
}
.form-container-v2 .element-container tbody {
  padding: 10px;
}
.form-container-v2 .element-container tbody tr td {
  text-align: center;
  font-weight: bold;
}
.form-container-v2 .element-container tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
.form-container-v2 .element-container tbody tr:last-child td:first-child {
  border-radius: 0 0 0 30px;
  -moz-border-radius: 0 0 0 30px;
  -webkit-border-radius: 0 0 0 30px;
}
.form-container-v2 .element-container tbody tr:last-child td:last-child {
  border-radius: 0 0 30px 0;
  -moz-border-radius: 0 0 30px 0;
  -webkit-border-radius: 0 0 30px 0;
}

.url-button {
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.url-button svg {
  fill: #0295c5;
}
.url-button:hover {
  box-shadow: none;
}
.url-button:hover svg {
  fill: #fff;
}

.paging-wrapper .item {
  padding: 0;
}
.paging-wrapper .item .button-container .page-button {
  border-radius: 50%;
  background: #003c44;
  color: #fff;
  width: 35px;
  height: 35px;
  box-shadow: none;
  border: none;
  line-height: inherit;
}
.paging-wrapper .item .button-container .page-button .buttonText {
  color: #fff;
}
.paging-wrapper .item .button-container .page-button.active {
  background: #003c44;
}
.paging-wrapper .item .button-container .page-button:hover {
  background: #003c44;
}

.welcome-container {
  width: 100%;
  height: 65vh;
  background: url("../css/images/welcome-hero.png") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 50px 20%;
  padding-top: 15%;
  color: #fff;
  text-align: center;
  position: relative;
}
.welcome-container .logo {
  position: absolute;
  top: 50px;
  left: 50px;
}

.options-wrapper {
  display: inline-block;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.options-wrapper .options-info {
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.18);
  width: 100%;
  height: 100%;
  padding-top: 15%;
  position: absolute;
  top: 0;
  left: 0;
}
.options-wrapper .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: none;
}
.options-wrapper .options-modal {
  display: none;
  position: fixed;
  width: 65%;
  padding-bottom: 100px;
  background: #fff;
  top: 10%;
  left: 20%;
  z-index: 100;
  text-align: center;
  border-radius: 30px;
  padding-top: 10%;
  color: #000;
  text-decoration: none;
}
.options-wrapper .options-modal .options-info {
  color: #000;
  position: relative;
  background: none;
  padding: 0;
  height: initial;
  margin-bottom: 20px;
  margin-top: -10%;
}
.options-wrapper .options-modal .options-info .close-option {
  width: 35px;
  height: 35px;
  font-size: 24px;
  position: absolute;
  right: 35px;
  top: -25px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50%;
}
.options-wrapper .options-modal .options-info .close-option:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
}
.options-wrapper .options-modal .options-container {
  display: inline-block;
  max-width: 200px;
  min-height: 284px;
  vertical-align: top;
  text-align: center;
  padding: 0 20px;
  margin: 20px;
  background: white;
  border-radius: 10px;
  font-weight: 700;
}
.options-wrapper:hover .bg-image {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
.options-wrapper.attestation {
  float: left;
  width: 50%;
  height: 35vh;
}
.options-wrapper.attestation .bg-image {
  background: url("../css/images/attestation-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.options-wrapper.pcp {
  float: right;
  width: 50%;
  height: 35vh;
}
.options-wrapper.pcp .bg-image {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: url("../css/images/pcp-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.options-container img {
  margin: 19px 0;
  width: 150px;
  height: 150px;
}

.options-container button {
  margin: 10px 0;
}

.options-container div {
  padding: 10px 0;
  cursor: default;
}

.welcome-container span a {
  color: #fff;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: underline;
}

.options-container:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
}

.options-container:hover .options-image {
  display: none;
}

.options-container:hover .options-description {
  display: block;
}

.options-description {
  display: none;
  font-size: 16px;
  text-align: left;
  font-weight: normal;
  padding: 10px 7px;
  height: 188px;
}

#piechart svg > g > g:last-child {
  pointer-events: painted;
}

#glucoseFastingArea {
  display: none;
}

#glucoseNonFastingArea {
  display: none;
}

#A1CArea {
  display: none;
}

#cholesterolArea {
  display: none;
}

#cholesterolHDLArea {
  display: none;
}

#cholesterolLDLArea {
  display: none;
}

#weightArea {
  display: none;
}

#heightArea {
  display: none;
}

#heightFeetArea {
  display: none;
}

#heightInchesArea {
  display: none;
}

#diastolicArea {
  display: none;
}

#triglycerideArea {
  display: none;
}

#systolicArea {
  display: none;
}

#bodyFatArea {
  display: none;
}

#tobaccoUserArea {
  display: none;
}

#hipCircumferenceArea {
  display: none;
}

#waistCircumferenceArea {
  display: none;
}

#fastedArea {
  display: none;
}

#bmiArea {
  display: none;
}

/*# sourceMappingURL=builderMainV2.0.css.map */
