.payment-failed-banner {
  padding: 20px;
  background: rgb(232, 239, 248);
  border-radius: 0;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}

.payment-failed-banner__header {
  color: rgb(38, 56, 86);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 26px;
  margin-bottom: 8px;
}

.payment-failed-banner__text {
  color: rgb(39, 57, 88);
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 20px;
}

.payment-failed-banner__text .orange {
  color: #ff7c11;
}

.payment-failed-banner__text .blue {
  color: #4582c9;
}

.payment-failed-banner__buttons {
  display: flex;
  justify-content: center;
}

.payment-failed-banner__buttons button {
  width: 160px;
  height: 24px;
  border-radius: 12px;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0;
  line-height: 22px;
  margin: 0 10px;
}

.payment-failed-banner__image {
  height: 108px;
  top: 20px;
  position: absolute;
  left: 10%;
}

.payment-failed-banner__image-right {
  height: 108px;
  top: 20px;
  position: absolute;
  right: 10%;
}

@media (max-width: 1290px) {
  .payment-failed-banner__image {
    left: 1%;
  }

  .payment-failed-banner__image-right {
    right: 1%;
  }
}

.streak_reminder-container {
  
  max-width: 1324px;
  width: calc(100% - 40px);
  margin: 20px auto;
  background: #FAEFE7;
  border-radius: 12px;
  padding:24px 16px;
  display: flex;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
  box-shadow: 0px 4px 10px rgba(74, 93, 128, 0.08);
  position:relative;
}
@media (max-width: 500px) {
  .streak_reminder-container {
    padding: 8px 16px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
.streak_reminder-title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #263856;
}

.streak_reminder-pill {
  background: #FFFFFF;
  border-radius: 24px;
  display: flex;
  align-items:center;
  justify-content:center;
  margin:0 9px;
  padding:3px 12px;
  color:#F2690B;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.streak_reminder-text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #263856;
  margin:0 19px;
  
}
@media (max-width: 500px) {
  .streak_reminder-text {
    margin:0;
    margin-top: 8px;
    margin-right:32px;
  }
}

.streak_reminder-btn {
  margin-left: auto;
  display: flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  border: 1px solid rgba(38, 56, 86, 0.6);
  border-radius: 32px;
  padding: 8px 43.5px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #263856;
  text-decoration: none;
}
.streak_reminder-btn:hover{
  border: 1px solid rgba(38, 56, 86, 1);
}
@media (max-width: 500px) {
  .streak_reminder-btn {
    display: none;
  }
}

.streak_reminder-btn_small {
  display: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(103, 134, 172, 0.25);
  background-image: url("/static/img/dashboard/card-gauges/arrow.3ac4c6cbebe9.svg");
  background-position: center;
  background-repeat: no-repeat;
  position:absolute;
  top:0;
  bottom:0;
  margin:auto;
  right:12px;
}

@media (max-width: 500px) {
  .streak_reminder-btn_small {
    display: flex;
  }
}
/*
    Navigation
*/

.navigation-row {
  margin: auto;
  max-width: 1400px;
  display: flex;
  width: 100%; /* Ensure explicit width for consistent flex behavior across browsers */
}
#category-buttons-pane.navigation-row,
#filter-buttons-pane.navigation-row,
#prev-next-nav-pane.navigation-row {
  max-width: 1343px;
  width: 100%; /* Explicit width for Firefox flex column fix */
  align-self: center; /* Fix Firefox flex column centering issue */
}
@media (max-width: 1429px) {
  #category-buttons-pane.navigation-row {
    max-width: none;
    margin: 0 50px;
  }
  #filter-buttons-pane.navigation-row {
    max-width: none;
    margin-left: 50px;
    margin-right: 50px;
  }
  #prev-next-nav-pane.navigation-row {
    max-width: none;
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 1024px) {
  #category-buttons-pane-mobile.navigation-row {
    max-width: none;
    margin: 0 7px;
  }
  #category-buttons-pane.navigation-row {
    max-width: none;
    margin: 0 7px;
  }
  #filter-buttons-pane.navigation-row {
    max-width: none;
    margin-left: 7px;
    margin-right: 7px;
  }
  #prev-next-nav-pane.navigation-row {
    max-width: none;
    margin-left: 7px;
    margin-right: 7px;
  }
}

.navigation-row.mobile-navigation-row {
  line-height: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 1024px) {
  .navigation-row.mobile-navigation-row {
    padding: 0 8px;
  }
}

.navigation-item {
  margin: 12px;
  display: block;
  padding: 12px 12px 12px 14px;
  min-height: 84px;
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 10px 0 rgba(74, 93, 128, 0.14);
  border-radius: 12px;
  transition: all 0.25s;
  position: relative;
  width: 100%;
}

.navigation-item__icon-new{
  width: 40px;
  height: 14px;
  font-weight: 500;
  font-size: 8px;
  line-height: 14px;
  color: #FFFFFF;
  text-align: center;
  background: #FF7C11;
  border-radius: 7.2px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}

.navigation-item:hover {
  box-shadow: 0 4px 10px 0 rgba(74, 93, 128, 0.26);
}

.navigation-item__title {
  color: rgb(122, 191, 67);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  display: flex;
  align-items: center;
}

.navigation-item__traits {
  margin-top: 10px;
  color: #7b94b4;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  padding-right: 35px;
  max-width: 165px;
}

.navigation-item__traits b {
  color: rgb(57, 74, 101);
  font-weight: 600;
}

.navigation-item__traits img {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 2px;
}

.navigation-item:not(.active) .navigation-item__traits img {
  filter: sepia(62%) saturate(350%) invert(75%);
}

.navigation-item__traits__partners {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 860px) {
  .navigation-item__traits__partners {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    margin-bottom: 0;
  }
}

.navigation-item__tagline {
  margin-top: 10px;
  color: #7b94b4;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  padding-right: 35px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 860px) {
  .navigation-item__tagline {
    flex-direction: column;
  }
}

.navigation-item__tagline b {
  color: rgb(57, 74, 101);
  font-weight: 600;
}

.navigation-item__tagline img {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 2px;
}

.navigation-item:not(.active) .navigation-item__tagline img {
  filter: sepia(62%) saturate(350%) invert(75%);
}

.navigation-item.active .navigation-item__tagline,
.navigation-item.active .navigation-item__tagline b {
  color: white;
}


.navigation-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background: lightgray;
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.navigation-item:hover .navigation-item__icon {
  bottom: 14px;
}

.navigation-item__icon path {
  fill: white;
}

