@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

* {
  box-sizing: border-box !important;
  outline: none !important;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

@media screen and (max-width: 991px) {
  html {
    overflow-x: hidden;
  }
  html.mobile-menu-opened {
    overflow: inherit;
  }
}

body {
  line-height: 1;
  background: #222222;
}
body.mobile-menu-opened {
  overflow: hidden;
}

ol, ul {
  list-style: none;
  font-family: "Montserrat", sans-serif;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

body {
  overflow-x: hidden;
  padding: 48px 0;
}
@media screen and (max-width: 991px) {
  body {
    padding: 20px 0;
  }
}

.header {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 1250px;
  padding: 0 15px;
  margin: auto;
}

.header-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(min-content, 33%) minmax(67%, max-content);
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border: 1px solid #302F2F;
  border-radius: 62px;
  background: rgba(34, 34, 34, 0.5);
  backdrop-filter: blur(8px);
}
@media screen and (max-width: 991px) {
  .header-container {
    backdrop-filter: none;
  }
}
@media screen and (max-width: 991px) {
  .logo {
    flex: 0 0 170px;
  }
}
.logo a {
  display: block;
}
.logo a img {
  display: block;
}

@media screen and (max-width: 991px) {
  .header-menu {
    width: 100%;
  }
}

.header-menu-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-menu-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.header-menu-list li {
  margin-right: 32px;
}
.header-menu-list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .header-menu-list li {
    margin-bottom: 40px;
  }
  .header-menu-list li:last-child {
    margin-bottom: 0;
  }
}
.header-menu-list li.current-menu-item a {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.header-menu-list li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  color: #ffffff;
}
.header-menu-list li a:hover {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 991px) {
  .header-menu-list li a {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.8);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
@media screen and (max-width: 991px) {
  .header-actions {
    flex-direction: column;
    display: flex;
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
    padding-bottom: 50px;
  }
  .header-actions .button {
    font-size: 18px;
    padding: 14px;
  }
}
.header-actions * {
  margin-left: 15px;
}
.header-actions *:first-child {
  margin-left: 0;
}
@media screen and (max-width: 991px) {
  .header-actions *:first-child {
    margin: 8px 0;
  }
}
@media screen and (max-width: 991px) {
  .header-actions * {
    margin: 8px 0;
    width: 100%;
  }
}

.head-profile-icon {
  width: 40px;
  flex: 0 0 40px;
}
@media screen and (max-width: 991px) {
  .head-profile-icon {
    width: 32px;
  }
  .header-actions .head-profile-icon {
    display: none;
  }
}
.head-profile-icon img {
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .head-profile-icon img {
    width: 32px;
    height: 32px;
  }
}

.button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 9px 22px;
  border-radius: 32px;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
.button-gradient {
  color: #222222;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.button-gradient:hover {
  box-shadow: 0px 14px 34px -10px #6552B0;
}
.button-outline-gradient {
  background: linear-gradient(#222, #222) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  color: #fff;
  border: 1px solid transparent;
}
.button-outline-gradient:hover {
  border: none;
  color: #222222;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.button-outline-gradient.grey2 {
  background: linear-gradient(#302F2F, #302F2F) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
}
.button-outline-gradient.grey2:hover {
  border: none;
  color: #302F2F;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.button-outline-gradient.grey1 {
  background: linear-gradient(#4F4F4F, #4F4F4F) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
}
.button-outline-gradient.grey1:hover {
  border: none;
  color: #4F4F4F;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.button-icon-left {

}
.button.button-outline-gradient:hover {
  padding: 10px 22px;
}
.button.lg.button-outline-gradient:hover {
  padding: 15px 22px;
}
.button-icon-left span {
  display: flex;
  align-items: center;
}
.button-icon-left img {
  margin-right: 8px;
}
.button-icon-left i {
  line-height: 27px;
}
.button.md {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  padding: 16px 22px;
}
.button.md-width {
  width: 263px;
}
.button.lg {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  padding: 14px 22px;
}
.button.lg.button-gradient {
  padding: 15px 22px;
}
.button.color-dark {
  color: #302F2F;
}
.button.full {
  width: 100%;
}
.button-background-29 {
  background: linear-gradient(#292929, #292929) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
}
.button.pending {
  background: #828282 !important;
  border-color: #828282 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.5;
}

.button:disabled, .button.disabled {
  background: #828282 !important;
  border-color: #828282 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.5;
}
.button.disabled {
  cursor: help !important;
}
.button.already-purchased:after {
  content: '';
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: url('../img/info-black.svg');
  margin-left: 8px;
  vertical-align: middle;
}

.footer-container {
  display: flex;
  align-items: flex-start;
  padding: 50px 30px;
  justify-content: space-between;
  background: rgba(34, 34, 34, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid #302F2F;
  border-radius: 32px;
}
@media screen and (max-width: 991px) {
  .footer-container {
    padding: 20px;
    flex-wrap: wrap;
  }
}

.footer-col {
  flex: 0 0 max-content;
  padding-right: 30px;
}
.footer-col:last-child {
  padding-right: 15px;
}
@media screen and (max-width: 991px) {
  .footer-col {
    padding: 0;
    margin-bottom: 24px;
    flex: 0 0 50%;
  }
  .footer-col:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-col {
    flex: 0 0 100%;
  }
}

.footer-menu-title {
  font-size: 20px;
  line-height: 140%;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-menu-list li {
  margin-bottom: 18px;
}
.footer-menu-list li:last-child {
  margin-bottom: 0;
}
.footer-menu-list li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
}

.footer-menu-contact__item {
  margin-bottom: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
}
.footer-contact-item figure {
  margin-right: 9px;
}
.footer-contact-item figure img {
  display: block;
}
.footer-contact-item a {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #ffffff;
}

.footer-social-list {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.footer-social-col {
  margin-right: 30px;
}
.footer-social-col:last-child {
  margin-right: 0;
}

.footer-copy {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}

.caption-block-section {
  margin-bottom: 68px;
  padding-top: 60px;
}
@media screen and (max-width: 991px) {
  .caption-block-section {
    padding-top: 36px;
    margin-bottom: 40px;
  }
}

.caption-block.sm {
  max-width: 490px;
}
.caption-block.md {
  max-width: 560px;
}
.caption-block__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #ffffff;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .caption-block__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 8px;
  }
}
.caption-block__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  opacity: 0.8;
}
@media screen and (max-width: 991px) {
  .caption-block__description {
    font-size: 16px;
    line-height: 24px;
  }
}
.caption-block__description strong, .caption-block__description b {
  font-weight: 600;
}

.popular-news-section_blog {
  margin-bottom: 81px;
}
@media screen and (max-width: 991px) {
  .popular-news-section_blog {
    margin-bottom: 40px;
  }
}
.popular-news-section_post {
  margin-bottom: 81px;
}
@media screen and (max-width: 991px) {
  .popular-news-section_post {
    margin-bottom: 40px;
  }
}

.popular-news__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 37px;
}
@media screen and (max-width: 991px) {
  .popular-news__caption {
    margin-bottom: 24px;
  }
}
.popular-news__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .popular-news__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}

.carousel-news {
  margin: 0 -20px;
}
.carousel-news__pagination {
  display: flex;
}
.carousel-news__pagination > * {
  height: 44px;
  width: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.carousel-news__pagination-prev {
  background-image: url("../img/prev.svg");
}
.carousel-news__pagination-next {
  background-image: url("../img/next.svg");
  margin-left: 12px;
}
@media screen and (max-width: 1260px) {
  .carousel-news {
    margin: 0 -15px;
  }
}
.carousel-news__col {
  padding: 0 20px;
}
@media screen and (max-width: 991px) {
  .carousel-news__col {
    padding: 0 15px;
  }
}

.article-item {
  padding: 20px;
  background: rgba(34, 34, 34, 0.5);
  border-radius: 32px;
  backdrop-filter: blur(8px);
  border: 1px solid #302F2F;
}
@media screen and (max-width: 991px) {
  .article-item {
    padding: 16px;
  }
}
.article-item__cover {
  height: 151px;
  border-radius: 12px 12px 12px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.article-item__category {
  display: flex;
}
.article-item__category p {
  color: #222222;
  padding: 8px 16px;
  border-radius: 40px;
  transform: translateY(-50%);
  background: #ffffff;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width: 991px) {
  .article-item__category p {
    font-size: 12px;
  }
}
.article-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 4px;
}
@media screen and (max-width: 991px) {
  .article-item__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
}
.article-item__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .article-item__description {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}

.blog-categories-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .blog-categories-section {
    margin-bottom: 40px;
  }
}

.blog-categories__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 34px;
}
@media screen and (max-width: 991px) {
  .blog-categories__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 16px;
  }
}
.blog-categories__categories-list {
  margin-bottom: 25px;
}
@media screen and (max-width: 991px) {
  .blog-categories__categories-list {
    overflow-x: auto;
    margin-bottom: 40px;
  }
}
.blog-categories__categories-list ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.blog-categories__categories-list ul li {
  margin-right: 25px;
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .blog-categories__categories-list ul li {
    white-space: nowrap;
  }
}
.blog-categories__categories-list ul li:last-child {
  margin-right: 0;
}
.blog-categories__categories-list ul li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
}
.blog-categories__categories-list ul li a:hover {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}
.blog-categories__categories-list ul li a:hover:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  position: absolute;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.blog-categories__categories-list ul li.active a {
  position: relative;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.blog-categories__categories-list ul li.active a:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  position: absolute;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.blog-categories__news-list {
  display: grid;
  column-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 991px) {
  .blog-categories__news-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog-categories__news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-categories__news-list .article-item {
  height: 100%;
}
.blog-categories__news-item {
  margin-bottom: 34px;
}
.blog-categories__news-item.empty {
  grid-column: 1/-1;
}
.blog-categories__pagination {
  margin-top: 4px;
}

.pagination-block {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .pagination-block {
    justify-content: flex-start;
  }
}
.pagination-block__list {
  display: flex;
  align-items: center;
}
.pagination-block__item {
  height: 32px;
  width: 34px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-block__item a img {
  display: block;
}
.pagination-block__item.active {
  border: 1px solid #fff;
}

.avatar-contacts-animation {
  width: 880px;
  height: 1155px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transform: translate(-20%, -15%);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.avatar-contacts-animation dotlottie-player {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 991px) {
  .avatar-contacts-animation {
    width: 460px;
    height: 640px;
    right: -220px;
    transform: none;
  }
}

.page-template-blog .caption-block-section .container, .page-template-blog .about-who-section .container, .page-template-blog .rates-page .container, .page-template-about .caption-block-section .container, .page-template-about .about-who-section .container, .page-template-about .rates-page .container, .page-template-contact .caption-block-section .container, .page-template-contact .about-who-section .container, .page-template-contact .rates-page .container, .page-template-rates .caption-block-section .container, .page-template-rates .about-who-section .container, .page-template-rates .rates-page .container {
  position: relative;
}
.page-template-blog .caption-block-section .container:before, .page-template-blog .about-who-section .container:before, .page-template-blog .rates-page .container:before, .page-template-about .caption-block-section .container:before, .page-template-about .about-who-section .container:before, .page-template-about .rates-page .container:before, .page-template-contact .caption-block-section .container:before, .page-template-contact .about-who-section .container:before, .page-template-contact .rates-page .container:before, .page-template-rates .caption-block-section .container:before, .page-template-rates .about-who-section .container:before, .page-template-rates .rates-page .container:before {
  content: "";
  width: 880px;
  height: 1155px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transform: translateX(8%);
  background-image: url("../img/human-1.svg");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .page-template-blog .caption-block-section .container:before, .page-template-blog .about-who-section .container:before, .page-template-blog .rates-page .container:before, .page-template-about .caption-block-section .container:before, .page-template-about .about-who-section .container:before, .page-template-about .rates-page .container:before, .page-template-contact .caption-block-section .container:before, .page-template-contact .about-who-section .container:before, .page-template-contact .rates-page .container:before, .page-template-rates .caption-block-section .container:before, .page-template-rates .about-who-section .container:before, .page-template-rates .rates-page .container:before {
    transform: translateX(48%);
    background-position: top right;
  }
}

.post-single-section {
  padding: 40px 0;
}
@media screen and (max-width: 991px) {
  .post-single-section {
    padding: 32px 0 40px;
  }
}

.post-single__left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .post-single__left .post-single-prev {
    display: none;
  }
}
.post-single__center {
  padding: 0 10px;
}
@media screen and (max-width: 991px) {
  .post-single__center {
    order: -1;
  }
}
.post-single__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .post-single__right {
    display: none;
  }
}

.mobile-footer-navigation {
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 991px) {
  .mobile-footer-navigation {
    display: flex;
  }
}
.mobile-footer-navigation .button {
  font-size: 16px;
  padding: 9px;
  width: 100%;
  line-height: 140%;
  font-weight: 700;
}
.mobile-footer-navigation > * {
  margin: 0 8px;
  flex: 1 1;
}
.mobile-footer-navigation > *:first-child {
  margin-left: 0;
}
.mobile-footer-navigation > *:last-child {
  margin-right: 0;
}

.post-single-header {
  position: relative;
  margin-bottom: 24px;
}
.post-single-header img {
  display: block;
  border-radius: 24px;
  width: 100%;
}
.post-single-header:after {
  content: "";
  height: 280px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, #222222 82.81%);
  position: absolute;
}
@media screen and (max-width: 991px) {
  .post-single-header:after {
    content: none;
  }
}

#copy-url {
  cursor: pointer;
}

.post-single-content-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 900px 1fr;
  margin-top: -80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .post-single-content-box {
    grid-template-columns: 1fr 700px 1fr;
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .post-single-content-box {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
}

.post-share-widget-box {
  flex-grow: 1;
}
@media screen and (max-width: 991px) {
  .post-share-widget-box {
    padding-top: 32px;
  }
}

.post-share-widget {
  position: sticky;
  top: 10px;
  padding-bottom: 24px;
}
.post-share-widget__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .post-share-widget__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.post-share-widget__list li {
  margin-bottom: 24px;
  display: flex;
}
.post-share-widget__list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .post-share-widget__list li {
    margin: 0;
  }
}
.post-share-widget__list li a {
  border-radius: 5px;
  overflow: hidden;
}
.post-share-widget__list li a img {
  display: block;
}

.post-single-content > *:first-child {
  margin-top: 0;
}
.post-single-content > *:last-child {
  margin-bottom: 0;
}
.post-single-content h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #ffffff;
  margin: 24px 0;
}
@media screen and (max-width: 991px) {
  .post-single-content h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #ffffff;
    margin: 8px 0;
  }
}
.post-single-content h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin: 24px 0;
}
@media screen and (max-width: 991px) {
  .post-single-content h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
.post-single-content h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
  margin: 24px 0;
}
@media screen and (max-width: 991px) {
  .post-single-content h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
.post-single-content > p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  margin: 24px 0;
}
@media screen and (max-width: 991px) {
  .post-single-content > p {
    font-size: 16px;
    line-height: 150%;
  }
}
.post-single-content > p > img {
  display: block;
  margin: 60px 0;
  border-radius: 24px;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .post-single-content > p > img {
    margin: 32px 0;
  }
}
.post-single-content blockquote {
  margin: 60px 0;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #4F4F4F;
  background: rgb(34, 34, 34);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 991px) {
  .post-single-content blockquote {
    margin: 32px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    padding: 16px;
  }
}
.post-single-content blockquote:before {
  content: "";
  z-index: -1;
  width: 140px;
  height: 111px;
  background-size: contain;
  position: absolute;
  background-image: url("../img/quotes.png");
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-58%, -73%);
}
.post-single-content ul {
  margin: 24px 0;
}
.post-single-content ul li {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 12px;
}
@media screen and (max-width: 991px) {
  .post-single-content ul li {
    font-size: 18px;
    line-height: 150%;
  }
}
.post-single-content ul li:before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
}
.post-single-content ul li:last-child {
  margin-bottom: 0;
}
.post-single-content ol {
  margin: 24px 0;
  list-style-type: decimal;
  padding-left: 20px;
}
.post-single-content ol li {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 12px;
}
@media screen and (max-width: 991px) {
  .post-single-content ol li {
    font-size: 18px;
    line-height: 150%;
  }
}
.post-single-content ol li:last-child {
  margin-bottom: 0;
}
.post-single-content > img {
  display: block;
  margin: 60px 0;
  border-radius: 24px;
  object-fit: cover;
}

.post-author {
  display: flex;
  margin: 24px 0 60px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .post-author {
    margin: 20px 0 40px;
  }
}
.post-author figure {
  margin-right: 12px;
}
.post-author figure img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.post-author p b {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .post-author p b {
    font-size: 18px;
    line-height: 150%;
  }
}
.post-author p span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .post-author p span {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}

.about-who-section {
  margin-bottom: 82px;
  padding-top: 60px;
}
@media screen and (max-width: 991px) {
  .about-who-section {
    padding-top: 36px;
    margin-bottom: 40px;
  }
}

.about-method-section {
  margin-bottom: 82px;
}
@media screen and (max-width: 991px) {
  .about-method-section {
    margin-bottom: 40px;
  }
}

.large-card__inner {
  background: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  border-radius: 32px;
  display: grid;
  column-gap: 24px;
  grid-template-columns: 1fr 1fr;
  padding: 24px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .large-card__inner {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}
.large-card__inner > *:last-child {
  margin-bottom: 0;
}
.large-card__cover img {
  display: block;
  object-fit: cover;
  border-radius: 12px;
}
@media screen and (max-width: 991px) {
  .large-card__cover img {
    width: 100%;
  }
}
.large-card__content {
  padding: 24px;
}
@media screen and (max-width: 991px) {
  .large-card__content {
    padding: 24px 0 0;
  }
}
.invert .large-card__content {
  order: -1;
}
@media screen and (max-width: 991px) {
  .invert .large-card__content {
    order: 0;
  }
}
.large-card__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .large-card__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
.large-card__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .large-card__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.large-card__action {
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .large-card__action {
    margin-top: 24px;
  }
  .large-card__action .button {
    font-size: 18px;
    line-height: 18px;
    padding: 18px;
    width: 100%;
  }
}

.about-choose-section {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .about-choose-section {
    margin-bottom: 40px;
  }
}

.about-choose-head {
  margin-bottom: 40px;
}

.about-choose-features__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 991px) {
  .about-choose-features__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .about-choose-features__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-choose-features__item .feature-card, .about-choose-features__item .feature-card__inner {
  height: 100%;
}

.feature-card__inner {
  padding: 32px;
  background: #302F2F;
  border-radius: 32px;
  border: 1px solid #4F4F4F;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .feature-card__inner {
    padding: 32px 10px 32px 32px;
    flex-direction: row;
  }
}
.feature-card__cover {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .feature-card__cover {
    flex: 0 0 60px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}
.feature-card__cover img {
  display: block;
  border-radius: 50%;
}
.feature-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 4px;
}
.feature-card__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}

.about-help-bottom-section {
  margin-bottom: 82px;
}
@media screen and (max-width: 991px) {
  .about-help-bottom-section {
    margin-bottom: 40px;
  }
}

.contacts-block-section {
  padding-top: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .contacts-block-section {
    padding-top: 36px;
  }
}

.contact-form-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .contact-form-section {
    margin-bottom: 40px;
  }
}

.contacts-form-block {
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .contacts-form-block {
    max-width: 100%;
  }
}

.default-form.flex {
  display: flex;
}
.default-form__inner {
  background: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 24px;
}
@media screen and (max-width: 991px) {
  .default-form__inner {
    padding: 16px;
  }
}

