:root {
  --edge: 13%;
  --vh100: calc(var(--vh) * 100);
  --rVh: calc(var(--r-vh) * 100);
  --lowestPillarColor: #335c6f;
  --primary: #215b72;
}

.secondaryFill {
  fill: var(--primary);
}

*, p, h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box !important;
}

h1, h2, h3, h4, h5, h6, div, p, span, table, header, footer {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--primary);
}

a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600 !important;
  cursor: pointer;
  color: #215b72;
}

html, body {
  height: var(--vh100);
  font-size: 15px;
}

header nav * {
  color: #f7f6fb !important;
}

li {
  list-style-type: none;
}

.btn {
  cursor: pointer;
}
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}
.btn-white {
  border-color: black !important;
  background-color: #fff;
}
.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active, .show > .btn-white.dropdown-toggle {
  background-color: #cad8dd;
}

.h-100-r-vh {
  height: var(--rVh);
}

.font-open-sans {
  font-family: "Open Sans", sans-serif;
  font-weight: 400 !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-wrap {
  white-space: normal;
}

.medal {
  height: 6rem;
  width: 6rem;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
}
.medal svg {
  position: absolute;
  left: 50%;
  z-index: 10;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 70%;
}

.lowestPillarColor {
  color: var(--lowestPillarColor);
}

.bgLowestPillar {
  background-color: var(--lowestPillarColor);
}

.transparent {
  background-color: transparent;
  border: transparent;
}
.transparent:hover {
  background-color: transparent;
  border: transparent;
}
.transparent:active {
  background-color: transparent !important;
  border: transparent !important;
}

.rounded-xl {
  border-radius: 6px !important;
}

.rounded-xll {
  border-radius: 0.8rem !important;
}

.rounded-xl-tl {
  border-top-left-radius: 6px;
}

.rounded-xl-tr {
  border-top-right-radius: 6px;
}

.rounded-xl-bl {
  border-bottom-left-radius: 6px;
}

.rounded-xl-br {
  border-bottom-right-radius: 6px;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-brand img {
  max-height: 2.5rem;
}
.navbar-brand svg {
  max-height: 2.5rem;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.hover-bg-primary {
  transition: background-color 0.2s ease;
}
.hover-bg-primary:hover {
  background-color: #cad8dd;
}

.flex-1 {
  flex: 1 !important;
}

.flex-2 {
  flex: 2 !important;
}

.flex-3 {
  flex: 3 !important;
}

.flex-grow-0 {
  flex: 1 1 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  row-gap: 0;
}

.grid-3-gap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
}

.padding-rs-filter {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.d-flex-gap {
  display: flex;
  flex-wrap: wrap;
}
.d-flex-gap > div:not(:first-child):not(:last-child) {
  margin: 0 1.5rem;
}

table tbody td, th {
  border: none !important;
}

table {
  font-family: sans-serif;
}

.pr-10 {
  padding-right: var(--edge) !important;
}

.w-sn {
  min-width: var(--edge);
}

.anchor-unset {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary) !important;
}
.anchor-unset:hover {
  text-decoration: none;
  color: var(--primary);
}

.rounded-br {
  border-bottom-right-radius: 0.25rem;
}

.rounded-bl {
  border-bottom-left-radius: 0.25rem;
}

.min-height-mc {
  min-height: 7rem;
}

.grid-gutter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.8rem;
}

.icon {
  max-width: 1.5rem;
}
.icon_nav {
  max-width: 1.8rem;
}
.icon_sm {
  max-width: 2.8rem !important;
}

.d-flex-v-center {
  display: flex;
  align-items: center;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.low-opacity {
  opacity: 30%;
}

.font-sm {
  font-size: 15px;
}

.tab_questionnaire {
  display: none;
}

.middle-opacity {
  opacity: 50%;
}

.grid-wellbeing-auto {
  display: grid;
  grid-template-columns: min-content 1fr;
  column-gap: 1.5rem;
}

.border-2 {
  border-width: 2px !important;
}

.avatar {
  height: 60px;
  width: 60px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-color: white;
}
.avatar img {
  height: 100%;
}

.contentVideo {
  object-fit: cover;
  transition: all 0.3s;
  width: 100%;
}

.contentVideo:hover {
  transform: scale(1.1);
}

.hover {
  cursor: pointer;
}

.surveySvg {
  margin: 8vh;
}

.verticalMargin3 {
  margin: 3vh 0;
}

@media only screen and (max-width: 990px) {
  .hideOnMob {
    display: none;
  }
}
.contentVideoBox {
  border-radius: 5px;
}

.contentImg:hover {
  transform: scale(1.1);
}

.contentPlaceholder {
  padding-top: 260px;
}

.positionAbsCenter {
  position: absolute;
  left: 50%;
  z-index: 10;
  top: 50%;
  transform: translate(-50%, -50%);
}

.muted-opacity {
  opacity: 50%;
  pointer-events: none;
}

.sidenav ul li .active {
  background-color: #cad8dd !important;
}

.dynamic-svg img {
  width: 100%;
  object-fit: cover;
}

.wordcloud-canvas * {
  color: black !important;
}

.circle-outline {
  display: block;
  border: 2px solid var(--primary);
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
}
.circle-outline-fill {
  display: block;
  border: 2px solid var(--primary);
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: #6FC2B6;
}

.range-slider {
  position: relative;
}
.range-slider input {
  position: relative;
  z-index: 10;
  margin-top: 4px;
}
.range-slider input[type=range] {
  -webkit-appearance: none;
  background-color: transparent;
  width: 100%;
}
.range-slider input[type=range]::before {
  content: "";
  position: absolute;
  left: -0.7rem;
  top: -8px;
  width: 6.5px;
  height: 1.5rem;
  background-color: white;
}
.range-slider input[type=range]::after {
  content: "";
  position: absolute;
  right: -0.8rem;
  top: -8px;
  width: 7px;
  height: 1.5rem;
  background-color: white;
}
.range-slider input::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background-color: #C4C4C4;
  height: 3px !important;
  margin: 0 -0.7rem;
  margin-top: -8px;
}
.range-slider input::-moz-range-track {
  background-color: #C4C4C4;
  height: 3px !important;
  padding: 0 1.4rem;
}
.range-slider input::-ms-track {
  background-color: #C4C4C4;
  height: 3px !important;
}
.range-slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #215b72;
  border: none;
  border-radius: 2px;
  position: relative;
  z-index: 20;
  height: 1.5rem;
  width: 1.4rem;
  box-shadow: 0px 3px 2px 0px #c4c4c4;
  margin: -10px 0;
}
.range-slider input::-moz-range-thumb {
  background-color: #215b72;
  border: none;
  border-radius: 2px;
  position: relative;
  z-index: 20;
  height: 1.5rem;
  width: 1.4rem;
  box-shadow: 0px 3px 2px 0px #c4c4c4;
}
.range-slider input[type=range]:focus::-ms-fill-lower {
  background: red;
}
.range-slider input[type=range]:focus::-ms-fill-upper {
  background: green;
}
.range-slider > span {
  position: absolute;
  width: 5px;
  background-color: #C4C4C4;
  border-radius: 3rem;
  height: 1.5rem;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.range-slider .range-track-position:nth-child(2) {
  left: 0%;
}
.range-slider .range-track-position:nth-child(3) {
  left: 25%;
}
.range-slider .range-track-position:nth-child(4) {
  left: 50%;
}
.range-slider .range-track-position:nth-child(5) {
  left: 75%;
}
.range-slider .range-track-position:nth-child(6) {
  left: 100%;
}

input[type=text].invalid, input[type=number].invalid, input[type=password].invalid, textarea.invalid {
  border: 1px solid #e73451;
}

.slick-slide {
  margin: 0 1rem;
}

.slick-list {
  margin: 0 -1rem;
}

.arrow-left {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  height: 1.2rem;
  width: 1.2rem;
}

.arrow-right {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  height: 1.2rem;
  width: 1.2rem;
}

@media (min-width: 1900px) {
  html, body {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .grid-wellbeing-auto {
    grid-template-columns: min-content 1fr 1fr;
  }

  .w-sm {
    width: 85% !important;
  }
}
@media (min-width: 1400px) {
  .w-sm {
    width: 75% !important;
  }
}
@media (max-width: 1366px) {
  html body p {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .max-height-75vh {
    max-height: 75vh;
  }

  .w-sm {
    width: 85%;
  }

  .icon {
    max-width: 1.5rem;
  }
  .icon_nav {
    max-width: 1.2rem;
  }
}
@media (max-width: 992px) {
  :root {
    --edge: 2rem;
  }

  .sidenav ul li a {
    font-size: 0;
  }
}
@media (max-width: 768px) {
  .border-m-top {
    border-top: 1px solid #f7f6fb;
    border-right: unset !important;
  }
}
.max-height-2 {
  max-height: 2rem;
}

.contentImage {
  height: 10rem;
  width: 100%;
  object-fit: cover;
}

.rating {
  text-decoration: none !important;
}

.borderedVideo {
  border-radius: 26px;
}

.objectCover {
  object-fit: cover;
}

#wellbeingChart {
  transform: rotate(-30deg);
}

.f-12 {
  font-size: 12px;
}

.f-14 {
  font-size: 14px;
}

.f-15 {
  font-size: 15px;
}

.f-16 {
  font-size: 16px;
}

.f-20 {
  font-size: 20px;
}

.awardImage {
  height: 13rem;
  width: 100%;
  object-fit: cover;
}

.almostFullHeight {
  min-height: 91vh;
}

.logout svg {
  height: 1.5rem;
}

.navbar-brand img {
  min-height: 2.3rem;
}

.height-500 {
  min-height: 500px !important;
}

.dynamic-svg {
  height: 10rem;
  width: 100%;
  object-fit: cover;
}

p {
  font-size: 20px;
}

h4, .h4 {
  font-size: 24px;
}

.btn {
  font-size: 16px;
}

.recipe-img .articleImage {
  object-fit: cover;
  height: 80vh;
  width: 100%;
  object-position: center center;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
}

.recipeImage {
  object-fit: cover;
  height: 65vh;
  width: 100%;
  object-position: 50% 50%;
}

.articleImage {
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
}

.centerBtnGroup label {
  display: flex;
  align-items: center;
}

.verticalCenter {
  display: flex;
  align-items: center;
}

.f-13 {
  font-size: 13px;
}

input[type=range] {
  height: 30px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #C4C4C4;
  border-radius: 5px;
  border: 0px solid #000000;
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 3px #000000;
  border: 1px solid #000000;
  height: 22px;
  width: 22px;
  border-radius: 5px;
  background: #215B72;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6.5px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #C4C4C4;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #C4C4C4;
  border-radius: 5px;
  border: 0px solid #000000;
}

input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 3px #000000;
  border: 1px solid #000000;
  height: 22px;
  width: 22px;
  border-radius: 5px;
  background: #215B72;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #C4C4C4;
  border: 0px solid #000000;
  border-radius: 10px;
  box-shadow: 0px 0px 0px #000000;
}

input[type=range]::-ms-fill-upper {
  background: #C4C4C4;
  border: 0px solid #000000;
  border-radius: 10px;
  box-shadow: 0px 0px 0px #000000;
}

input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 1px 1px 3px #000000;
  border: 1px solid #000000;
  height: 22px;
  width: 22px;
  border-radius: 5px;
  background: #215B72;
  cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
  background: #C4C4C4;
}