@media (max-width: 460px) {
  .navigation-row__dashboard .navigation-item {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
  }
  .navigation-row__dashboard .navigation-item::after {
    display: block;
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    right: 16px;
    top: calc(50% - 32px/2);
    background-color: rgba(255, 255, 255, 0.8);
    background-image: url("/static/img/dashboard/card-gauges/arrow.3ac4c6cbebe9.svg");
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(103, 134, 172, 0.25);
    border-radius: 32px;
  }
  .navigation-row__dashboard .navigation-item.active::after {
    filter: brightness(300%); 
    background-color: transparent;
    background-image: url("/static/img/dashboard/card-gauges/arrow.3ac4c6cbebe9.svg");
  }
  .navigation-row__dashboard .navigation-item__title {
    width: 150px;
    margin-left: 42px;
  }
  .navigation-row__dashboard .navigation-item__traits {
    font-size: 0;
    margin-top: 0;
    line-height: 0;
    text-align: right;
    width: 55px;
    padding: 0;
    margin-right: 50px;
  }
  .navigation-row__dashboard .navigation-item__traits b {
    font-size: 14px;
    line-height: 18px;
  }
  .navigation-row__dashboard .navigation-item__traits span {
    display: none; 
  }
  .navigation-row__dashboard .navigation-item:not(.active) .navigation-item__traits img {
    //filter: sepia(100%) saturate(0%) invert(15%) hue-rotate(60deg); 
  }
  .navigation-row__dashboard .navigation-item .navigation-item__traits img {
    margin-right: 8px;
    display: none;
  }
  
  .navigation-row__dashboard .navigation-item__traits b {
    color: rgb(57, 74, 101);
    font-size: 14px;
    font-weight: 600;
    height: 18px;
    letter-spacing: 0px;
    line-height: 18px;
  }
  
  .navigation-row__dashboard .navigation-item__traits span {
    margin-left: 4px;
    font-size: 14px;
    font-weight: 600;
    height: 18px;
    letter-spacing: 0px;
    line-height: 18px;
  }
  .navigation-row__dashboard .navigation-item__icon {
    width: 32px;
    height: 32px;
    left: 16px;
    bottom: 14px;
  }
  
}

/*
Here we set coloring for navigation tabs
*/

.navigation-item.tab-food_and_nutrition .navigation-item__title {
  color: rgb(122, 191, 67);
}

.navigation-item.tab-food_and_nutrition .navigation-item__icon {
  background: rgb(122, 191, 67);
}

.navigation-item.tab-food_and_nutrition .navigation-item__icon path {
  fill: white;
}

.navigation-item.tab-intelligence .navigation-item__title {
  color: rgb(255, 172, 0);
}

.navigation-item.tab-intelligence .navigation-item__icon {
  background: rgb(255, 172, 0);
}

.navigation-item.tab-trait .navigation-item__title {
  color: rgb(111, 36, 149);
}

.navigation-item.tab-trait .navigation-item__icon {
  background: rgb(111, 36, 149);
}

.navigation-item.tab-personality .navigation-item__title {
  color: rgb(236, 46, 119);
}

.navigation-item.tab-personality .navigation-item__icon {
  background: rgb(236, 46, 119);
}

.navigation-item.tab-sports .navigation-item__title {
  color: rgb(0, 160, 166);
}

.navigation-item.tab-sports .navigation-item__icon {
  background: rgb(0, 160, 166);
}

.navigation-item.tab-politics .navigation-item__title {
  color: #875dce;
}

.navigation-item.tab-politics .navigation-item__icon {
  background: #875dce;
}

.navigation-item.tab-favorites .navigation-item__title {
  color: #263856;
}

.navigation-item.tab-favorites .navigation-item__icon {
  background: #263856;
}

.navigation-item.tab-unlimited .navigation-item__title {
  color: rgb(255, 124, 17);
}

.navigation-item.tab-unlimited .navigation-item__icon {
  background: rgb(255, 124, 17);
}

.navigation-item.tab-ancestry .navigation-item__title {
  color: rgb(80, 149, 249);
}

.navigation-item.tab-ancestry .navigation-item__icon {
  background: rgb(80, 149, 249);
}

.navigation-item.tab-viking .navigation-item__title {
  color: #092c41;
}

.navigation-item.tab-viking .navigation-item__icon {
  background: #092c41;
}



/*
Here we set coloring for ACTIVE navigation tabs
*/

.navigation-item.tab-food_and_nutrition.active {
  background: rgb(138, 200, 88);
}

.navigation-item.tab-food_and_nutrition.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-food_and_nutrition.active .navigation-item__traits,
.navigation-item.tab-food_and_nutrition.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-food_and_nutrition.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-food_and_nutrition.active .navigation-item__icon path {
  fill: rgb(122, 191, 67);
}

.navigation-item.tab-intelligence.active {
  background: rgb(255, 172, 0);
}

.navigation-item.tab-intelligence.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-intelligence.active .navigation-item__traits,
.navigation-item.tab-intelligence.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-intelligence.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-intelligence.active .navigation-item__icon path {
  fill: rgb(255, 172, 0);
}

.navigation-item.tab-trait.active {
  background: rgb(145, 77, 180);
}

.navigation-item.tab-trait.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-trait.active .navigation-item__traits,
.navigation-item.tab-trait.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-trait.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-trait.active .navigation-item__icon path {
  fill: rgb(111, 36, 149);
}

.navigation-item.tab-personality.active {
  background: rgb(254, 99, 159);
}

.navigation-item.tab-personality.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-personality.active .navigation-item__traits,
.navigation-item.tab-personality.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-personality.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-personality.active .navigation-item__icon path {
  fill: rgb(236, 46, 119);
}

.navigation-item.tab-sports.active {
  background: rgb(42, 184, 189);
}

.navigation-item.tab-sports.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-sports.active .navigation-item__traits,
.navigation-item.tab-sports.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-sports.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-sports.active .navigation-item__icon path {
  fill: rgb(0, 160, 166);
}

.navigation-item.tab-favorites.active {
  background: rgb(38, 56, 86);
}

.navigation-item.tab-favorites.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-favorites.active .navigation-item__traits,
.navigation-item.tab-favorites.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-favorites.active .navigation-item__icon {
  background: white;
}
.navigation-item.tab-favorites.active .navigation-item__icon circle {
  fill: #FFF;
}
.navigation-item.tab-favorites.active .navigation-item__icon path {
  fill: rgb(38, 56, 86);
}

.navigation-item.tab-unlimited.active {
  background: rgb(255, 143, 52);
}

.navigation-item.tab-unlimited.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-unlimited.active .navigation-item__traits,
.navigation-item.tab-unlimited.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-unlimited.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-unlimited.active .navigation-item__icon path {
  fill: rgb(255, 124, 17);
}

.navigation-item.tab-ancestry.active {
  background: rgb(106, 166, 254);
}

.navigation-item.tab-ancestry.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-ancestry.active .navigation-item__traits,
.navigation-item.tab-ancestry.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-ancestry.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-ancestry.active .navigation-item__icon path {
  fill: rgb(80, 149, 249);
}


.navigation-item.tab-viking.active {
  background: rgba(32, 65, 85, 1);
}

.navigation-item.tab-viking.active:hover {
  background: #092C41;
}

.navigation-item.tab-viking.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-viking.active .navigation-item__traits,
.navigation-item.tab-viking.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-viking.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-viking.active .navigation-item__icon path {
  fill: #092c41;
}


.navigation-item.tab-politics.active {
  background: #875dce;
}

.navigation-item.tab-politics.active .navigation-item__title {
  color: white;
}

.navigation-item.tab-politics.active .navigation-item__traits,
.navigation-item.tab-politics.active .navigation-item__traits b {
  color: white;
}

.navigation-item.tab-politics.active .navigation-item__icon {
  background: white;
}

.navigation-item.tab-politics.active .navigation-item__icon path {
  fill: #875dce;
}