.form-item {
  margin-bottom: 24px;
  position: relative;
}
.form-item input, .form-item textarea, .form-item select {
  padding: 15px 24px;
  background: #302F2F;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  width: 100%;
  max-width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.form-item input:-webkit-autofill, .form-item input:-webkit-autofill:focus, .form-item textarea:-webkit-autofill, .form-item textarea:-webkit-autofill:focus, .form-item select:-webkit-autofill, .form-item select:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.form-item textarea {
  resize: vertical;
}
.form-item select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../img/arrow-selector.svg");
  background-size: 12px 8px;
  background-repeat: no-repeat;
  background-position: center right 30px;
}
.form-item .reset-input {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons8-close.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  top: 20px;
  right: 25px;
  cursor: pointer;
}

.form-submit {
  margin-top: 40px;
}

.main-page-container {
  display: grid;
  grid-template-areas: "mainCaption avatar" "mainForm avatar" "mainForm avatar" "mainFormTip avatar" "avatarResponse avatarResponse";
  grid-template-columns: 436px 1fr;
}
@media screen and (max-width: 991px) {
  .main-page-container {
    grid-template-areas: "avatar" "mainFormTip" "mainCaption" "avatarResponse" "mainForm";
    grid-template-columns: 1fr;
  }
}

.main-page-caption {
  grid-area: mainCaption;
  margin-right: -25px;
}
@media screen and (max-width: 991px) {
  .main-page-caption {
    position: relative;
    z-index: 1;
  }
}

.avatar-date-calculator {
  grid-area: mainForm;
}

.avatar-container {
  grid-area: avatar;
  padding-left: 60px;
}
@media screen and (max-width: 991px) {
  .avatar-container {
    padding-left: 0;
    margin: 0 -60px -180px;
    position: relative;
  }
  .avatar-container:after {
    content: "";
    height: 270px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.93) 41.67%);
    position: absolute;
  }
}

.main-page-avatar-response-section {
  grid-area: avatarResponse;
  padding-top: 70px;
}
@media screen and (max-width: 991px) {
  .main-page-avatar-response-section {
    padding-top: 16px;
  }
}

@media screen and (max-width: 991px) {
  .avatar-date-calculator {
    margin-bottom: 40px;
  }
}
.avatar-date-calculator__tip {
  margin-top: 86px;
  margin-bottom: 122px;
}
@media screen and (max-width: 991px) {
  .avatar-date-calculator__tip {
    margin: 0 0 40px;
  }
}

.main-page-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #ffffff;
  margin-bottom: 24px;
  margin-top: 60px;
}
@media screen and (max-width: 991px) {
  .main-page-title {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #ffffff;
  }
}

.main-page-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}
@media screen and (max-width: 991px) {
  .main-page-subtitle {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
  }
}

.small-tip-block {
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .small-tip-block {
    padding: 16px;
    border-radius: 24px;
  }
}
.small-tip-block__icon {
  flex: 0 0 83px;
}
@media screen and (max-width: 991px) {
  .small-tip-block__icon {
    flex: 0 0 60px;
  }
}
.small-tip-block__icon img {
  display: block;
}
.small-tip-block__text {
  flex-grow: 1;
  padding-left: 24px;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.small-tip-block__text p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .small-tip-block__text p {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
  }
}

.avatar-box {
  margin: -175px -80px 0 -25px;
  display: none;
  height: 0;
}
@media screen and (max-width: 991px) {
  .avatar-box {
    height: auto;
    margin: -150px -25px 0;
  }
}

.avatar-animation-box {
  margin: -220px -80px 0 -25px;
  position: relative;
  height: 0;
}
@media screen and (max-width: 991px) {
  .avatar-animation-box {
    height: auto;
    margin: 0 -25px;
  }
}
@media screen and (max-width: 767px) {
  .avatar-animation-box {
    margin: -150px -25px 0;
  }
}
.avatar-animation-box dotlottie-player {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 991px) {
  .avatar-animation-box dotlottie-player {
    position: relative;
  }
}

#points-lazy {
  opacity: 0;
  transition: 0.25s opacity linear;
}
#points-lazy.show {
  opacity: 1;
}

.avatar-point-list {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.avatar-point-list li {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 1px 1px 3px #000000, 1px 1px 4px #000000;
}

.avatar {
  position: relative;
}
.avatar img {
  width: 100%;
}

.link-lg {
  font-size: 170%;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .link-lg {
    font-size: 120%;
  }
}

.link-md {
  font-size: 112%;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .link-md {
    font-size: 60%;
  }
}

[data-link] {
  cursor: not-allowed;
}

.main-page-avatar-response-section {
  padding-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .main-page-avatar-response-section {
    padding-bottom: 40px;
  }
}

.main-page-avatar-response-container {
  display: grid;
  grid-template-areas: "about about about" "positive negative income";
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 991px) {
  .main-page-avatar-response-container {
    display: flex;
    flex-wrap: wrap;
  }
  .main-page-avatar-response-container > * {
    margin-bottom: 32px;
  }
  .main-page-avatar-response-container > *:last-child {
    margin-bottom: 0;
  }
}

.response-large {
  padding: 32px;
  border-radius: 32px;
  backdrop-filter: blur(8px);
  position: relative;
  background: rgba(34, 34, 34, 0.5);
}
@media screen and (max-width: 991px) {
  .response-large {
    margin-bottom: 0;
    padding: 16px;
    border-radius: 24px;
  }
}
.response-large:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 32px;
  border: 1px solid transparent;
  background: linear-gradient(95.55deg, #4C82F4 24.4%, #E6C6FC 74.42%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.response-large.grid-about {
  grid-area: about;
}
.response-large__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .response-large__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 16px;
  }
}
.response-large__text {
  padding: 32px;
  border-radius: 24px;
  margin-bottom: 32px;
  background: rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 991px) {
  .response-large__text {
    padding: 16px;
    margin-bottom: 16px;
  }
}
.response-large__text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .response-large__text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.response-large__action {
  text-align: right;
}
@media screen and (max-width: 991px) {
  .response-large__action .button {
    width: 100%;
  }
}

.response-medium {
  padding: 32px 24px;
  border-radius: 32px;
  backdrop-filter: blur(8px);
  position: relative;
  background: rgba(34, 34, 34, 0.5);
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .response-medium {
    margin-bottom: 0;
    padding: 16px;
    border-radius: 24px;
  }
}
.response-medium:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 32px;
  border: 1px solid transparent;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.response-medium.positive:before {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
}
.response-medium.negative:before {
  background: linear-gradient(154.11deg, #972F99 -5.65%, #ECB956 94.85%) border-box;
}
.response-medium.income:before {
  background: linear-gradient(180deg, #1EF01A 0%, #25700B 100%) border-box;
}
.response-medium.grid-positive {
  grid-area: positive;
}
.response-medium.grid-negative {
  grid-area: negative;
}
.response-medium.grid-income {
  grid-area: income;
}
.response-medium__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 41px;
}
@media screen and (max-width: 991px) {
  .response-medium__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 24px;
  }
}
.response-medium__list {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
}
.response-medium__list li:not(.read-more-item) {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 32px;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  padding: 12px;
  display: flex;
  align-items: center;
}
.response-medium__list li {
  flex: 0 0 100%;
}
@media screen and (max-width: 991px) {
  .response-medium__list li {
    padding: 8px;
    margin-bottom: 8px;
  }
}
.response-medium__list li:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../img/plus.svg");
}
.positive .response-medium__list li:before {
  background-image: url("../img/plus.svg");
}
.negative .response-medium__list li:before {
  background-image: url("../img/minus.svg");
}
.income .response-medium__list li:before {
  background-image: url("../img/dollar-sign.svg");
}
.response-medium__list li:last-child {
  margin-bottom: 0;
}

.main-page-avatar-response-action {
  margin: 8px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .main-page-avatar-response-action {
    margin: 32px 0 0;
  }
}

#main-page-calculator-response-info {
  display: none;
}

.terms-section {
  padding: 84px 0 76px;
}
@media screen and (max-width: 991px) {
  .terms-section {
    background-image: url("../img/human-1.svg");
    background-size: 880px 1100px;
    background-repeat: no-repeat;
    background-position: top 85px right -420px;
    padding: 36px 0;
  }
}
.terms-section .container *:last-child {
  margin-bottom: 0;
}
.terms-section h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #ffffff;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .terms-section h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
.terms-section h2, .terms-section h3, .terms-section h4 {
  margin-top: 60px;
  margin-bottom: 24px;
  max-width: 700px;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .terms-section h2, .terms-section h3, .terms-section h4 {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
.terms-section p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .terms-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.terms-section ul {
  margin-bottom: 24px;
}
.terms-section ul:first-child {
  margin-top: 0;
}
.terms-section ul:last-child {
  margin-bottom: 0;
}
.terms-section ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .terms-section ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.terms-section ul li:last-child {
  margin-bottom: 0;
}
.terms-section ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
}
.terms-section b, .terms-section strong {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .terms-section b, .terms-section strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
}

.mobile-header-container {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
@media screen and (max-width: 991px) {
  .mobile-header-container {
    position: fixed;
    top: 78px;
    padding: 0;
    background: #222;
    width: 100%;
    left: 0;
    display: flex;
    height: 0;
    flex-direction: column;
    transition: 0.5s all linear;
    overflow: auto;
    opacity: 0;
    justify-content: flex-start;
  }
  .mobile-menu-opened .mobile-header-container {
    padding: 60px 16px;
    opacity: 1;
    height: calc(100vh - 78px);
  }
}

.mobile-menu-button {
  display: none;
}
@media screen and (max-width: 991px) {
  .mobile-menu-button {
    display: flex;
    justify-content: flex-end;
  }
}

.mobile-menu-trigger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  margin-left: 16px;
}
.mobile-menu-trigger img {
  display: block;
}

.password-wrap {
  position: relative;
}

.show-password {
  background-image: url("../img/eye-off.svg");
  border: none;
  background-color: transparent;
  position: absolute;
  width: 24px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  right: 24px;
  top: 0;
  cursor: pointer;
}

.modal-title {
  display: flex;
  margin-bottom: 20px;
}
.modal-title h6 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .modal-title h6 {
    font-size: 24px;
  }
}
.modal-title p {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  margin-right: 20px;
  padding-bottom: 12px;
  color: #828282;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .modal-title p {
    font-size: 24px;
  }
}
.modal-title p:last-child {
  margin-right: 0;
}
.modal-title p.active {
  border-bottom: 1px solid #fff;
  color: #fff;
}

.modal-subtitle {
  margin-bottom: 40px;
}
.modal-subtitle p {
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 991px) {
  .modal-subtitle p {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .modal-subtitle {
    margin-bottom: 20px;
  }
}

.forgot-password {
  margin-top: 8px;
  cursor: pointer;
}
.forgot-password p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #828282;
}

.form-terms {
  margin: 40px 0;
}
@media screen and (max-width: 991px) {
  .form-terms {
    margin: 20px 0;
  }
}

.checkbox-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
}
.checkbox-item__input {
  display: flex;
}
.checkbox-item__input i {
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url("../img/checbox.svg");
  position: relative;
}
.checkbox-item__input input {
  display: none;
}
.checkbox-item__input input:checked + i:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../img/x.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  opacity: 0.8;
}
.checkbox-item__label {
  padding-left: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 991px) {
  .checkbox-item__label {
    font-size: 14px;
    padding-left: 6px;
  }
}
.checkbox-item__label a {
  text-decoration: underline;
}