input[type=range]:focus::-ms-fill-upper {
  background: #C4C4C4;
}

.gifSizing {
  height: 50px;
}

@media only screen and (max-width: 480px) {
  .gifSizing {
    height: 40px;
  }
}
@media only screen and (max-width: 426px) {
  .gifSizing {
    height: 30px;
  }
}
@media only screen and (max-width: 400px) {
  .gifSizing {
    height: 20px;
  }
}
.environmentalPillar {
  background-color: #83c6b9;
}

.financialPillar {
  background-color: #335c6f;
}

.socialPillar {
  background-color: #c8c645;
}

.mentalPillar {
  background-color: #9f95e1;
}

.professionalPillar {
  background-color: #d35c63;
}

.physicalPillar {
  background-color: #412859;
}

.curved {
  border-radius: 5px;
}

.title-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  nav {
    position: fixed;
    bottom: 0px;
    background-color: white;
    z-index: 999;
    width: 100%;
  }

  footer {
    margin-bottom: 90px;
  }

  .title-mobile {
    display: block;
  }

  .title-mobile-none {
    display: none;
  }
}
.overflow-x-scroll {
  overflow-x: scroll;
}

table.row {
  display: table;
}

table.row-content {
  margin: auto;
}

.companylogopreview {
  width: 100%;
  border-radius: 30px;
}