/*
Here we set MOBILE reports tab
*/
#category-buttons-pane-mobile {
  display: none;
}
#category-buttons-pane-mobile h2 {
  margin-top: -2px;
  margin-bottom: -6px;
  margin-left: 29px;
  font-size: 24px;
  line-height: 50px;
  color: #6786AC;
}
.navigation-item.tab-reports {
  background: #E1EEFF;
  background-image: url("/static/img/dashboard/navigation-report-bg.49606875c426.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  display: block;
  max-width: 1324px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.navigation-item.tab-reports .navigation-item__title {
  width: auto;
  font-size: 18px;
  line-height: 24px;
  color: #263856;
  margin-left: 0;
}
.navigation-item.tab-reports .navigation-item__subtitle {
  margin-top: 2px;
  font-size: 14px;
  line-height: 18px;
  color: #6786AC;
}
.navigation-item.tab-reports .navigation-item__set-of-icons {
  margin-top: 8px;
  display: flex;
}
.navigation-item.tab-reports .navigation-item__set-of-icons .navigation-item__icon-no-float {
  position: static;
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background: lightgray;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-item.tab-reports .navigation-item__icon-no-float.cat-ancestry {
  background: #736F4B;
}
.navigation-item.tab-reports .navigation-item__icon-no-float.cat-ancestry path {
  fill: white
}
.navigation-item.tab-reports .navigation-item__icon-no-float.cat-food {
  background: rgb(122, 191, 67);
}
.navigation-item.tab-reports .navigation-item__icon-no-float.cat-food path {
  fill: white
}
.navigation-item.tab-reports .navigation-item__icon-no-float.cat-sports {
  background: rgb(0, 160, 166);
}
.navigation-item.tab-reports .navigation-item__icon-no-float.cat-sports path {
  fill: white
}

@media (max-width: 460px) {
  #category-buttons-pane-mobile {
    display: flex;
  }
}
.is_mobile{
  display:none;
}
@media (max-width: 480px) {
   .is_mobile{
     display: flex;
   } 
}

/*
Responsivity is here
*/

@media (max-width: 1300px) {
  .navigation-row__dashboard {
    flex-wrap: wrap;
  }

  .navigation-row__dashboard .navigation-item {
    width: 30%;
    width: calc(33.3% - 24px);
  }
  .navigation-row__dashboard .navigation-item.tab-reports {
    max-width: 1324px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }

  .navigation-row__reports {
    flex-wrap: wrap;
  }

  .navigation-row__reports .navigation-item {
    width: 45%;
    width: calc(50% - 24px);
  }
}

@media (max-width: 860px) {
  .navigation-row__dashboard {
    flex-wrap: wrap;
  }

  .navigation-row__dashboard .navigation-item {
    width: 45%;
    width: calc(50% - 24px);
  }
}

@media (max-width: 720px) {
  .navigation-row__reports {
    flex-wrap: wrap;
  }

  .navigation-row__reports .navigation-item {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .navigation-row__dashboard {
    flex-wrap: wrap;
  }

  .navigation-row__dashboard .navigation-item {
    width: 100%;
    margin: 6px 12px;
  }

  .navigation-row__reports {
    flex-wrap: wrap;
  }

  .navigation-row__reports .navigation-item {
    width: 100%;
  }
}




/*
Filters row
*/
.navigation-row__filters {
  padding: 0 12px;
  margin: 12px auto 32px;
  align-items: center;
}

.dashboard-filter__back-button {
  background: transparent;
  border: none;
  padding: 0 12px 0 12px;
}

.dashboard-filter__back-button img {
  display: block;
}

.dashboard-filter__icon {
  background-image: url("/static/img/dashboard/filter.149a625ed292.svg");
  background-position: center;
  background-repeat: no-repeat;
  height: 18px;
  width: 18px;
  margin-right: 20px;
  flex-shrink: 0;
}

.dashboard-filter__icon.active {
  background-image: url("/static/img/dashboard/filter-active.33b2a345c25e.svg");
}

.dashboard-filter__icon.mobile {
  cursor: pointer;
  border-radius: 24px;
  background-color: white;
  background-position: center 8px;
  border: 1px solid rgba(103, 134, 172, 0.3);
  height: 30px;
  width: 30px;
  background-size: 16px 14px;
  margin-right: 13px;
}

.dashboard-filter__icon.mobile.active {
  border: 1px solid rgb(38, 56, 86);
}

.dashboard-filter__icon.mobile.invisible {
  opacity: 0;
  pointer-events: none;
}




.dashboard-category-filter__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  flex-shrink: 0;
}

.dashboard-category-filter__icon.mobile {
  cursor: pointer;
  border-radius: 24px;
  background-color: white;
  background-position: center 8px;
  border: 1px solid rgba(103, 134, 172, 0.3);
  height: 30px;
  width: 30px;
  display: flex;
  background-size: 16px 14px;
  margin-right: 5px;
}

.dashboard-filter__item {
  padding: 2px 20px 4px 21px;
  background: rgb(218, 230, 245);
  border: 0 solid;
  border-radius: 14px;
  color: rgb(38, 56, 86);
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  margin-right: 10px;
  transition: all 0.25s;
  height: auto;
}

.dashboard-filter__item:hover {
  background: rgb(174, 199, 231);
  color: rgb(38, 56, 86);
}

.dashboard-filter__item.active {
  background: rgb(45, 64, 95);
  color: white;
}

.dashboard-filter__closer {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("/static/img/common/icons/mobile_menu_close-v2.d33d8f6f5c59.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: 15px;
}

/*
Navigation row filters mobile
*/

.navigation-row__filters-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  background: rgba(214, 219, 227, 0.4);
  border-radius: 0;
  margin: 0 !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
}
.navigation-row__filters-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.navigation-row__filters-mobile {
  flex-direction: row;
}
.navigation-row__filters-mobile svg {
  flex-shrink: 0;
}
.navigation-row__filters-mobile .dashboard-filter__item__wrapper {
  width: 219px;
  margin-left: 13px;
  display: flex;
  flex-direction: column;
  height: 220px;
  justify-content: space-between;
}
.navigation-row__filters-mobile .dashboard-filter__item {
  width: 219px;
  height: 40px;
  
  background: #FFFFFF;
  border: 1px solid rgba(38, 56, 86, 0.3);
  box-sizing: border-box;
  border-radius: 8px;
  margin: 10px 0;
  position: relative;
  padding: 0 20px;
  align-items: center;
  z-index: 22;
  text-align: left;
  display: flex;
}
.navigation-row__filters-mobile .dashboard-filter__item .checkbox {
  border: 1px solid rgba(38, 56, 86, 0.6);
  background: white;
  width: 16px;
  height: 16px;
  border-radius: 2px; 
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-row__filters-mobile .dashboard-filter__item .checkbox svg {
  display: none; 
}

.navigation-row__filters-mobile .dashboard-filter__item.active {
  background: #263856;
  border: 1px solid rgba(38, 56, 86, 0.3);
  color: white;
}
.navigation-row__filters-mobile .dashboard-filter__item.active .checkbox {
  border: 1px solid #263856;
}
.navigation-row__filters-mobile .dashboard-filter__item.active .checkbox svg {
  display: block; 
}


/*
Trait switch row
*/
.navigation-row__trait-switch {
  padding: 0 12px;
  margin: 15px auto 50px;
  align-items: center;
  justify-content: space-between;
}

.navigation-row__trait-switch .btn-tertiary {
  width: 134px;
  height: 24px;
  border: 1px solid rgb(69, 130, 201);
  border-radius: 12px;
  padding: 0;
  color: rgb(69, 130, 201);
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0;
  line-height: 22px;
  transition: all 0.25s;
}

.navigation-row__trait-switch .btn-tertiary:hover {
  background: rgba(37, 119, 230, 0.06);
}

.navigation-row__trait-switch .navigation-row__back-button {
  padding: 0;
  background: transparent;
  border: none;
  height: 17px;
  line-height: 17px;
  width: 21px;
}

.navigation-row__trait-switch .navigation-row__train-switcher {
  width: 134px;
}

.navigation-row__trait-switch .navigation-row__pagination {
  color: #7b94b4;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
  min-width: 60px;
}
.navigation-row__trait-switch .navigation-row__pagination .filter {
  padding: 3px 21px; 
  height: 24px;
  background: rgb(218, 230, 245);
  border-radius: 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  margin: 0 4px 0;
  position: relative;
  top: -1px;
}
@media (max-width: 824px) {
  .navigation-row__trait-switch .navigation-row__pagination .filter {
    display: none;
  }
}

.navigation-row__trait-switch .navigation-row__pagination span:first-of-type {
  color: rgb(236, 46, 119);
}

.cat-food_and_nutrition.navigation-row__trait-switch .navigation-row__pagination span:first-of-type {
  color: rgb(122, 191, 67);
}

.cat-intelligence.navigation-row__trait-switch .navigation-row__pagination span:first-of-type {
  color: rgb(255, 172, 0);
}

.cat-physical.navigation-row__trait-switch .navigation-row__pagination span:first-of-type {
  color: rgb(111, 36, 149);
}

.cat-sports.navigation-row__trait-switch .navigation-row__pagination span:first-of-type {
  color: rgb(0, 160, 166);
}



/*
Dashboard cards
*/

.dashboard-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}
.filter-blurred-bottom {
  filter: blur(20px);
}


.dashboard-cards__not-found {
  width: 100%;
  text-align: center;
  padding-bottom: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.dashboard-cards__not-found__contents {
  width: 100%;
  position: absolute;
  top: 36px;
}

.dashboard-cards__not-found h2 {
  width: 100%;
  color: rgb(38, 56, 86);
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 20px;
}

.dashboard-cards__not-found__text {
  width: 60%;
  color: rgb(38, 56, 86);
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  margin: 0 auto 20px;
}

.dashboard-cards__not-found__card {
  margin: 12.5px 12.5px 32.5px 12.5px;
  width: 244px;
  height: 255px;
  background: #f0f5fb;
  border-radius: 2px;
}

@media (max-width: 420px) {
  .dashboard-cards__not-found__card {
    width: 100%;
  }
}

.dashboard-cards__category-header {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  margin: 40px 0 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.dashboard-cards__category-header .navigation-item__icon {
  display: inline-flex;
  position: static;
  margin-right: 5px;
}

.dashboard-cards__category-header .navigation-item__icon.cat-food_and_nutrition {
  background: rgb(122, 191, 67);
}

.dashboard-cards__category-header .navigation-item__icon.cat-personality {
  background: rgb(236, 46, 119);
}

.dashboard-cards__category-header .navigation-item__icon.cat-trait {
  background: rgb(111, 36, 149);
}

.dashboard-cards__category-header .navigation-item__icon.cat-intelligence {
  background: rgb(255, 172, 0);
}

.dashboard-cards__category-header .navigation-item__icon.cat-sports {
  background: rgb(0, 160, 166);
}

.dashboard-card {
  display: flex;
  align-items: center;
  background-color: white;
  flex-direction: column;
  margin: 12.5px 12.5px 60px 12.5px;
  position: relative;
  padding: 19px 0 0 0;
  transition: box-shadow 0.25s;
  width: 244px;
  min-height: 255px;
  background: rgb(255, 255, 255);
  box-shadow: 3px 4px 10px 0 rgba(170, 185, 202, 0.28);
  border-radius: 2px;
}
@media (max-width: 420px) {
  .dashboard-card {
    width: 100%;
  }
}

.dashboard-card:hover {
  box-shadow: 0 4px 10px 0 rgba(74, 93, 128, 0.26);
}

.dashboard-card::before {
  content: ' ';
  display: block;
  width: 100%;
  height: 4px;
  background: rgb(143, 171, 207);
  border-radius: 2px;
  position: absolute;
  top: 0;
  z-index: 12;
}

.dashboard-card .dashboard-card__gauge {
  width: 60px;
  height: 35px;
  position: absolute;
  top: -25px;
  z-index: 13;
}

.dashboard-card__notification {
  height: 36px;
  color: rgb(39, 57, 88);
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  letter-spacing: 0;
  text-align: center;
  flex-shrink: 0;
}

.dashboard-card__notification__alert {
  margin-top: 11px;
  width: 134px;
  height: 24px;
  color: white;
  background: rgb(143, 171, 207);
  border-radius: 15px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.dashboard-card__content {
  height: 80px;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-card__content button {
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 28px;
  color: rgb(143, 171, 207);
  padding: 0;
  background: transparent;
  border-radius: 30px;
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  top: 50%;
  border: 1px solid;
  transition: all 0.25s;
}

.dashboard-card__content button:hover {
  color: #2d405f;
}

.favorite-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  position: absolute;
  left: 20px;
  transform: translateY(-50%);
  top: 50%;
  transition: all 0.25s;
  opacity:0.7;
  display: flex;
  align-items:center;
  justify-content:center;
}
@media (max-width: 420px) {
  .favorite-btn {
     display:none; 
  }
}
.favorite-btn:hover {
  color: #2d405f;
  opacity: 1;
}

.favorite-btn-mobile {
  width: 20px;
  height: 20px;
  left: unset;
  right: 8px;
  top:14px;
  display: none;
}
@media (max-width: 420px) {
  .favorite-btn-mobile {
    display: flex;
  }
}
.favorite-btn.favorite-btn-food_and_nutrition path{
  fill:rgb(122, 191, 67);
}
.favorite-btn.favorite-btn-intelligence path{
  fill:rgb(255, 172, 0);
}
.favorite-btn.favorite-btn-trait path{
  fill:rgb(111, 36, 149);
}
.favorite-btn.favorite-btn-personality path{
  fill:rgb(236, 46, 119);
}
.favorite-btn.favorite-btn-sports path{
  fill:rgb(0, 160, 166);
}

.favorite-btn.favorite-empty path{
  fill:rgb(255,255,255);
  stroke:rgba(38, 56, 86, 0.6);
}
.dashboard-card__title {
  width: 100%;
  height: 100%;
  background: #F1FBE9;
  color: rgb(38, 56, 86);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  display: flex;;
  justify-content: center;
  align-items: center;
  padding: 12px 10px 32px 10px;
  flex-grow: 1;
  position: relative;
  z-index: 10;
  border-radius: 0px 0px 2px 2px;
}
.dashboard-card__title::after {
  display: block;
  content: '';
  position: absolute;
  width: 8px;
  height: 16px;
  bottom: 12px;
  left: calc(50% - 8px/2);
  transform: rotate(90deg);
  background-image: url("/static/img/dashboard/card-gauges/arrow.3ac4c6cbebe9.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.category-intelligence .dashboard-card__title {
  background: #FDF9E3;
}
.category-trait .dashboard-card__title {
  background: #F9F2FF;
}
.category-personality .dashboard-card__title {
  background: #FFF3F8;
}
.category-sports .dashboard-card__title {
  background: #EAFCFC;
}
.unlimited .dashboard-card__title {
  background: #EEF4FA;
  opacity: 1;
}

@media (max-width: 420px) {
  .dashboard-card__title {
    height: auto;
  }
}

.dashboard-card__title a {
  color: rgb(38, 56, 86);
}

.dashboard-card__description {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: white;
  padding: 50px 20px 30px;
  color: rgb(38, 56, 86);
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  z-index: 11;
}

.dashboard-card__description__close {
  height: 18px;
  width: 18px;
  position: absolute;
  background-image: url("/static/img/common/icons/Close.cbe76d860100.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 21px;
  right: 15px;
  cursor: pointer;
  filter: none;
  transition: filter 0.25s;
}
.dashboard-card__description__close:hover {
  filter: sepia(62%) saturate(350%) invert(75%);
}

/*
Categories and gauges
*/
.score-generating .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/generating.dd00a7abf899.svg");
  height: 40px;
}

.score-inconclusive .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Inconclusive.6c546acb1eb1.svg");
}

.dashboard-card.score-inconclusive::before {
  background: #8fabcf !important;
}

.coming-soon .dashboard-card__notification__alert {
  background: white;
  color: rgb(143, 171, 207);
  border: 1px solid;
}

.coming-soon .dashboard-card__title {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.coming-soon .dashboard-card__content {
  opacity: 0.5;
}

.unlimited .dashboard-card__notification__alert {
  background: #ff7c11 !important;
  color: white;
  border: 1px solid;
}

.unlimited .dashboard-card__title {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.unlimited .dashboard-card__content {
  opacity: 0.5;
}

.dashboard-card.unlimited::before {
  background: #8fabcf !important;
}

.dashboard-card.category-food_and_nutrition::before {
  background: rgb(122, 191, 67);
}

.dashboard-card.prs-trait::before {
 background: linear-gradient(89.87deg, #8430B0 -1.32%, #FF5395 34.52%, #FFDC54 65.1%, #60D9D9 99.89%);
}

.dashboard-card__research{
  position: absolute;
  bottom: -35px;
  z-index: 2;
  left: 0px;
}

@media (max-width: 480px) {
  .dashboard-card__research{
    display: none;
  }
}

.category-food_and_nutrition.score-low .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Food & Nutrition/Low.1399f0010949.svg");
}

.category-food_and_nutrition.score-mid .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Food & Nutrition/Intermediate.f2223375932e.svg");
}

.category-food_and_nutrition.score-high .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Food & Nutrition/High.41b2b9582bcf.svg");
}

.category-food_and_nutrition .dashboard-card__notification__alert {
  background: rgb(122, 191, 67);
}

.category-food_and_nutrition.coming-soon .dashboard-card__notification__alert {
  background: white;
  color: rgb(122, 191, 67);
}

.dashboard-card.category-intelligence::before {
  background: rgb(255, 172, 0);
}

.category-intelligence.score-low .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Intelligence/Low.b0d20bc15f5d.svg");
}

.category-intelligence.score-mid .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Intelligence/Intermediate.153ba8160db2.svg");
}

.category-intelligence.score-high .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Intelligence/High.92cba7e35fe2.svg");
}

.category-intelligence .dashboard-card__notification__alert {
  background: rgb(255, 172, 0);
}

.category-intelligence.coming-soon .dashboard-card__notification__alert {
  background: white;
  color: rgb(255, 172, 0);
}

.dashboard-card.category-personality::before {
  background: rgb(236, 46, 119);
}

.category-personality.score-low .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Personality/Low.257db0f51b7f.svg");
}

.category-personality.score-mid .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Personality/Intermediate.29e003e60d14.svg");
}

