.container {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 25px;
}
.user__info-container {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.form .block {
    width: 100%;
}

.features {
    margin-top: 125px;
}
.blur svg {
    cursor: pointer;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cards {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.cards .row_block {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cards p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    top: 2px;
}

.types {
    display: flex;
    align-items: center;
    gap: 30px;
}

.types .line {
    height: 70px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.types .type {
    display: flex;
    align-items: center;
    gap: 20px;
}

.types h3 {
    font-size: 18px;
    font-weight: bold;
    padding-top: 5px;
}
.circular-progress {
  --size: 70px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 3px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * pi * 2);
  --dash: calc((var(--progress) * var(--circumference)) / 100);
  /* animation: progress-animation 5s linear 0s 1 forwards; */
}

.circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-progress circle.bg {
  stroke: rgb(255, 255, 255, 0.3);
}

.circular-progress circle.fg {
  transform: rotate(90deg) scale(-1, 1);
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  transition: stroke-dasharray 0.3s linear 0s;
  stroke: #5394fd;
}

@property --progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes progress-animation {
  from {
    --progress: 0;
  }
  to {
    --progress: 50;
  }
}
/* Цвета для разных кругов */
.type:nth-child(1) .circular-progress circle.fg {
  stroke: #FF4191; /* Красный для любви */
}
.type:nth-child(3) .circular-progress circle.fg {
  stroke: #48CFCB; /* Зеленый для денег */
}
.type:nth-child(5) .circular-progress circle.fg {
  stroke: #FFAF00; /* Желтый для карьеры */
}

.types .img {
    position: relative;

    &:after {
        content: "";
        position: absolute;
        inset: 0;

        border-radius: 100%;
        background: conic-gradient(var(--c) var(--w), rgba(255, 255, 255, 0.1) 0%);

        transform: scaleX(-1);

        mask-image: url("/circle.svg");
        mask-size: 100% 100%;
        mask-composite: exclude;
    }
}

.types .img p {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    top: 2px;

    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;
}

.types .img svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.tab__container{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 25px;

}
.tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none; /* Для Internet Explorer и Edge */
}

/* Для Chrome, Safari и других WebKit-браузеров */
.tabs::-webkit-scrollbar {
    display: none;
}

/* Для Firefox */
.tabs {
    scrollbar-width: thin; /* Тонкая полоса прокрутки */
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent; /* Цвет полосы и трека */
}

.tabs .tab {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    transition: background 0.3s ease;
    box-sizing: border-box;
}
.tab_toggle__wrapper{
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    max-width: 330px;
    justify-content: space-between;
}
.tab_toggle__text{
    font-size: 18px;
    font-weight: 400;
    color: rgb(255, 255, 255) !important;
    text-decoration: none !important;
}
.tabs .tab:hover {
    border: 3px solid var(--light-accent-color);
    /* padding: 0.5rem 0.938rem;
    font-weight: 700; */
    text-shadow: 0 0 0 rgb(255, 255, 255), 0 0 0.5px rgb(255, 255, 255), 0 0 1px rgb(255, 255, 255);
    background: linear-gradient(90deg, #eb57ea 0%, #46abf9 100%);
    box-sizing: border-box; /* Добавлено для предотвращения изменения размера */
}

/* .tabs .tab:hover::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #eb57ea 0%, #46abf9 100%);
} */

.tabs .tab.active {
    border: 3px solid var(--light-accent-color);
    color: rgb(255, 255, 255);
    text-shadow: 0 0 0 rgb(255, 255, 255), 0 0 0.5px rgb(255, 255, 255), 0 0 1px rgb(255, 255, 255);
    background: linear-gradient(90deg, #eb57ea 0%, #46abf9 100%);
}
/*
.tabs .tab.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #eb57ea 0%, #46abf9 100%);
} */

.texts {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 44px 50px;
    border-radius: 20px;
    min-height: 350px;
}
.lockedblock {

    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 44px 50px;
    border-radius: 20px;
    min-height: 350px;
}
.texts h4 {
    margin-bottom: 21px;
    font-size: 32px;
    font-weight: bold;
}

.texts p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.locked .blur {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 3, 66, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.locked h6 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.adaptive {
    display: none;
}

.bg_cover {
    overflow: hidden;
    width: 1007px;
    height: auto;
    position: absolute;
    top: 200px;
    right: -100px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: -1;
}

.bg_cover img {
    width: 100%;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.detailed {
    overflow-x: hidden;
}

.detailed h6 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 21px;
}

.detailed p.detailed {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 41px;
}

.detailed .detailed_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.breadcrumbs__container{
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
/*# sourceMappingURL=card.css.map */
.herocard__button{
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}
.herocard__button:focus,
.herocard__button:active,
.herocard__button:hover{
    border: 1px solid rgb(255, 255, 255, 0.01);
    background: linear-gradient(90deg, #eb57ea 0%, #46abf9 100%);
}
.herocard__button-icon{
    width: 24px;
    height: 24px;
}
.herocard__button-container{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.starfield {
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .stars:nth-child(2) {
    animation-duration: 25s;
    opacity: 0.5;
  }

  .stars:nth-child(3) {
    animation-duration: 50s;
    opacity: 0.25;
  }
  @keyframes twinkle {
    0%, 100% {
      opacity: 1;
      background: white;
    }
    50% {
      opacity: 0.5;
      background: rgba(255, 255, 255, 0.5);
    }
  }

  .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
.tab-hidden {
    display: none;
}
@media screen and (max-width: 1000px) {
    .chose {
        margin-bottom: 0;
    }

    .features {
        margin-top: 56px;
    }

    .form_input {
        text-align: left;
    }

    .features img.bg {
        display: block;
    }

    .locked .blur {
        align-items: center;
        text-align: center;
        justify-content: flex-start;
        padding: 60px 43px;
    }

    .locked .blur svg {
        width: 48px;
        height: 60px;
    }

    .locked .blur h6 {
        font-size: 18px;
    }

    -content {
        overflow: hidden;
        margin-top: 30px;
    }

    .pc {
        display: none;
    }

    .adaptive {
        position: relative;
        top: calc(60vh - 30vw);
        display: block;
    }

    .bg_cover {
        top: 0;
        right: 0;
        width: 100%;
        overflow: visible;
    }

    .user__info-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .user__info-container img{
        width: 70vw;
        max-width: 220px ;
        margin-top: 90px;
        /* max-width: none; */
        position: absolute;
        z-index: -1;
    }
    .user__info-container .col{
        margin-top: 350px;
    }
    .col.hidden-desktop {
        align-self: start;
        padding: 0 15px;
        width: 100%;
        overflow: scroll;
        margin-top: 0px;
    }
    .col.hidden-desktop  {
        overflow: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE и Edge */
    }
    .col.hidden-desktop ::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .row img.main {
        width: 140px;
        height: 140px;
    }

    h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .cards {
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .cards p {
        font-size: 14px;
    }

    .cards svg {
        width: 20px;
        height: 20px;
    }

    .row_block:first-child {
        display: none;
    }

    .type {
        flex-direction: column;
        gap: 7px;
    }

    .type h3 {
        font-size: 14px;
    }

    .type .img {
        width: 60px;
        height: 60px;
    }

    .type .img img {
        top: -90px;
        width: 100%;
        height: 100%;
    }
    .type .img p {
        font-size: 18px;
        width: 70px;
    }
    .tab__container{
        gap: 2px;
    }
    .tabs {
        display: flex;
        overflow: scroll;
        padding-left: 15px;
        padding-right: 15px;
        gap: 8px;
        justify-content: flex-start;
        padding-bottom: 5px;
    }
    .tabs::-webkit-scrollbar {
        display: none; /* Убираем видимый ползунок */
    }

    .tabs .tab {
        border-radius: 12px;
        font-size: var(--button-font-size) !important;
    }

    .texts {
        margin: 0 15px;
        padding: 15px 20px;
        width: unset;
    }

    .texts h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .main{
        opacity: 0.7;
        max-width: 430px !important;
    }
    .texts p {
        font-size: 14px;
        line-height: 1.5;
    }
    .herocard__button-container{
        display: flex ;
        flex-direction: row;
        gap: 4px;
        align-items: center;
    }
    .herocard__button{
        align-items: center;
        padding: 12px 10px;
        background:rgba(255, 255, 255, 0.1) ;
        backdrop-filter: blur(12px);
    }
    .herocard__button .herocard__button-icon svg{
        width: 16px;
    }
    .herocard__button .herocard__button-text{
        font-size: 14px;
        white-space: nowrap;
    }
    .tab_toggle__wrapper{
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        margin-left: 15px;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        border: 3px solid rgba(255, 255, 255, 0.1);
        max-width: 280px;
        justify-content: space-between;
    }
    .tab_toggle__text{
        font-size: 14px;
        font-weight: 400;
        color: rgb(255, 255, 255) !important;
        text-decoration: none !important;
    }
}