.weakPassword, .mediumPassword, .strongPassword {
  margin-top: 10px;
  border-radius: 5px;
  padding: 5px;
  color: white !important;
  font-size: 14px;
}

.weakPassword {
  background-color: red;
}

.mediumPassword {
  background-color: orange;
}

.strongPassword {
  background-color: green;
}

.textColor {
  color: #215B72;
}

.btn-outline-primary {
  color: #215B72 !important;
}

.btn-outline-primary:hover {
  color: white !important;
}

.onboardingLeft {
  background-color: #215B72;
  padding: 0;
  height: 100vh;
  overflow-y: hidden;
}

.onboardingLeft p {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 20px;
  line-height: 27px;
}

.loginText {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  color: #215B72;
}

.marginTop25v {
  margin-top: 25vh;
}

.marginTop20v {
  margin-top: 20vh;
}

.marginTop15v {
  margin-top: 15vh;
}

.marginTop10v {
  margin-top: 10vh;
}

.highcharts-table-caption {
  display: none;
}

.highcharts-data-table table {
  width: 100%;
  margin-bottom: 1rem;
  color: #808487 !important;
  text-align: center;
}

.highcharts-data-table table th,
.highcharts-data-table table td {
  padding: 0.3rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.highcharts-data-table table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.highcharts-data-table table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.highcharts-data-table table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.highcharts-data-table table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.highcharts-data-table table tbody tr th,
.highcharts-data-table table tbody tr td {
  font-size: 12px;
}

.blue-title {
  margin-bottom: 12px;
}

.wellbeingCard {
  border-radius: 4px;
}

.wellbeingCard.grey {
  background-color: rgba(150, 138, 199, 0.08);
}

.wellbeingCard .card-title {
  font-size: 21px;
}

.wellbeingCard .card-subtitle {
  font-size: 13px;
}

.wellbeingCard .numbers {
  font-size: 24px;
}

.text-white .numbers {
  color: white !important;
}

.wellbeingCard .numberBox {
  border-radius: 4px;
}

.bgMyMind {
  background: #9D96C9FF;
}

.bgMySurroundings {
  background: #6FC2B6FF;
}

.bgMyMoney {
  background: #215B72FF;
}

.bgMyRelationships {
  background: #CCC50DFF;
}

.bgMyCareer {
  background: #D64860FF;
}

.bgMyBody {
  background: #412859 !important;
}

.bordersDark {
  border: solid 1px #215B72;
}

.bg-negative {
  background-color: rgba(255, 0, 0, 0.12);
  color: #8E0000 !important;
}

.bg-negative p, .bg-negative i {
  color: #8E0000 !important;
}

.bg-positive {
  background-color: rgba(69, 187, 171, 0.12);
  color: #215B72 !important;
}

.bg-positive p, .bg-positive i {
  color: #215B72 !important;
}

@media print {
  .printHidden {
    display: none !important;
  }

  .displayOnPrint {
    display: block !important;
  }
}
.btn-outline-primary.active {
  color: white !important;
}

.pillarSelect:hover {
  background-color: #CAD8DD;
}

.pillarSelect h4 {
  color: #215B72;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

.pillarSelect p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}

.btn-outline-secondary {
  color: #215b72;
  border-color: #215b72;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #215b72;
  border-color: #215b72;
}

/*Blue Checkbox */
.customCheckbox {
  font-family: Roboto, Open_Sans, sans-serif;
  font-weight: 300;
  display: block;
  position: relative;
  padding-left: 50px;
  margin-top: 2vh;
  padding-top: 0;
  cursor: pointer;
  font-size: 20px;
}

.customCheckbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox_indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 30px;
  width: 30px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 5px;
}