.category-personality.score-high .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Personality/High.81a931b07664.svg");
}

.category-personality .dashboard-card__notification__alert {
  background: rgb(236, 46, 119);
}

.category-personality.coming-soon .dashboard-card__notification__alert {
  background: white;
  color: rgb(236, 46, 119);
}

.dashboard-card.category-physical::before,
.dashboard-card.category-trait::before {
  background: rgb(111, 36, 149);
}

.category-physical.score-low .dashboard-card__gauge,
.category-trait.score-low .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Physical/Low.d7be1112be7b.svg");
}

.category-physical.score-mid .dashboard-card__gauge,
.category-trait.score-mid .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Physical/Intermediate.52b1e9b0ad8a.svg");
}

.category-physical.score-high .dashboard-card__gauge,
.category-trait.score-high .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Physical/High.bb56f761a9a7.svg");
}

.category-physical .dashboard-card__notification__alert,
.category-trait .dashboard-card__notification__alert {
  background: rgb(111, 36, 149);
}

.category-physical.coming-soon .dashboard-card__notification__alert,
.category-trait.coming-soon .dashboard-card__notification__alert {
  background: white;
  color: rgb(111, 36, 149);
}

.dashboard-card.category-sports::before {
  background: rgb(0, 160, 166);
}

.category-sports.score-low .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Sports/Low.41995c549c22.svg");
}