.modal-content {
  padding-left: 40px;
  padding-right: 24px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.modal-content.includes-slider {
  padding: 0 96px;
}
.modal-content::-webkit-scrollbar {
  width: 2px;
}
.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal-content::-webkit-scrollbar-thumb {
  background: #888;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.modal-button-group > * {
  margin-bottom: 24px;
}
.modal-button-group > *:last-child {
  margin-bottom: 0;
}

.modal-numbered-list ol {
  list-style-type: decimal;
  padding-left: 22px;
}
@media screen and (max-width: 991px) {
  .modal-numbered-list ol {
    padding-left: 16px;
  }
}
.modal-numbered-list ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .modal-numbered-list ol li {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
.modal-numbered-list ol li:last-child {
  margin-bottom: 0;
}

.modal-actions {
  margin-top: 40px;
}
.modal-actions.flex-button-group, .modal-actions.flex-button-group-end {
  display: flex;
}
.modal-actions.flex-button-group-end {
  justify-content: flex-end;
}
.modal-actions.flex-button-group .button {
  flex-grow: 1;
  margin-right: 10px;
}
.modal-actions.flex-button-group .button:last-child {
  margin-right: 0;
}
.modal-actions.flex-button-group-end .button {
  margin-right: 10px;
}
.modal-actions.flex-button-group-end .button:last-child {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .modal-actions {
    margin-top: 20px;
  }
}

.modal-content.no-bottom-padding {
  padding-bottom: 2px;
}
@media screen and (max-width: 991px) {
  .modal-content {
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .modal-content {
    padding: 10px !important;
  }
}
.modal-content .form-submit {
  margin-bottom: 0;
  padding-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .modal-content .form-submit {
    margin-top: 20px;
  }
}

.modal-body {
  padding: 40px 0;
}
.modal-body.medium {
  max-width: 980px;
}
.modal-body.large {
  max-width: 1300px;
}
.modal-body.no-bottom-padding {
  padding-bottom: 0 !important;
}
.submitted-modal .modal-body {
  padding: 40px 15px 16px 0;
}
@media screen and (max-width: 991px) {
  .modal-body {
    padding: 20px 0px;
  }
}

.profile-menu {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .profile-menu {
    margin-bottom: 15px;
  }
}
.profile-menu__list {
  display: flex;
}
@media screen and (max-width: 991px) {
  .profile-menu__list {
    flex-wrap: wrap;
    padding-bottom: 15px;
  }
}
.profile-menu__list li {
  margin-right: 24px;
}
@media screen and (max-width: 991px) {
  .profile-menu__list li {
    margin-bottom: 12px;
  }
}
.profile-menu__list li:last-child {
  margin-right: 0;
}
.profile-menu__list li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
}
.profile-menu__list li a[aria-disabled=true], .profile-menu__list li a.aria-disabled-true {
  color: rgb(255, 255, 255);
  pointer-events: none;
  cursor: not-allowed;
  display: block;
  padding-right: 23px;
  background-image: url("../img/lock.svg");
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.3;
}
@media screen and (max-width: 991px) {
  .profile-menu__list li a {
    white-space: nowrap;
  }
}
.profile-menu__list li.active a:not([aria-disabled=true]), .profile-menu__list li:hover a:not([aria-disabled=true]) {
  position: relative;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.profile-menu__list li.active a:not([aria-disabled=true]):after, .profile-menu__list li:hover a:not([aria-disabled=true]):after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  position: absolute;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}

.profile {
  padding: 40px 0 80px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .profile {
    padding-top: 20px;
  }
}
.profile > .container {
  position: relative;
}
.profile > .container:before {
  content: "";
  position: absolute;
  width: 844px;
  height: 1160px;
  right: -130px;
  top: 0;
  z-index: -1;
  background-image: url("../img/avatar2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  .profile > .container:before {
    width: 790px;
    height: 1100px;
    right: -419px;
    z-index: -1;
    transform: none;
    background-position: top right;
  }
}
.profile__personal {
  margin-bottom: 80px;
  max-width: 864px;
}
@media screen and (max-width: 991px) {
  .profile__personal {
    margin-bottom: 48px;
  }
}
.profile__personal-head {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .profile__personal-head {
    flex-direction: column;
  }
}
.profile__upload-file {
  flex: 0 0 130px;
}
@media screen and (max-width: 767px) {
  .profile__upload-file {
    flex: 0 0 100px;
  }
}
.profile__personal-photo {
  position: relative;
}
.profile__personal-photo img {
  width: 130px;
  height: 130px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .profile__personal-photo img {
    width: 100px;
    height: 100px;
  }
}
.profile__personal-upload-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 0;
  right: 0;
  background-image: url("../img/upload-photo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.profile__personal-info {
  padding-left: 24px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .profile__personal-info {
    margin-top: 24px;
    text-align: center;
    padding-left: 0;
  }
}
.profile__personal-info h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .profile__personal-info h4 {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .profile__personal-info h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.profile__personal-info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .profile__personal-info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.profile__current {
  margin-bottom: 80px;
  max-width: 864px;
}
@media screen and (max-width: 991px) {
  .profile__current {
    margin-bottom: 48px;
  }
}
.profile__current-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .profile__current-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
.profile__current-empty {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  margin: 12px 0;
}
@media screen and (max-width: 991px) {
  .profile__current-empty {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.profile__current-rate {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  margin: 20px 0;
}
.profile__current-rate del {
  position: relative;
}
.profile__current-rate del span {
  margin: 0 !important;
}
.profile__current-rate del:before {
  content: '';
  width: 100%;
  height: 2px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  position: absolute;
  top: 48%;
}
.modal .profile__current-rate {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .profile__current-rate {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
.profile__current-rate ul li {
  margin-bottom: 12px;
}
.profile__current-rate ul li span:first-child {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.profile__current-rate ul li span:last-child {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-left: 12px;
}
.profile__current-valid {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  position: absolute;
  right: 24px;
  top: 24px;
}
@media screen and (max-width: 767px) {
  .profile__current-choose .button {
    width: 100%;
  }
}
.profile__current-includes ul li {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 18px;
  padding-left: 28px;
  background-image: url("../img/check.svg");
  background-size: 20px;
  background-position: left center;
  background-repeat: no-repeat;
}
.profile__current-includes ul li:last-child {
  margin-bottom: 0;
}
.profile__current-includes-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 12px;
}

.button-subscription-toggle {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  border-radius: 32px;
  background: #302F2F;
  color: #fff;
}

.profile-grid {
  display: flex;
}
@media screen and (max-width: 991px) {
  .profile-grid {
    flex-direction: column;
  }
}
.profile-grid__sidebar {
  flex: 0 0 208px;
  min-height: 630px;
}
@media screen and (max-width: 991px) {
  .profile-grid__sidebar {
    min-height: auto;
    margin-bottom: 32px;
  }
}
.profile-grid__content {
  flex: 1 0;
  padding-left: 40px;
}
@media screen and (max-width: 991px) {
  .profile-grid__content {
    padding-left: 0;
  }
}

.profile-sidebar-menu {
  padding: 12px 24px;
  background-color: #302F2F;
  border-radius: 20px;
  height: 100%;
}
.profile-sidebar-menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid #4F4F4F;
}
.profile-sidebar-menu ul li:last-child {
  border-bottom: none;
}
.profile-sidebar-menu ul li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  opacity: 0.5;
}
.profile-sidebar-menu ul li.active a {
  color: #fff;
  opacity: 1;
}

.all-rates {
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .all-rates {
    margin-bottom: 48px;
  }
}

.rates-list {
  display: flex;
  margin: 0 -16px;
}
@media screen and (max-width: 991px) {
  .rates-list {
    flex-wrap: wrap;
  }
}
.rates-list .slick-track {
  display: flex !important;
}
.rates-list .slick-slide {
  height: inherit !important;
}
.rates-list .slick-arrow {
  position: absolute;
  background-color: transparent;
  border: none;
  font-size: 0;
  width: 40px;
  height: 40px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.rates-list .slick-prev {
  background-image: url("../img/left.svg");
  left: -40px;
}
@media screen and (max-width: 991px) {
  .rates-list .slick-prev {
    left: 0;
  }
}
.rates-list .slick-list {
  width: 100%;
}
.rates-list .slick-next {
  background-image: url("../img/right.svg");
  right: -40px;
}
@media screen and (max-width: 991px) {
  .rates-list .slick-next {
    right: 0;
  }
}

.modal-cancellation .rates-list .slick-arrow {
  background-size: 10px;
}

.rates-single {
  padding: 0 16px;
}
@media screen and (max-width: 991px) {
  .rates-single {
    margin-bottom: 30px;
  }
}

.all-rates__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .all-rates__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}

.profile-form {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
}
.modal .profile-form {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .profile-form {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
@media screen and (max-width: 767px) {
  .profile-form {
    padding: 16px;
  }
}
.profile-form__body {
  display: grid;
  column-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 991px) {
  .profile-form__body {
    grid-template-columns: 1fr;
  }
}
.profile-form__footer {
  display: grid;
  column-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .profile-form__footer {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.profile-form__footer > .form-item {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .profile-form__footer > .form-item {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
  .profile-form__footer > .form-item:last-child {
    margin-bottom: 0;
  }
}

.rate-package {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.modal .rate-package {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .rate-package {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
.rate-package__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 28px;
}
.rate-package__includes-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 12px;
}
.rate-package__includes {
  margin-bottom: 28px;
  flex-grow: 1;
}
.rate-package__includes li {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color:rgba(255, 255, 255, 0.9);
  color: #ffffff;
  margin-bottom: 18px;
  background-image: url("../img/check.svg");
  background-size: 18px;
  background-position: left top 5px;
  padding-left: 28px;
  background-repeat: no-repeat;
}
.rate-package__includes li:last-child {
  margin-bottom: 0;
}
.rate-package__includes-additional {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 28px;
}
.rate-package__gift {
  padding: 12px;
  background: linear-gradient(#222, #222) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 16px;
  margin-bottom: 28px;
}
.rate-package__gift p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-left: 32px;
  background-image: url("../img/gift.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px;
}
.rate-package__price {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 28px;
}
.rate-package__price :not(del) .woocommerce-Price-amount, .rate-package__price > .woocommerce-Price-amount {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.rate-package__price del .woocommerce-Price-amount {
  font-weight: 300;
  font-size: 20px;
}
.rate-package__price del .woocommerce-Price-amount bdi {
  text-decoration: line-through;
}
.rate-package__price :not(del) .woocommerce-Price-amount, .rate-package__price > .woocommerce-Price-amount {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.rate-package__price del .woocommerce-Price-amount {
  font-weight: 300;
  font-size: 20px;
}
.rate-package__price del .woocommerce-Price-amount bdi {
  text-decoration: line-through;
}
.rate-package__price:last-child {
  margin-bottom: 0;
}
.rate-package__footer {
  display: flex;
  flex-direction: column;
}
.rate-package__footer > * {
  margin-bottom: 24px;
}
.rate-package__footer > *:last-child {
  margin-bottom: 0;
}

del, ins {
  text-decoration: none;
}

.diary {
  padding: 40px 0;
  min-height: 100vh;
}
.diary > .container {
  position: relative;
}
.diary > .container:before {
  content: "";
  width: 880px;
  height: 1155px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transform: translateX(8%);
  background-image: url("../img/avatar2.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .diary > .container:before {
    width: 790px;
    height: 1100px;
    right: -419px;
    z-index: -1;
    transform: none;
    background-position: top right;
  }
}

.entry-list__inner.md {
  max-width: 1080px;
}
.entry-list__inner .list-pad {
  backdrop-filter: none;
}

.entry {
  overflow: hidden;
  margin: 24px 0;
  padding: 24px;
  border-radius: 24px;
  background-color: rgba(79, 79, 79, 0.2);
  backdrop-filter: blur(8px);
}
@media screen and (max-width: 991px) {
  .entry {
    backdrop-filter: none;
    background-color: rgba(40, 40, 40, 0.85);
  }
}
@media screen and (max-width: 767px) {
  .entry {
    padding: 12px;
  }
}
.no-blur .entry {
  backdrop-filter: none;
  background: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 767px) {
  .energy-modal-grid .entry {
    background: transparent;
  }
}
.no-bg .entry {
  background-color: transparent;
}
.entry:first-child {
  margin-top: 0;
}
.entry:last-child {
  margin-bottom: 0;
}
.entry__head {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
  background-image: url("../img/arrow-dowm.svg");
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: right center;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .entry__head {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .entry__head {
    font-size: 20px;
  }
}
.entry__head[aria-expanded=true] {
  background-image: url("../img/arrow-up.svg");
}
.entry__panel {
  overflow: hidden;
}
.entry__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin: 0 0 24px;
  padding-top: 15px;
  opacity: 0;
  transition: 0.6s all linear;
}
.entry.is-active .entry__description {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .entry__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.entry__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin: 0 0 24px;
  padding-top: 40px;
  opacity: 0;
  transition: 0.6s all linear;
}
.entry.is-active .entry__subtitle {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .entry__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.entry__subtitle h6 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 16px;
}

.signification {
  overflow: hidden;
}
.signification.item_lock .signification__head p:after {
  background-image: url(../img/lock.svg);
  background-repeat: no-repeat;
  width: 20px;
  background-size: 19px;
  opacity: 0.3;
}
.signification.item_lock h5 p {
  background: linear-gradient(157.34deg, #5e5e5e 0.72%, #3f3f3f 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.signification.item_lock h5 figure {
  background: linear-gradient(#2b2b2b, #2b2b2b) padding-box, linear-gradient(157.34deg, #5e5e5e 0.72%, #3f3f3f 99.19%) border-box;
}
.signification.item_lock h5 figure i {
  background: linear-gradient(157.34deg, #5e5e5e 0.72%, #3f3f3f 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.signification__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 40px;
  padding-top: 16px;
}
@media screen and (max-width: 991px) {
  .signification__description {
    margin-bottom: 32px;
  }
}
.signification__head {
  display: flex;
  align-items: center;
  cursor: pointer;
  min-height: 57px;
}
@media screen and (max-width: 767px) {
  .signification__head {
    min-height: 40px;
  }
}
.signification__head figure {
  width: 57px;
  height: 57px;
  flex: 0 0 57px;
  border-radius: 50%;
  background: linear-gradient(#2b2b2b, #2b2b2b) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  color: #fff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .signification__head figure {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
  }
}
.signification__head figure i {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .signification__head figure i {
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .signification__head figure i {
    font-size: 18px;
  }
}
.signification__head p {
  padding: 0 48px 0 24px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
  position: relative;
}
.signification__head p:first-child {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .signification__head p {
    padding: 0 20px 0 10px;
    font-size: 13px;
  }
}
.signification__head p:after {
  content: "";
  width: 13px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../img/arrow-dowm.svg");
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: center;
}
.signification__head[aria-expanded=true] p:after {
  background-image: url("../img/arrow-up.svg");
}
.signification__box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  column-gap: 32px;
  padding-top: 24px;
}
@media screen and (max-width: 991px) {
  .signification__box {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.signification-list .signification {
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .signification-list .signification {
    margin-bottom: 12px;
  }
}
.signification-list .signification:last-child {
  margin-bottom: 0;
}

.signification-edit-button {
  padding: 16px 0 8px;
  display: flex;
  justify-content: flex-end;
}

.list-pad {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  background: rgba(48, 47, 47, 0.2);
  position: relative;
}
.modal .list-pad {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .list-pad {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
@media screen and (max-width: 767px) {
  .list-pad {
    padding: 16px;
    border-radius: 16px;
  }
}
.list-pad:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 32px;
  border: 1px solid transparent;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.list-pad.no:before {
  background: linear-gradient(180deg, #1EF01A 0%, #25700B 100%) border-box;
}
.list-pad.yes:before {
  background: linear-gradient(154.11deg, #972F99 -5.65%, #ECB956 94.85%) border-box;
}
.list-pad__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
  padding-left: 41px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .list-pad__title {
    margin-bottom: 15px;
    font-size: 20px;
    padding-left: 30px;
  }
}
.yes .list-pad__title {
  color: #1DC71A;
  background-image: url("../img/success.svg");
}
.invert .yes .list-pad__title {
  color: #C71F5B;
  background-image: url("../img/success-red.svg");
}
.no .list-pad__title {
  color: #C71F5B;
  background-image: url("../img/error.svg");
}
.invert .no .list-pad__title {
  color: #1DC71A;
  background-image: url("../img/error-green.svg");
}
.list-pad__list li {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  padding-right: 27px;
}
.list-pad__list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.list-pad__list li span {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 0;
  right: 0;
  background-image: url("../img/538.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .list-pad__list li span {
    height: 25px;
    width: 25px;
    background-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  .list-pad__list li {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    line-height: 26px;
  }
}

.clients-entries__item {
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .clients-entries__item {
    margin: 0 -16px 40px -16px;
  }
}
.clients-entries__head {
  background-image: url("../img/arrow-dowm.svg");
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: right center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .clients-entries__head {
    padding: 0 16px;
    background-position: right 16px center;
  }
}
.clients-entries__head h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 4px;
}
@media screen and (max-width: 991px) {
  .clients-entries__head h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 0;
  }
}
.clients-entries__head h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.clients-entries__head[aria-expanded=true] {
  background-image: url("../img/arrow-up.svg");
}
@media screen and (max-width: 767px) {
  .clients-entries__panel {
    padding: 0 16px;
  }
}
.clients-entries__panel-inner {
  padding: 24px;
  border: 1px solid #4F4F4F;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .clients-entries__panel-inner {
    border-radius: 0;
    padding: 0;
    border: none;
  }
}
.clients-entries__tab-container .tabs {
  display: flex;
  padding-bottom: 32px;
  align-items: center;
  padding-top: 24px;
  margin-right: 24px;
}
.clients-entries__tab-container .tabs:last-child {
  margin-right: 0;
}
.clients-entries__tab-container .tabs .tab {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  margin-right: 24px;
}
.clients-entries__tab-container .tabs .tab:last-child {
  margin-right: 0;
}
.clients-entries__tab-container .tabs .tab.active, .clients-entries__tab-container .tabs .tab:hover {
  position: relative;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.clients-entries__tab-container .tabs .tab.active:after, .clients-entries__tab-container .tabs .tab:hover:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  position: absolute;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.tab-lock {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: rgb(255, 255, 255);
  cursor: not-allowed;
  display: block;
  padding-right: 23px;
  background-image: url("../img/lock.svg");
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.3;
  margin-bottom: 20px;
  margin-right: 24px;
}
.tab-lock:last-child {
  margin-right: 0;
}

.avatar {
  position: relative;
}
@media screen and (max-width: 767px) {
  .avatar {
    margin: 0 -35px;
  }
}
.avatar img {
  width: 100%;
}

.avatar-energy-link {
  position: absolute;
}
.avatar:not(.desktop) .avatar-energy-link li {
  color: #000000 !important;
}
@media print {
  .avatar:not(.desktop) .avatar-energy-link li span {
    background: #000000 !important;
  }
}
.avatar-energy-link__sector_1 {
  left: 7%;
  top: 31%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_1 {
    top: 31.5%;
  }
}
.avatar-energy-link__sector_1 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
@media print {
  .avatar-energy-link__sector_1 li {
    color: #000000;
  }
}
.avatar-energy-link__sector_1 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_1 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -200%;
  font-weight: 500;
  font-size: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_1 li:before {
    font-size: 6px;
    left: -100%;
  }
}
.avatar-energy-link__sector_1 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 150%;
  font-weight: 400;
  font-size: 6px;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_1 li:after {
    font-size: 5px;
    left: 130%;
  }
}
.avatar-energy-link__sector_1 li:nth-child(1) {
  left: -13.3%;
}
.avatar-energy-link__sector_1 li:nth-child(2) {
  left: -11.5%;
}
.avatar-energy-link__sector_1 li:nth-child(3) {
  left: -9.2%;
}
.avatar-energy-link__sector_1 li:nth-child(4) {
  left: -6.4%;
}
.avatar-energy-link__sector_1 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_1 li:nth-child(4):after {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_1 li:nth-child(5) {
  left: -2.2%;
}
.avatar-energy-link__sector_1 li:nth-child(6) {
  left: 2%;
}
.avatar-energy-link__sector_1 li:nth-child(7) {
  left: 7%;
}
.avatar-energy-link__sector_2 {
  left: 19%;
  top: 20.7%;
  height: 6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
.avatar-energy-link__sector_2 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.avatar-energy-link__sector_2 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_2 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -250%;
  font-weight: 500;
  font-size: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:before {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_2 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 200%;
  font-weight: 400;
  font-size: 6px;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:after {
    font-size: 5px;
  }
}
.avatar-energy-link__sector_2 li:nth-child(1) {
  left: -14.3%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(1) {
    left: -17.3%;
    top: 8%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(1):before {
  top: -50%;
  left: -200%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(1):before {
    top: -50%;
    left: -100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(1):after {
  top: 108%;
  left: 148%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(1):after {
    top: 108%;
    left: 148%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(2) {
  left: -5.5%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(2) {
    left: -7.5%;
    top: 4%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(2):before {
  top: -82%;
  left: -140%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(2):before {
    top: -82%;
    left: -100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(2):after {
  top: 105%;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(2):after {
    top: 105%;
    left: 100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(3) {
  left: 4.2%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(3) {
    left: 3.2%;
    top: 2%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(3):before {
  top: -90%;
  left: -160%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(3):before {
    top: -90%;
    left: -100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(3):after {
  top: 115%;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(3):after {
    top: 115%;
    left: 100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(4) {
  left: 13.6%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(4) {
    left: 14.6%;
    top: -1%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  top: 110%;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(4):after {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_2 li:nth-child(4):before {
  top: -125%;
  left: -100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(4):before {
    top: -100%;
    left: -100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(5) {
  left: 27.8%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(5) {
    left: 27.8%;
    top: 0%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(5):before {
  top: -125%;
  left: -130%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(5):before {
    top: -125%;
    left: -100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(5):after {
  top: 140%;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(5):after {
    top: 140%;
    left: 100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(6) {
  left: 42%;
  top: 1%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(6) {
    left: 43%;
    top: 0%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(6):before {
  top: -120%;
  left: -150%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(6):before {
    top: -120%;
    left: -100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(6):after {
  top: 160%;
  left: 70%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(6):after {
    top: 160%;
    left: 70%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(7) {
  left: 56%;
  top: 7%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(7) {
    left: 61%;
    top: 6%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(7):before {
  top: -150%;
  left: -100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(7):before {
    top: -150%;
    left: -100%;
  }
}
.avatar-energy-link__sector_2 li:nth-child(7):after {
  top: 150%;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_2 li:nth-child(7):after {
    top: 150%;
    left: 100%;
  }
}
.avatar-energy-link__sector_3 {
  left: 55%;
  top: 20.7%;
  height: 6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
.avatar-energy-link__sector_3 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.avatar-energy-link__sector_3 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_3 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -250%;
  font-weight: 500;
  font-size: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:before {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_3 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 200%;
  font-weight: 400;
  font-size: 6px;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:after {
    font-size: 5px;
  }
}
.avatar-energy-link__sector_3 li:nth-child(1) {
  left: 28.7%;
  top: 5%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(1) {
    left: 32.7%;
    top: 11%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(1):before {
  top: -50%;
  left: 175%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(1):before {
    top: -50%;
    left: 140%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(1):after {
  top: 65%;
  left: -250%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(1):after {
    top: 65%;
    left: -200%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(2) {
  left: 19.5%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(2) {
    left: 22.5%;
    top: 6%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(2):before {
  top: -82%;
  left: 165%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(2):before {
    top: -82%;
    left: 130%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(2):after {
  top: 105%;
  left: -300%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(2):after {
    top: 100%;
    left: -230%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(3) {
  left: 6.2%;
  top: -5%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(3) {
    left: 12.2%;
    top: 5%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(3):before {
  top: -90%;
  left: 160%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(3):before {
    top: -90%;
    left: 160%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(3):after {
  top: 135%;
  left: -200%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(3):after {
    top: 100%;
    left: -200%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(4) {
  left: -5.4%;
  top: -5%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(4) {
    left: -2.4%;
    top: 0%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  top: 140%;
  left: -225%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(4):after {
    font-weight: 700;
    font-size: 5px;
    top: 140%;
    left: -180%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(4):before {
  top: -125%;
  left: 140%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(4):before {
    top: -100%;
    left: 150%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(5) {
  left: -17.2%;
  top: -3%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(5) {
    left: -14.2%;
    top: 0%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(5):before {
  top: -125%;
  left: 175%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(5):before {
    top: -130%;
    left: 130%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(5):after {
  top: 160%;
  left: -180%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(5):after {
    top: 160%;
    left: -180%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(6) {
  left: -30%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(6) {
    left: -31%;
    top: -2%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(6):before {
  top: -120%;
  left: 150%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(6):before {
    top: -120%;
    left: 150%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(6):after {
  top: 160%;
  left: -200%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(6):after {
    top: 160%;
    left: -200%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(7) {
  left: -44%;
  top: 5%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(7) {
    left: -48%;
    top: 5%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(7):before {
  top: -150%;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(7):before {
    top: -135%;
    left: 135%;
  }
}
.avatar-energy-link__sector_3 li:nth-child(7):after {
  top: 150%;
  left: -200%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_3 li:nth-child(7):after {
    top: 150%;
    left: -186%;
  }
}
.avatar-energy-link__sector_4 {
  left: 74%;
  top: 31.5%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.avatar-energy-link__sector_4 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.avatar-energy-link__sector_4 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_4 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_4 li:before {
    font-size: 6px;
    left: 150%;
  }
}
.avatar-energy-link__sector_4 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: -330%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_4 li:after {
    font-size: 5px;
    left: -280%;
  }
}
.avatar-energy-link__sector_4 li:nth-child(1) {
  left: -21.3%;
}
.avatar-energy-link__sector_4 li:nth-child(2) {
  left: -16.2%;
}
.avatar-energy-link__sector_4 li:nth-child(3) {
  left: -13%;
}
.avatar-energy-link__sector_4 li:nth-child(4) {
  left: -9.2%;
}
.avatar-energy-link__sector_4 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_4 li:nth-child(4):after {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_4 li:nth-child(5) {
  left: -6.2%;
}
.avatar-energy-link__sector_4 li:nth-child(6) {
  left: -4.1%;
}
.avatar-energy-link__sector_4 li:nth-child(7) {
  left: -2.3%;
}
.avatar-energy-link__sector_5 {
  left: 74%;
  top: 46%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.avatar-energy-link__sector_5 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.avatar-energy-link__sector_5 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_5 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:before {
    font-size: 6px;
    left: 145%;
  }
}
.avatar-energy-link__sector_5 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: -300%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:after {
    font-size: 5px;
  }
}
.avatar-energy-link__sector_5 li:nth-child(1) {
  left: -2.3%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:nth-child(1):after {
    left: -230%;
  }
}
.avatar-energy-link__sector_5 li:nth-child(2) {
  left: -4.2%;
}
.avatar-energy-link__sector_5 li:nth-child(2):after {
  left: -330%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:nth-child(2):after {
    left: -230%;
  }
}
.avatar-energy-link__sector_5 li:nth-child(3) {
  left: -6%;
}
.avatar-energy-link__sector_5 li:nth-child(3):after {
  left: -330%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:nth-child(3):after {
    left: -230%;
  }
}
.avatar-energy-link__sector_5 li:nth-child(4) {
  left: -8.7%;
}
.avatar-energy-link__sector_5 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  left: -390%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:nth-child(4):after {
    left: -230%;
    font-size: 6px;
  }
}
.avatar-energy-link__sector_5 li:nth-child(5) {
  left: -12.4%;
}
.avatar-energy-link__sector_5 li:nth-child(5):after {
  left: -332%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:nth-child(5):after {
    left: -230%;
  }
}
.avatar-energy-link__sector_5 li:nth-child(6) {
  left: -16.1%;
}
.avatar-energy-link__sector_5 li:nth-child(6):after {
  left: -380%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:nth-child(6):after {
    left: -230%;
  }
}
.avatar-energy-link__sector_5 li:nth-child(7) {
  left: -21.3%;
}
.avatar-energy-link__sector_5 li:nth-child(7):after {
  left: -330%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_5 li:nth-child(7):after {
    left: -230%;
  }
}
.avatar-energy-link__sector_6 {
  left: 51%;
  top: 59.6%;
  height: 5.6%;
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 {
    left: 50%;
    top: 59%;
    width: 24%;
  }
}
.avatar-energy-link__sector_6 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.avatar-energy-link__sector_6 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_6 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:before {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_6 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: 200%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:after {
    font-size: 5px;
  }
}
.avatar-energy-link__sector_6 li:nth-child(1) {
  left: 40.7%;
  top: 16%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(1) {
    left: 45.7%;
    top: 8%;
  }
}
.avatar-energy-link__sector_6 li:nth-child(1):before {
  left: 158%;
  top: 83%;
}
.avatar-energy-link__sector_6 li:nth-child(1):after {
  left: -211%;
  top: -78%;
}
.avatar-energy-link__sector_6 li:nth-child(2) {
  left: 31.8%;
  top: 18%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(2) {
    left: 35.8%;
    top: 13%;
  }
}
.avatar-energy-link__sector_6 li:nth-child(2):before {
  left: 155%;
  top: 107%;
}
.avatar-energy-link__sector_6 li:nth-child(2):after {
  left: -259%;
  top: -100%;
}
.avatar-energy-link__sector_6 li:nth-child(3) {
  left: 21%;
  top: 19%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(3) {
    left: 25%;
    top: 18%;
  }
}
.avatar-energy-link__sector_6 li:nth-child(3):before {
  left: 132%;
  top: 113%;
}
.avatar-energy-link__sector_6 li:nth-child(3):after {
  left: -220%;
  top: -113%;
}
.avatar-energy-link__sector_6 li:nth-child(4) {
  left: 10.3%;
  top: 17%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(4) {
    left: 15.3%;
    top: 18%;
  }
}
.avatar-energy-link__sector_6 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  left: -252%;
  top: -131%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(4):after {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_6 li:nth-child(4):before {
  left: 119%;
  top: 121%;
}
.avatar-energy-link__sector_6 li:nth-child(5) {
  left: -1.2%;
  top: 13%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(5) {
    left: 3.8%;
    top: 16%;
  }
}
.avatar-energy-link__sector_6 li:nth-child(5):before {
  left: 117%;
  top: 137%;
}
.avatar-energy-link__sector_6 li:nth-child(5):after {
  left: -205%;
  top: -101%;
}
.avatar-energy-link__sector_6 li:nth-child(6) {
  left: -13.8%;
  top: 7%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(6) {
    left: -7.8%;
    top: 14%;
  }
}
.avatar-energy-link__sector_6 li:nth-child(6):before {
  left: 118%;
  top: 140%;
}
.avatar-energy-link__sector_6 li:nth-child(6):after {
  left: -228%;
  top: -91%;
}
.avatar-energy-link__sector_6 li:nth-child(7) {
  left: -25.6%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_6 li:nth-child(7) {
    left: -23.6%;
    top: 9%;
  }
}
.avatar-energy-link__sector_6 li:nth-child(7):before {
  left: 100%;
  top: 140%;
}
.avatar-energy-link__sector_6 li:nth-child(7):after {
  left: -184%;
  top: -75%;
}
.avatar-energy-link__sector_7 {
  left: 23%;
  top: 60%;
  height: 5.6%;
  width: 22%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 {
    left: 18%;
    top: 60%;
    height: 5.6%;
    width: 28%;
  }
}
.avatar-energy-link__sector_7 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.avatar-energy-link__sector_7 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_7 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:before {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_7 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: 200%;
}
.avatar-energy-link__sector_7 li:nth-child(1) {
  left: 42.7%;
  top: -7%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(1) {
    left: 45.7%;
    top: -7%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(1):before {
  left: -60%;
  top: 141%;
}
.avatar-energy-link__sector_7 li:nth-child(1):after {
  left: 80%;
  top: -78%;
}
.avatar-energy-link__sector_7 li:nth-child(2) {
  left: 29.8%;
  top: -1%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(2) {
    left: 32.8%;
    top: 1%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(2):before {
  left: -36%;
  top: 138%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(2):before {
    left: -36%;
    top: 138%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(2):after {
  left: 53%;
  top: -103%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(2):after {
    left: 53%;
    top: -103%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(3) {
  left: 19%;
  top: 4%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(3) {
    left: 21%;
    top: 4%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(3):before {
  left: -95%;
  top: 135%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(3):before {
    left: -50%;
    top: 135%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(3):after {
  left: 68%;
  top: -100%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(3):after {
    left: 68%;
    top: -100%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(4) {
  left: 8.3%;
  top: 8%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(4) {
    left: 8.3%;
    top: 2%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  left: 50%;
  top: -126%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(4):after {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_7 li:nth-child(4):before {
  left: -75%;
  top: 142%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(4):before {
    left: -21%;
    top: 142%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(5) {
  left: -3.2%;
  top: 8%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(5) {
    left: -2.2%;
    top: -4%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(5):before {
  left: -63%;
  top: 143%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(5):before {
    left: -63%;
    top: 143%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(5):after {
  left: 90%;
  top: -95%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(5):after {
    left: 90%;
    top: -95%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(6) {
  left: -14.8%;
  top: 3%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(6) {
    left: -11.8%;
    top: -11%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(6):before {
  left: -122%;
  top: 140%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(6):before {
    left: -85%;
    top: 140%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(6):after {
  left: 85%;
  top: -90%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(6):after {
    left: 85%;
    top: -90%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(7) {
  left: -25.6%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(7) {
    left: -18.6%;
    top: -18%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(7):before {
  left: -145%;
  top: 125%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(7):before {
    left: -67%;
    top: 144%;
  }
}
.avatar-energy-link__sector_7 li:nth-child(7):after {
  left: 150%;
  top: -50%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_7 li:nth-child(7):after {
    left: 102%;
    top: -50%;
  }
}
.avatar-energy-link__sector_8 {
  left: 7%;
  top: 46%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
.avatar-energy-link__sector_8 li {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.avatar-energy-link__sector_8 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.avatar-energy-link__sector_8 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_8 li:before {
    font-size: 6px;
    left: -120%;
  }
}
.avatar-energy-link__sector_8 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: 200%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_8 li:after {
    font-size: 5px;
    left: 150%;
  }
}
.avatar-energy-link__sector_8 li:nth-child(1) {
  left: 4.7%;
}
.avatar-energy-link__sector_8 li:nth-child(2) {
  left: -0.2%;
}
.avatar-energy-link__sector_8 li:nth-child(3) {
  left: -5%;
}
.avatar-energy-link__sector_8 li:nth-child(4) {
  left: -8.7%;
}
.avatar-energy-link__sector_8 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .avatar-energy-link__sector_8 li:nth-child(4):after {
    font-size: 6px;
  }
}
.avatar-energy-link__sector_8 li:nth-child(5) {
  left: -11.2%;
}
.avatar-energy-link__sector_8 li:nth-child(6) {
  left: -13.8%;
}
.avatar-energy-link__sector_8 li:nth-child(7) {
  left: -15.6%;
}

.avatar-energy-static-points li {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0px;
  color: #fff;
}
@media print {
  .avatar-energy-static-points li {
    color: #000000;
  }
}
@media screen and (max-width: 767px) {
  .avatar-energy-static-points li {
    font-size: 6px;
  }
}
.avatar-energy-static-points_0 {
  left: 9%;
  top: 42.6%;
}
.avatar-energy-static-points_10 {
  left: 19%;
  top: 27%;
}
.avatar-energy-static-points_20 {
  top: 19%;
  left: 48%;
}
.avatar-energy-static-points_30 {
  top: 27%;
  left: 77%;
}
.avatar-energy-static-points_40 {
  left: 87%;
  top: 42.6%;
}
.avatar-energy-static-points_50 {
  top: 59.3%;
  left: 75.6%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-static-points_50 {
    top: 57.3%;
    left: 77.6%;
  }
}
.avatar-energy-static-points_60 {
  top: 66%;
  left: 48%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-static-points_60 {
    top: 65.5%;
  }
}
.avatar-energy-static-points_70 {
  top: 59.3%;
  left: 19%;
}
@media screen and (max-width: 767px) {
  .avatar-energy-static-points_70 {
    top: 57.3%;
    left: 18%;
  }
}

.avatar-point-list {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.avatar-point-list li {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 1px 1px 3px #000000, 1px 1px 4px #000000;
  transition: 0.25s all linear;
  will-change: transform, opacity, filter;
}
.avatar-point-list li.on-hover-animation {
  transform: scale(1.6);
  transition: 0.25s all linear;
}
@media print {
  .avatar-point-list li {
    color: #302F2F;
    text-shadow: none;
  }
}
.avatar-point-list li.hide {
  display: none;
}
.avatar-point-list.on-hover-animation li:not(.on-hover-animation) {
  filter: blur(1.5px);
  opacity: 0.65;
  transition: 0.25s all linear;
}

.link-lg {
  font-size: 170%;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .link-lg {
    font-size: 120%;
  }
}

.link-md {
  font-size: 112%;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .link-md {
    font-size: 60%;
  }
}

[data-link] {
  cursor: not-allowed;
}

.tippy-init[data-link] {
  cursor: pointer;
}

.tippy-box {
  background: rgba(34, 34, 34, 0.98);
  padding: 20px;
  border-radius: 32px 32px 32px 32px;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #fff;
}
.tippy-box hr {
  height: 1px;
  border: none;
  background: #4F4F4F;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tippy-box {
    padding: 10px;
  }
}

.avatar-profile {
  display: grid;
  grid-template-columns: 1fr 750px;
}
.avatar-profile__inner {
  position: relative;
  transition: 0.5s all linear;
}
.avatar-profile__share {
  display: flex;
  justify-content: flex-end;
}
.share-button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.share-button img {
  width: 30px;
  flex: 0 0 30px;
  height: 30px;
  object-fit: contain;
}
.share-button span {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  padding-left: 12px;
  opacity: 0.9;
}
.form-item input {
  padding: 13px 24px;
}
.modal-share-direct-link {
  display: flex;
  align-items: center;
}
.modal-share-direct-link .form-item input {
  padding: 13px 24px;
}
.modal-share-direct-link .form-item {
  flex: 1 0;
  margin: 0 20px 0 0;
}
.modal-share-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}
.modal-share-list {
  display: flex;
  margin: 40px 0;
}
.modal-share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}
.modal-share-item:last-child {
  margin-right: 0;
}
.modal-share-item:first-child {
  margin-left: 0;
}
.modal-share-item img {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 8px;
}
.modal-share-item {
}
@media (min-height: 900px) {
  .avatar-profile__inner {
    position: sticky;
    top: 0;
    padding-bottom: 12px;
  }
}
.avatar-profile.compatibility {
  grid-template-columns: 1fr 735px;
}
@media screen and (max-width: 991px) {
  .avatar-profile.compatibility .profile-entries {
    margin-top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .avatar-profile, .avatar-profile.compatibility {
    grid-template-columns: 1fr;
    grid-template-areas: "avatar" "content";
  }
  .avatar-profile .profile-entries, .avatar-profile.compatibility .profile-entries {
    grid-area: content;
  }
  .avatar-profile .avatar-profile__matrix, .avatar-profile.compatibility .avatar-profile__matrix {
    grid-area: avatar;
    margin-bottom: 24px;
  }
}
.avatar-profile__inner {
  transition: 0.5s all linear;
}
@media (min-height: 900px) {
  .avatar-profile__inner {
    position: sticky;
    top: 0;
    padding-bottom: 12px;
  }
}

.profile-entries__item, .profile-entries__item_lock {
  margin-bottom: 12px;
  padding: 12px 20px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .profile-entries__item, .profile-entries__item_lock {
    padding: 12px;
  }
}
.profile-entries__item_lock {
  cursor: not-allowed;
}
.profile-entries__head {
  cursor: pointer;
  background-image: url("../img/arrow-dowm.svg");
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: right 5px bottom 5px;
}
.profile-entries__head[aria-expanded=true] {
  background-image: url("../img/arrow-up.svg");
}
.profile-entries__head > h5 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.profile-entries__head > h5 > i {
  margin-right: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
}
.profile-entries__head > h5 > i img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.profile-entries__head > h5 > i.blue {
  border-color: #1E4EFB;
  color: #1E4EFB;
}
.profile-entries__head > h5 > i.orange {
  border-color: #FF9E43;
  color: #FF9E43;
}
.profile-entries__head > h5 > i.gradient {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  border: none;
  color: #665acc;
  -webkit-text-fill-color: #665acc;
}
.profile-entries__head > h5 > i.gradient:before {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 0;
  top: 0;
  content: "";
  background: linear-gradient(#222, #222) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  color: #fff;
  border: 1px solid transparent;
  z-index: -1;
  border-radius: 50%;
}
.profile-entries__head > h5 > i.purple {
  border-color: #A93AF0;
  color: #A93AF0;
}
.profile-entries__head > h5 > i.light-blue {
  border-color: #3AACF8;
  color: #3AACF8;
}
.profile-entries__head > h5 > i.yellow {
  border-color: #F3DF2A;
  color: #F3DF2A;
}
.profile-entries__head > h5 > i.red {
  border-color: #F61137;
  color: #F61137;
}
.profile-entries__head > h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  transition: 0.25s color linear;
}
.profile-entries__head > h6:hover {
  color: #96A2F7;
}
.profile-entries__head > h6.gradient {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.profile-entries__item_lock .profile-entries__head > h6:after {
  position: relative;
  width: 19px;
  height: 19px;
  background-image: url("../img/lock.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  margin-left: 8px;
}
.profile-entries__item_lock .profile-entries__head {
  cursor: not-allowed;
}
.profile-entries__item_lock .profile-entries__head > h6 {
  opacity: 0.5;
}
.profile-entries__panel {
  overflow: hidden;
}
.profile-entries__modals-trigger {
  padding-top: 8px;
}
.profile-entries__modals-trigger > li {
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  padding-bottom: 8px;
  cursor: pointer;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .profile-entries__modals-trigger > li {
    padding-bottom: 18px;
  }
}
.profile-entries__modals-trigger > li.lock {
  cursor: not-allowed;
}
.profile-entries__modals-trigger > li.lock > p {
  opacity: 0.5;
}
.profile-entries__modals-trigger > li.lock > p:after {
  content: "";
  margin-left: 5px;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  display: inline-block;
  background-image: url("../img/lock.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.profile-entries__modals-trigger > li:last-child {
  margin-bottom: 0;
}

.open-modal-profile-energy > p {
  transition: 0.25s color linear;
}
.open-modal-profile-energy > p:hover {
  color: #96A2F7;
}

.profile-entries-subnumbers-list {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.profile-entries-subnumbers-list > i {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 11px;
}
.profile-entries-subnumbers-list > i img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.profile-entries-subnumbers-list > i.blue {
  border-color: #1E4EFB;
  color: #1E4EFB;
}
.profile-entries-subnumbers-list > i.orange {
  border-color: #FF9E43;
  color: #FF9E43;
}
.profile-entries-subnumbers-list > i.gradient {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  border: none;
  color: rgb(150, 162, 247);
  -webkit-text-fill-color: rgb(150, 162, 247);
}
.profile-entries-subnumbers-list > i.gradient:before {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 0;
  top: 0;
  content: "";
  background: linear-gradient(#222, #222) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  color: #fff;
  border: 1px solid transparent;
  z-index: -1;
  border-radius: 50%;
}
.profile-entries-subnumbers-list > i.purple {
  border-color: #A93AF0;
  color: #A93AF0;
}
.profile-entries-subnumbers-list > i.light-blue {
  border-color: #3AACF8;
  color: #3AACF8;
}
.profile-entries-subnumbers-list > i.yellow {
  border-color: #F3DF2A;
  color: #F3DF2A;
}
.profile-entries-subnumbers-list > i.red {
  border-color: #F61137;
  color: #F61137;
}

.profile-energy-tab {
  padding: 24px;
  border: 1px solid #4F4F4F;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .profile-energy-tab {
    padding: 16px 12px;
  }
}
.profile-entries__panel .profile-energy-tab {
  margin-top: 8px;
}
.profile-energy-tab__head {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  margin-bottom: 20px;
}
.profile-energy-tab__head li {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  background-color: #302F2F;
  padding: 10px;
  border-radius: 44px;
}
.profile-energy-tab__head li[data-tippy-content] {
  cursor: pointer;
}
.profile-energy-tab__head li[data-tippy-content] span {
  position: relative;
}
.profile-energy-tab__head li[data-tippy-content] span:after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../img/info.svg");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 100%;
  top: 2px;
  transform: translateX(3px);
}
.profile-energy-tab__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
}
.profile-energy-tab__body-item {
  border: 1px solid #302F2F;
  border-radius: 12px;
}
.profile-energy-tab__body-item:first-child {
  background-color: #302F2F;
}
.profile-energy-tab__body-item:first-child li {
  font-size: 12px;
  white-space: nowrap;
}
.profile-energy-tab__body-item li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  padding: 8px;
  text-align: center;
  line-height: 28px;
  position: relative;
}
.profile-energy-tab__body-item li > span {
  display: flex;
  width: 28px;
  height: 28px;
  line-height: 28px;
  margin: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
}
.profile-energy-tab__body-item li > span:before {
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
}

.profile-entries__panel .energy-result-sm-table {
  margin-top: 8px;
}

.energy-result-sm {
  padding: 0 15px 40px 15px;
}
.energy-result-sm-row, .energy-result-sm-row-head {
  display: grid;
  border-collapse: collapse;
  min-width: 100%;
  grid-template-columns: minmax(77px, 0fr) minmax(54%, 1fr) 1fr;
  min-height: 79px;
  align-items: center;
  border: 1px solid #4F4F4F;
  border-radius: 16px;
  padding: 12px 30px 12px 12px;
}
@media screen and (max-width: 767px) {
  .energy-result-sm-row, .energy-result-sm-row-head {
    padding: 12px;
    position: relative;
  }
}
.energy-result-sm-row:nth-child(odd), .energy-result-sm-row-head:nth-child(odd) {
  background: #302F2F;
}
.energy-result-sm-row:nth-child(even), .energy-result-sm-row-head:nth-child(even) {
  background: #222222;
}
.energy-result-sm-row [data-link], .energy-result-sm-row-head [data-link] {
  border: 1px solid #fff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}
.energy-result-sm-row:nth-child(2) [data-link], .energy-result-sm-row-head:nth-child(2) [data-link] {
  border-color: #933ed5;
}
.energy-result-sm-row:nth-child(3) [data-link], .energy-result-sm-row-head:nth-child(3) [data-link] {
  border-color: #1743e4;
}
.energy-result-sm-row:nth-child(4) [data-link], .energy-result-sm-row-head:nth-child(4) [data-link] {
  border-color: #4caae8;
}
.energy-result-sm-row:nth-child(5) [data-link], .energy-result-sm-row-head:nth-child(5) [data-link] {
  border-color: #55af57;
}
.energy-result-sm-row:nth-child(6) [data-link], .energy-result-sm-row-head:nth-child(6) [data-link] {
  border-color: #d2ce49;
}
.energy-result-sm-row:nth-child(7) [data-link], .energy-result-sm-row-head:nth-child(7) [data-link] {
  border-color: #cd8644;
}
.energy-result-sm-row:nth-child(8) [data-link], .energy-result-sm-row-head:nth-child(8) [data-link] {
  border-color: #c13633;
}
.energy-result-sm-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 77px;
}
.energy-result-sm-icon img {
  position: relative;
  z-index: 2;
}
.energy-result-sm-icon:before {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #000;
  filter: blur(15px);
  z-index: 1;
}
.energy-result-sm-icon:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #222222;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: 0;
}
.energy-result-sm-icon.purple:before {
  background: #933ED5;
}
.energy-result-sm-icon.blue:before {
  background: #1743E4;
}
.energy-result-sm-icon.light-blue:before {
  background: #4CAAE8;
}
.energy-result-sm-icon.green:before {
  background: #55AF57;
}
.energy-result-sm-icon.yellow:before {
  background: #D2CE49;
}
.energy-result-sm-icon.orange:before {
  background: #CD8644;
}
.energy-result-sm-icon.red:before {
  background: #C13633;
}
.energy-result-sm-icon.grey:before {
  background: #fff;
  opacity: 0.3;
}
.energy-result-sm-head-cell {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  padding-left: 8px;
}
.energy-result-sm-head-cell-info {
  margin-top: 3px;
  display: block;
}
.energy-result-sm-head-cell-info img {
  display: block;
}
.energy-result-sm-head-cell__inner {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.energy-result-sm-head-cell__inner:last-child {
  margin-bottom: 0;
}
.energy-result-sm-head-cell__inner span {
  font-size: 16px;
  font-weight: 600;
}
.energy-result-sm-head-cell:first-child {
  height: 100%;
  padding-left: 0;
}
.energy-result-sm-head-cell-title {
  font-size: 16px;
}
.energy-result-sm-head-cell-subtitle {
  font-size: 12px;
  font-weight: 400;
}
.energy-result-sm-head-cell:nth-child(2) {
  text-align: left;
}
.energy-result-sm-cell {
  text-align: center;
  color: #fff;
  line-height: 140%;
  font-size: 14px;
  font-weight: bold;
  padding-left: 8px;
}
@media screen and (max-width: 767px) {
  .energy-result-sm-cell {
    padding-left: 4px;
  }
}
.energy-result-sm-cell-info {
  margin-top: 3px;
  display: block;
}
@media screen and (max-width: 767px) {
  .energy-result-sm-cell-info {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
    margin-top: 0;
  }
}
.energy-result-sm-cell-info img {
  display: block;
}
.energy-result-sm-cell__inner {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .energy-result-sm-cell__inner {
    margin-bottom: 0;
  }
}
.energy-result-sm-cell__inner:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .energy-result-sm-cell__inner i:after {
    content: ": ";
    display: inline-block;
    margin-right: 4px;
  }
}
.energy-result-sm-cell__inner span {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .energy-result-sm-cell__inner span {
    font-size: 12px;
    font-weight: 400;
  }
}
.energy-result-sm-cell:first-child {
  height: 100%;
  padding-left: 0;
}
.energy-result-sm-cell-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.energy-result-sm-cell-subtitle {
  font-size: 12px;
  font-weight: 400;
}
.energy-result-sm-cell:nth-child(2) {
  text-align: left;
}
.energy-result-sm-cell:last-child {
  display: block;
  border-left: 1px solid #828282;
}
@media screen and (max-width: 767px) {
  .energy-result-sm-cell:last-child {
    grid-column: 1/-1;
    display: flex;
    padding-top: 8px;
    border-top: 1px solid #828282;
    border-left: none;
    margin-top: 8px;
    justify-content: space-between;
    padding-left: 0;
  }
}

.energy-modal {
  text-transform: none;
}
.energy-modal__title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.energy-modal__button-link {
  margin-top: 24px;
}
@media screen and (max-width: 991px) {
  .energy-modal__title {
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
}
.energy-modal__title figure {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(#222, #222) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  color: #fff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
@media screen and (max-width: 991px) {
  .energy-modal__title figure {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
}
.energy-modal__title figure i {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #ffffff;
  font-size: 38px;
}
@media screen and (max-width: 991px) {
  .energy-modal__title figure i {
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #ffffff;
  }
}
.energy-modal__title span {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-left: 12px;
}
@media screen and (max-width: 991px) {
  .energy-modal__title span {
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #ffffff;
    margin-left: 0;
  }
}
.energy-modal__subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 28px;
}
@media screen and (max-width: 991px) {
  .energy-modal__subtitle {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #ffffff;
  }
}
.energy-modal__bordered-box {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: 32px;
}
.modal .energy-modal__bordered-box {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .energy-modal__bordered-box {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
@media screen and (max-width: 767px) {
  .energy-modal__bordered-box {
    padding: 16px;
    border-radius: 16px;
  }
}
.energy-modal__bordered-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
}
@media screen and (max-width: 991px) {
  .energy-modal__bordered-box p {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-modal__bordered-box a {
  font-weight: 600;
  text-decoration: underline;
}
.energy-modal__bordered-box ul:first-child {
  margin-top: 0;
}
.energy-modal__bordered-box ul:last-child {
  margin-bottom: 0;
}
.energy-modal__bordered-box ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}
.energy-modal__bordered-box ul li:last-child {
  margin-bottom: 0;
}
.energy-modal__bordered-box ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .energy-modal__bordered-box ul li {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-modal__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
  margin-bottom: 32px;
}
.energy-modal__description ul:first-child {
  margin-top: 0;
}
.energy-modal__description ul:last-child {
  margin-bottom: 0;
}
.energy-modal__description ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}
.energy-modal__description ul li:last-child {
  margin-bottom: 0;
}
.energy-modal__description ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .energy-modal__description ul li {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-modal__caption:last-child {
  margin-bottom: 0;
}
.energy-modal__caption h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.energy-modal__caption p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
}
.energy-modal__caption-head {
  display: flex;
  align-items: center;
}
.energy-modal__caption-head .add-to-notes {
  margin-bottom: 16px;
  margin-left: 10px;
}
.energy-modal__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .energy-modal__cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.energy-modal__cols:last-child {
  margin-bottom: 0;
}
.energy-modal__row {
  margin-bottom: 40px;
}
.energy-modal__row:last-child {
  margin-bottom: 0;
}
.energy-modal__recommendations {
  margin-bottom: 40px;
}
.energy-modal__recommendations:last-child {
  margin-bottom: 0;
}

.energy-modal-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 315px 1fr;
}
.energy-modal-grid.no-grid {
  display: block;
  gap: 0;
  grid-template-columns: none;
}
.entry__panel > .energy-modal-grid {
  padding-top: 32px;
}
@media screen and (max-width: 991px) {
  .energy-modal-grid {
    grid-template-columns: 1fr;
  }
}
.energy-modal-grid__cover {
  position: relative;
  height: 549px;
}
@media screen and (max-width: 991px) {
  .energy-modal-grid__cover {
    height: 540px;
    margin-bottom: 30px;
  }
}
.energy-modal-grid__cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.energy-modal-grid__description h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .energy-modal-grid__description h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #ffffff;
  }
}
.energy-modal-grid__description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
}
@media screen and (max-width: 991px) {
  .energy-modal-grid__description p {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-modal-grid__body {
  grid-column: 1/-1;
}

.energy-modal-slider {
  margin-bottom: 40px;
}
.energy-modal-slider__inner {
  display: flex;
  padding: 24px;
  background: #222222;
  border-radius: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .energy-modal-slider__inner {
    flex-direction: column;
    padding: 0;
    background-color: transparent;
  }
}
.energy-modal-slider__controls {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  padding-top: 24px;
}
.energy-modal-slider__controls .slick-disabled {
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .energy-modal-slider__controls {
    margin-top: 28px;
    justify-content: center;
  }
}
.energy-modal-slider__controls-prev {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 60px;
  background-image: url("../img/chevron-left.svg");
}
.energy-modal-slider__controls-next {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 60px;
  background-image: url("../img/chevron-right.svg");
  margin-left: 16px;
}
.energy-modal-slider__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 16px;
  flex: 0 0 100%;
}
.energy-modal-slider__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 32px;
  flex: 0 0 100%;
}
.energy-modal-slider__cover {
  flex: 0 0 315px;
  width: 315px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .energy-modal-slider__cover {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }
}
.energy-modal-slider__cover img {
  display: block;
  width: 100%;
  height: 549px;
  object-fit: cover;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .energy-modal-slider__cover img {
    height: 370px;
  }
}
.energy-modal-slider__description {
  flex: 1 0 calc(100% - 315px);
  width: calc(100% - 315px);
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .energy-modal-slider__description {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
  }
}
.energy-modal-slider__description h5 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .energy-modal-slider__description h5 {
    margin-bottom: 12px;
  }
}
.energy-modal-slider__description h6 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .energy-modal-slider__description h6 {
    margin-bottom: 12px;
  }
}
.energy-modal-slider__description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
.energy-manifestation {
  padding: 24px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .energy-manifestation {
    padding: 16px;
  }
}
.energy-manifestation:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 1px;
  left: 0;
  border-radius: 32px;
  border: 1px solid transparent;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.energy-manifestation__item {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.energy-manifestation__item:first-child {
  align-items: flex-start;
  border-bottom: none;
}
.energy-manifestation__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.energy-manifestation__item > *:first-child {
  flex-grow: 1;
}
.energy-manifestation__item > *:last-child {
  flex: 0 0 155px;
}
@media screen and (max-width: 767px) {
  .energy-manifestation__item > *:last-child {
    flex: 0 0 110px;
  }
}
.energy-manifestation__key-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-right: 12px;
}
@media screen and (max-width: 991px) {
  .energy-manifestation__key-title {
    font-size: 17px;
  }
}
.energy-manifestation__value-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .energy-manifestation__value-title {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-manifestation__key {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-right: 12px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .energy-manifestation__key {
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-manifestation__value {
  display: flex;
  align-items: center;
}
.energy-manifestation__value-item {
  margin-left: 12px;
  display: flex;
}
.energy-manifestation__value-item:first-child {
  margin-left: 0;
}
.energy-manifestation__value-item button {
  height: 24px;
  border: none;
  padding: 0;
  background-color: transparent;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center left;
  cursor: pointer;
}
.energy-manifestation__value-item button:after {
  position: relative;
  display: block;
  padding-left: 25px;
}
.energy-manifestation__include {
  background-image: url("../img/success.svg");
}
.energy-manifestation__include.processing {
  background-image: url("../img/loading.gif") !important;
}
.invert .energy-manifestation__include {
  background-image: url("../img/success-red.svg");
}
.energy-manifestation__include:after {
  content: "Да";
  color: #1fa81c;
}
[lang=en-US] .energy-manifestation__include:after {
  content: "Yes";
}
[lang=ru-RU] .energy-manifestation__include:after {
  content: "Да";
}
.invert .energy-manifestation__include:after {
  color: #a42050;
}
.energy-manifestation__include.inactive {
  background-image: url("../img/success-dark.svg");
}
.energy-manifestation__include.inactive:after {
  color: #444;
}
.energy-manifestation__include.inactive:hover {
  background-image: url("../img/success.svg");
}
.invert .energy-manifestation__include.inactive:hover {
  background-image: url("../img/success-red.svg");
}
.energy-manifestation__include.inactive:hover:after {
  content: "Да";
  color: #1fa81c;
}
[lang=en-US] .energy-manifestation__include.inactive:hover:after {
  content: "Yes";
}
[lang=ru-RU] .energy-manifestation__include.inactive:hover:after {
  content: "Да";
}
.invert .energy-manifestation__include.inactive:hover:after {
  color: #a42050;
}
.energy-manifestation__exclude {
  background-image: url("../img/error.svg");
}
.energy-manifestation__exclude.processing {
  background-image: url("../img/loading.gif") !important;
}
.invert .energy-manifestation__exclude {
  background-image: url("../img/error-green.svg");
}
.energy-manifestation__exclude:after {
  content: "Нет";
  color: #a42050;
}
.invert .energy-manifestation__exclude:after {
  color: #1fa81c;
}
[lang=en-US] .energy-manifestation__exclude:after {
  content: "No";
}
[lang=ru-RU] .energy-manifestation__exclude:after {
  content: "Нет";
}
.energy-manifestation__exclude.inactive {
  background-image: url("../img/error-dark.svg");
}
.energy-manifestation__exclude.inactive:after {
  color: #444;
}
.energy-manifestation__exclude.inactive:hover {
  background-image: url("../img/error.svg");
}
.invert .energy-manifestation__exclude.inactive:hover {
  background-image: url("../img/error-green.svg");
}
.energy-manifestation__exclude.inactive:hover:after {
  content: "Нет";
  color: #a42050;
}
[lang=en-US] .energy-manifestation__exclude.inactive:hover:after {
  content: "No";
}
[lang=ru-RU] .energy-manifestation__exclude.inactive:hover:after {
  content: "Нет";
}
.invert .energy-manifestation__exclude.inactive:hover:after {
  color: #1fa81c;
}

.energy-definition {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
}
.modal .energy-definition {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .energy-definition {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
.energy-definition__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.energy-definition__head .add-to-notes {
  margin-bottom: 32px;
}
.energy-definition h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 32px;
}
.energy-definition p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
}
@media screen and (max-width: 991px) {
  .energy-definition p {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-definition p:first-child {
  margin-top: 0;
}
.energy-definition p:last-child {
  margin-bottom: 0;
}
.energy-definition ul:first-child {
  margin-top: 0;
}
.energy-definition ul:last-child {
  margin-bottom: 0;
}
.energy-definition ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}
.energy-definition ul li:last-child {
  margin-bottom: 0;
}
.energy-definition ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .energy-definition ul li {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}

.energy-recommendations__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 24px;
}
.energy-recommendations__body {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
}
.modal .energy-recommendations__body {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .energy-recommendations__body {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
.energy-recommendations__body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
  margin: 16px 0;
}
@media screen and (max-width: 991px) {
  .energy-recommendations__body p {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-recommendations__body ul {
  margin: 16px 0;
}
.energy-recommendations__body ul li {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 8px;
  padding-left: 17px;
  position: relative;
}
.energy-recommendations__body ul li:before {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  left: 0;
  top: 5px;
}
.energy-recommendations__body ul li:last-child {
  margin-bottom: 0;
}
.energy-recommendations__body > *:first-child {
  margin-top: 0;
}
.energy-recommendations__body > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .energy-recommendations__body {
    padding: 16px;
  }
}

.energy-modal-tip {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
}
.modal .energy-modal-tip {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .energy-modal-tip {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
.energy-modal-tip p {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
}
@media screen and (max-width: 991px) {
  .energy-modal-tip p {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}
.energy-modal-tip ul {
  margin: 16px 0;
}
.energy-modal-tip ul li {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 8px;
  padding-left: 17px;
  position: relative;
}
.energy-modal-tip ul li:before {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  left: 0;
  top: 5px;
}
.energy-modal-tip ul li:last-child {
  margin-bottom: 0;
}

.head-profile-menu {
  min-width: 167px;
  padding: 10px;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(55px);
}
.head-profile-icon:hover .head-profile-menu {
  display: block;
}
.head-profile-menu__list {
  background-color: #302F2F;
  border-radius: 12px;
  padding: 4px 24px;
}
.head-profile-menu__item {
  margin: 0;
}
.head-profile-menu__item a {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #4F4F4F;
}
.head-profile-menu__item a:hover {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.head-profile-menu__item:last-child a {
  border-bottom: none;
}

.dropdown-list {
  min-width: 167px;
  padding: 10px;
  display: none;
  position: absolute;
  right: -10px;
  top: 100%;
  transform: translateY(-10px);
  z-index: 1;
}
.dropdown-list__list {
  background-color: #302F2F;
  border-radius: 12px;
  padding: 10px 16px;
}
.dropdown-list__item {
  margin: 0;
}
.dropdown-list__item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid #4F4F4F;
}
.dropdown-list__item:last-child a {
  border-bottom: none;
}

.user-list-item__more:hover .dropdown-list {
  display: block;
}

.head-profile-full-name {
  display: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.modal {
  z-index: 99999;
}
.modal_energy-modal .modal-body, .modal#modal-tip .modal-body {
  max-width: 1200px;
  background-color: #272727;
  padding: 40px 20px 60px 40px;
  background-image: url("../img/modal-avatar.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .modal_energy-modal .modal-body, .modal#modal-tip .modal-body {
    padding: 24px 16px;
  }
}
.modal#modal-add-additional-users .modal-body.medium {
  max-width: 780px;
}

.checkbox-box label {
  display: flex;
  cursor: pointer;
}
.checkbox-box label input {
  display: none;
}
.checkbox-box label input + i {
  background: linear-gradient(#222, #222) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  border: 2px solid transparent;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  position: relative;
  flex: 0 0 16px;
  margin: 3px 0;
}
.checkbox-box label input:checked + i:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.checkbox-box label span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #828282;
  padding-left: 8px;
}
.checkbox-box.checkbox-position-top label {
  align-items: flex-start;
}

.tab-panes .tab-pane {
  display: none;
}

.tab-panes .active {
  display: block;
}

.my-avatar {
  margin: 40px 0 80px;
}
@media screen and (max-width: 991px) {
  .my-avatar {
    margin: 24px 0;
  }
}

.add-user {
  margin: 40px 0 80px;
}
@media screen and (max-width: 991px) {
  .add-user {
    margin: 24px 0;
  }
}

.add-password-main {
  margin: 40px 0 80px;
}
@media screen and (max-width: 991px) {
  .add-password-main {
    margin: 24px 0;
  }
}

.my-avatar-menu {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .my-avatar-menu {
    margin-bottom: 28px;
  }
}
.my-avatar-menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.my-avatar-menu__list li {
  margin-right: 14px;
}
.my-avatar-menu__list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .my-avatar-menu__list li {
    flex-grow: 1;
    margin-bottom: 14px;
  }
}
.my-avatar-menu__list li a {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #828282;
  padding: 8px 16px;
  border: 1px solid #4F4F4F;
  border-radius: 50px;
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 991px) {
  .my-avatar-menu__list li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .my-avatar-menu__list li a {
    text-align: center;
    padding: 8px;
  }
}
@media (max-width: 390px) {
  .my-avatar-menu__list li a {
    font-size: 14px;
  }
}
.my-avatar-menu__list li a:hover {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.my-avatar-menu__list li.active a {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.add-user-client {
  margin-bottom: 80px;
  max-width: 517px;
}
@media screen and (max-width: 991px) {
  .add-user-client {
    margin-bottom: 40px;
  }
}
.add-user-client__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-user-client__tip {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-image: url("../img/info.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.add-user-client__tip .tippy-box {
  background: #302F2F;
  border-radius: 20px;
}
.add-user-client__form .form-item:last-child {
  margin-bottom: 0;
}
.add-user-client__form-box {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
}
.modal .add-user-client__form-box {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .add-user-client__form-box {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}
.add-user-client__form-box.disabled {
  position: relative;
}
.add-user-client__form-box.disabled:after {
  cursor: pointer;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.add-password {
  margin-bottom: 80px;
  max-width: 517px;
}
@media screen and (max-width: 991px) {
  .add-password {
    margin-bottom: 40px;
  }
}
.add-password__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 24px;
}
.add-password__form .form-item:last-child {
  margin-bottom: 0;
}
.add-password__form-box {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
}
.modal .add-password__form-box {
  backdrop-filter: none;
  background-color: rgba(42, 42, 42, 0.88);
}
@media screen and (max-width: 991px) {
  .add-password__form-box {
    backdrop-filter: none;
    background-color: rgba(42, 42, 42, 0.88);
  }
}

.full-width-grid-col {
  grid-column: 1/-1;
}

.page-404 {
  background-image: url("../img/404.svg");
  background-size: cover;
  background-position: bottom left;
  background-repeat: no-repeat;
  margin-top: -160px;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .page-404 {
    background-image: url("../img/404-mobile.svg");
    min-height: 830px;
  }
}
.page-404 .container {
  margin: 0;
}
.page-404__box {
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 250px;
  padding-left: 18vw;
}
@media screen and (max-width: 767px) {
  .page-404__box {
    padding-top: 180px;
    padding-left: 0;
  }
}
.page-404__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 120px;
}
.page-404__inner h1 {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .page-404__inner {
    align-items: center;
  }
}
.page-404__inner h1 {
  font-size: 200px;
  font-weight: 900;
  line-height: 200px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-404__inner h1 {
    font-size: 150px;
    line-height: 150px;
  }
}
.page-404__inner h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 700px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-404__inner h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
  }
}
.page-404__col .button {
  min-width: 314px;
}

.entry__panel .modal-tab-container {
  padding-top: 24px;
}
.modal-tab-container .tabs {
  display: flex;
  padding-bottom: 5px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .modal-tab-container .tabs {
    align-items: flex-start;
    flex-direction: column;
  }
}
.modal-tab-container .tabs .tab {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  margin-right: 24px;
  margin-bottom: 20px;
}
.modal-tab-container .tabs .tab:last-child {
  margin-right: 0;
}
.modal-tab-container .tabs .tab.active, .modal-tab-container .tabs .tab:hover {
  position: relative;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.modal-tab-container .tabs .tab.active:after, .modal-tab-container .tabs .tab:hover:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  position: absolute;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
@media screen and (max-width: 767px) {
  .modal-tab-container .tabs .tab.active:after, .modal-tab-container .tabs .tab:hover:after {
    bottom: -3px;
  }
}
.user-list-main {
  padding: 40px 0 80px;
}

.user-list-coach {
  transition: 0.25s all linear;
}
.user-list-coach.loading {
  filter: blur(4px);
}
.user-list-coach > li {
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #4F4F4F;
}
@media screen and (max-width: 767px) {
  .user-list-coach > li {
    margin-bottom: 24px;
    padding-bottom: 32px;
  }
}
.user-list-coach > li:last-child {
  margin-bottom: 0;
}

.user-list-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.user-list-item__photo {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
}
.user-list-item__photo img {
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.user-list-item__name {
  flex: 1 0;
  padding-left: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
}
.user-list-item__link {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .user-list-item__link {
    flex: 0 0 100%;
    margin-top: 16px;
  }
  .user-list-item__link .button {
    width: 100%;
  }
}
.user-list-item__more {
  margin-left: 40px;
  position: relative;
}
.user-list-item__status {
  background-color: transparent;
  height: 24px;
  width: 24px;
  margin-left: 40px;
  border: none;
  font-size: 0;
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.user-list-item__status.invited {
  background-image: url("../img/user-status/invited.svg");
}
.user-list-item__status.confirmed {
  background-image: url("../img/user-status/confirmed.svg");
}
.user-list-item__status.anonymous {
  background-image: url("../img/user-status/anonymous.svg");
}
.no-access-banner-container {
  margin-bottom: 40px;
}
.get-matrix-banner, .bordered-banner {
  border-radius: 32px;
  background: linear-gradient(#302F2F, #302F2F) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  border: 1px solid transparent;
  overflow: hidden;
}
.get-matrix-banner__inner, .bordered-banner__inner {
  background-image: url("../img/avatar-banner.png");
  background-position: bottom right -100px;
  background-size: 735px;
  background-repeat: no-repeat;
  padding: 32px;
}
.bordered-banner__inner {
  background-image: url("../img/avatar-frag.svg");
  background-position: bottom right;
  background-size: 600px;
  background-repeat: no-repeat;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .get-matrix-banner__inner {
    background-position: bottom left 170px;
    background-size: 500px;
  }
  .bordered-banner__inner {
    background-size: 300px;
  }
}
.compatibility-matrix .get-matrix-banner__inner {
  background-position: top -120px right;
  background-size: 500px;
  background-image: url("../img/matrix_of_capability_transparent.svg");
}
@media screen and (max-width: 767px) {
  .compatibility-matrix .get-matrix-banner__inner {
    background-position: bottom -200px right -130px;
    background-size: 300px;
  }
}
.style-1 .get-matrix-banner__inner {
  display: flex;
  justify-content: space-between;
  background-image: url("../img/avatar-banner-style-1.png");
  background-position: top right 90%;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .style-1 .get-matrix-banner__inner {
    flex-direction: column;
    background-size: cover;
  }
}
.get-matrix-banner__title, .bordered-banner__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 24px;
}
.bordered-banner__body {
  max-width: 600px;
}
.get-matrix-banner__title:last-child, .bordered-banner__title:last-child {
  margin-bottom: 0;
}
.get-matrix-banner__description, .bordered-banner__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 448px;
}
.bordered-banner__description {
  max-width: 100%;
}
.get-matrix-banner__description:last-child, .bordered-banner__description:last-child {
  margin-bottom: 0;
}
.get-matrix-banner__action, .bordered-banner__action {
  margin-top: 24px;
}
.style-1 .get-matrix-banner__action {
  margin-top: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .style-1 .get-matrix-banner__action {
    margin-top: 32px;
  }
}

.get-matrix-banner-section {
  margin-bottom: 80px;
}
.get-matrix-banner-section:last-child {
  margin-bottom: 0;
}
.get-matrix-banner-section > * {
  margin-bottom: 40px;
}
.get-matrix-banner-section > *:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .get-matrix-banner-section {
    margin-bottom: 40px;
  }
}

.notification-container {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.notification-success {
  background: rgba(29, 199, 26, 0.1);
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.notification-success h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  padding-left: 16px;
}
.notification-success img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.notification-error {
  background: rgba(246, 17, 55, 0.15);
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.notification-error h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  padding-left: 16px;
}
.notification-error img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.clients-breadcrumbs ul {
  display: flex;
  align-items: center;
}
.clients-breadcrumbs ul li {
  margin-right: 4px;
}
.clients-breadcrumbs ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-left: 28px;
  background-image: url("../img/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px;
}
@media screen and (max-width: 767px) {
  .clients-breadcrumbs ul li:first-child a {
    font-size: 0;
    width: 45px;
    display: inline-block;
  }
  .clients-breadcrumbs ul li:first-child a:before {
    content: "...";
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #ffffff;
  }
}

.current-user {
  display: flex;
  align-items: center;
  padding: 32px 0 60px;
}
@media screen and (max-width: 767px) {
  .current-user {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 40px;
  }
}
.current-user__photo {
  flex: 0 0 130px;
}
@media screen and (max-width: 767px) {
  .current-user__photo {
    margin-bottom: 24px;
  }
}
.current-user__photo img {
  display: block;
  border-radius: 50%;
  height: 130px;
  width: 130px;
  object-fit: cover;
}
.current-user__info {
  padding-left: 24px;
  padding-right: 24px;
  flex: 1 0;
}
.current-user__info.compatibility {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .current-user__info {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 24px;
  }
}
.current-user__name {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
}
.compatibility .current-user__name {
  margin-bottom: 10px;
}
.current-user__email {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
.current-user__birth {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
.compatibility .current-user__birth {
  display: inline-block;
  line-height: 1;
}
.compatibility .current-user__birth.first {
  margin-right: 8px;
  padding-right: 11px;
  border-right: 1px solid #fff;
}
.current-user__action {
  align-self: flex-start;
  padding: 15px 0;
}
body.page-template-add-user, body.page-template-add-password {
  background-repeat: no-repeat;
  background-image: url("../img/avatar2.png");
  background-position: top 180px right calc((100% - 1250px) / 2 + 275px);
}

.energy-modal-grid__description-inner {
  width: 100%;
}

.to-top {
  display: none;
  cursor: pointer;
  position: fixed;
  right: 100px;
  bottom: 100px;
}
@media screen and (max-width: 767px) {
  .to-top {
    bottom: 15px;
    right: 15px;
  }
}
@media print {
  .to-top {
    display: none !important;
  }
}
.to-top img {
  display: block;
  box-shadow: 0px 14px 34px 0px rgb(101, 82, 176);
  border-radius: 50%;
}

.toggle-item input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  margin: 0;
  display: none;
}
.toggle-item label {
  cursor: pointer;
  text-indent: -9999px;
  width: 56px;
  height: 36px;
  background: transparent;
  display: block;
  border-radius: 50px;
  position: relative;
  border: 1px solid #4F4F4F;
}
.toggle-item label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-item input:checked + label {
  background: transparent;
}
.toggle-item input:checked + label:after {
  left: calc(100% - 4px);
  transform: translateX(-100%);
}
.toggle-item label:active:after {
  width: 35px;
}

#energy-year-toggle {
  opacity: 0;
  transition: 0.25s opacity linear;
}
#energy-year-toggle.show {
  opacity: 1;
}

.energy-year-toggle {
  display: flex;
  align-items: center;
}
.energy-year-toggle.style-1 {
  margin-top: 50px;
  justify-content: flex-end;
}
.energy-year-toggle span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0px;
  padding-left: 13px;
}

.energy-points-single {
  display: none;
}

.signification-chapter {
  background-color: #222222;
  border: 1px solid #4F4F4F;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.signification-chapter:last-child {
  margin-bottom: 0;
}
.signification-chapter__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 16px;
}
.signification-chapter__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-owner {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 991px) {
  .footer-owner {
    flex-wrap: wrap;
  }
}
.footer-owner p {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #fff;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  .footer-owner p {
    border-right: none;
    margin-bottom: 10px;
  }
}
.footer-owner p:last-child {
  border-right: none;
}

.no-post-item {
  padding-bottom: 55px;
  background-color: rgba(34, 34, 34, 0.8);
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .no-energy .no-post-item {
    padding: 20px 20px 55px 20px;
  }
  .no-energy .no-post-item .no-post-title {
    margin-top: -15px;
  }
}

.no-post-icon img {
  width: 336px;
  display: block;
}

.no-post-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-top: -40px;
}

.no-energy {
  padding-top: 24px;
}

.avatar-date-calculator__tip {
  grid-area: mainFormTip;
}
@media screen and (max-width: 991px) {
  .avatar-date-calculator__tip {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .avatar-date-calculator__tip {
    margin: -45px 0 40px;
  }
}

.payment-status {
  padding: 200px 0 250px;
  text-align: center;
}
.payment-status__box {
  max-width: 500px;
  margin: auto;
}
.payment-status__icon {
  margin-bottom: 31px;
}
.payment-status__icon > img {
  width: 47px;
}
.payment-status__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 12px;
}
.payment-status__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 31px;
}
.matrix-available {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.matrix-available p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.matrix-available i {
  margin-left: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.rates-page {
  padding: 60px 0 80px;
}
.rates-page__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #ffffff;
  margin-bottom: 24px;
}
.rates-page__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

.rates-page-header {
  margin-bottom: 82px;
  max-width: 560px;
}

.personal-photo-updated-notify {
  display: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  margin-top: 5px;
  max-width: 400px;
  color: #C71F5B;
}
@media screen and (max-width: 991px) {
  .personal-photo-updated-notify {
    max-width: 100%;
  }
}

[data-energy-builder] {
  cursor: pointer;
}

.tarot-container {
  position: relative;
  height: 170px;
  margin: 32px 0;
  box-shadow: 22px 24px 60px -10px rgba(0, 0, 0, 0.25);
}
.tarot-item {
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 170px;
  border-radius: 16px;
  background-image: url("../img/card.svg");
  background-size: cover;
  background-position: center;
  transition: 0.1s transform ease-out;
  cursor: pointer;
  will-change: transform;
}
.tarot-item:hover {
  transform: translateY(-10px);
}

.day-tip-modal__head {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .day-tip-modal__head {
    font-size: 36px;
    margin-bottom: 25px;
  }
}
.day-tip-modal__box {
  display: flex;
}
@media screen and (max-width: 991px) {
  .day-tip-modal__box {
    flex-wrap: wrap;
  }
}
.day-tip-modal__cover {
  height: 549px;
  width: 317px;
  flex: 0 0 317px;
}
@media screen and (max-width: 991px) {
  .day-tip-modal__cover {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .day-tip-modal__cover {
    width: 100%;
    flex: 0 0 100%;
  }
}
.day-tip-modal__image {
  width: 100%;
  height: 100%;
}
.day-tip-modal__image > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.day-tip-modal__content {
  flex: 1 0;
  padding-left: 40px;
}
@media screen and (max-width: 991px) {
  .day-tip-modal__content {
    padding-left: 0;
    flex: 0 0 100%;
  }
}
.day-tip-modal__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 16px;
}
.day-tip-modal__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 185%;
}
.day-tip-modal__description ul:first-child, .day-tip-modal__description ol:first-child {
  margin-top: 0;
}
.day-tip-modal__description ul:last-child, .day-tip-modal__description ol:last-child {
  margin-bottom: 0;
}
.day-tip-modal__description ul li, .day-tip-modal__description ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  line-height: 150%;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}
.day-tip-modal__description ul li:last-child, .day-tip-modal__description ol li:last-child {
  margin-bottom: 0;
}
.day-tip-modal__description ul li:before, .day-tip-modal__description ol li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .day-tip-modal__description ul li, .day-tip-modal__description ol li {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
}

.energy-tarot {
  margin: 40px 0;
}

.day-tip-tab-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  max-width: 800px;
}

.tarot-box--frontpage {
  margin-bottom: 80px;
} 
.tarot-box__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 16px;
}

.tarot-box__add-to-notes {
  text-align: right;
}

.modal-loading {
  display: none;
}
.modal-loading.fetching {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.modal-loading.fetching svg {
  width: 100px;
}

.guest-user-modal__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 20px;
}
.guest-user-modal__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
}
.guest-user-modal__form {
  margin-bottom: 40px;
}
.guest-user-modal__form .form-item {
  position: relative;
}
.guest-user-modal__button-group {
  display: flex;
  align-items: center;
}
.guest-user-modal__button-group > * {
  flex: 1 0;
  margin-right: 24px;
}
.guest-user-modal__button-group > *:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .guest-user-modal__button-group {
    flex-direction: column;
  }
  .guest-user-modal__button-group > * {
    margin-right: 0;
    margin-bottom: 12px;
    flex: 0 0 100%;
    width: 100%;
  }
  .guest-user-modal__button-group > *:last-child {
    margin-bottom: 0;
  }
}
.guest-user-modal .error-tip {
  margin-top: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  color: #C71F5B;
  display: block;
}

.loading-icon {
  position: absolute;
  top: 0;
  right: 12px;
  width: 56px;
  display: none;
}

.hover-info {
  background-image: url("../img/info.svg");
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 5px;
  flex-shrink: 0;
}

.users-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}
.users-pagination__list {
  display: flex;
}
.users-pagination__list li {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
.users-pagination__list li.pagination-active {
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: not-allowed;
}
.users-pagination__prev {
  height: 32px;
  width: 32px;
  font-size: 0;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow-left-white.svg");
  cursor: pointer;
}
.users-pagination__next {
  height: 32px;
  width: 32px;
  font-size: 0;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow-right-white.svg");
  cursor: pointer;
}

.all-users-coach {
  position: relative;
}
.all-users-coach.disable-block:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
}

.all-consultations-users__container .tabs {
  display: flex;
  padding-bottom: 48px;
  align-items: center;
  padding-top: 24px;
}
.all-consultations-users__container .tabs .tab {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  margin-right: 24px;
}
.all-consultations-users__container .tabs .tab:last-child {
  margin-right: 0;
}
.all-consultations-users__container .tabs .tab.active, .all-consultations-users__container .tabs .tab:hover {
  position: relative;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.all-consultations-users__container .tabs .tab.active:after, .all-consultations-users__container .tabs .tab:hover:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  position: absolute;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}

.students-search {
  max-width: 555px;
  margin-bottom: 40px;
}

.search-form-item {
  position: relative;
}
.search-form-item input[type=submit] {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("../img/search.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
  border: none;
  font-size: 0;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.checkout-page {
  padding: 53px 0;
}
.checkout-page__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 36px;
}

.checkout-grid {
  display: grid;
  grid-template-areas: "billing details payment";
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1200px) {
  .checkout-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "billing details" "billing payment";
  }
}
@media screen and (max-width: 991px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "billing" "details" "payment";
  }
}
.checkout-grid__col.billing {
  grid-area: billing;
}
.checkout-grid__col.details {
  grid-area: details;
}
.checkout-grid__col.payment {
  grid-area: payment;
}

.orders-history {
  display: flex;
}
.orders-history .no-energy {
  display: flex;
  width: 100%;
}
.orders-history .no-energy .no-post-item {
  flex: 0 0 100%;
}

.orders-history-table {
  padding: 24px 0px 24px 8px;
  border: 1px solid #4F4F4F;
  border-radius: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .orders-history-table {
    overflow-x: auto;
  }
}
.orders-history-table table {
  border-collapse: separate;
  border-spacing: 16px 0;
}
@media screen and (max-width: 767px) {
  .orders-history-table table {
    width: 680px;
  }
}
.orders-history-table .woocommerce-orders-table__header {
  padding-bottom: 20px;
}
.orders-history-table .woocommerce-orders-table__header span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  color: #fff;
  background: #302F2F;
  border-radius: 44px;
  padding: 10px 20px;
}
.orders-history-table .woocommerce-orders-table__header-order-actions span {
  font-size: 0;
  background-color: transparent;
}
.orders-history-table .woocommerce-orders-table__cell-order-actions {
  position: relative;
}
.orders-history-table .woocommerce-orders-table__cell-order-actions:hover .hidden-actions {
  display: block;
}
.orders-history-table .woocommerce-orders-table__cell-order-actions .show-hidden-actions {
  cursor: pointer;
  width: 36px;
  height: 36px;
  background-image: url("../img/more-vertical.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.orders-history-table .woocommerce-orders-table__cell-order-actions .hidden-actions {
  display: none;
  background: #302F2F;
  padding: 16px;
  position: absolute;
  min-width: 128px;
  left: 24px;
  top: 24px;
  border-radius: 12px;
  text-align: left;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .orders-history-table .woocommerce-orders-table__cell-order-actions .hidden-actions {
    left: auto;
    right: 30px;
  }
}
.orders-history-table .woocommerce-orders-table__cell-order-actions .hidden-actions > a {
  display: block;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #4F4F4F;
}
.orders-history-table .woocommerce-orders-table__cell-order-actions .hidden-actions > a:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.orders-history-table .woocommerce-orders-table__cell-order-number a, .orders-history-table .woocommerce-orders-table__cell-order-number span {
  display: block;
  color: #fff;
}
.orders-history-table .woocommerce-orders-table__cell-order-date time {
  display: block;
}
.orders-history-table .woocommerce-orders-table__row td {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  padding: 8px 8px 30px;
  border-left: 1px solid #302F2F;
  border-right: 1px solid #302F2F;
  background: #222222;
  vertical-align: middle;
}
.orders-history-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-status {
  padding: 8px 35px 30px;
}
.orders-history-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-total {
  padding: 8px 20px 30px;
}
.orders-history-table .woocommerce-orders-table__row td:first-child {
  background: #302F2F;
}
.orders-history-table .woocommerce-orders-table__row td:last-child {
  border: none !important;
}
.orders-history-table .woocommerce-orders-table__row:first-child td {
  border-top: 1px solid #302F2F;
  border-radius: 12px 12px 0 0;
}
.orders-history-table .woocommerce-orders-table__row:last-child td {
  padding-bottom: 8px;
  border-bottom: 1px solid #302F2F;
  border-radius: 0 0 12px 12px;
}
.profile-collect {
  padding: 53px 0 80px;
}

.woocommerce-order-details {
  margin-bottom: 40px;
}
.woocommerce-order-details .related-subscriptions-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin: 40px 0 20px;
}

.woocommerce-order p a {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.woocommerce-order-details__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 20px;
}

.woocommerce-customer-details address {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  padding: 24px;
  max-width: 970px;
}
.woocommerce-customer-details .woocommerce-column__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 20px;
}

.order-table-details {
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  padding: 18px 24px;
  max-width: 970px;
}
.order-table-details table {
  text-align: left;
}
.order-table-details table thead:not(.downloads-thead) {
  display: none;
}
.order-table-details table th, .order-table-details table td {
  padding: 6px 0 6px 50px;
}
.order-table-details table th:first-child, .order-table-details table td:first-child {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-left: 0;
}
.order-table-details table th:last-child, .order-table-details table td:last-child {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.my_account_orders_table_container {
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  padding: 24px;
  max-width: 970px;
}
@media screen and (max-width: 767px) {
  .my_account_orders_table_container {
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  .my_account_orders_table_container table {
    width: 600px;
  }
}
.my_account_orders_table_container table tr {
  text-align: left;
}
.my_account_orders_table_container table tr th {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-left: 24px;
}
.my_account_orders_table_container table tr th:first-child {
  padding-left: 0;
}
.my_account_orders_table_container table tr td {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-left: 24px;
}
.my_account_orders_table_container table tr td:first-child {
  padding-left: 0;
}

.profile-order-status {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  color: #fff;
  margin-bottom: 20px;
}
.profile-order-status mark {
  background: transparent;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
}

.woocommerce-thankyou-order-received {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  padding: 14px 0 14px 72px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .woocommerce-thankyou-order-received {
    background-size: 55px;
  }
}
.woocommerce-thankyou-order-received.woocommerce-notice--success {
  background-image: url("../img/v-circle-green-bright.svg");
}

.profile-edit-address h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 20px;
}
.profile-edit-address .woocommerce-address-fields {
  border: 1px solid #4F4F4F;
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
}
.profile-edit-address .woocommerce-address-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.profile-edit-address .woocommerce-address-fields__field-wrapper .form-row {
  margin-bottom: 24px;
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .profile-edit-address .woocommerce-address-fields__field-wrapper .form-row {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.profile-edit-address .woocommerce-address-fields__field-wrapper .form-row label {
  display: none;
}

.woocommerce-input-wrapper {
  margin-bottom: 24px;
  position: relative;
}
.woocommerce-input-wrapper input, .woocommerce-input-wrapper textarea, .woocommerce-input-wrapper select, .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: block;
  padding: 15px 24px;
  background: #302F2F;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  width: 100%;
  max-width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.woocommerce-input-wrapper input:-webkit-autofill, .woocommerce-input-wrapper input:-webkit-autofill:focus, .woocommerce-input-wrapper textarea:-webkit-autofill, .woocommerce-input-wrapper textarea:-webkit-autofill:focus, .woocommerce-input-wrapper select:-webkit-autofill, .woocommerce-input-wrapper select:-webkit-autofill:focus, .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered:-webkit-autofill, .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.woocommerce-input-wrapper textarea {
  resize: vertical;
}
.woocommerce-input-wrapper select, .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../img/arrow-selector.svg");
  background-size: 12px 8px;
  background-repeat: no-repeat;
  background-position: center right 30px;
}
.woocommerce-input-wrapper .select2-container .select2-selection--single {
  background-color: transparent;
  height: auto;
  border: none !important;
  outline: 0 !important;
  margin: 0;
}
.woocommerce-input-wrapper .select2-selection__arrow {
  display: none;
}

.select2-dropdown {
  background: #302F2F;
  border: 1px solid #4F4F4F;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background: #4F4F4F;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background: #302F2F;
  border: 1px solid #4F4F4F;
  color: #fff;
}

.woocommerce-order-overview.order_details {
  padding: 24px;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  margin-bottom: 40px;
  max-width: 970px;
}
.woocommerce-order-overview.order_details li {
  margin-bottom: 12px;
  display: flex;
}
.woocommerce-order-overview.order_details li > span {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  flex: 0 0 170px;
  max-width: 170px;
  width: 170px;
}
@media screen and (max-width: 767px) {
  .woocommerce-order-overview.order_details li > span {
    width: auto;
    max-width: none;
    flex: 0 0;
  }
}
.woocommerce-order-overview.order_details li > strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .woocommerce-order-overview.order_details li > strong {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .woocommerce-order-overview.order_details li {
    flex-direction: column;
  }
}

.order-received-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .order-received-header .woocommerce-notice {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .order-received-header {
    flex-direction: column;
    align-items: stretch;
  }
}
.woocommerce-form-coupon-container {
  margin-top: 24px;
}

.woocommerce-billing-fields, .border-grid {
  padding: 24px;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
}
.woocommerce-billing-fields h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 24px;
}
.woocommerce-billing-fields label {
  display: none;
}
.woocommerce-billing-fields .form-row {
  margin-bottom: 24px;
}
.woocommerce-billing-fields .form-row:last-child {
  margin-bottom: 0;
}

.woocommerce-checkout-review-order-table {
  text-align: left;
  width: 100%;
  margin-bottom: -16px;
}
.woocommerce-checkout-review-order-table tr th, .woocommerce-checkout-review-order-table tr td {
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.woocommerce-checkout-review-order-table tr th:last-child, .woocommerce-checkout-review-order-table tr td:last-child {
  text-align: right;
}
.woocommerce-checkout-review-order-table thead tr th {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.woocommerce-checkout-review-order-table tfoot tr th, .woocommerce-checkout-review-order-table tfoot tr td {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid #828282;
}

.woocommerce-checkout-review-order-table_container {
  padding: 24px;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
}
.woocommerce-checkout-review-order-table_container h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 24px;
}

.woocommerce-checkout-footer-info {
  margin-top: 24px;
}
.woocommerce-checkout-footer-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  color: #828282;
}
.woocommerce-checkout-footer-info a {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.woocommerce-checkout-footer-info i {
  vertical-align: middle;
  cursor: pointer;
}

.woocommerce-checkout-payment__container {
  padding: 24px;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
}
.woocommerce-checkout-payment__container h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 24px;
}

.wc_payment_methods.payment_methods > li {
  margin-bottom: 32px;
}
.wc_payment_methods.payment_methods > li input[type=radio] {
  display: none;
}
.wc_payment_methods.payment_methods > li input[type=radio] + label {
  background-image: url("../img/checkbox-round-empty.svg");
}
.wc_payment_methods.payment_methods > li input[type=radio]:checked + label {
  background-image: url("../img/checkbox-round-fill.svg");
}
.wc_payment_methods.payment_methods > li input[type=checkbox] {
  display: none;
}
.wc_payment_methods.payment_methods > li input[type=checkbox] + label {
  background-image: url("../img/checkbox-empty.svg");
}
.wc_payment_methods.payment_methods > li input[type=checkbox]:checked + label {
  background-image: url("../img/checkbox-fill.svg");
}
.wc_payment_methods.payment_methods > li > label {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  cursor: pointer;
  padding-left: 46px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: left center;
}
.wc_payment_methods.payment_methods > li > div {
  margin-top: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
.wc_payment_methods.payment_methods .woocommerce-SavedPaymentMethods-saveNew label {
  background-size: 18px;
  padding-left: 24px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: left center;
}

.woocommerce-privacy-policy-text {
  margin-bottom: 16px;
}
.woocommerce-privacy-policy-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  color: #828282;
}
.woocommerce-privacy-policy-text a {
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.woocommerce-notices-wrapper .woocommerce-message {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 40px;
}

.woocommerce-form__label-for-checkbox {
  margin-bottom: 24px;
}

.get-extended-pdf-box {
  margin: 40px 0 12px;
  display: flex;
  justify-content: space-between;
}
.get-extended-pdf-box > * {
  margin-right: 10px;
  width: 100%;
}
.get-extended-pdf-box > *:last-child {
  margin-right: 0;
}
.tree-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1%;
}
.tree-checkbox > li {
  margin-bottom: 12px;
  padding: 12px 20px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4f4f4f;
  border-radius: 20px;
  flex: 0 0 48%;
}
@media (max-width: 520px) {
  .tree-checkbox {
    gap: 0;
  }
  .tree-checkbox > li {
    flex: 0 0 100%;
  }
}
.tree-checkbox .has > label {
  cursor: pointer;
  background-image: url("../img/arrow-dowm.svg");
  background-size: 10px;
  background-position: center right;
  background-repeat: no-repeat;
  padding-right: 16px;
}
.tree-checkbox .has ul label {
  display: flex;
  padding-left: 0;
}
.tree-checkbox .has ul label input {
  display: none;
}
.tree-checkbox .has ul label i {
  z-index: 0;
  margin: 0;
}
.tree-checkbox .has ul label span {
  padding-left: 12px;
}
.tree-checkbox input {
  opacity: 0;
  margin: 0;
  height: 16px;
  width: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  vertical-align: middle;
  font-size: 16px;
  cursor: pointer;
}
.tree-checkbox input + i {
  background: linear-gradient(#222, #222) padding-box, linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%) border-box;
  border: 2px solid transparent;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 2px;
  position: relative;
  top: 2px;
  margin-left: -20px;
  z-index: -1;
}
.tree-checkbox input:checked + i:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.tree-checkbox label {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #828282;
  padding-left: 6px;
  color: #fff;
}
.tree-checkbox ul {
  display: none;
}

.tree-checkbox li li {
  padding: 12px 5px 0;
  cursor: pointer;
  vertical-align: middle;
}

.tree-checkbox .active,
.tree-checkbox .active li {
  background: #efefef;
}

.tree-checkbox label {
  cursor: pointer;
}

.tree-checkbox-controls {
  margin-bottom: 24px;
}
.tree-checkbox-controls:last-child {
  margin-right: 0;
}
.tree-checkbox-controls-button {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-right: 5px;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .tree-checkbox-controls-button {
    white-space: nowrap;
  }
}
.tree-checkbox-controls-button:hover {
  position: relative;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.tree-checkbox-controls-button:hover:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  position: absolute;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}

.tree-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.tree-checkbox-col {
  flex: 0 0 100%;
  padding: 0 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .tree-checkbox-col {
    flex: 0 0 100%;
  }
}

img.on-pdf {
  display: none;
}

.avatar.on-rendering img.on-pdf {
  display: block;
}
.avatar.on-rendering img.on-desktop {
  display: none;
}
.avatar.on-rendering .avatar-point-list li, .avatar.on-rendering .profile-entries__head > h5 > i, .avatar.on-rendering .avatar-energy-static-points li, .avatar.on-rendering .avatar-energy-link li {
  color: #000000 !important;
}
.avatar.on-rendering .avatar-point-list li, .avatar.on-rendering .profile-entries__head > h5 > i {
  font-weight: 400 !important;
}
.avatar.on-rendering .avatar-energy-link li span {
  background: #000000 !important;
}
.energy-result-sm-table.pdf .energy-result-sm-icon:after {
  background: transparent !important;
}
.energy-result-sm-table.on-rendering {
  width: 470px;
}
.energy-result-sm-table.on-rendering .energy-result-sm-row-head, .energy-result-sm-table.on-rendering .energy-result-sm-row {
  background: #ffffff !important;
}
.energy-result-sm-table.on-rendering * {
  color: #000000 !important;
}
.energy-result-sm-table.on-rendering .energy-result-sm-row [data-link] {
  border-color: #000000 !important;
}
.energy-result-sm-table.on-rendering img:not(.on-pdf) {
  display: none;
}
.energy-result-sm-table.on-rendering img.on-pdf {
  display: block;
}
.energy-result-sm-table.on-rendering .energy-result-sm-cell-info {
  display: none;
}
.modal .modal-on-await {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
}
.modal-on-await-title {
  max-width: 400px;
  padding: 20px;
  text-align: center;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 500;
}
.modal .modal-on-await svg {
  width: 100px;
}
.body-on-rendering .modal .modal-on-await {
  display: flex;
}

.mobile-wpml {
  display: none;
  margin: 0 !important;
}
@media screen and (max-width: 991px) {
  .mobile-wpml {
    display: block;
  }
}
.mobile-wpml ul {
  display: flex;
  align-items: center;
}
.mobile-wpml .wpml-ls-legacy-list-horizontal .wpml-ls-flag + span {
  margin: 0 0 0 8px;
}
.mobile-wpml .wpml-ls {
  margin: 0;
  padding: 0;
}
.mobile-wpml .wpml-ls-item {
  width: auto;
  margin: 0 40px 8px 0;
}
.mobile-wpml .wpml-ls-item:last-child {
  margin-right: 0;
}
.mobile-wpml .wpml-ls-item a {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.mobile-wpml .wpml-ls-item a img {
  margin: 0;
}
.mobile-wpml .wpml-ls-item a span {
  font-size: 18px;
  line-height: 24px;
}
.mobile-wpml .wpml-ls-current-language {
  padding: 8px 16px;
  background: #302F2F;
  border-radius: 4px;
}

.desktop-wpml {
  display: block;
}
@media screen and (max-width: 991px) {
  .desktop-wpml {
    display: none;
  }
}
.desktop-wpml .wpml-ls-legacy-dropdown {
  min-width: 75px;
  width: intrinsic;
  width: max-content;
  -moz-width: max-content;
}
.desktop-wpml .wpml-ls-legacy-dropdown .wpml-ls-item-toggle {
  padding: 0 !important;
  margin: 0;
  background: transparent;
  border: none;
}
.desktop-wpml .wpml-ls-legacy-dropdown .wpml-ls-item-toggle > .wpml-ls-native {
  display: none;
}
.desktop-wpml .wpml-ls-legacy-dropdown .wpml-ls-item-toggle > .wpml-ls-flag {
  margin: 0 8px;
}
.desktop-wpml .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  position: relative;
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: none;
  background-image: url("../img/wpml/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
}
.desktop-wpml .wpml-ls-legacy-dropdown:hover a.wpml-ls-item-toggle:after {
  background-image: url("../img/wpml/arrow-up.svg");
}
.desktop-wpml .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a, .desktop-wpml .wpml-ls-legacy-dropdown a:focus, .desktop-wpml .wpml-ls-legacy-dropdown a:hover {
  background: transparent;
}
.desktop-wpml .wpml-ls-legacy-dropdown a {
  background: transparent;
  border: none;
  margin-bottom: 8px;
  padding: 0;
  display: flex;
  align-items: center;
}
.desktop-wpml .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border-top: none;
  padding: 12px 8px;
  background: #302F2F;
  border-radius: 4px;
  width: intrinsic;
  width: max-content;
  -moz-width: max-content;
}
.desktop-wpml .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item:last-child a {
  margin-bottom: 0;
}
.desktop-wpml .wpml-ls-item span {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

@media print {
  .grecaptcha-badge {
    display: none !important;
  }
}

.thank-you-view-status {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  margin: 20px 0;
}

.manifestation-curve {
  display: flex;
}
@media screen and (max-width: 991px) {
  .manifestation-curve {
    flex-wrap: wrap;
  }
}
.manifestation-curve__col {
  flex: 0 0 378px;
  margin-left: 120px;
}
@media screen and (max-width: 991px) {
  .manifestation-curve__col {
    flex: 0 0 100%;
    margin-left: 0;
    margin-bottom: 32px;
  }
}
.manifestation-curve__col:first-child {
  margin-left: 0;
}
.manifestation-curve__title {
  display: flex;
  margin-bottom: 16px;
}
.manifestation-curve__title span {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  flex: 0 0 50%;
}
.manifestation-curve__title span:last-child {
  padding-left: 39px;
}

.manifestation-curve-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.manifestation-curve-item__positive {
  height: 30px;
  position: relative;
  background: transparent;
  border-radius: 30px;
  border: 1px solid #1DC71A;
  flex: 1 0;
}
.manifestation-curve-item__negative {
  height: 30px;
  position: relative;
  background: transparent;
  border-radius: 30px;
  border: 1px solid #F61137;
  flex: 1 0;
}
.manifestation-curve-item__scale {
  position: absolute;
  top: 0;
  border-radius: 30px;
  width: calc(100% + 2px);
  height: 100%;
  overflow: hidden;
}
.manifestation-curve-item__scale-inner {
  width: 100%;
  position: absolute;
  height: 100%;
}
.manifestation-curve-item__positive .manifestation-curve-item__scale-inner {
  right: 0;
  border-radius: 30px 0 0 30px;
  background: #1dc71a;
}
.manifestation-curve-item__negative .manifestation-curve-item__scale-inner {
  left: 0;
  border-radius: 0 30px 30px 0;
  background: #F61137;
}
.manifestation-curve-item__positive .manifestation-curve-item__scale {
  right: -1px;
}
.manifestation-curve-item__negative .manifestation-curve-item__scale {
  left: -1px;
}
.manifestation-curve-item__number {
  flex: 0 0 30px;
  height: 30px;
  margin: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .manifestation-curve-item__number {
    margin: 0 12px;
  }
}
.manifestation-curve-item__number span {
  line-height: 30px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid;
  border-radius: 50%;
}

.chart-box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .chart-box {
    flex-wrap: wrap;
  }
}

.chart-canvas {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .chart-canvas {
    flex: 0 0 100%;
    margin-bottom: 32px;
  }
}
.chart-canvas__inner {
  width: 396px;
  height: 396px;
}
@media screen and (max-width: 767px) {
  .chart-canvas__inner {
    width: 250px;
    height: 250px;
  }
}

.chart-legends {
  flex: 0 0 50%;
  display: flex;
}
@media screen and (max-width: 991px) {
  .chart-legends {
    flex: 0 0 100%;
  }
}

.legend-list {
  display: flex;
  flex-wrap: wrap;
}
.legend-list li {
  margin-bottom: 34px;
  flex: 0 0 50%;
}
.legend-list li:last-child {
  margin-bottom: 0;
}

.legend-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .legend-item {
    justify-content: center;
  }
}
.legend-item__color {
  flex: 0 0 32px;
  height: 10px;
}
.legend-item__percent {
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  margin-left: 12px;
}
.legend-item__title {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  margin-left: 3px;
}

.energy-points-couple {
  display: none;
}
.energy-points-couple .avatar-energy-link {
  position: absolute;
}
.energy-points-couple .avatar-energy-link__sector_1 {
  left: 7%;
  top: 27%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
.energy-points-couple .avatar-energy-link__sector_1 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_1 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_1 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -200%;
  font-weight: 500;
  font-size: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_1 li:before {
    font-size: 6px;
    left: -120%;
  }
}
.energy-points-couple .avatar-energy-link__sector_1 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 150%;
  font-weight: 400;
  font-size: 6px;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_1 li:after {
    font-size: 5px;
    left: 135%;
  }
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(1) {
  left: -13.3%;
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(2) {
  left: -11.5%;
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(3) {
  left: -9.2%;
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(4) {
  left: -6.4%;
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_1 li:nth-child(4):after {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(5) {
  left: -2.2%;
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(6) {
  left: 2%;
}
.energy-points-couple .avatar-energy-link__sector_1 li:nth-child(7) {
  left: 7%;
}
.energy-points-couple .avatar-energy-link__sector_2 {
  left: 19%;
  top: 16.2%;
  height: 6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
.energy-points-couple .avatar-energy-link__sector_2 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_2 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -250%;
  font-weight: 500;
  font-size: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_2 li:before {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_2 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 200%;
  font-weight: 400;
  font-size: 6px;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_2 li:after {
    font-size: 5px;
  }
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(1) {
  left: -14.3%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(1):before {
  top: -50%;
  left: -200%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(1):after {
  top: 108%;
  left: 148%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(2) {
  left: -5.5%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(2):before {
  top: -82%;
  left: -140%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(2):after {
  top: 105%;
  left: 100%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(3) {
  left: 4.2%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(3):before {
  top: -90%;
  left: -160%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(3):after {
  top: 115%;
  left: 100%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(4) {
  left: 13.6%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  top: 110%;
  left: 100%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_2 li:nth-child(4):after {
    font-size: 5px;
  }
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(4):before {
  top: -125%;
  left: -100%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(5) {
  left: 27.8%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(5):before {
  top: -125%;
  left: -130%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(5):after {
  top: 140%;
  left: 100%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(6) {
  left: 42%;
  top: 1%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(6):before {
  top: -120%;
  left: -150%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(6):after {
  top: 160%;
  left: 70%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(7) {
  left: 56%;
  top: 7%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(7):before {
  top: -150%;
  left: -100%;
}
.energy-points-couple .avatar-energy-link__sector_2 li:nth-child(7):after {
  top: 150%;
  left: 100%;
}
.energy-points-couple .avatar-energy-link__sector_3 {
  left: 55%;
  top: 16.2%;
  height: 6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
.energy-points-couple .avatar-energy-link__sector_3 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_3 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -250%;
  font-weight: 500;
  font-size: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:before {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 200%;
  font-weight: 400;
  font-size: 6px;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:after {
    font-size: 5px;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(1) {
  left: 28.7%;
  top: 5%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(1):before {
  top: -50%;
  left: 175%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(1):after {
  top: 65%;
  left: -250%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(1):after {
    top: 100%;
    left: -200%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(2) {
  left: 19.5%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(2) {
    left: 16.5%;
    top: -2%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(2):before {
  top: -82%;
  left: 165%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(2):after {
  top: 105%;
  left: -300%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(2):after {
    top: 100%;
    left: -200%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(3) {
  left: 6.2%;
  top: -5%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(3) {
    left: 6.2%;
    top: -3%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(3):before {
  top: -90%;
  left: 160%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(3):after {
  top: 135%;
  left: -200%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(3):after {
    top: 100%;
    left: -200%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(4) {
  left: -5.4%;
  top: -5%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  top: 140%;
  left: -225%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(4):after {
    font-size: 5px;
    top: 100%;
    left: -200%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(4):before {
  top: -125%;
  left: 140%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(5) {
  left: -17.2%;
  top: -3%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(5):before {
  top: -125%;
  left: 175%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(5):after {
  top: 160%;
  left: -180%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(5):after {
    top: 100%;
    left: -200%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(6) {
  left: -30%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(6):before {
  top: -120%;
  left: 150%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(6):after {
  top: 160%;
  left: -200%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(6):after {
    top: 100%;
    left: -200%;
  }
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(7) {
  left: -44%;
  top: 5%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(7):before {
  top: -150%;
  left: 100%;
}
.energy-points-couple .avatar-energy-link__sector_3 li:nth-child(7):after {
  top: 150%;
  left: -200%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_3 li:nth-child(7):after {
    top: 100%;
    left: -200%;
  }
}
.energy-points-couple .avatar-energy-link__sector_4 {
  left: 73.5%;
  top: 26.5%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.energy-points-couple .avatar-energy-link__sector_4 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_4 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_4 li:before {
    font-size: 6px;
    left: 150%;
  }
}
.energy-points-couple .avatar-energy-link__sector_4 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: -330%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_4 li:after {
    font-size: 5px;
    left: -240% !important;
  }
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(1) {
  left: -23%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(1):after {
  left: -280%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(2) {
  left: -18%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(3) {
  left: -13%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(4) {
  left: -9.2%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_4 li:nth-child(4):after {
    font-size: 5px;
  }
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(5) {
  left: -6.2%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(6) {
  left: -4.1%;
}
.energy-points-couple .avatar-energy-link__sector_4 li:nth-child(7) {
  left: -2.3%;
}
.energy-points-couple .avatar-energy-link__sector_5 {
  left: 73.5%;
  top: 43%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.energy-points-couple .avatar-energy-link__sector_5 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_5 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_5 li:before {
    font-size: 6px;
    left: 150%;
  }
}
.energy-points-couple .avatar-energy-link__sector_5 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: -300%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_5 li:after {
    font-size: 5px;
    left: -270% !important;
  }
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(1) {
  left: -2.3%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(2) {
  left: -4.2%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(2):after {
  left: -330%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(3) {
  left: -6%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(3):after {
  left: -330%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(4) {
  left: -8.7%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  left: -390%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_5 li:nth-child(4):after {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(5) {
  left: -12.4%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(5):after {
  left: -332%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(6) {
  left: -17.1%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(6):after {
  left: -380%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(7) {
  left: -23.3%;
}
.energy-points-couple .avatar-energy-link__sector_5 li:nth-child(7):after {
  left: -330%;
}
.energy-points-couple .avatar-energy-link__sector_6 {
  left: 51%;
  top: 55.6%;
  height: 5.6%;
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_6 {
    left: 49%;
    top: 55.6%;
    height: 5.6%;
    width: 25%;
  }
}
.energy-points-couple .avatar-energy-link__sector_6 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_6 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_6 li:before {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_6 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: 200%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_6 li:after {
    font-size: 5px;
  }
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(1) {
  left: 40.7%;
  top: 16%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(1):before {
  left: 158%;
  top: 83%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(1):after {
  left: -211%;
  top: -78%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(2) {
  left: 31.8%;
  top: 18%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(2):before {
  left: 155%;
  top: 107%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(2):after {
  left: -259%;
  top: -100%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(3) {
  left: 21%;
  top: 19%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(3):before {
  left: 132%;
  top: 113%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(3):after {
  left: -220%;
  top: -113%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(4) {
  left: 10.3%;
  top: 18%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  left: -252%;
  top: -131%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_6 li:nth-child(4):after {
    font-size: 5px;
  }
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(4):before {
  left: 119%;
  top: 121%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(5) {
  left: -1.2%;
  top: 15%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(5):before {
  left: 117%;
  top: 137%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(5):after {
  left: -205%;
  top: -101%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(6) {
  left: -13.8%;
  top: 12%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(6):before {
  left: 118%;
  top: 140%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(6):after {
  left: -228%;
  top: -91%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(7) {
  left: -25.6%;
  top: 6%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(7):before {
  left: 100%;
  top: 140%;
}
.energy-points-couple .avatar-energy-link__sector_6 li:nth-child(7):after {
  left: -184%;
  top: -75%;
}
.energy-points-couple .avatar-energy-link__sector_7 {
  left: 23%;
  top: 56.3%;
  height: 5.6%;
  width: 22%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_7 {
    left: 20%;
    top: 55.5%;
    height: 5.6%;
    width: 26%;
    transform: rotate(5deg);
  }
}
.energy-points-couple .avatar-energy-link__sector_7 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_7 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_7 li:before {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_7 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: 200%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_7 li:after {
    font-size: 5px;
  }
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(1) {
  left: 42.7%;
  top: -7%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(1):before {
  left: -60%;
  top: 141%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(1):after {
  left: 80%;
  top: -78%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(2) {
  left: 29.8%;
  top: -1%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(2):before {
  left: -36%;
  top: 138%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(2):after {
  left: 53%;
  top: -103%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(3) {
  left: 19%;
  top: 4%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(3):before {
  left: -95%;
  top: 135%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(3):after {
  left: 68%;
  top: -100%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(4) {
  left: 8.3%;
  top: 8%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
  left: 50%;
  top: -126%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_7 li:nth-child(4):after {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(4):before {
  left: -75%;
  top: 142%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(5) {
  left: -3.2%;
  top: 8%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(5):before {
  left: -63%;
  top: 143%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(5):after {
  left: 90%;
  top: -95%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(6) {
  left: -13.8%;
  top: 7%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(6):before {
  left: -122%;
  top: 140%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(6):after {
  left: 85%;
  top: -90%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(7) {
  left: -25.6%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_7 li:nth-child(7) {
    top: 0%;
  }
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(7):before {
  left: -145%;
  top: 125%;
}
.energy-points-couple .avatar-energy-link__sector_7 li:nth-child(7):after {
  left: 150%;
  top: -50%;
}
.energy-points-couple .avatar-energy-link__sector_8 {
  left: 7%;
  top: 42%;
  height: 8.6%;
  width: 23%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
.energy-points-couple .avatar-energy-link__sector_8 li {
  color: #ffffff;
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
}
.energy-points-couple .avatar-energy-link__sector_8 li span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.energy-points-couple .avatar-energy-link__sector_8 li:before {
  content: attr(data-value);
  display: block;
  position: absolute;
  white-space: nowrap;
  left: -180%;
  font-weight: 500;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_8 li:before {
    font-size: 6px;
    left: -110%;
  }
}
.energy-points-couple .avatar-energy-link__sector_8 li:after {
  content: attr(data-item);
  display: block;
  position: absolute;
  white-space: nowrap;
  font-weight: 400;
  font-size: 6px;
  left: 200%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_8 li:after {
    font-size: 5px;
    left: 140%;
  }
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(1) {
  left: 4.7%;
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(2) {
  left: -0.2%;
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(3) {
  left: -5%;
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(4) {
  left: -8.7%;
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(4):after {
  font-weight: 700;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-link__sector_8 li:nth-child(4):after {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(5) {
  left: -11.2%;
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(6) {
  left: -12.9%;
}
.energy-points-couple .avatar-energy-link__sector_8 li:nth-child(7) {
  left: -14.2%;
}

.energy-points-couple .avatar-energy-static-points li {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0px;
  color: #fff;
}
@media print {
  .energy-points-couple .avatar-energy-static-points li {
    color: #000000;
  }
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-static-points li {
    font-size: 6px;
  }
}
.energy-points-couple .avatar-energy-static-points_0 {
  left: 9%;
  top: 38.6%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-static-points_0 {
    top: 38%;
  }
}
.energy-points-couple .avatar-energy-static-points_10 {
  left: 18%;
  top: 23%;
}
.energy-points-couple .avatar-energy-static-points_20 {
  top: 15.1%;
  left: 48%;
}
.energy-points-couple .avatar-energy-static-points_30 {
  top: 23%;
  left: 78%;
}
.energy-points-couple .avatar-energy-static-points_40 {
  left: 87%;
  top: 38.6%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-static-points_40 {
    top: 38%;
  }
}
.energy-points-couple .avatar-energy-static-points_50 {
  top: 55.3%;
  left: 75.6%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-static-points_50 {
    top: 54.3%;
    left: 77.6%;
  }
}
.energy-points-couple .avatar-energy-static-points_60 {
  top: 61.8%;
  left: 48%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-static-points_60 {
    top: 61.5%;
  }
}
.energy-points-couple .avatar-energy-static-points_70 {
  top: 55.3%;
  left: 19.8%;
}
@media screen and (max-width: 767px) {
  .energy-points-couple .avatar-energy-static-points_70 {
    top: 54.3%;
    left: 18%;
  }
}

.couple-matrix-main-image.hide-on-screen {
  display: none;
}
@media print {
  .couple-matrix-main-image.hide-on-screen {
    display: block;
  }
}
.couple-matrix-main-image.hide-on-print {
  display: block;
}
@media print {
  .couple-matrix-main-image.hide-on-print {
    display: none;
  }
}

.avatarium-help {
  padding: 5px 0;
}
.avatarium-help.frontpage {
  padding: 25px 0 0;
}

@media screen and (max-width: 991px) {
  #get-extended-pdf-modal .modal-actions {
    padding-bottom: 60px;
  }
}

.delete-profile__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 24px;
}
.delete-profile__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 24px;
}
.delete-profile__action {
  margin-bottom: 24px;
}
.delete-profile__action > .button {
  margin-right: 12px;
}
.delete-profile__action > .button:last-child {
  margin-right: 0;
}

.line {
  height: 50px;
  max-width: 100%;
  margin: 0 auto 10px auto;
  line-height: 50px;
  font-size: 15px;
  color: white;
  padding: 0 0 0 10px;
  position: relative;
  background: transparent;
  border: 1px solid #8C7DC0;
  border-radius: 50px;
  font-weight: 900;
}
@media screen and (max-width: 991px) {
  .line {
    height: 36px;
    border-radius: 36px;
    line-height: 36px;
  }
}
.line h5 {
  background: #8C7DC0;
  height: 46px;
  transition: 0.7s;
  display: block;
  width: 100%;
  animation: animate 1 4s;
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 50px;
}
@media screen and (max-width: 991px) {
  .line h5 {
    height: 32px;
    border-radius: 36px;
  }
}
.line h6 {
  background: rgba(140, 125, 192, 0.5);
  height: 46px;
  transition: 0.7s;
  display: block;
  width: 100%;
  animation: animate 1 4s;
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 50px;
}
@media screen and (max-width: 991px) {
  .line h6 {
    height: 32px;
    border-radius: 36px;
  }
}

.line-box {
  padding: 24px;
  border: 1px solid #4F4F4F;
  border-radius: 12px;
}
@media screen and (max-width: 991px) {
  .line-box {
    padding: 12px;
  }
}

.line-item {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .line-item {
    margin-bottom: 20px;
  }
}
.line-item:last-child {
  margin-bottom: 0;
}

.line-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .line-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    margin-bottom: 10px;
  }
}
.line-title i {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: url("../img/info.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 12px;
}
@media screen and (max-width: 991px) {
  .line-title i {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-left: 8px;
  }
}

.wc-payment-form .wc-stripe-elements-field {
  display: block;
  padding: 15px 24px;
  border: 1px solid #4F4F4F;
  border-radius: 32px;
  width: 100%;
  max-width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.wc-payment-form .wc-stripe-elements-field:-webkit-autofill, .wc-payment-form .wc-stripe-elements-field:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}

.wc-credit-card-form .form-row {
  margin-bottom: 20px;
}

.wc-saved-payment-methods {
  background: #302F2F;
  padding: 16px;
  border-radius: 16px;
  margin: 24px 0;
}
.wc-saved-payment-methods > li {
  margin-bottom: 10px;
}
.wc-saved-payment-methods > li:last-child {
  margin-bottom: 0;
}
.wc-saved-payment-methods > li input[type=radio] {
  display: none;
}
.wc-saved-payment-methods > li input[type=radio] + label {
  background-image: url("../img/checkbox-round-empty.svg");
}
.wc-saved-payment-methods > li input[type=radio]:checked + label {
  background-image: url("../img/checkbox-round-fill.svg");
}
.wc-saved-payment-methods > li input[type=checkbox] {
  display: none;
}
.wc-saved-payment-methods > li input[type=checkbox] + label {
  background-image: url("../img/checkbox-empty.svg");
}
.wc-saved-payment-methods > li input[type=checkbox]:checked + label {
  background-image: url("../img/checkbox-fill.svg");
}
.wc-saved-payment-methods > li > label {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  padding-left: 28px;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left center;
}
.add-to-notes {
  cursor: pointer;
  background-image: url("../img/note.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  height: 20px;
  width: 20px;
  display: inline-block;
  color: transparent;
}
.add-to-notes img {
  display: block;
}
.add-to-notes.tab-icon {
  margin-left: 10px;
}

.create-note-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .create-note-head {
    flex-wrap: wrap;
  }
}

.create-note-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  padding-right: 10px;
}

.create-note-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .create-note-actions .dropzieMenu {
    left: 0;
  }
}
.create-note-actions button[disabled] {
  color: transparent;
  position: relative;
  background: linear-gradient(157.34deg, #3477F2 0.72%, #F5CCFC 99.19%);
}
.create-note-actions button[disabled]:after {
  content: "";
  display: block;
  background-image: url("../img/loading.gif");
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .create-note-actions .button {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
  .create-note-actions .button:last-child {
    margin-bottom: 0;
  }
}
.create-note-actions > * {
  margin-left: 24px;
}
.create-note-actions > *:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .create-note-actions {
    margin-top: 10px;
    flex-wrap: wrap;
  }
  .create-note-actions .dropzie {
    margin-left: 0;
  }
}

.practice-group-form-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 40px;
}

.practice-group-actions {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.practice-group-actions > * {
  margin-right: 24px;
}
.practice-group-actions > *:last-child {
  margin-right: 0;
}

.dark-mce div.mce-panel {
  background: rgb(34, 34, 34);
}
.dark-mce .mce-branding {
  display: none;
}
.dark-mce div.mce-statusbar {
  border-top: none;
  background: rgb(34, 34, 34);
}
.dark-mce .mce-toolbar .mce-ico {
  color: rgba(255, 255, 255, 0.5);
}
.dark-mce div.mce-toolbar-grp {
  border-bottom: 1px solid #292929;
}
.dark-mce div.mce-menubar {
  border-color: #292929;
}
.dark-mce .mce-btn.mce-active button, .dark-mce .mce-btn.mce-active:hover button, .dark-mce .mce-btn.mce-active i, .dark-mce .mce-btn.mce-active:hover i, .dark-mce .mce-btn:hover i {
  color: #292929;
}
.dark-mce > .mce-tinymce {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #4F4F4F;
}
.dark-mce div.mce-panel {
  display: block !important;
}

.lex-button-group {
  margin-top: 12px;
}
.lex-button-group > .button {
  margin-left: 12px;
}
.lex-button-group > .button:first-child {
  margin-left: 0;
}

.form-response-message {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  opacity: 0.8;
}
@media screen and (max-width: 991px) {
  .form-response-message {
    font-size: 16px;
    line-height: 24px;
  }
}
.already-purchased h6 {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  margin-bottom: 20px;
  color:rgba(255, 255, 255, 0.9);
}
.already-purchased p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color:rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.buy-now-banner-box {
  margin-bottom: 40px;
  display: none;
}
.buy-now-banner {
}
.buy-now-banner__inner {
  display: flex;
  align-items: center;
  padding: 32px;
  border-radius: 32px;
  backdrop-filter: blur(8px);
  position: relative;
  background: #302F2F;
}
.buy-now-banner__inner *:last-child {
  margin-left: 10px;
}
.buy-now-banner__inner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 32px;
  border: 1px solid transparent;
  background: linear-gradient(95.55deg, #4C82F4 24.4%, #E6C6FC 74.42%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.buy-now-banner__inner p {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color:rgba(255, 255, 255, 0.9);
  padding-right: 24px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .buy-now-banner__inner {
    flex-direction: column;
  }
  .buy-now-banner__inner .button {
    margin: 5px 0 !important;
  }
  .buy-now-banner__inner p {
    padding-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .buy-now-banner__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .buy-now-banner__inner p {
    padding-right: 0;
    margin-bottom: 24px;
  }
}
.table-downloads-column {
  display: flex;
}
.table-downloads-column .downloads-thead tr {
  display: flex;
  flex-direction: column;
}
.table-downloads-column .downloads-thead tr th {
  padding-left: 0;
}
.table-downloads-column tbody {
  padding-left: 50px;
  display: flex;
}
.table-downloads-column tbody tr {
  padding-right: 25px;
}
.table-downloads-column tbody tr:last-child {
  padding-right: 0;
}
.table-downloads-column tbody td {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
.table-downloads-column tbody .download-file .button {
  padding: 0;
  text-align: left;
}
.modal-preloader.show {
  display: block;
}
.modal-preloader {
  max-height: 300px;
  display: block;
  margin: auto;
}
.energy-modal-error {
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  padding-top: 32px;
  font-weight: 100;
}
.energy-modal-error strong {
  font-weight: 500;
}

[for="payment_method_stripe"] img {
  display: none;
}
.woocommerce-SavedPaymentMethods.wc-saved-payment-methods:empty {
  display: none;
}
#wc-stripe-upe-form {
  margin-top: 24px;
}
.resend-otp {
  font-size: 14px;
  opacity: 0.6;
}
.resend-otp-button {
  cursor: pointer;
}
.modal-cancellation .modal-actions {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}
.modal-cancellation .rates-list {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .modal-cancellation .rates-list {
    margin-left: 0;
    margin-right: 0;
  }
}
.modal-content__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0px;
  margin-bottom: 10px;
  color:rgba(255, 255, 255, 0.9)
}
.modal-content__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
  color:rgba(255, 255, 255, 0.7);
  max-width: 854px;
}
.profile-bonus {
  margin-bottom: 80px;
  max-width: 550px;
}
.profile-bonus__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #ffffff;
}
.profile-bonus__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 24px;
}
.form-box-bonus {
  padding: 24px;
  border-radius: 32px;
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #4F4F4F;
  backdrop-filter: blur(8px);
  margin: 20px 0;
}
.bonus-applied {
  text-align: center;
}
.bonus-applied img {
  width: 100px;
}
.bonus-applied p {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  margin-top: 10px;
}
.form-tip .success {
  display: flex;
  align-items: center;
}
.form-tip .success img {
  margin-right: 8px;
  margin-bottom: 2px;
}

.chatbot-float {
  cursor: pointer;
  position: fixed;
  left: 100px;
  bottom: 100px;
  z-index: 1;
  display: none;
}
.chatbot-float a {
  display: block;
}
.chatbot-float img {
  box-shadow: 0px 14px 34px 0px rgb(96 138 244);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .chatbot-float {
    right: 15px;
    bottom: 80px;
    left: auto;
  }
}
.grecaptcha-badge {
  display: none !important;
}
/*# sourceMappingURL=screen.css.map */