.checkbox:hover input ~ .checkbox_indicator,
.checkbox input:focus ~ .checkbox_indicator {
  background: transparent;
}

.checkbox input:checked ~ .checkbox_indicator {
  background: var(--primary);
  display: block;
  cursor: pointer;
  box-shadow: 0 0 0 var(--pulse);
  animation: pulse 1s;
}

.checkbox:hover input:not([disabled]):checked ~ .checkbox_indicator,
.checkbox input:checked:focus ~ .checkbox_indicator {
  background: var(--primary);
}

.bigCheckbox .checkbox_indicator {
  top: 10px !important;
}

.bigCheckbox.customCheckbox {
  font-size: 30px !important;
}

.checkbox_indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}

/* White Checkbox */
.whiteCheckbox_indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 30px;
  width: 30px;
  background: transparent;
  border: 2px solid white;
  border-radius: 5px;
}

.whiteCheckbox:hover input ~ .whiteCheckbox_indicator,
.whiteCheckbox input:focus ~ .whiteCheckbox_indicator {
  background: transparent;
}

.whiteCheckbox input:checked ~ .whiteCheckbox_indicator {
  background: #ffffff;
  display: block;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  animation: whitePulse 1s;
}

@-webkit-keyframes whitePulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #FFFFFF66;
  }
  70% {
    -webkit-box-shadow: 0 0 0 8px #FFFFFF00;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #FFFFFF00;
  }
}
.whiteCheckbox {
  color: white;
}

.whiteCheckbox:hover input:not([disabled]):checked ~ .whiteCheckbox_indicator,
.whiteCheckbox input:checked:focus ~ .whiteCheckbox_indicator {
  background: white;
}

.whiteCheckbox_indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}

.clickable {
  cursor: pointer;
}

h1, h2 {
  font-weight: bold !important;
}

h3, h4, h5, h6 {
  font-weight: 600 !important;
}

.w-content {
  width: fit-content;
}

.newsletter * {
  all: revert;
}

.pointsGrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

@media only screen and (max-width: 350px) {
  .pointsGrid {
    display: flex;
    flex-direction: column;
  }
}

/*# sourceMappingURL=main.css.map */