.category-sports.score-mid .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Sports/Intermediate.5b6677cd76db.svg");
}

.category-sports.score-high .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Sports/High.664de3f86767.svg");
}

.category-sports .dashboard-card__notification__alert {
  background: rgb(0, 160, 166);
}

.category-sports.coming-soon .dashboard-card__notification__alert {
  background: white;
  color: rgb(0, 160, 166);
}

.dashboard-card.unlimited .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/Unlimited.18a88781fca1.svg");
  height: 48px;
}

.collection__header{
    font-weight: bold;
    font-size: 30px;
    line-height: 36px;
    color: #46637F !important;
}
@media (max-width: 760px) {

    .collection__header{
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }
}

.collection__unlimited-cta-traits-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top:80px;
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 760px){
    .collection__unlimited-cta-traits-container{
        flex-direction: column;
        max-width: 390px;
        width:95%;
    }
}
.collection__cta-container{
  display: flex;
  align-items:center;
  justify-content:flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width:100%;
  min-height: 60px;
  padding:12px 24px;
  margin-bottom:40px;
  border-radius: 12px;
  max-width: 1036px;
  margin-left: auto;
  margin-right: auto;
  
}

.collection__cta-container.cat-food_and_nutrition {
  background: rgba(122, 191, 67, 0.1);
}

.collection__cta-container.cat-personality {
  background: rgba(236, 46, 119, 0.1);
}

.collection__cta-container.cat-trait {
  background: rgba(111, 36, 149, 0.1);
}

.collection__cta-container.cat-intelligence {
  background: rgba(255, 172, 0, 0.1);
}

.collection__cta-container.cat-sports {
  background: rgba(0, 160, 166, 0.1);
}

.collection__cta-container.cat-unlimited {
  background: rgba(255, 143, 52, 0.1);
}

