body {
    font-family: Inter;
    background: #161617;
    min-height: 100vh
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

main {
    display: flex;
    flex: 1 1 100%
}

aside {
    position: relative;
    padding: 20px;
    border-right: 1px solid var(--Cold-Gray-800, #3d3d3d);
    background: var(--Cold-Gray-950, #161617);
    box-shadow: 1px 0 4px 0 rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    max-width: 270px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    transition: .2s linear
}

aside ul {
    list-style: none;
}

@media (max-width:991px) {
    aside {
        display: none
    }
}

aside .logo {
    margin-bottom: 54px
}

aside ul li {
    margin-bottom: 24px
}

aside ul li a {
    color: var(--Cold-Gray-500, #909090);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px;
    transition: .2s linear
}

aside ul li a:hover svg path {
    fill: #B6F802;
}

aside ul li a:hover {
    color: #fff
}

aside .collapce {
    cursor: pointer;
    position: absolute;
    top: 60px;
    right: -24px;
    height: 24px;

}

aside .collapce img {
    width: 48px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

aside ul li span {
    display: inline-block;
    max-width: 160px;
    overflow: hidden;
    white-space: nowrap;
    opacity: 1;
    transition: max-width .2s ease, opacity .2s ease
}

.collapced aside {
    max-width: 78px
}

.collapced aside ul li a {
    gap: 0
}

.collapced aside ul li span {
    opacity: 0;
    max-width: 0
}

.collapced aside .collapce {
    transform: rotate(180deg)
}

.main-content {
    transition: 0.2s linear;
    width: 100%;
}

@media(min-width: 991px) {
    .main-content {
        width: calc(100% - 270px);
    }

    .collapced .main-content {
        width: calc(100% - 78px);
    }
}


.button {
    color: var(--Cold-Gray-950, #161617);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background: var(--Toxic-Green-400, #b6f802);
    text-decoration: none
}

.button:hover {
    background: var(--Toxic-Green-400, #c0fd17);
}

.button.button--outline {
    background: transparent;
    border: 1px solid #b6f802;
    color: #b6f802;
}

.button.button--outline:hover {
    border: 1px solid #b6f802;
    background: #b6f802;
    color: black;
}

.header {
    width: 100%;
    padding: 8px 16px;
    border-bottom: 1px solid var(--Cold-Gray-800, #3d3d3d)
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px
}

@media (min-width:992px) {
    .header .logo {
        display: none
    }
}

.header .logo {
    margin-right: auto
}

@media (max-width:991px) {
    .header .button {
        display: none
    }
}

.header .language {
    padding: 8px;
    border-radius: 30px;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    width: 40px;
    height: 40px
}

.header a.alarm {
    padding: 8px;
    border-radius: 30px;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.header a.alarm svg {
    width: 24px;
    height: 24px
}

.header .profile {
    border-radius: 30px;
    border: 1px solid var(--Cold-Gray-500, #909090);
    background: var(--Cold-Gray-800, #3d3d3d);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Cold-Gray-500, #909090);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none
}

.page-header {
    padding: 20px 16px;
    display: flex;
    align-items: center
}

.page-header h1 {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 16px
}

.page-header h1 a {
    display: flex;
    margin-top: 3px;
    max-height: 24px
}

.page-header .add {
    color: var(--Toxic-Green-400, #b6f802);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: auto;
    text-decoration: none
}

.my-challenge__tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px
}

.my-challenge__tabs a {
    padding: 6px 10px;
    overflow: hidden;
    color: var(--Cold-Gray-0, #fff);
    text-align: center;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    border-radius: var(--6, 6px)
}

.my-challenge__tabs a.active {
    background: var(--Cold-Gray-800, #3d3d3d)
}

.my-challenge__tabs a:hover {
    color: #99A0AC;
}

body {
    display: flex;
    flex-direction: column
}

.footer {
    margin-top: auto;
    padding: 50px 16px;
    color: var(--Cold-grey-0, #fff);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border-top: 1px solid var(--Cold-Gray-800, #3d3d3d)
}

.challenge-table {
    padding: 30px 16px
}

.challenge-table-main {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative
}

.challenge-table-main .status {
    min-width: 50px;
    padding: 2px 8px;
    color: var(--Violet-300, #c3b5fd);
    border-radius: var(--XS, 4px);
    background: var(--Violet-800, #5720b7);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-align: center
}

.challenge-table-main .status.pending {
    background: #5720b7;
    color: #c3b5fd
}

.challenge-table-main .status.won {
    background: #095c37;
    color: #73e2a3
}

.challenge-table-main .status.loss {
    background: #97180c;
    color: #f4676b
}

.challenge-table-main .number {
    color: var(--Blue-400, #528bff);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.challenge-table-main .number:hover {
    color: #B2CCFF;
}

.challenge-table-main .number:hover svg path {
    stroke: #B2CCFF;
}

.challenge-table-main::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 36px;
    background: #3d3d3d;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.challenge-table .button {
    padding: 8px 16px;
    white-space: nowrap
}

.challenge-table__row {
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    background: var(--Cold-Gray-900, #1a1a1a);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    margin-bottom: 16px;
    grid-template-columns: minmax(200px, 300px) 1fr 1fr 1fr 1fr 147px;
    align-items: center
}

.challenge-table__row>div {
    padding: 16px
}

.challenge-table__row .title {
    overflow: hidden;
    color: var(--Cold-Gray-0, #fff);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 4px
}

.challenge-table__row .value {
    overflow: hidden;
    color: var(--Cold-Gray-500, #909090);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

@media (max-width:991px) {
    .challenge-table__row {
        grid-template-columns: 1fr;
        background: 0 0;
        padding: 8px;
        position: relative
    }

    .challenge-table__row .button {
        position: absolute;
        top: 8px;
        right: 8px;
        width: -moz-max-content;
        width: max-content;
        padding: 6px 16px;
        font-size: 14px
    }

    .challenge-table__row .title {
        font-size: 14px
    }

    .challenge-table__row .challenge-table-main::before {
        display: none
    }

    .challenge-table__row .challenge-table-main {
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: flex-start
    }

    .challenge-table__row>.challange-table-secondary {
        padding: 4px 12px;
        background: #1a1a1a;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between
    }

    .challenge-table__row>.challange-table-secondary .value {
        font-size: 14px
    }

    .challenge-table__row>.challange-table-secondary:nth-child(2) {
        padding-top: 16px;
        border-radius: 16px 16px 0 0;
        margin-top: 16px
    }

    .challenge-table__row>.challange-table-secondary:nth-child(5) {
        padding-bottom: 16px;
        border-radius: 0 0 16px 16px
    }

    .challenge-table__row>div {
        padding: 0
    }
}

@media (max-width:540px) {
    .challenge-table__row .button {
        position: static;
        width: 100%
    }

    .challenge-table__row .challenge-table-main {
        justify-content: space-between;
        width: 100%
    }
}

.challenge-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 50px 16px
}

.challenge-empty .empty-text {
    color: var(--Cold-Gray-800, #3d3d3d);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px
}

.challenge-buy {
    padding: 32px 16px;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 24px
}

.challenge-buy__title {
    color: var(--Cold-grey-0, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 24px
}

.challenge-buy__options-group {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.challenge-buy__options-group:last-child {
    margin-bottom: 0
}

.challenge-buy__options-input input {
    display: none
}

.challenge-buy__options-input label {
    cursor: pointer;
    color: var(--Cold-Gray-0, #fff);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    border-radius: 8px;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    background: var(--Cold-Gray-900, #1a1a1a);
    padding: 24px;
    transition: .2s linear;
    display: flex;
    align-items: center;
    justify-content: center
}

.challenge-buy__options-input label:hover {
    border-color: #b6f802
}

.challenge-buy__options-input input:checked+label {
    border: 1px solid var(--Toxic-Green-400, #b6f802);
    background: var(--Toxic-Green-900, #334d0a)
}

.challenge-buy__add-options {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #b6f802
}

.challenge-buy__select-wrap {
    margin-bottom: 16px
}

.challenge-buy__select-wrap:last-child {
    margin-bottom: 0
}

.challenge-buy__payment {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    margin-top: 16px;
    grid-column: span 2
}

.challenge-buy__payment .total {
    color: var(--Cold-grey-0, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 16px
}

.challenge-buy__payment .total .price {
    color: var(--Toxic-Green-400, #b6f802);
    font-family: Unbounded;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%
}

.challenge-buy__payment .checkout-button {
    width: 100%;
    font-size: 24px;
    padding: 20px
}

.challenge-buy__payment .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.challenge-buy__payment .input-row .input-wrapper .input {
    display: flex;
    align-items: center;
    gap: 12px
}

.challenge-buy__table {
    grid-column: span 2;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    margin-top: 16px;
    overflow: hidden;
    border-radius: 16px
}

.challenge-buy__table-inner {
    overflow-x: auto
}

.challenge-buy__table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--Cold-Gray-800, #3d3d3d)
}

.challenge-buy__table-row:last-child {
    border-bottom: none
}

.challenge-buy__table-row>div {
    padding: 24px 20px;
    min-width: 200px
}

.challenge-buy__table-row>div:not(:first-child) {
    color: var(--Cold-Gray-0, #fff);
    text-align: center;
    font-family: Unbounded;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%
}

.challenge-buy__table-row>div:first-child {
    color: var(--Cold-Gray-0, #fff);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.challenge-buy__table-header>div {
    font-family: Unbounded !important;
    background: var(--Cold-Gray-900, #1a1a1a);
    padding-top: 30px;
    padding-bottom: 30px
}

@media (max-width:991px) {
    .challenge-buy {
        grid-template-columns: 1fr
    }

    .challenge-buy .challenge-buy__payment,
    .challenge-buy .challenge-buy__table {
        grid-column: span 1
    }

    .challenge-buy .challenge-buy__options-group,
    .challenge-buy .challenge-buy__payment .input-row {
        grid-template-columns: 1fr
    }

    .challenge-buy .challenge-buy__title {
        font-size: 18px
    }
}

.tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px
}

.tooltip svg {
    display: block
}

.tooltip-content {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translate(-50%, -4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
    z-index: 10;
    min-width: 225px;
    color: var(--Cold-Gray-0, #fff);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 2px 8px;
    border-radius: var(--Tooltip-borderRadius, 6px);
    background: var(--Cold-Gray-800, #3d3d3d)
}

.tooltip-content::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: inherit
}

.tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition: opacity .15s ease, transform .15s ease, visibility 0s
}

.label {
    color: #c7c7c7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
    display: block
}

select {
    overflow: hidden;
    color: var(--Cold-Gray-600, #6a6a6a);
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    background-color: transparent;
    padding: 16px;
    border-radius: var(--L, 16px);
    border: 1px solid var(--Cold-Gray-700, #555);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9L12 15L6 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center
}

input {
    overflow: hidden;
    color: var(--Cold-Gray-600, #6a6a6a);
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    background-color: transparent;
    padding: 16px;
    border-radius: var(--L, 16px);
    border: 1px solid var(--Cold-Gray-700, #555);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0
}

.challenge-stat__tabs {
    width: 100%;
    border-bottom: 1px solid var(--Cold-Gray-800, #3d3d3d);
    display: flex;
    padding-left: 16px;
    padding-right: 16px
}

.challenge-stat__tabs a {
    overflow: hidden;
    color: var(--Cold-Gray-500, #909090);
    text-align: center;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 10px;
    display: inline-flex;
    margin-bottom: -1px;
    text-decoration: none
}

.challenge-stat__tabs a.active {
    color: #fff;
    border-bottom: 2px solid var(--Toxic-Green-400, #b6f802)
}

.challenge-stat__main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px
}

.challenge-stat__main-block {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    background: var(--Cold-Gray-900, #1a1a1a);
    display: flex;
    flex-direction: column;
    gap: 16px
}

.challenge-stat__main-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.challenge-stat__main-row span {
    color: #909090
}

.challenge-stat__main-row .value {
    color: #fff
}

.challenge-stat__main-row .value.green {
    color: #3ccb7f
}

@media (max-width:991px) {
    .challenge-stat__main {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.challenge-progress {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    background: var(--Cold-Gray-900, #1a1a1a);
    width: calc(100% - 32px);
    margin-left: 16px
}

@media (max-width:640px) {
    .challenge-progress {
        display: none
    }
}

.challenge-progress__title {
    color: var(--Cold-Gray-0, #fff);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px
}

.challenge-progress__subtitle {
    color: var(--Cold-Gray-500, #909090);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.challenge-progress__blocks {
    display: flex;
    justify-content: space-between;
    padding-top: 64px;
    position: relative;
}

.challenge-progress__blocks-progress {
    position: absolute;
    top: 39px;
    background: #352651;
    height: 4px;
    left: 0;
    width: calc(100% - 195px);
}

.challenge-progress__blocks-progress-line {
    display: block;
    height: 100%;
    width: 50%;
    background: #7839EE;
}

.challenge-progress__blocks-item {
    position: relative;
}

.challenge-progress__blocks-item::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='16' fill='%23352651'/%3E%3Cpath d='M16 7.25C18.2999 7.25018 20.166 9.1171 20.166 11.417V13.083H21C21.9165 13.0832 22.666 13.8334 22.666 14.75V23.083C22.666 23.9996 21.9165 24.7498 21 24.75H11C10.0833 24.75 9.33301 23.9997 9.33301 23.083V14.75C9.33301 13.8333 10.0833 13.083 11 13.083H11.833V11.417C11.833 9.11699 13.7 7.25 16 7.25ZM16 17.25C15.0833 17.25 14.333 18.0003 14.333 18.917C14.3332 19.8335 15.0834 20.583 16 20.583C16.9164 20.5828 17.6658 19.8334 17.666 18.917C17.666 18.0004 16.9165 17.2502 16 17.25ZM16 8.91699C14.6167 8.91699 13.5 10.0337 13.5 11.417V13.083H18.5V11.417C18.5 10.0338 17.3832 8.91717 16 8.91699Z' fill='%236927DA'/%3E%3C/svg%3E%0A");
    width: 32px;
    height: 32px;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px)
}

.challenge-progress__blocks-item {
    max-width: 195px;
    width: 100%
}

.challenge-progress__blocks-item.done {
    position: relative
}

.challenge-progress__blocks-item.done::before {
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='16' fill='%237839EE'/%3E%3Cpath d='M16 7.66675C20.5999 7.66675 24.3338 11.3999 24.334 15.9998C24.334 20.5998 20.6 24.3337 16 24.3337C11.4001 24.3336 7.66699 20.5996 7.66699 15.9998C7.66717 11.4 11.4003 7.66692 16 7.66675ZM21.2422 12.075C20.9173 11.75 20.3924 11.7502 20.0674 12.075L14.334 17.8083L11.9258 15.408C11.6008 15.083 11.075 15.083 10.75 15.408C10.594 15.5636 10.5069 15.7754 10.5068 15.9958C10.5068 16.2163 10.594 16.428 10.75 16.5837L13.7422 19.575C14.0672 19.8999 14.6003 19.8999 14.917 19.575L21.2422 13.2498C21.5669 12.9247 21.5671 12.3999 21.2422 12.075Z' fill='white'/%3E%3C/svg%3E%0A");

}

.challenge-progress__blocks-item span {
    color: var(--Cold-Gray-0, #fff);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px
}

.challenge-progress__blocks-item ul {
    color: var(--Cold-Gray-400, #b5b5b5);
    padding-top: 8px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    padding-left: 14px
}

.challenge-progress__blocks-item ul li {
    margin-bottom: 4px
}

.challenge-stat__table {
    border-radius: 16px;
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    background: var(--Cold-Gray-900, #1a1a1a);
    padding: 16px
}

.challenge-stat__table-wrap {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px
}

@media (max-width:640px) {
    .challenge-stat__table {
        overflow-x: auto
    }
}

.challenge-stat__table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--Cold-Gray-800, #3d3d3d)
}

.challenge-stat__table-row:last-child {
    border: none
}

.challenge-stat__table-row>div {
    padding: 16px;
    overflow: hidden;
    color: var(--Cold-Gray-0, #fff);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

@media (max-width:640px) {
    .challenge-stat__table-row>div {
        min-width: 135px
    }
}

.challenge-stat__table-row .status.completed {
    color: #16b364
}

.challenge-stat__table-row .status.not-passed {
    color: #f4676b
}

.challenge-stat__table-row:first-child>div {
    color: #909090
}

.challenge-stat__main-row span {
    display: flex;
    align-items: center;
    gap: 8px
}

.challenge-stat__main-block .progress-bar {
    width: 100%;
    height: 12px;
    border-radius: 16px;
    display: flex;
    overflow: hidden
}

.challenge-stat__main-block .progress-bar div {
    height: 100%
}

.challenge-stat__main-block .progress-bar .green {
    background: #3ccb7f
}

.challenge-stat__main-block .progress-bar .red {
    background: #ef454a
}

.challenge-statement__table-wrapper {
    padding: 16px
}

.challenge-statement__table-header {
    border: 1px solid var(--Cold-Gray-800, #3d3d3d);
    border-radius: 16px 16px 0 0;
    padding: 16px;
    display: flex
}

.challenge-statement__table-header .button {
    border: 1px solid #b6f802;
    background: 0 0;
    color: #b6f802;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto
}


.challenge-statement__table-row {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid var(--Cold-Gray-800, #3D3D3D);
}

.challenge-statement__table-row:last-child {
    border-bottom: none;
}

.challenge-statement__table-content {
    padding: 16px;
    overflow-x: auto;

    border-radius: 0 0 16px 16px;
    border: 1px solid var(--Cold-Gray-800, #3D3D3D);
    border-top: none;
}

.challenge-statement__table-row div {
    overflow: hidden;
    color: var(--Cold-Gray-500, #909090);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    padding: 16px;
    min-width: 130px;
}

.challenge-statement__table-row:not(:first-child)>div {
    overflow: hidden;
    color: var(--Cold-Gray-0, #FFF);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}


:root {
    --xf-header-h: 72px;
}

/* реальна висота хедера підставляється JS-ом */

.xf-notify {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.xf-notify.is-open {
    pointer-events: auto;
}

.xf-notify__backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--xf-header-h);
    bottom: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: .2s ease;
    pointer-events: none;
}

.xf-notify.is-open .xf-notify__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.xf-notify__panel {
    position: fixed;
    right: 0;
    top: var(--xf-header-h);
    height: calc(100svh - var(--xf-header-h));
    max-width: 600px;
    width: 100%;
    background: #141519;
    border-left: 1px solid #232732;
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .35);
}

.xf-notify.is-open .xf-notify__panel {
    transform: none;
}

.xf-notify__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #232732;
    color: #e5e7eb;
    font-weight: 600;
}

.xf-notify__title {
    font-size: 18px;
    letter-spacing: .2px;
    font-weight: 500;
}

.xf-notify__close {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.xf-notify__body {
    flex: 1 1 auto;
    overflow: auto;
}

.nf-list {
    padding: 10px 12px 76px;
}

/* запас под нижню плашку */
.nf-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #17181d;
    border: 1px solid #232732;
    border-radius: 12px;
    padding: 14px;
    margin: 10px 0;
    text-decoration: none;
    color: #e5e7eb;
    transition: background .15s ease, border-color .15s ease;
}

.nf-item:hover {
    background: #1b1f22;
    border-color: #2c3341;
}

.nf-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--xf-green);
    color: #161617;
    flex: 0 0 36px;
    box-shadow: 0 0 0 3px rgba(182, 248, 2, .1);
}

.nf-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nf-title {
    font-weight: 600;
    line-height: 1.25;
    font-size: 18px;
    margin-bottom: 4px;
}

.nf-time {
    font-size: 12px;
    color: #a0a7b3;
}

/* нижня панель */
.nf-bottom {
    position: sticky;
    bottom: 0;
    background: #141519;
    border-top: 1px solid #232732;
    padding: 12px;
    display: flex;
    justify-content: flex-end;
}

.nf-read {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #2a2f3d;
    background: #191b21;
    color: #e5e7eb;
    cursor: pointer;
    font-weight: 600;
}

/* блокування скролу фону при відкритті */
body.xf-notify-open {
    overflow: hidden;
}

.table-scroll {
    overflow-x: auto;
    /* для Firefox */
    scrollbar-width: thin;
    scrollbar-color: #3d3d3d transparent;
}




<style>.xf-settings {
    padding: 24px
}

.xf-settings .container {
    max-width: none;
    margin: 0;
    padding: 0
}

.xf-card {
    padding: 26px;
    background: #1A1A1A;
    border: 1px solid #3D3D3D;
    border-radius: 16px;
    width: calc(100% - 32px);
    margin-left: 16px;
}

.xf-card .challenge-stat__tabs {
    padding-left: 0;
}



.xf-settings__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.xf-settings__title {
    font-size: 18px;
    font-weight: 600
}

.btn-back {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--xf-stroke);
    background: #161617;
    color: #9CA3AF
}

.xf-kyc-callout {
    background: #332F3B;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 18px;
    margin-bottom: 12px;
    border: 1px solid #7839EE;
}

.xf-kyc-callout__title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 22px;
    color: #fff
}



.xf-kyc-callout__desc {
    color: #fff;
    font-size: 14px
}

.status-chip {
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    background: #EF454A;
    color: #4E0A03
}

#kycBanner[data-status="verified"] .status-chip {
    background: #21310a;
    color: #b6f802;
    border-color: #2e3e12
}

.xf-tabs__nav {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-bottom: 1px solid var(--xf-stroke)
}

.xf-tab {
    background: #161617;
    border: 1px solid var(--xf-stroke);
    border-radius: 8px;
    padding: 8px 12px;
    color: #e5e7eb;
    cursor: pointer
}

.xf-tab.is-active {
    background: #1c1e24;
    border-color: #2c313e
}

.xf-tabs__panel {
    display: none;
    padding: 24px 0px;
}

.xf-tabs__panel.is-active {
    display: block
}

.label {
    font-size: 12px;
    color: #e5e7eb;
    margin-bottom: 6px
}

.pi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

@media (max-width:1100px) {
    .pi-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:700px) {
    .pi-grid {
        grid-template-columns: 1fr
    }
}

.input--phone {
    display: flex;
    gap: 8px;
    align-items: center
}

/* Documents */
.docs-list {
    padding: 6px
}

.doc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #121418;
    border: 1px solid var(--xf-stroke);
    border-radius: 12px;
    padding: 14px 16px;
    margin: 12px 0
}

.doc-title {
    font-weight: 600
}

.doc-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.doc-accept {
    color: #a0a7b3;
    font-size: 14px;
    margin: 18px 6px
}

.doc-accept__title {
    color: #e5e7eb;
    margin-bottom: 6px
}

.doc-save {
    display: flex;
    justify-content: center;
    margin: 18px 0
}

.doc-row.is-ok {
    border-color: #2e4a1a;
    background: #121714
}

.doc-row.is-ok .doc-title {
    color: #b6f802
}

/* Security */
.sec-block {
    max-width: 960px
}

.sec-title {
    font-weight: 600;
    margin-bottom: 6px
}

.sec-desc {
    color: #a0a7b3;
    margin-bottom: 12px
}


.xf-tabs__panel .form-actions {
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.xf-tabs__panel .form-actions .button {
    width: max-content;
}

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