.collection__cta-icon{
    width: 36px;
    height: 36px;
    border-radius: 36px;
    margin-right:18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.collection__cta-container 
.collection__unlimited-cta-container{
    display: flex;
    align-items:center;
    justify-content:flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    width:100%;
    min-height: 80px;
    background-color: #F9F2EC;
    padding:24px 22px;
    margin-bottom:60px;
    border-radius: 12px;
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 760px) {
    .collection__unlimited-cta-container{
        padding:16px 20px;
        justify-content:center;
        flex-direction:column;
        margin-bottom: 60px;
        max-width: 390px;
        width:95%;
    }
}
@media (max-width: 480px) {
    .collection__unlimited-cta-container{
        margin-bottom: 6px;
    }
}
.collection__unlimited-cta-legend{
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    color: #263856;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
@media (max-width: 760px){
    .collection__unlimited-cta-legend{
        font-size: 18px;
        line-height: 21px;
        flex:1;
        max-width: 295px;
    }
}
.collection__unlimited-cta-icon{
    background: rgb(255, 124, 17);
    width: 36px;
    height: 36px;
    border-radius: 36px;
    margin-right:18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 760px){
    .collection__unlimited-cta-icon{
        margin-right: 9px;
    }
}
.collection__unlimited-cta-button{
    margin-left: auto;
}
@media (max-width: 760px){
    .collection__unlimited-cta-button{
        margin-left: 0;
        margin-top: 16px;
        flex:1;
        width:295px;
    }
    
    .collection__unlimited-cta-button a, .collection__unlimited-cta-button .btn-primary{
        width:100%;
        height:32px;
    }
}



/* Mobile navigation */
.mobile-navitation-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.mobile-navigation-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 36px;
  background: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  margin-right: 10px;
}

.mobile-navigation-item__icon path {
  fill: white;
}

.mobile-navigation-item__icon.cat-food_and_nutrition {
  background: rgb(122, 191, 67);
}

.mobile-navigation-item__icon.cat-personality {
  background: rgb(236, 46, 119);
}

.mobile-navigation-item__icon.cat-trait {
  background: rgb(111, 36, 149);
}

.mobile-navigation-item__icon.cat-intelligence {
  background: rgb(255, 172, 0);
}

.mobile-navigation-item__icon.cat-sports {
  background: rgb(0, 160, 166);
}

.mobile-navigation-item__icon.cat-unlimited {
  background: rgb(255, 143, 52);
}

.mobile-navigation-item__traits {
  width: 100%;
  text-align: center;
}

.mobile-navigation-item__traits b {
  font-weight: bold;
}





/*
Unlimited modal
*/
.banner__unlimited__contents {
  margin-top: 21px;
  padding: 40px 20px;
  background: #e8eef8;
}

.banner__unlimited__header {
  color: rgb(38, 56, 86);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  line-height: 30px;
  margin-bottom: 21px;
}

.banner__unlimited__image {
  max-width: 100%;
  min-height: 270px;
  margin: 0 auto;
}

.banner__unlimited__trait {
  display: block;
  max-width: 100%;
  margin: -160.75px auto 72.75px;
  text-align: center;
}
.banner__unlimited__trait svg{
  width: 125px;
  height: auto;
}

.banner__unlimited__text {
  color: rgb(38, 56, 86);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  line-height: 30px;
  margin-bottom: 20px;
}

.banner__unlimited__text span {
  color: #ff7c11;
}

.banner__unlimited__contents .btn-primary {
  display: block;
  margin: 0 auto 20px;
}

.banner__unlimited__under {
  color: rgb(143, 171, 207);
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
}

.banner__unlimited__image.pc-only {
  display: block;
}
.banner__unlimited__image.mobile-only {
  display: none;
}

@media (max-width: 1024px) {

  .banner__unlimited__trait {
    display: block;
    max-width: 100%;
    margin: -120.75px auto 32.75px;
    text-align: center;
  }
  .banner__unlimited__image {
    margin: 0 auto;
    min-height: none;
  }
  .banner__unlimited__image.pc-only {
    display: none;
  }
  .banner__unlimited__image.mobile-only {
    display: block;
  }
}


.dashboard-card__notification__mobile {
  display: none;
}

.dashboard-cards__category-header.dashboard-cards__category-header__mobile {
  display: none;
}
@media (max-width: 1024px) {
  .dashboard-cards__category-header.dashboard-cards__category-header__mobile {
    display: flex;
    padding: 0 19px;
  }
  .dashboard-cards__category-header.dashboard-cards__category-header__mobile .navigation-item__traits-count{
    margin-left:auto;
  }
}

.dashboard-cards__show_more, 
.dashboard-cards__show_less {
  display: none; 
}
.dashboard-cards__show_more svg, 
.dashboard-cards__show_less svg {
  margin-right: 13px;
}

@media (max-width: 1024px) {
  .dashboard-cards__show_more, 
  .dashboard-cards__show_less {
    margin:auto;
    margin-top: 13px;
    width: 255px;
    height: 40px;
    background: #F9FCFF;
    border: 1px solid #4582C9;
    box-sizing: border-box;
    border-radius: 60px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 16px;
    color: #4582C9;
  }
  .dashboard-cards__show_more {
    display: flex;
  }
  .dashboard-cards__show_more b {
    font-weight: bold;
  }
}

.dashboard-filters {
  display: flex;
  width: 100%;
}
.dashboard-filters__pulldown {
  width: 50%;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  color: #263856;
  position: relative;
  font-weight: normal;
}
.dashboard-filters__pulldown.to-right {
  justify-content: flex-end;
  padding-right: 6px;
}

.dashboard-filters__pulldown img {
  transform: rotate(90deg);
  margin-left: 10px;
  position: relative;
  top: 2px;
}
.dashboard-filters__pulldown .dashboard-filter__icon.mobile {
  margin-right: 5px;
}
.dashboard-cards__not-found__mobile {
  display: none;
}

.dashboard-card__title-prs{
  display: none;
}

@media (max-width: 480px) {
  .dashboard-cards-wrapper {
    padding-top: 24px; 
  }
  
  .navigation-row.mobile-navigation-row.sticky {
    position: fixed;
    width: 100%;
    top: 80px;
    padding: 0;
    z-index: 1999;
    background: rgb(249, 252, 255);
  }
  .navigation-row.mobile-navigation-row.sticky .dashboard-filters {
    
    background: rgb(249, 252, 255);
    padding: 0 19px 12px 19px;
    position: relative;
    z-index: 1999;
  }
  
  .navigation-row.mobile-navigation-row.sticky.scrolled .shadow {
    content: '';
    display: block;
    height: 25%;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1998;
    box-shadow: 0px 2px 30px 0px rgba(41, 50, 81, 0.32); 
    left: 0;
    right: 0;
    background: transparent;
  }
  .dashboard-cards__category-header.dashboard-cards__category-header__mobile {
    display: flex;
    margin: 20px 0 14px;
    text-align: inherit;
    padding: 0 19px;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    color: #263856;
  }
  .dashboard-cards__category-header.dashboard-cards__category-header__mobile .navigation-item__icon {
    margin-right: 12px;
  }
  .dashboard-cards__category-header.dashboard-cards__category-header__mobile .navigation-item__traits-count {
    margin-left: auto;
    font-size: 14px;
    line-height: 18px;
    color: #7A93B5;
    font-weight: normal;
  }
  .dashboard-cards__category-header.dashboard-cards__category-header__mobile .navigation-item__traits-count b {
    color: #263856;
    font-weight: 500;
  }
  .dashboard-cards__category-header.dashboard-cards__category-header__mobile .navigation-item__traits-count b span {
    color: #7A93B5;
    font-weight: 500;
  }
  
  .dashboard-cards__show_more, 
  .dashboard-cards__show_less {
    margin-top: 13px;
    width: 255px;
    height: 40px;
    background: #F9FCFF;
    border: 1px solid #4582C9;
    box-sizing: border-box;
    border-radius: 60px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 16px;
    color: #4582C9;
  }
  .dashboard-cards__show_more {
    display: flex;
  }
  .dashboard-cards__show_more b {
    font-weight: bold;
  }
  
  .dashboard-card .dashboard-card__gauge {
    position: absolute;
    width: 7px;
    height: auto;
    left: 12px;
    top: 10px;
    bottom: 10px;
    background: #CDE0F8;
    background-image: none !important;
    border-radius: 8px;
  }
  .dashboard-card .dashboard-card__gauge::after {
    display: block;
    content: '';
    position: absolute;
    width: 7px;
    height: auto;
    bottom: 0px;
    background: #7ABF43;
    border-radius: 0 0 8px 8px;
  }
  .dashboard-card.score-low .dashboard-card__gauge::after {
    height: 25%;
  }
  .dashboard-card.score-mid .dashboard-card__gauge::after {
    height: 50%;
  }
  .dashboard-card.score-high .dashboard-card__gauge::after {
    height: 80%;
  }
  .dashboard-card.score-generating .dashboard-card__gauge::before {
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 36px;
    height: 36px;
    
    background-image: url("/static/img/dashboard/card-gauges/generating-small.97e38e4a8633.svg");
  }
  .dashboard-card.unlimited .dashboard-card__gauge {
    height: auto;
    background: white;
  }
  .dashboard-card.unlimited .dashboard-card__gauge::before {
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 36px;
    height: 36px;
    
    background-image: url("/static/img/dashboard/card-gauges/unlimited-small.16512cd03b27.svg");
  }
  
  .category-intelligence .dashboard-card__gauge::after {
    background: rgb(255, 172, 0);
  }
  .category-trait .dashboard-card__gauge::after {
    background: #712798;
  }
  .category-personality .dashboard-card__gauge::after {
    background: #FF5395;
  }
  .category-sports .dashboard-card__gauge::after {
    background: #00BDBD;
  }

  .dashboard-card {
    width: 100%;
    padding: 0;
    flex-direction: row;
    min-height: auto;
    margin: 5px 10px;
    border-radius: 12px;
  }
  .dashboard-card::before {
    display: none;
  }
  .dashboard-card__notification {
    display: none;
  }
  .dashboard-card__content {
    min-height: 80px;
    height: auto;
    width: 115px;
    flex-shrink: 0;
    margin: 0;
    padding: 0px 1px 0px 20px;
  }
  .dashboard-card__content button {
    display: none;
  }
  .unlimited .dashboard-card__content {
    opacity: 1;
  }
  .dashboard-card__title {
    width: 100%;
    background: #F1FBE9;
    height: 100%;
    padding: 12px 30px 12px 12px;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    justify-content: center;
    border-radius: 0 12px 12px 0;
    text-align: left;
    flex-direction: column;
    align-items: start;
  }
  
  .prs-trait .dashboard-card__title {
    background: linear-gradient(103.8deg, rgba(212, 190, 224, 0.6) -19.37%, rgba(255, 203, 223, 0.6) 19.57%, rgba(255, 239, 186, 0.6) 53.26%, rgba(215, 236, 199, 0.6) 87.7%, rgba(179, 235, 235, 0.6) 124.39%) !important;
  }
  
  .dashboard-card__title-prs{
  display: block;
  font-weight: 600;
font-size: 12px;
line-height: 18px;
text-align: center;
text-transform: uppercase;
color: #263856;
background: #FFFFFF;
border-radius: 6px;
padding: 3px 8px;
margin-bottom: 6px;
}

  .prs-trait .dashboard-card__title::after{
    bottom: 18px;
    top: auto;
  }
  
  .category-intelligence .dashboard-card__title {
    background: #FDF9E3;
  }
  .category-trait .dashboard-card__title {
    background: #F9F2FF;
  }
  .category-personality .dashboard-card__title {
    background: #FFF3F8;
  }
  .category-sports .dashboard-card__title {
    background: #EAFCFC;
  }
  .unlimited .dashboard-card__title {
    background: #EEF4FA;
    opacity: 1;
  }

  .dashboard-inner-page .dashboard-card__title {
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    left: 115px;
    width: auto;
  }
  .dashboard-inner-page__traits-on-mobile .dashboard-card__title {
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    left: 115px;
    width: auto;
  }
  .dashboard-card__title::after {
    display: block;
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    left: auto;
    bottom: auto;
    right: 16px;
    transform: rotate(0deg);
    top: calc(50% - 12px/2);
    background-image: url("/static/img/dashboard/card-gauges/arrow.3ac4c6cbebe9.svg");
  }
  .dashboard-card__notification__mobile {
    display: block;
  }
  .dashboard-card__notification__alert {
    margin: 0 0 8px 0;
    width: 110px;
  }
  .navigation-item__icon.cat-unlimited {
    background: #ff7c11;
  }
  #unlimited-cards {
    padding-top: 0;
  }
  #unlimited-cards .dashboard-cards__category-header {
    display: none;
  }
  #unlimited-cards .dashboard-cards__category-header.dashboard-cards__category-header__mobile {
    display: flex;
  }
  
  .dashboard-filter__icon.mobile.invisible {
    opacity: 1;
    pointer-events: all;
  }
  .dashboard-filter__categories-wrapper {
    width: 290px;
  }
  .dashboard-filter__categories-wrapper .dashboard-cards__category-header.dashboard-cards__category-header__mobile {
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    color: #263856;
  }
  .dashboard-cards__category-delimiter {
    height: 1px;
    margin: 15px 0;
    
    background: linear-gradient(90deg, rgba(137, 164, 199, 0) 0%, #89A4C7 12%, #89A4C7 88%, rgba(137, 164, 199, 0) 100%);
    opacity: 0.3;
  }
  .dashboard-cards__category-delimiter:first-of-type {
    display: none;
  }
  .dashboard-filter__categories-wrapper .navigation-item__traits-count {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    color: #394A65;
  }
  .dashboard-filter__categories-wrapper .navigation-item__traits-count svg {
    display: block;
    margin-left: 20px;
  }
  .dashboard-cards__not-found__mobile {
    display: block;
    padding: 0 9px;
    width: 100%;
  }
  .dashboard-cards__not-found__mobile img {
    width: 100%;
  }
  .navigation-item__traits-count .filter-icon {
    background-image: url("/static/img/dashboard/filter-active.33b2a345c25e.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 10px;
    margin-right: 6px;
    display: inline-block;
  }
  .dashboard-filter__apply-mobile {
    position: absolute;
    height: 0;
    width: 100%;
  }
  .dashboard-filter__apply-mobile_inside {
    position: relative;  
    top: 147px;
  }
  .dashboard-filter__apply-mobile__button {
    cursor: pointer;
    width: 180px;
    height: 40px;
    margin: 0 auto;
    color: white;
    text-align: center;
    line-height: 40px;
    background: #4582C9;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 14px;

  }
  .dashboard-filter__apply-mobile__reset {
    margin: 13px auto 0;
    font-size: 16px;
    line-height: 16px;
    color: #4582C9;
    width: 180px;
    text-align: center;
    cursor: pointer;
  }
}

.modal__container__unlimited *:focus {
  outline: none;
}

.category-food_and_nutrition.category-banner::before {
	background: none;
}
.category-banner__title {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	display: flex;
	align-items: center;
	text-align: center;
	color: #263856;
	margin-bottom: 20px;
}
.category-banner__button {
	width: 158px;
	height: 24px;
	background: #4582C9;
	border-radius: 20px;
	margin-bottom: 20px;
	display: flex;
	color: white;
	justify-content: center;
	align-items: center;
}
@media (max-width: 480px) {
	.category-food_and_nutrition.category-banner {
		display: none !important;
	}	
}


.upcoming-trait.dashboard-card::before {
  opacity: 0.4; 
}
.upcoming-trait.dashboard-card .dashboard-card__notification__alert {
  background: white;
  font-size: 16px;
  width: 160px;
}
.upcoming-trait.category-food_and_nutrition .dashboard-card__notification__alert {
  color: rgb(122, 191, 67);
}
.upcoming-trait.category-intelligence .dashboard-card__notification__alert {
  color: rgb(255, 172, 0);
}
.upcoming-trait.category-trait .dashboard-card__notification__alert {
  color: rgb(111, 36, 149)
}
.upcoming-trait.category-personality .dashboard-card__notification__alert {
  color: rgb(236, 46, 119);
}
.upcoming-trait.category-sports .dashboard-card__notification__alert {
  color: rgb(0, 160, 166);
}
.upcoming-trait.dashboard-card .dashboard-card__title {
  padding: 12px 10px 12px 10px;
  color: rgba(38, 56, 86, 0.5);
}
.upcoming-trait.dashboard-card .dashboard-card__title::after {
  display: none;
}
.upcoming-trait.dashboard-card .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/comingsoon.e00074a437bf.svg");
  height: 37px;
}


.preparing.dashboard-card::before {
  opacity: 0.4; 
}
.preparing.dashboard-card .dashboard-card__title {
  padding: 12px 10px 12px 10px;
  color: rgba(38, 56, 86, 0.5);
}
.preparing.dashboard-card .dashboard-card__title::after {
  display: none;
}
.preparing.dashboard-card .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/preparing.9d74698ff82e.svg");
  height: 40px;
}
.preparing .dashboard-card__notification__alert {
  background: rgba(201, 214, 228, 0.3) !important;
  color: #263856;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
font-size: 12px;
line-height: 18px;
border-radius: 6px;
padding: 3px 16px;
width: auto;
height: auto;
}

.locked.dashboard-card::before {
  opacity: 0.4; 
}
.locked.dashboard-card .dashboard-card__title {
  padding: 12px 10px 12px 10px;
  color: rgba(38, 56, 86, 0.5);
}
.locked.dashboard-card .dashboard-card__title::after {
  display: none;
}
.locked.dashboard-card .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/locked.c466ee125736.svg");
  height: 40px;
}
.locked .dashboard-card__notification__alert {
  background: rgba(201, 214, 228, 0.3) !important;
  color: #263856;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
font-size: 12px;
line-height: 18px;
border-radius: 6px;
padding: 3px 16px;
width: auto;
height: auto;
}


@media (max-width: 480px) {
  .upcoming-trait.dashboard-card .dashboard-card__gauge {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: white;
    background-image: url("/static/img/dashboard/card-gauges/comingsoon-mobile.cba22ca4b847.svg") !important;
  }
  .upcoming-trait.dashboard-card .dashboard-card__notification__alert {
    background: none;
    font-size: 14px;
    justify-content: unset;
  }
  .upcoming-trait.dashboard-card .dashboard-card__gauge:after {
    display: none; 
  }
  
  
   .preparing.dashboard-card .dashboard-card__gauge {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: white;
    background-image: url("/static/img/dashboard/card-gauges/preparing-mobile.4a1674cc1833.svg") !important;
  }
  .preparing.dashboard-card .dashboard-card__notification__alert {
    background: none;
    font-size: 14px;
    justify-content: unset;
  }
  .preparing.dashboard-card .dashboard-card__gauge:after {
    display: none; 
  }
  
  .locked.dashboard-card .dashboard-card__gauge {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: white;
    background-image: url("/static/img/dashboard/card-gauges/locked-mobile.8b4d2d2b5c9c.svg") !important;
  }
  .locked.dashboard-card .dashboard-card__notification__alert {
    background: none;
    font-size: 14px;
    justify-content: unset;
  }
  .locked.dashboard-card .dashboard-card__gauge:after {
    display: none; 
  }
}


.new-trait.dashboard-card.category-food_and_nutrition  .dashboard-card__title {
  background: #D4F8B7;
}
.new-trait.dashboard-card.category-intelligence  .dashboard-card__title {
  background: #FFF2AA;
}
.new-trait.dashboard-card.category-trait  .dashboard-card__title {
  background: #E7CAFF;
}
.new-trait.dashboard-card.category-personality  .dashboard-card__title {
  background: rgba(255, 83, 149, 0.3);
}
.new-trait.dashboard-card.category-sports  .dashboard-card__title {
  background: #A0F7F7;
}

.updated-trait.dashboard-card.category-food_and_nutrition  .dashboard-card__title {
  background: #D4F8B7;
}
.updated-trait.dashboard-card.category-intelligence  .dashboard-card__title {
  background: #FFF2AA;
}
.updated-trait.dashboard-card.category-trait  .dashboard-card__title {
  background: #E7CAFF;
}
.updated-trait.dashboard-card.category-personality  .dashboard-card__title {
  background: rgba(255, 83, 149, 0.3);
}
.updated-trait.dashboard-card.category-sports  .dashboard-card__title {
  background: #A0F7F7;
}
/*
.new-trait.dashboard-card.category-food_and_nutrition .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/gifted-food.58b30acc3a7a.svg");
  height: 39px;
}
.new-trait.dashboard-card.category-intelligence .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/gifted-intelligence.62c2c5432622.svg");
  height: 39px;
}
.new-trait.dashboard-card.category-trait .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/gifted-physical.75ff04c8616c.svg");
  height: 39px;
}
.new-trait.dashboard-card.category-personality .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/gifted-personality.46ad397544de.svg");
  height: 39px;
}
.new-trait.dashboard-card.category-sports .dashboard-card__gauge {
  background-image: url("/static/img/dashboard/card-gauges/gifted-sports.ebb9a227423e.svg");
  height: 39px;
}
*/

@media (max-width: 480px) {
  /*
  .new-trait.dashboard-card .dashboard-card__gauge {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: white;
    background-image: url("/static/img/dashboard/card-gauges/gifted-mobile.cd12682d3b51.svg") !important;
  }
  .new-trait.dashboard-card .dashboard-card__gauge:after {
    display: none; 
  }
  */
}

