@import url("main-fonts.css");
button {all:unset;}button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}
button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    outline: none;
    box-shadow: none;
    text-align: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: inherit;
}
:root {
    --bar-start: #29657b;
    --bar-end: #2084d5;
    --border-card: #e1e2e7;
    --success: #1b9e65;
    --error: #ca2a2a;
    --warning: #f27f00;
    --info: #075ea3;
    --info-adm: #3b94da;
    --color-card-blue: #2476b0;
    --main-color: #2084d5;
    --main-color-active: #68a9de;
    --body-background: #edeef3;
    --body-background-card: #fdfdfd;
    --body-color: #222;
    --body-color-reverse: #fdfdfd;
    --body-color-mute: #666;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-border-active: rgba(0, 0, 0, 0.2);
    --menu-top-background: #e7eaf0;
    --menu-bottom-background: linear-gradient(25deg, #f5f5f5 0%, #eef6ff 100%);
    --background-card-blue: #11568c;
    --background-card-main: linear-gradient(25deg, #29657b 0%, #2084d5 100%);
    --background-card-head: linear-gradient(25deg, #29657b 0%, #2084d5 100%);
    --background-card-success: #009252;
    --gap: 14px;
    --radius-card: 5px;
}
body,
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    padding: 0;
    max-width: 769px;
    margin: 0 auto;
    font-family: "Roboto";
    background-color: var(--body-background);
    color: var(--body-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
}
body {
    position: relative;
    min-height: 100%;
}
#main {
    position: relative;
}

.card {
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    padding: 1.3rem 1rem;
    border: 1px solid var(--border-card);
}

.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: visibility 0s 0.3s, background-color 0.1s;
    -o-transition: visibility 0s 0.3s, background-color 0.1s;
    transition: visibility 0s 0.3s, background-color 0.1s;
}
body[aria-busy="true"] .preloader {
    background-color: rgba(255,255,255,0.3);
    z-index: 150;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: background-color 0.3s ease 0.3s;
    -o-transition: background-color 0.3s ease 0.3s;
    transition: background-color 0.3s ease 0.3s;
}

.loader {
    position: relative;
    top: -4rem;
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: var(--body-background) #0000;
    animation: l16 1s infinite linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: visibility 0s 0.3s, opacity 0.1s;
    -o-transition: visibility 0s 0.3s, opacity 0.1s;
    transition: visibility 0s 0.3s, opacity 0.1s;
}
.loader::before,
.loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}
.loader::before {
    border-color: var(--main-color) #0000;
    animation: inherit; 
    animation-duration: .5s;
    animation-direction: reverse;
}
.loader::after {
    margin: 8px;
}
@keyframes l16 { 
    100%{transform: rotate(1turn)}
}
body[aria-busy="true"] .loader {
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.3s ease 0.3s;
    -o-transition: opacity 0.3s ease 0.3s;
    transition: opacity 0.3s ease 0.3s;
    opacity: 1;
}

a {
    text-decoration: none;
    color: var(--body-color);
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
a:hover, a:active {
    text-decoration: none;
}
.menu-bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    max-width: 769px;
    margin: 0 auto;
}
.menu-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    height: 4.5rem;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(80,80,80,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(80,80,80,0.75);
    box-shadow: 0px 0px 5px 0px rgba(80,80,80,0.75);
    background: var(--menu-bottom-background);
    border-radius: 1.5rem 1.5rem 0 0;
}
.menu-bottom-btn {
    position: relative;
    width: 100%;
    height: 100%;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-bottom-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    justify-content: center;
    align-items: center;
}
.menu-bottom-btn .menu-bottom-title {
    color: var(--body-color-mute);
    font-size: 0.9rem;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.menu-bottom-btn.active .menu-bottom-title {
    color: var(--body-color);
}
.menu-bottom-btn svg {
    width: 2rem;
    height: 2rem;
}
.menu-bottom-btn svg path:not(.menu-bottom-fill) {
    stroke: var(--body-color-mute);
}
.menu-bottom-btn.active svg:not(.n2-nostroke) path:not(.menu-bottom-fill) {
    stroke: var(--main-color);
}
.menu-bottom-btn svg.n2-nostroke {
    fill: var(--body-color-mute);
}
.menu-bottom-btn.active svg.n2-nostroke {
    fill: var(--main-color);
}
.menu-bottom-btn svg path.menu-bottom-fill {
    fill: var(--body-color-mute);
}
.menu-bottom-btn.active svg path.menu-bottom-fill {
    fill: var(--main-color);
}
.menu-bottom-btn svg.n2-us-svg circle {
    stroke: var(--body-color-mute);
}
.menu-bottom-btn.active svg.n2-us-svg circle {
    stroke: var(--main-color);
}
.menu-bottom-btn svg.n2-nostroke-ord {
    width: 1.75rem;
    height: 1.75rem;
    padding: 1px 0;
}

.menu-top-fixed {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    max-width: 769px;
    margin: 0 auto;
}
.swiper-fix-top {
    margin-top: 4rem;
}
.menu-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 4rem;
    padding: 0 var(--gap);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    background: var(--menu-top-background);
}
.menu-top .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
}
.menu-top .icons {
    position: absolute;
    display: flex;
    align-items: center;
    right: var(--gap);
}

.menu-top .icon {
    position: relative;
    padding-left: 1.25rem;
}
.menu-top .icon .count {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border-radius: 50%;
    line-height: 1;
    color: var(--body-color-reverse);
    font-size: 0.75rem;
}
.menu-top .icon svg {
    width: 2rem;
    height: 2rem;
}
.menu-top .icon svg path {
    -webkit-transition: stroke 0.3s ease;
    -o-transition: stroke 0.3s ease;
    transition: stroke 0.3s ease;
}
.menu-top .icon:hover svg path, .menu-top .icon:active svg path, .menu-top .icon:hover svg circle, .menu-top .icon:active svg circle {
    stroke: var(--main-color);
}
.swiper {
    width: 100%;
}
.swiper img {
    width: 100%;
    height: auto;
}
.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}
.home-info {
    position: relative;
}
.home-info .menu {
    display: grid;
    align-items: start;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.3rem var(--gap) 0 var(--gap);
}
.home-info .menu .menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--body-color);
    text-decoration: none;
    text-align: center;
    background-color: #dcdee8;
    padding: 0.5rem;
    border-radius: var(--radius-card);
    font-size: 0.9rem;
    white-space: nowrap;
}
.home-info .menu .menu-item svg {
    width: 2rem;
    height: 2rem;
}
.home-info .menu .menu-item .wallet path {
    fill: var(--main-color);
}
.home-info .menu .menu-item .wallet path:nth-child(4), 
.home-info .menu .menu-item .wallet path:nth-child(5) {
    fill: var(--main-color-active);
}
.home-info .menu .menu-item .wallet path:nth-child(1) {
    fill: var(--body-color);
    opacity: 0.75;
}
.home-info .menu .menu-item .wallet path:nth-child(6) {
    fill: var(--body-color);
}
.home-info .menu .menu-item .about path:nth-child(1) {
    fill: var(--main-color);
}
.home-info .menu .menu-item .about path:nth-child(2), .home-info .menu .menu-item .about path:nth-child(3) {
    fill: var(--body-color);
}
.home-info .menu .menu-item .help path:nth-child(1) {
    fill: var(--main-color);
}
.home-info .menu .menu-item .help path:nth-child(2), 
.home-info .menu .menu-item .help path:nth-child(3), 
.home-info .menu .menu-item .help path:nth-child(4), 
.home-info .menu .menu-item .help path:nth-child(5) {
    fill: var(--body-color);
}
.levels {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 0.5rem;
    padding: 0.5rem var(--gap) 0 var(--gap);
}
.levels .card {
    position: relative;
    background-color: var(--body-background-card);
    padding: 1rem;
    border-radius: var(--radius-card);
    text-decoration: none;
    color: var(--body-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: start;
}
.levels .card .card-group {
    display: grid;
    gap: 0.4rem;
    justify-content: start;
    text-align: left;
    margin-top: 1.25rem;
    z-index: 2;
}
.levels .card .card-group .card-desc {
    color: var(--body-color-mute);
    font-size: 0.9rem;
}
.levels .card .card-block {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--body-background-card);
    padding: 0.75rem;
    border-radius: 50%;
    border-top: 1px solid var(--border-card);
    z-index: 1;
}
.levels .card .card-block .card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-color);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    margin-bottom: 0.1rem;
}
.levels .card .card-block .card-arrow svg {
    width: 1rem;
    height: 1rem;
}
.levels .card .card-block .card-arrow svg path {
    stroke: var(--main-color);
}
.levels .card .card-block .card-img {
    width: 6rem;
    height: 6rem;
}

.hm-news-section {
    padding: 0 1.1rem;
    background-color: var(--body-background-card);
    padding: 1.3rem 1rem;
    margin: 1.5rem var(--gap) 0 var(--gap);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card);
}
.hm-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}
.hm-news-header.wl-assets-title {
    margin-bottom: 0rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid var(--color-border);
}
.hm-news-title {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: 500;
}
.hm-news-more {
    font-size: 1rem;
    color: var(--body-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hm-news-more > span {
    text-transform: lowercase;
}

.hm-news-item-img {
    height: 6rem;
    width: 6rem;
    object-fit: cover;
    border-radius: 1rem;
}
.hm-news-more svg path {
    stroke: var(--body-color);
}
.hm-news-item {
    padding: 1.1rem 0;
}
.hm-news-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}
.hm-news-item-title {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.hm-news-item-date {
    display: block;
    font-size: 0.9rem;
    color: var(--body-color-mute);
}
.hm-news-item-content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}
.hm-news-item-text {
    flex: 1;
}
.hm-news-item-image {
    width: 4.3rem;
    height: 4.3rem;
    border-radius: 0.4rem;
    overflow: hidden;
    margin-left: 0.7rem;
}
.hm-gainers-section {
    background-color: var(--body-background-card);
    padding: 1.3rem 1rem;
    margin-left: var(--gap);
    margin-right: var(--gap);
    border-radius: var(--radius-card);
    margin-bottom: 6rem;
    border: 1px solid var(--border-card);
}
.hm-gainers-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.hm-gainers-title {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: 500;
}
.hm-gainers-period {
    font-size: 1rem;
    color: var(--body-color-mute);
}
.hm-gainers-table-header {
    display: grid;
    grid-template-columns: 3rem 1fr 1fr 1fr;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.75rem;
}
.hm-gainers-table-header-cell {
    font-size: 0.9rem;
    color: var(--body-color-mute);
}
.hm-gainers-table-header-cell.js-end {
    justify-self: end;
}
.hm-gainers-row {
    display: grid;
    grid-template-columns: 3rem 1fr 1fr 1fr;
    padding: 0.75rem 0;
    align-items: center;
}
.hm-coin-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm-coin-name,
.hm-coin-price {
    font-size: 1rem;
}
.hm-coin-change {
    font-size: 1rem;
    padding: 0.3rem 0.4rem;
    border-radius: var(--radius-card);
    text-align: center;
    width: 4rem;
    justify-self: end;
}
.hm-coin-change-positive {
    background-color: var(--success);
    color: var(--body-color-reverse);
}
.hm-coin-change-negative {
    background-color: var(--error);
    color: var(--body-color-reverse);
}
.hm-community-section {
    margin-top: 1.5rem;
    background-color: var(--body-background-card);
    padding: 1.3rem 1rem;
    margin-left: var(--gap);
    margin-right: var(--gap);
    border-radius: var(--radius-card);
}
.hm-community-title {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: 500;
    margin-bottom: 1rem;
}
.hm-community-icons {
    display: flex;
    gap: 1rem;
}
.hm-community-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-partner-section {
    margin-top: 1.5rem;
    background-color: var(--body-background-card);
    padding: 1.3rem 1rem;
    margin-bottom: 1.5rem;
    margin-left: var(--gap);
    margin-right: var(--gap);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card);
}
.hm-partner-title {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: 500;
    margin-bottom: 1rem;
}
.hm-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
}
.hm-partner-logo {
    background-color: var(--body-background);
    border-radius: 0.5rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.hm-partner-logo img {
    width: 100%;
    height: auto;
}

.hm-partner-logo img.squad {
    width: 65%;
}

.hm-partner-logo img.squad-2 {
    width: 80%;
}

.my-container {
    padding: 1.3rem var(--gap);
    margin-top: 0;
}

.my-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.my-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 1rem 1rem;
}

.my-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 1rem 1rem;
}

.my-info-btn svg {
    width: 1.75rem;
    height: 1.75rem;
}

.my-info-btn path {
    opacity: 0.8;
}

.my-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.my-logo {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.5rem;
    object-fit: cover;
    background-color: white;
}

.my-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.my-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--body-background-card);
}

.my-title {
    font-size: 1.25rem;
    font-weight: 500;
}

.my-invitation-code, .my-uid {
    font-size: 0.9rem;
    color: var(--body-color-mute);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.my-invitation-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.my-invitation-group svg path {
    stroke: var(--main-color);
}

.my-code {
    color: var(--body-color);
    font-weight: 600;
}

.my-copy-icon {
    color: var(--main-color);
    font-size: 0.9rem;
}

.my-uid-number {
    margin-left: 0.25rem;
    margin-right: 0.5rem;
}

.my-star-icon {
    color: var(--main-color);
    margin-right: 0.5rem;
}

.my-chevron {
    color: var(--body-color-mute);
    font-size: 0.75rem;
}

.my-chevron-large {
    color: var(--body-color-mute);
    font-size: 1.25rem;
}

.my-menu-bar {
    display: grid;
    align-items: start;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-card);
    background: var(--background-card-head);
    padding: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0px 6px 5px -6px rgba(0, 0, 0, 0.75);
}

.my-menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.3rem;
    color: var(--body-color-reverse);
    text-decoration: none;
    text-align: center;
}

.my-menu-item svg {
    width: 2.25rem;
    height: 2.25rem;
}

.my-menu-text {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
    white-space: nowrap;
}

.my-menu-list {
    display: grid;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    margin-bottom: 1.5rem;
    overflow: hidden;
    padding: 0.6rem 0;
    border: 1px solid var(--border-card);
}

.my-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
}

.my-list-item-chevron {
    width: 1.5rem;
    height: 1.5rem;
}

.my-list-item-chevron path {
    opacity: 0.8;
    stroke: var(--body-color);
}

.my-list-item:last-child {
    border-bottom: none;
}

.my-list-left {
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: center;
    gap: 0.6rem;
}

.my-list-left svg {
    width: 1.5rem;
    height: 1.5rem;
}

.my-list-text {
    font-size: 1rem;
}

.my-list-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.my-unreal-name {
    color: var(--main-color);
    font-size: 0.9rem;
}

.my-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5.5rem;
}

.my-sign-out-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--main-color);
    color: var(--body-color-reverse);
    border: none;
    border-radius: var(--radius-card);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

.my-delete-account-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--body-background-card);
    color: var(--error);
    border: none;
    border-radius: var(--radius-card);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.tm-container {
    padding: 0.5rem var(--gap) 6.5rem var(--gap);
    margin-top: 0;
}

.tm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    gap: 1rem;
}

.tm-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.tm-dropdown {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 0 1rem 1rem;
}

.tm-dialog {
    display: grid;
    overflow-y: auto;
    max-height: calc(100dvh - 5.5rem);
}

.tm-dialog-item {
    padding: 1.25rem var(--gap);
    transition: color .3s ease, background-color .3s ease;
}

.tm-dialog-item.active {
    color: var(--main-color);
    background-color: var(--body-background);
}

.tm-cards-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tm-card {
    border-radius: var(--radius-card);
    padding: 1rem;
    flex: 1;
}

.tm-card-blue {
    background-color: var(--background-card-blue);
}

.tm-card-orange {
    background: var(--background-card-main);
}

.tm-card-success {
    background-color: var(--background-card-success);
}

.tm-card-main {
    background-color: var(--main-color);
    margin-bottom: 1.25rem;
    padding: 1.3rem 1rem;
}

.tm-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tm-card-content svg {
    width: 36px;
    height: 36px;
}

.tm-card-content .income path {
    fill: var(--success);
}

.tm-card-content .income path:nth-child(1) {
    fill: var(--body-color);
    opacity: 0.6;
}

.tm-card-content .income path:nth-child(2) {
    opacity: 0.8;
}

.tm-card-content .people path {
    fill: var(--color-card-blue);
}

.tm-card-content .people path:nth-child(1) {
    fill: var(--body-color);
    opacity: 0.6;
}

.tm-main-title-opa {
    opacity: 0.8;
    font-weight: 400;
    padding-right: 0.25rem;
}

.tm-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--body-color-reverse);
}

.tm-card-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tm-card-value {
    font-size: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
}

.tm-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.3rem;
    padding-bottom:  1.3rem;
    border-bottom: 1px solid var(--color-border-active);
}

.tm-main-title {
    font-size: 1rem;
    font-weight: 500;
}

.tm-main-action {
    font-size: 1rem;
}

.tm-main-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.tm-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.tm-stat-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.tm-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tm-section-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.tm-generation-card {
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    padding: 1rem;
}

.tm-generation-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.tm-generation-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.tm-gen-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.tm-gen-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.tm-gen-label {
    font-size: 0.8rem;
    color: var(--body-color-mute);
    max-width: 5rem;
    text-align: center;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 200;
	transition: visibility 0s .3s, opacity .3s ease;
}
body[data-modal-open] .overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity .3s ease;
}
.modal {
	display: block;
	position: fixed;
	z-index: 250;
	top: 50%;
	left: 50%;
	transform-origin: top;
	transform: translate(-50%, calc(-50% - 50px)) scale(0.9);
	transition: visibility 0s .3s, opacity .3s ease, transform .3s ease-in-out;
	width: 100%;
	height: auto;
	min-width: 300px;
	min-height: 50px;
	max-height: 100%;
	background-color: var(--body-background-card);
	border-radius: 8px;
	box-shadow: 2px 2px 6px 1px rgba(0,0,0,0.75);
	will-change: transform;
	touch-action: none;
    max-width: 769px;
    margin: 0 auto;
}
.modal[inert] {
	visibility: hidden;
	pointer-events: none;
	opacity: 1;
}
.modal:not([inert]) {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
	transition: opacity .3s ease, transform .3s ease-in-out;
}
.modal.modal-right {
	top: 0;
    bottom: 0;
	left: unset;
	right: unset;
	transform-origin: right;
	transform: translateX(100%);
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	border-radius: 0;
	box-shadow: -2px 0 6px 1px rgba(0,0,0,0.2);
    background-color: var(--body-background);
}
.modal.modal-left {
	top: 0;
    bottom: 0;
	left: unset;
    right: unset;
	transform-origin: left;
	transform: translateX(-100%);
	height: 100%;
	min-width: 300px;
	min-height: 100%;
	max-height: 100%;
	border-radius: 0;
	box-shadow: 2px 0 6px 1px rgba(0,0,0,0.75);
}
.modal.modal-right:not([inert]), .modal.modal-left:not([inert]) {
	transform: translateX(0);
}
.modal.modal-bottom {
	top: unset;
	left: 0;
	right: 0;
	bottom: 0;
	transform-origin: bottom;
	transform: translateY(100%);
	height: auto;
	min-height: 50px;
	max-height: calc(100dvh - 50px);
	border-radius: var(--radius-card) var(--radius-card) 0 0;
	box-shadow: 0 -2px 6px 1px rgba(0,0,0,0.2);
	padding-top: 28px;
}
.modal.modal-top {
	top: 0;
	left: 0;
	right: 0;
	transform-origin: top;
	transform: translateY(-100%);
	height: auto;
	min-height: 50px;
	max-height: calc(100dvh - 50px);
	border-radius: 0 0 8px 8px;
	box-shadow: 0 2px 6px 1px rgba(0,0,0,0.75);
	padding-bottom: 28px;
}
.modal.modal-bottom:not([inert]), .modal.modal-top:not([inert]) {
	transform: translateY(0);
}
.modal.modal-bottom::before, .modal.modal-top::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 4px;
	background: var(--color-border);
	border-radius: 8px;
}
.modal.modal-top::after {
	top: unset;
	bottom: 12px;
}

.wl-container {
    margin-top: 0rem;
    padding: 1.3rem var(--gap) 6.5rem var(--gap);
}

.wl-overview-card {
    color: var(--body-color-reverse);
    background: var(--background-card-main);
    border-radius: var(--radius-card);
    padding: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0px 6px 5px -6px rgba(0, 0, 0, 0.5);
}

.wl-overview-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.2rem;
    gap: 0.75rem;
}

.wl-overview-header-img {
    width: 32px;
    height: 32px;
}

.wl-token-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    background-color: #26a17b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.wl-overview-title {
    font-size: 0.9rem;
    color: var(--body-color);
    opacity: 0.8;
    text-transform: capitalize;
}

.wl-balance {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.wl-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wl-detail-item {
    display: grid;
    gap: 0.3rem;
}

.wl-detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
    white-space: nowrap;
}

.wl-detail-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.wl-action-bar {
    display: flex;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.wl-action-button {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--body-color-reverse);
    font-weight: 500;
    border: none;
    background: transparent;
}

.wl-action-button span {
    text-transform: capitalize;
}

.wl-action-button:last-child {
    border-radius: var(--radius-card);
    background-color: var(--success);
}

.wl-action-button:first-child {
    border-radius: var(--radius-card);
    background-color: var(--warning);
}

.wl-action-button svg {
    width: 24px;
    height: 24px;
}

.wl-assets-card {
    display: grid;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    padding: 1.3rem 1rem;
    border: 1px solid var(--border-card);
}

.wl-assets-title {
    font-size: 1.25rem;
    color: var(--main-color);
    font-weight: 500;
}

.wl-asset-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    gap: 1rem;
}

.wl-asset-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wl-asset-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.wl-asset-right {
    display: grid;
    justify-content: end;
    text-align: right;
    gap: 0.25rem;
}

.wl-asset-balance {
    font-size: 1.25rem;
    font-weight: 600;
}

.wl-asset-usd {
    font-size: 0.8rem;
    color: var(--body-color-mute);
}

.wl-chart-card {
    padding: 1.3rem 1rem;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
}

.wl-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.wl-chart-title {
    font-size: 1rem;
    font-weight: 600;
}

.wl-chart-period {
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: 0.3rem;
}

.gr-container {
    margin-top: 4rem;
    padding: 1.3rem var(--gap) 6.25rem var(--gap);
}

.gr-header {
    margin-bottom: 1.5rem;
}

.gr-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gr-brand {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--main-color);
}

.gr-subtitle {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--body-color);
}

.gr-menu-item {
    display: flex;
}

.gr-menu-item-btn {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.gr-menu-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gr-icon {
    width: auto;
    height: 2rem;
}

.chevron {
    width: 1.5rem;
    height: 1.5rem;
}
.gr-menu-item .chevron {
    opacity: 0.8;
}

.gr-menu-text {
    font-size: 1rem;
    font-weight: 500;
}

.gr-arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.gr-arrow-down-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.gr-card {
    margin-bottom: 1.5rem;
}

.gr-card-title {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.gr-button {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.gr-button-primary {
    background-color: var(--main-color);
    color: var(--body-color);
}

.gr-button-large {
    padding: 1.25rem;
    font-size: 1.125rem;
    border-radius: 2rem;
}

.gr-select-box {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--body-background);
    border-radius: var(--radius-card);
    padding: 1rem;
    gap: 1rem;
}

.gr-select-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gr-select-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.gr-select-label {
    font-size: 1rem;
    font-weight: 500;
}

.gr-select-value {
    font-size: 0.9rem;
    color: var(--main-color);
}

.gr-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.gr-input {
    flex: 1;
    border: none;
    color: var(--body-color);
    font-size: 1rem;
    outline: none;
    background-color: var(--body-background);
    border-radius: var(--radius-card);
    padding: 1rem 5rem 1rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
    transition: border-color .3s ease;
}

.gr-input:focus {
    border-color: var(--main-color);
}

.gr-currency {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.gr-slider-container {
    margin-bottom: 1rem;
}

.gr-slider-labels {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--body-color-mute);
    font-size: 0.9rem;
}

.gr-highlight {
    color: var(--main-color);
}

.gr-dialog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem var(--gap);
    transition: color .3s ease, background-color .3s ease;
}

.gr-dialog-item-check {
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}

.gr-dialog-group {
    display: grid;
    gap: 0.5rem;
}

.gr-dialog-item-name {
    font-size: 1.25;
    font-weight: 500;
}

.gr-dialog-item-desc {
    color: var(--body-color-mute);
}

.gr-dialog-item-desc.opened-ai {
    color: var(--success);
}

.gr-dialog-item.active {
    color: var(--main-color);
    background-color: var(--body-background);
}

.gr-dialog-item.active .gr-dialog-item-check {
    opacity: 1;
}

.gr-select-box .chevron {
    opacity: 0.8;
}

.gr-detail-link .chevron {
    opacity: 0.8;
}

.flex {
    display: flex;
}

.gr-detail-links {
    display: grid;
}

.gr-detail-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.header-modal {
    position: relative;
    z-index: 5;
    display: grid;
    align-items: center;
    grid-template-columns: 4rem 1fr 4rem;
    gap: 0.5rem;
    height: 4rem;
    padding: 0 var(--gap) 0 0;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    background: var(--menu-top-background);

}

.header-modal-back {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 0.5rem;
    width: 4rem;
    height: 4rem;
}

.header-modal-back svg {
    width: 2rem;
    height: 2rem;
    transform: rotateY(180deg);
}

.header-modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card .card-group .card-title {
    text-transform: none;
}

.header-modal-loader {
    display: none;
    height: calc(100dvh - 4rem);
}

.modal:not([inert]) .header-modal-group[aria-busy="true"] .header-modal-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal:not([inert]) .header-modal-group[aria-busy="true"] .header-modal-loader .loader {
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.3s ease 0.3s;
    -o-transition: opacity 0.3s ease 0.3s;
    transition: opacity 0.3s ease 0.3s;
    opacity: 1;
    border-color: var(--body-background-card) #0000;
}

.modal-content-load {
    display: none;
    overflow-y: auto;
    max-height: calc(100dvh - 4rem);
}

.header-modal-group:not([aria-busy="true"]) .modal-content-load {
    display: block;
}

.notice-block {
    display: grid;
    padding: 0 var(--gap);
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}

.notice-item {
    position: relative;
    background-color: var(--body-background-card);
    border-radius: 0;
    padding: 1rem;
    display: grid;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--border-card);
    border-right: 1px solid var(--border-card);
}

.notice-block > .notice-item:first-child {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    border-top: 1px solid var(--border-card);
}

.notice-block > .notice-item:last-child {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    border-bottom: 1px solid var(--border-card);
}

.notice-item-gr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notice-item-date {
    color: var(--body-color-mute);
    font-size: 0.9rem;
    text-align: right;
}

.notice-item-date.wl-date {
    text-align: left;
}

.notice-item-desc {
    color: var(--body-color-mute);
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.notice-item-desc p {
    margin: 0;
}

.notice-desc {
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-all;
}

.notice-desc h2 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 1.25rem;
}

.notice-item-date-one {
    display: flex;
    align-items: start;
    justify-content: end;
    color: var(--body-color-mute);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.noread {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    width: 0.75rem;
    height: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border-radius: 50%;
    line-height: 1;
    color: var(--body-color);
}

.notice-item .noread {
    display: none;
}

.notice-item.noread-active .noread {
    display: block;
}

.notice-item.noread-active {
    border: 1px solid var(--main-color);
}

.funds-block {
    display: grid;
    gap: 1rem;
    padding: 0 var(--gap);
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}

.funds-card {
    padding: 1rem;
    border: 1px solid var(--border-card);
}

.funds-card-title {
    font-size: 1rem;
    color: var(--body-color-mute);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.funds-card-currency {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
}

.funds-card-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--body-background);
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-card);
    transition: background-color .3s ease;
}

.funds-card-item.active {
    background-color: var(--main-color);
}

.funds-card-item.active .funds-card-label {
    color: var(--body-color-reverse);
}

.funds-card-icon {
    width: 24px;
    height: 24px;
}

.funds-card-label {
    color: var(--body-color);
    position: relative;
    font-size: 1rem;
    font-weight: 500;
}

.funds-qr-block {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.funds-qr {
    border-radius: var(--radius-card);
    width: 200px;
    height: 200px;
}

.funds-adress-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.funds-adress-code {
    color: var(--body-color);
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
}

.funds-adress-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.funds-adress-btn svg path {
    stroke: var(--main-color);
}

.funds-card-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.funds-card-note svg {
    width: 1.4rem;
    height: 1.4rem;
    transform: rotate(180deg);
}

.funds-card-note svg path {
    fill: var(--warning);
}

.funds-card-note-title {
    font-size: 1rem;
    color: var(--warning);
    font-weight: 500;
}

.funds-card-desc {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.funds-card-desc p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.form-group {
    display: grid;
    gap: 1.3rem;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input {
    width: 100%;
    flex: 1;
    border: none;
    height: 3rem;
    color: var(--body-color);
    font-size: 1rem;
    outline: none;
    background-color: var(--body-background);
    border-radius: var(--radius-card);
    padding: 0 5rem 0 1rem;
    border: 1px solid transparent;
    transition: border-color .3s ease;
}

.input:focus {
    border-color: var(--main-color);
}

.input-group {
    display: grid;
    gap: 0.75rem;
}

.input-title {
    font-size: 1rem;
    color: var(--body-color-mute);
    font-weight: 500;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 3rem;
}

.input-ricon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 3rem;
    right: 0;
    top: 0;
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.input-ricon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.input-ricon path {
    fill: var(--body-color);
    opacity: 0.8;
    transition: fill .3s ease, opacity .3s ease;
}

.input-container.show-pass .input-ricon path {
    fill: var(--main-color);
    opacity: 1;
}

.notifications {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 400;
}
.notifications .notification {
    background-color: var(--menu-top-background);
    height: 4rem;
    padding: 0 var(--gap);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: opacity 0.3s;
    animation: 0.3s notif;
}
@keyframes notif {
    0% {
        transform: translateY(-4rem);
    }
    100% {
        transform: translateY(0);
    }
}
.notifications .notification .content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.notifications .notification .content .img {
    min-width: 1.5rem;
    width: 1.5rem;
}
.notifications .notification .content .img .icon {
    display: block;
    width: 100%;
}
.notifications .notification.success .content .icon path {
    fill: var(--success);
}
.notifications .notification.info .content .icon path {
    fill: var(--info);
}
.notifications .notification.warning .content .icon path {
    fill: var(--warning);
}
.notifications .notification:not(:last-of-type) {
    margin-bottom: 0.75rem;
}
.notifications .notification .close {
    cursor: pointer;
    width: 1rem;
    z-index: 1;
}
.notifications .notification .close svg {
    pointer-events: none;
    display: block;
    width: 100%;
}
.notifications .notification .progress-bar {
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: scale-width 3s linear forwards;
}
.notifications .notification .progress-bar.success {
    background-color: var(--success);
}
.notifications .notification .progress-bar.info {
    background-color: var(--info);
}
.notifications .notification .progress-bar.warning {
    background-color: var(--warning);
}
.notifications .notification .progress-bar.error {
    background-color: var(--error);
}
@keyframes scale-width {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hepl-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.hepl-item-btn {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: var(--body-background-card);
    border-radius: 0;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.notice-block > .hepl-item-btn:first-child {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.notice-block > .hepl-item-btn:last-child {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.news-item-content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--border-card);
    border-right: 1px solid var(--border-card);
}

.notice-block > .news-item-content:first-child {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    border-top: 1px solid var(--border-card);
}

.notice-block > .news-item-content:last-child {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    border-bottom: 1px solid var(--border-card);
}

.news-item-text {
    display: grid;
    flex: 1;
    gap: 0.25rem;
}

.news-item-title {
    font-size: 1rem;
    line-height: 1.5;
}

.news-item-date {
    font-size: 0.9rem;
    color: var(--body-color-mute);
}

.invite-block {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.invite-group {
    display: grid;
}

.invite-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: var(--main-color);
}

.ok-miss path {
    fill: var(--color-card-blue);
}

.ok-miss path:nth-child(2), .ok-miss path:nth-child(3) {
    fill: #fff;
    opacity: 0.8;
}

.tm-card-content svg.n2-ok-miss {
    width: 28px;
    height: 28px;
    opacity: 0.8;
    padding-right: 5px;
}

.miss-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.miss-reward {
    border-radius: var(--radius-card);
    padding: 0.5rem 0.6rem;
    background-color: var(--info);
    color: var(--body-color-reverse);
    font-size: 1rem;
    font-weight: 500;
}

.miss-status {
    border-radius: var(--radius-card);
    padding: 0.5rem 0.6rem;
    background-color: var(--warning);
    color: var(--body-color-reverse);
    font-size: 1rem;
    font-weight: 500;
}

.miss-status.miss-compl {
    background-color: var(--success);
    color: var(--body-color-reverse);
}

.miss-status.miss-exp {
    background-color: var(--error);
    color: var(--body-color-reverse);
}

.miss-block {
    display: grid;
    gap: 1rem;
}

.miss-desc {
    font-size: 0.9rem;
    line-height: 1.5;
}

.miss-time-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.miss-time {
    font-size: 0.9rem;
}

.miss-time-count {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.miss-time-num {
    padding: 0.4rem 0.6rem;
    background-color: var(--body-background);
    font-size: 1rem;
    border-radius: 0.5rem;
}

.bar-1 {
    flex: 1;
    position: relative;
    background-color: var(--body-background);
    height: 10px;
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}

.bar-1-fill {
    height: 100%;
    width: 0%;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0%, var(--bar-start)),
        color-stop(100%, var(--bar-end))
    );
    transition: width 0.3s ease;
    border-radius: inherit;
}

.bar-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bar-text {
    font-size: 0.9rem;
}

.open-block {
    padding: 0 var(--gap);
    margin-top: 0.75rem;
}

.logo-img {
    width: auto;
    height: 1.75rem;
}

.vip-block {
    display: grid;
    gap: 1.75rem;
    padding: 0 var(--gap);
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
}

.vip-bg {
    position: relative;
}

.vip-bg img {
    width: 100%;
    height: auto;
}

.vip-abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.vip-abs img {
    width: auto;
    height: 70%;
    position: relative;
    top: 18%;
    right: 3%;
}

.vip-level-block {
    display: grid;
    gap: 0.5rem;
    margin-left: 1rem;
    margin-top: 1rem;
}

.vip-level {
    font-size: 2.25rem;
    font-weight: 800;
}

.vip-level-1 {
    color: #166ad0;
}

.vip-level-2 {
    color: #5230d0;
}

.vip-level-3 {
    color: #931c97;
}

.vip-level-4 {
    color: #8e5f1d;
}

.vip-level-5 {
    color: #790a0a;
}

.vip-level-6 {
    color: #ffffff;
}

.vip-level-sub {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.vip-abs-link {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    color: var(--body-color);
    opacity: 0.8;
}

.vip-chevron {
    width: 1.25rem;
    height: 1.25rem;
}

.vip-chevron path {
    stroke: var(--body-color);
}

.vipone-title {
    font-size: 1rem;
    margin-bottom: 1.3rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 400;
}

.n2-tm-gens .card.tm-gens .vipone-title {
    justify-content: left;
}

.vipone-title-main {
    position: relative;
    font-size: 1rem;
}

.vipone-title-sub {
    color: var(--error);
    font-weight: 500;
}

.vipone-title-sub.unlock {
    color: var(--success);
}

.vipone-desc {
    display: grid;
    gap: 1rem;
}

.vipone-desc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vipone-desc-item-k {
    opacity: 0.8;
}

.vipone-desc-item-v {
    color: var(--body-color-mute);
}

.vipone-desc-item-v.active {
    color: var(--body-color-reverse);
    font-weight: 500;
}

.vipone-block {
    display: grid;
    gap: 1.3rem;
    padding: 0 var(--gap);
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}

.lucky-main {
    display: grid;
    gap: 1.5rem;
    padding: 0 var(--gap);
    margin-top: 1.75rem;
    margin-bottom: 1.3rem;
}

.lucky-block {
    display: flex;
    justify-content: center;
    padding: 0;
}

.luckywheel {
    width: 100%;
    height: 100%;
}

.frame, .sticks {
    fill: #fff;
}

.winIndicator {
    fill: #fff;
}

.wheelMiddle {
    fill: #fff;
}

#_1 {
    fill: #ba4d4e;
}

#_2 {
    fill: #1592e8;
}

#_3 {
    fill: #14c187;
}

#_4 {
    fill: #fc7800;
}

#_5 {
    fill: #14c187;
}

#_6 {
    fill: #1592e8;
}

#_7 {
    fill: #ba4d4e;
}

#_8 {
    fill: #1592e8;
}

#_9 {
    fill: #14c187;
}

#_10 {
    fill: #fc7800;
}

#_11 {
    fill: #14c187;
}

#_12 {
    fill: #1592e8;
}

.spin-btn-block {
    display: grid;
    gap: 0.75rem;
    justify-content: center;
}

.my-sign-out-button.spin-btn {
    width: 130px;
}

.spin-left {
    font-size: 1rem;
    color: var(--body-color-mute);
    display: flex;
    justify-content: center;
}

.spin-some {
    display: grid;
    gap: 0.75rem;
}

.log-block {
    padding: 1.5rem var(--gap);
}

.iti__dropdown-content {
    background-color: var(--body-background-card)!important;
    border-radius: 0 0 0.75rem 0.75rem!important;
}

.iti__search-input {
    border: none!important;
    height: 3rem!important;
    color: var(--body-color)!important;
    font-size: 1rem!important;
    outline: none!important;
    background-color: var(--body-background)!important;
    border-radius: 0.75rem!important;
    padding: 0 5rem 0 1rem!important;
    border: 1px solid transparent!important;
    transition: border-color .3s ease!important;
}

.iti__search-input:focus {
    border-color: var(--main-color)!important;
}
.iti--fullscreen-popup .iti__dropdown-content {
    display: grid!important;
}

.iti.iti--allow-dropdown {
    width: 100%!important;
}

.iti__tel-input {
    width: 100%!important;
}

[type=checkbox] {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    margin: -1px;
}

[type=checkbox] {
    font-size: 1em;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
            appearance: none;
    transition: all 120ms ease;
    -webkit-user-select: none;
    -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    vertical-align: baseline;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
[type=checkbox] + label {
    transition: all 120ms ease;
    -webkit-user-select: none;
    -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    vertical-align: baseline;
    vertical-align: middle;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    line-height: 1.5;
    gap: 0.75rem;
}
[type=checkbox] + label::before {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    transition: all 120ms ease-in-out;
    content: "";
    background-color: var(--body-background);
    display: inline;
    border: 1px solid var(--body-color-mute);
    border-radius: 3px;
    width: 1.125em;
    height: 1.125em;
    background-size: 25%;
    background-repeat: no-repeat;
    background-origin: padding-box;
    background-position: center center;
    vertical-align: baseline;
    outline: solid 3px transparent;
    outline-offset: -2px;
    line-height: 1.5;
    margin-top: 0.05em;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
[type=checkbox]:hover + label::before {
    background-color: var(--body-background-card);
}
[type=checkbox]:checked + label::before {
    background-color: var(--main-color);
    border: 1px solid transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M15.854,3.146l-1.5-1.5c-.195-.195-.512-.195-.707,0L5.5,9.793l-3.146-3.146c-.195-.195-.512-.195-.707,0L.146,8.146c-.195,.195-.195,.512,0,.707l5,5c.098,.098,.226,.146,.354,.146s.256-.049,.354-.146L15.854,3.854c.195-.195,.195-.512,0-.707Z' fill='%23ffffff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    vertical-align: baseline;
    background-size: 75%;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
.terms-box {
    color: var(--body-color);
}
.terms-box-link {
    text-decoration: underline;
    font-weight: 500;
}
.reg-terms {
    padding: 0.75rem 0;
}

.reg-info {
    background: #24262F;
    background: var(--body-background-card);
    border-radius: var(--radius-card);
    margin: 0 var(--gap) 1.5rem var(--gap);
}

.reg-title {
    display: grid;
    justify-content: center;
    gap: 0.5rem;
    padding: 5.5rem var(--gap) 1.75rem var(--gap);
}

.reg-title-text {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--body-color);
}

.reg-title-sub {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--body-color-mute);
}

.reg-title-link {
    color: var(--body-color);
    text-decoration: underline;
    font-weight: 500;
}

.log-top-btn {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.75rem;
}

.log-forgot {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--body-color);
    text-decoration: underline;
}

.notice-item-title {
    line-height: 1.4;
    display: grid;
    gap: 0.5rem;
}

.adm-menu-list .notice-item-title > div > a {
    color: var(--info-adm);
}

.tr-val {
    font-weight: 500;
}

.tr-val.plus {
    color: var(--success);
}

.tr-val.minus {
    color: var(--error);
}

.tr-val.wait {
    color: var(--warning);
}

.news-img-one {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.tm-block-ower {
    margin-bottom: 1.5rem;
}

.tm-gens {
    margin-bottom: 0.75rem;
}

.input-title {
    transition: color 0.3s ease;
}

.input-group.input-error .input-title {
    color: var(--error);
}

.input-group.input-error .input {
    border: 1px solid var(--error);
}

.error-msg {
    color: var(--error);
    display: none;
    text-align: center;
    line-height: 1.4;
}

.error-msg.active {
    display: flex;
    justify-content: center;
}

.success-msg {
    color: var(--success);
    display: none;
    text-align: center;
}

.success-msg.active {
    display: flex;
    justify-content: center;
}

.wl-tr-block {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.wl-title {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: 500;
}

.wl-tr-empty {
    font-size: 1rem;
    color: var(--body-color-mute);
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.funds-group {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1rem;
}

.vipone-head {
    padding: 0;
}

.vipone-head .vipone-title {
    margin-bottom: 0;
    border-bottom: none;
    height: 1.5rem;
    border-radius: var(--radius-card);
    background: var(--background-card-head);
    box-shadow: 0px 6px 5px -6px rgba(0, 0, 0, 0.75);
}

.vipone-padd {
    margin: 1.3rem 1rem;
}

.vipone-sepa {
    padding-top: 1.3rem;
    border-top: 1px solid var(--color-border);
}

.vipone-head .vipone-title-main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.vipone-head-img {
    position: absolute;
    height: 5rem;
    width: auto;
    margin-bottom: 1rem;
}

.vipone-head .vipone-title-main span {
    position: relative;
    left: 4rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--body-color-reverse);
}

.vipone-head-img.vipone-head-img-f {
    height: 4rem;
}

.vipone-title.vipone-title-1 {
    background: linear-gradient(25deg, #947161 0%, #efd0b4 70%, #ffffff 100%);
}

.vipone-title.vipone-title-2 {
    background: linear-gradient(25deg, #7887a9 0%, #bfcddf 70%, #ffffff 100%);
}

.vipone-title.vipone-title-3 {
    background: linear-gradient(25deg, #e6b55c 0%, #f8e188 70%, #ffffff 100%);
}

.vipone-title.vipone-title-4 {
    background: linear-gradient(25deg, #5d8dd0 0%, #9dfde6 70%, #ffffff 100%);
}

.vipone-title.vipone-title-5 {
    background: linear-gradient(25deg, #5746ba 0%, #d1a5f0 70%, #ffffff 100%);
}

.vipone-title.vipone-title-6 {
    background: linear-gradient(25deg, #ca4a54 0%, #fae8b3 70%, #ffffff 100%);
}

.text-lower {
    text-transform: lowercase;
}

.vipmmy {
    font-weight: 500;
    color: var(--error);
}

.vipmmy-ok {
    color: var(--success);
}

.vipmmis {
    font-weight: 400;
    opacity: 0.8;
}

.wl-action-button.ord-record-btn {
    border-radius: var(--radius-card);
    background-color: var(--body-background-card);
}

.wl-action-button.ord-record-btn span {
    text-transform: none;
}

.wl-balance.ord-balance {
    font-size: 1.5rem;
}

.records-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1rem;
}

.records-item-title {
    display: grid;
    gap: 0.5rem;
}

.records-container {
    margin-top: 0;
    padding: 1.3rem var(--gap) 0 var(--gap);
}

.records-gr-container {
    padding: 0.1rem var(--gap) 6.25rem var(--gap);
}

.d-none {
    display: none;
}

.orders-desc-am {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.ord-bot-err {
    margin-bottom: 0.5rem;
}

input:not(.notlow)::placeholder {
    text-transform: lowercase;
}

input.upper::placeholder {
    text-transform: uppercase;
}

.text-desc {
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.5;
}

.text-desc h2 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 1.25rem;
}

.my-group-logo {
    position: relative;
    margin-top: 0;
}

.my-logo-abs {
    z-index: 5;
    position: absolute;
    top: -3.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    width: 100%;
}

.my-logo-abs > *:nth-child(1) {
    justify-self: start;
}

.my-logo-abs > *:nth-child(2) {
    justify-self: center;
}

.my-logo-abs > *:nth-child(3) {
    justify-self: end;
}

.my-logo-img {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 8px var(--body-background);
}

.my-logo-img img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.my-login {
    font-size: 1rem;
    color: var(--body-color);
    font-weight: 400;
}

.my-logo-img-abs {
    font-size: 0.7rem;
    color: var(--body-color);
    position: absolute;
    top: 2.75rem;
    padding: 0.25rem 0.25rem;
    border-radius: 0.25rem;
    background-color: var(--body-background);
    opacity: 0.75;
}

.hm-coin-usdt {
    font-size: 0.8rem;
    color: var(--body-color);
    opacity: 0.8;
}

.home-head-svg {
    width: 3rem;
    height: 3rem;
}

#wheel {
    width: 303px;
    height: 303px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 8px solid var(--body-background-card);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 10px, rgba(255, 255, 255, 0.05) 0px 3px 0px;
    transform: rotate(0deg);
}

#wheel:before {
    content: '';
    position: absolute;
    border: 5px solid rgba(55, 51, 42, 0.1);
    width: 295px;
    height: 295px;
    border-radius: 50%;
    z-index: 10;
}

#inner-wheel{
    width:100%;
    height:100%;
    
    -webkit-transition: all 6s cubic-bezier(0,.99,.44,.99);
    -moz-transition:    all 6 cubic-bezier(0,.99,.44,.99);
    -o-transition:      all 6s cubic-bezier(0,.99,.44,.99);
    -ms-transition:     all 6s cubic-bezier(0,.99,.44,.99);
    transition:         all 6s cubic-bezier(0,.99,.44,.99);	
}

#wheel div.sec{
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 200px 83px 0;
    border-color: #88C2B0 transparent;
    transform-origin: 83px 200px;
    left: 69px;
    top: -49px;
    opacity:1;
}

#wheel div.sec:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    border-color: #D54227 transparent;
}

#wheel div.sec:nth-child(2) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -mos-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    border-color: #C0702B transparent;
}

#wheel div.sec:nth-child(3) {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    border-color: #C98F2A transparent;
}

#wheel div.sec:nth-child(4) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    border-color: #898E36 transparent;
}

#wheel div.sec:nth-child(5) {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(255deg);
    border-color: #138D6C transparent;
}

#wheel div.sec:nth-child(6) {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    border-color: #81B999 transparent;
}

#wheel div.sec:nth-child(7) {
    transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    border-color: #926C6c transparent;
}

#wheel div.sec:nth-child(8) {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    border-color: #D67260 transparent;
}

#spin {
    width: 68px;
    height: 68px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -34px 0 0 -34px;
    border-radius: 50%;
    box-shadow: rgba(55, 51, 42, 0.1) 0px 3px 0px;
    z-index: 10;
    background: var(--body-background);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.spin-text {
    display: flex;
    position: relative;
    align-items: center;
    z-index: 4;
    justify-content: center;
    width: 100%;
    color: var(--body-color);
    font-size: 15px;
}

#spin:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 28px 20px;
    border-color: transparent transparent #fff transparent;
    top: -12px;
    left: 14px;
}

#inner-spin {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -27px 0 0 -27px;
    border-radius: 50%;
    background: red;
    z-index: 2;
    box-shadow: rgba(255, 255, 255, 0.2) 0px -2px 0px inset, rgba(255, 255, 255, 0.5) 0px 2px 0px inset, rgba(0, 0, 0, 0.4) 0px 0px 5px;
    background: var(--body-background-card);
}

#spin:active:after {
    font-size: 18px;
}

#wheel div.sec .wheel-fas {
    margin-top: -125px;
    color: #fff;
    opacity: 0.8;
    font-weight: 500;
    position: relative;
    z-index: 20;
    display: block;
    text-align: center;
    font-size: 18px;
    margin-left: -11px;
    writing-mode: vertical-lr;
}

.ts-group-tasks {
    display: grid;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.ts-spins {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: lowercase;
}

.open-block-tm {
    padding: 0 var(--gap);
    margin-top: 1.3rem;
}

.tm-reward {
    text-transform: lowercase;
}

.adm-head {
    padding: 1.25rem 0 6.25rem 0;
}

.adm-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 var(--gap) 0 var(--gap);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.adm-form {
    display: grid;
    gap: 1rem;
    padding: 0.5rem var(--gap) 0 var(--gap);
}

.adm-button {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--main-color);
    color: var(--body-color-reverse);
    border: none;
    border-radius: var(--radius-card);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

.adm-dialog {
    display: grid;
    overflow-y: auto;
    max-height: calc(100dvh - 5.5rem);
}

.adm-dialog .gr-dialog-item {
    padding: 1rem var(--gap);
}

.input-select-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 3rem;
    right: 0;
    top: 0;
    padding: 0 0.5rem 0 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.input-select-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.input-select-icon path {
    stroke: var(--body-color);
    opacity: 0.8;
    transition: fill .3s ease, opacity .3s ease;
}

.input.input-main {
    padding: 0 1rem;
}

.input-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.adm-vipone-block {
    display: grid;
    gap: 1.3rem;
}

.input.input-vip {
    padding: 0 0.7rem;
    width: 3.5rem;
    height: 2rem;
}

.input-group-vip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.adm-delete {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--error);
    padding: 0.25rem 0;
}

.adm-delete svg {
    width: 1.5rem;
    height: 1.5rem;
}

.adm-delete svg path {
    stroke: var(--error);
}

.adm-delete.edit {
    color: var(--info-adm);
}

.adm-delete.edit svg path {
    stroke: var(--info-adm);
}

.adm-menu-list {
    display: grid;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    padding: 0.6rem 0;
    border: 1px solid var(--border-card);
}

.adm-group-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.adm-group-btn {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--main-color);
    color: var(--body-color);
    border: none;
    border-radius: var(--radius-card);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

.adm-group-btn.adm-add {
    background-color: var(--success);
}

.adm-group-btn.adm-edit {
    background-color: var(--info);
}

.adm-group-btn.adm-cancel {
    background-color: var(--body-background);
}

.adm-group-btn.adm-delete {
    background-color: var(--error);
}

.adm-form-modal {
    display: grid;
    gap: 1rem;
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
    padding: 0 var(--gap) 0 var(--gap);
}

.adm-textarea {
    line-height: 1.5;
    border: none;
    color: var(--body-color);
    font-size: 1rem;
    outline: none;
    background-color: var(--body-background);
    border-radius: var(--radius-card);
    padding: 1rem;
    border: 1px solid transparent;
    transition: border-color .3s ease;
}

.adm-textarea:focus {
    border-color: var(--main-color);
}

.tm-dialog-item.adm-menu-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tm-dialog-item.adm-menu-item svg {
    width: 1.5rem;
    height: 1.5rem;
}

.txt-transform-none {
    text-transform: none;
}

.adm-news-item-img {
    height: 4rem;
    width: 4rem;
    object-fit: cover;
    border-radius: 1rem;
}

.adm-news-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.adm-news-btns {
    padding: 0 1rem 0.5rem 1rem;
}

.adm-news-name {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: 500;
}

.adm-news-name.second {
    margin-top: 0.5rem;
}

.adm-news-img {
    position: relative;
    width: 100%;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 5px var(--body-background);
}

.adm-news-img-abs {
    font-size: 0.9rem;
    color: var(--body-color);
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--body-background);
    opacity: 0.75;
}

.adm-users-login {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--body-color);
}

.adm-avatar-img {
    height: 2rem;
    width: 2rem;
    object-fit: cover;
    border-radius: 50%;
}

.adm-users-admin {
    position: absolute;
    right: 1rem;
    font-size: 0.9rem;
    color: var(--body-color-reverse);
    background-color: var(--warning);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-card);
}

.adm-users-chev {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.adm-list-item-chevron {
    width: 1.5rem;
    height: 1.5rem;
}

.adm-list-item-chevron path {
    stroke: var(--info-adm);
}

.adm-users-referer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.adm-avatar-referer {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: cover;
    border-radius: 50%;
}

.vipone-desc.vipone-desc-adm {
    gap: 1.2rem;
}

.adm-users-referer-one {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.adm-avatar-referer-one {
    height: 2rem;
    width: 2rem;
    object-fit: cover;
    border-radius: 50%;
}

.adm-tr-block {
    display: grid;
    gap: 1.5rem;
}

.adm-orders-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.adm-users-spins {
    display: grid;
    gap: 1rem;
    padding: 1.25rem var(--gap);
}

.adm-users-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--body-color);
}

.adm-users-level span {
    position: relative;
    top: 2px;
}

.adm-users-login-s {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--body-color);
}

.adm-users-login-s > *{
    z-index: 3;
}

.adm-users-edit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: absolute;
    bottom: -2rem;
    font-size: 0.75rem;
    color: var(--body-color-reverse);
    background-color: var(--info);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-card);
    z-index: 1;
}

.adm-users-edit > span {
    white-space: nowrap;
}

.adm-users-edit svg {
    width: auto;
    height: 1rem;
}

.switch[type="checkbox"] {
position: absolute;
opacity: 0;
}

.switch[type="checkbox"].ios-switch + div {
vertical-align: middle;
width: 40px;
height: 20px;
border: 1px solid rgba(0, 0, 0, 0.4);
border-radius: 999px;
background-color: var(--body-background);
-webkit-transition-duration: 0.4s;
-webkit-transition-property: background-color, box-shadow;
box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.4);
}

.switch[type="checkbox"].ios-switch:checked + div {
width: 40px;
background-position: 0 0;
background-color: #3b89ec;
border: 1px solid #0e62cd;
box-shadow: inset 0 0 0 10px rgba(59, 137, 259, 1);
}

.switch[type="checkbox"].tinyswitch.ios-switch + div {
width: 34px;
height: 18px;
}

.switch[type="checkbox"].bigswitch.ios-switch + div {
width: 50px;
height: 25px;
}

.switch[type="checkbox"].green.ios-switch:checked + div {
background-color: #00e359;
border: 1px solid rgba(0, 162, 63, 1);
box-shadow: inset 0 0 0 10px rgba(0, 227, 89, 1);
}

.switch[type="checkbox"].ios-switch + div > div {
float: left;
width: 18px;
height: 18px;
border-radius: inherit;
background: #ffffff;
-webkit-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
-webkit-transition-duration: 0.4s;
-webkit-transition-property: transform, background-color, box-shadow;
-moz-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
-moz-transition-duration: 0.4s;
-moz-transition-property: transform, background-color;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(0, 0, 0, 0.4);
pointer-events: none;
margin-top: 1px;
margin-left: 1px;
}

.switch[type="checkbox"].ios-switch:checked + div > div {
-webkit-transform: translate3d(20px, 0, 0);
-moz-transform: translate3d(20px, 0, 0);
background-color: #ffffff;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(8, 80, 172, 1);
}

.switch[type="checkbox"].tinyswitch.ios-switch + div > div {
width: 16px;
height: 16px;
margin-top: 1px;
}

.switch[type="checkbox"].tinyswitch.ios-switch:checked + div > div {
-webkit-transform: translate3d(16px, 0, 0);
-moz-transform: translate3d(16px, 0, 0);
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(8, 80, 172, 1);
}

.switch[type="checkbox"].bigswitch.ios-switch + div > div {
width: 23px;
height: 23px;
margin-top: 1px;
}

.switch[type="checkbox"].bigswitch.ios-switch:checked + div > div {
-webkit-transform: translate3d(25px, 0, 0);
-moz-transform: translate3d(16px, 0, 0);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(8, 80, 172, 1);
}

.switch[type="checkbox"].green.ios-switch:checked + div > div {
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 162, 63, 1);
}

.switch[type="checkbox"].switch-main.ios-switch:checked + div {
background-color: var(--main-color);
border: 1px solid rgb(10, 112, 104);
box-shadow: inset 0 0 0 10px var(--main-color);
}

.switch[type="checkbox"].switch-main.ios-switch:checked + div > div {
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgb(10, 112, 104);
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.switch-label-title {
    font-size: 1rem;
    color: var(--body-color);
}

.adm-user-switch {
    margin-top: 0.5rem;
}

.adm-notify-modal {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--body-color);
    line-height: 1.5;
    padding-bottom: 1rem;
}

.adm-pagginations {
    display: grid;
    justify-content: center;
    padding: 2rem var(--gap) 0.5rem var(--gap);
    gap: 1rem;
}

.adm-pagginations-grpup {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.adm-pagginations-btn {
    font-size: 1rem;
    width: 3rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #657675;
    border-radius: var(--radius-card);
}

.adm-pagginations-btn.active {
    background-color: var(--main-color);
}

.adm-pagginations-btn.chev {
    background-color: var(--body-background-card);
}

.adm-pagginations-count {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    color: var(--body-color);
    opacity: 0.8;
}

.adm-pagginations-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.adm-pagginations-btn.prev svg {
    transform: rotateY(180deg);
}

.adm-user-search {
    display: flex;
    flex: 1;
    width: 100%;
}

.adm-user-search input {
    background-color: #657675;
}

.adm-user-search input::placeholder {
    color: #fff;
}

.sort-svg {
    width: auto;
    height: 1.2rem;
    transform: rotate(90deg);
}

.sort-svg.down {
    transform: rotate(270deg);
}

.sort-svg.right {
    transform: rotate(0deg);
}

.gr-dialog-item.active .sort-svg path {
    stroke: var(--main-color);
}

.adm-sort-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.adm-sort-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.adm-sort-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.adm-sort-group.fin {
    justify-content: end;
}

.adm-fin-group {
    margin-top: 0.25rem;
}

.adm-open-block {
    display: block;
}

.adm-ts-group-tasks {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.miss-status.noactive {
    background-color: #646464;
    color: var(--body-color-reverse);
}

.adm-miss-btns {
    margin-top: 1rem;
}

.input-flex {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-desc {
    display: block;
    color: var(--body-color);
    margin-top: 0.25rem;
}

.adm-title-main {
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
}

.adm-draw-fee, .adm-draw-fee.active {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--success);
}

.adm-with-addr {
    max-width: 14rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
}

.adm-with-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.adm-group-btn.adm-cancel-2 {
    background-color: #646464;
}

.adm-notify-count {
    position: absolute;
    top: -0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--error);
    border-radius: 50%;
    line-height: 1;
}

.pwa-block {
    position: relative;
    width: 100%;
    display: grid;
}

.pwa-btns {
    position: absolute;
    bottom: 5rem;
}

.pwa-how {
    padding: 0 var(--gap) 1.25rem var(--gap);
}

.pwa-how-title {
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.5rem 0 1rem 0;
}

.pwa-how-items {
    display: grid;
    gap: 0.75rem;
}

.pwa-how-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pwa-how-item svg {
    width: 1.25rem;
    height: 1.25rem;
}

.ord-proccess-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem var(--gap) 1rem var(--gap);
}

.ord-proccess {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ord-title {
    font-size: 1.1rem;
    color: var(--warning);
    line-height: 1.4;
}

.loader-proccess {
    width: 1.6rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(farthest-side,var(--warning) 94%,#0000) top/5px 5px no-repeat,
        conic-gradient(#0000 30%,var(--warning));
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 5px),#000 0);
    animation: l13 1s infinite linear;
}
@keyframes l13{ 
    100%{transform: rotate(1turn)}
}

.bar-1.bar-ord {
    background-color: var(--body-background-card);
}

.ord-proccess-bar {
    margin-top: 0.25rem;
    position: relative;
    display: block;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.ord-proccess-block-with {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem var(--gap) 1.5rem var(--gap);
}

.ord-proccess-with {
    display: grid;
    justify-content: center;
    gap: 1rem;
}

.ord-title-with {
    font-size: 1.1rem;
    color: var(--warning);
    line-height: 1.4;
    text-align: center;
}

#clockdiv {
    font-family: sans-serif;
    color: var(--body-color);
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 2rem;
}
#clockdiv > div {
    padding: 0.5rem;
    border-radius: var(--radius-card);
    background: var(--body-background);
    display: inline-block;
}
#clockdiv div > span {
    padding: 1.25rem;
    border-radius: var(--radius-card);
    background: var(--background-card-head);
    display: inline-block;
    color: var(--body-color-reverse);
}
.smalltext {
    padding-top: 0.5rem;
    font-size: 1rem;
}

:root {
  --gray: #71738b;
  --light-blue: #7a7c93;
  --blue: #34385a;

  --slider-handle-size: 1.25rem;
  --slider-handle-border-radius: var(--radius-card);
  --slider-handle-margin-top: -4px;
  --slider-track-height: 0.75rem;
  --slider-track-border-radius: 3px;
}

#sliderContainer {
  width: 100%;
  position: sticky;
}

#sliderContainer > div:first-child {
  margin-bottom: 0.5rem;
}

.tick-slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tick-slider {
  position: relative;
  width: 100%;
}

.tick-slider-value-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
  color: var(--body-color);
}

.tick-slider-value {
  position: absolute;
  top: 0;
  font-weight: 500;
  color: var(--body-color);
  border-radius: var(--slider-handle-border-radius);
}

.tick-slider-value > div {
  animation: bulge 0.3s ease-out;
}

.tick-slider-background,
.tick-slider-progress,
.tick-slider-tick-container {
  position: absolute;
  bottom: 5px;
  left: 0;

  height: var(--slider-track-height);

  pointer-events: none;

  border-radius: var(--slider-track-border-radius);

  z-index: -1;
}

.tick-slider-background {
  width: 100%;
  background-color: var(--body-background);
}

.tick-slider-progress {
  background: var(--background-card-head);
}

.tick-slider-tick-container {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 calc(var(--slider-handle-size) / 2);
}

.tick-slider-tick {
  width: 2px;
  height: 2px;

  border-radius: 50%;

  background-color: white;
}

.tick-slider-label {
  opacity: 0.8;
  transition: opacity 0.1s ease;
}

.tick-slider-label.hidden {
  opacity: 0;
}

@keyframes bulge {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

input[type="range"] {
  -webkit-appearance: none;

  width: 100%;
  height: 100%;

  background: transparent;
  outline: none;

  margin: 5px 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;

  border: none;
}

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

input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;

  width: var(--slider-handle-size);
  height: var(--slider-handle-size);

  background: var(--main-color);

  border-radius: var(--slider-handle-border-radius);

  cursor: pointer;

  margin-top: var(--slider-handle-margin-top);

  -webkit-transform: scale(1);
  transform: scale(1);

  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgb(10, 112, 104);
}

input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus::-webkit-slider-thumb {
  transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;

  width: var(--slider-handle-size);
  height: var(--slider-handle-size);

  background: var(--main-color);

  border: none;
  border-radius: var(--slider-handle-border-radius);

  cursor: pointer;

  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:focus::-moz-range-thumb {
  transform: scale(1.2);
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--slider-track-height);

  cursor: pointer;

  background: none;

  border-radius: var(--slider-track-border-radius);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: var(--slider-track-height);

  cursor: pointer;

  background: none;

  border-radius: var(--slider-track-border-radius);
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: none;
}
input[type="range"]:active::-webkit-slider-runnable-track {
  background: none;
}

.self-end {
    justify-self: end;
}

.adm-user-search.uidsub {
    gap: 0.5rem;
}

.btn-with-calncel {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--error);
    color: var(--body-color-reverse);
    border: none;
    border-radius: var(--radius-card);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.adm-sort-group-ref {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.adm-sort-ref-title {
    font-size: 1rem;
    font-weight: 500;
}

.utab {
    display: none;
}

.utab.active {
    display: grid;
    gap: 1rem;
    animation: 0.5s utab;
}

@keyframes utab {
    0% {
        opacity: 0.2;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.utab-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.utab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--body-background-card);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-card);
    transition: background-color .3s ease;
    width: 100%;
    color: var(--body-color);
}

.utab-btn.active {
    background-color: var(--main-color);
    color: var(--body-color-reverse);
}

.adm-sett-switch {
    margin-top: 1.5rem;
}

.ord-gainers {
    margin-top: 1.25rem;
    margin-bottom: 6rem;
    background-color: var(--body-background-card);
    padding: 0.75rem 1rem;
    margin-left: var(--gap);
    margin-right: var(--gap);
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
}

.ord-gainers::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--body-background));
    pointer-events: none;
}

.hm-gainers-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--body-background));
    pointer-events: none;
}

.wl-overview-card.tm-over-padd {
    padding: 1.3rem 1rem;
    margin-bottom: 1.5rem;
}

.wl-action-button svg.tm-list-svg {
    width: 1.4rem;
    height: 1.4rem;
}

.tm-list-head {
    padding: 1.75rem 0 1.5rem 0;
    position: relative;   
}

.tm-list-head.overlay-modal .tm-list-head-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.tm-list-block {
    display: grid;
    gap: 1.5rem;
    padding: 0 var(--gap);
}

.vipone-desc-item-v.active.tm-st {
    font-size: 0.9rem;
    color: var(--body-color-reverse);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-card);
    font-weight: 400;
    background-color: #6e7078;
}

.vipone-desc-item-v.active.tm-st.tm-st-compl {
    background-color: var(--success);
}

.vipone-desc-item-v.active.tm-st.tm-st-prog {
    background-color: var(--success);
}

.ord-wait-time {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--gap) 1.5rem var(--gap);
    color: var(--body-color-mute);
}

.ord-wait-time-act {
    font-weight: 500;
    color: var(--body-color);
}

.adm-sort-group.fin-new {
    justify-content: space-between;
}

.adm-sort-btn-type {
    opacity: 0.8;
}

.adm-bet-date {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.adm-card-fin {
    display: grid;
    gap: 1rem;
}

.adm-sort-btn-padd {
    padding: 0.5rem 0;
}

.adm-input-group-fin {
    gap: 0.5rem;
}

.adm-bet-form {
    display: grid;
    gap: 1rem;
}

.orders-with-am {
    padding: 0.25rem 0;
    display: grid;
    gap: 1rem;
}

.with-free {
    color: #00d265;
    font-weight: 500;
}

.range-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.range-btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--body-background);
    color: var(--body-color);
    border: 2px solid var(--main-color);
    border-radius: var(--radius-card);
    padding: 0.3rem 0.5rem;
    font-size: 1rem;
}

.modal.modal-mid {
    max-width: 90%;
	opacity: 0;
}

.modal.modal-mid:not([inert]) {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.modal-mid-block {
    position: relative;
    display: grid;
    justify-content: center;
    padding: 0.75rem;
    gap: 1.5rem;
}

.modal-mid-close {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}

.modal-mid-close svg {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.8;
}

.modal-mid-btn {
    display: flex;
    align-items: center;
    justify-self: center;
    font-size: 1rem;
    gap: 0.5rem;
    color: var(--body-color-mute);
}

.modal-mid-btn svg path {
    stroke: var(--body-color-mute);
}

.modal-mid-content {
    display: grid;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
}

.modal-mid-content-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
}

.vid-order-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    text-align: center;
}

.vid-order-vid {
    width: calc(100% - 2rem);
    height: auto;
    border-radius: var(--radius-card);
}

.wheel-fas.lucky-img {
    display: flex!important;
    align-items: center;
    gap: 0.25rem;
    opacity: 1!important;
    margin-top: -145px!important;
    margin-left: -15px!important;
}

.wheel-fas.lucky-img span {
    opacity: 0.7!important;
    font-size: 1rem!important;
}

.wheel-fas.lucky-img img {
    width: auto;
    height: 2rem;
    transform: rotate(90deg);
}

.lucky-img-history {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lucky-img-history img {
    width: auto;
    height: 2rem;
}

.tradingview-widget-container.tradingview-market {
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 0 var(--gap);
    margin-top: 3rem;
    margin-bottom: 2rem;
    height: 14662px!important;
    width: calc(100% - (var(--gap) * 2))!important;
}

.tradingview-widget-container.tradingview-market iframe {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-card);
    height: 14703px!important;
    width: calc(100% - (var(--gap) * 2))!important;
}

.tradingview-widget-container.tradingview-market::after {
    content: "";
    z-index: 3;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: calc(100% - (var(--gap) * 2));
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--body-background));
    pointer-events: none;
}

.widget-block {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 1rem;
    height: 14662px;
    width: 210px;
    background: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tradingview-widget-container.tradingview-chart {
    z-index: 2;
    position: relative;
    overflow: hidden;
    height: 500px!important;
    width: 100%!important;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    padding: 1rem 0;
    border-top: 1px solid var(--border-card);
    border-left: 1px solid var(--border-card);
    border-right: 1px solid var(--border-card);
}

.tradingview-widget-container.tradingview-chart iframe {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-card);
    height: 570px!important;
    width: 100%!important;
}

.tradingview-widget-container.tradingview-chart::after {
    content: "";
    z-index: 3;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--body-background));
    pointer-events: none;
}

.widgets-block {
    display: grid;
    gap: 1.75rem;
    padding: 0 var(--gap);
    margin-top: 1rem;
}

.widget-block-charts {
    z-index: 5;
    position: absolute;
    top: 155px;
    left: 57px;
    height: 375px;
    width: 80px;
    background: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.robot-item-title {
    line-height: 1.4;
    display: grid;
    gap: 0.1rem;
}

.robot-item-gr {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--body-background-card);
    opacity: 0;
    transform: translateY(-15px) scale(1);
    animation: 0.45s robotitem ease-in-out forwards;
    animation-delay: 0s;
}

.robot-item-gr.robot-item-gr-card {
    border-radius: 0;
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--border-card);
    border-right: 1px solid var(--border-card);
}

.notice-block > .robot-item-gr {
    transform: translateY(-15px) scale(0.8);
}

.robot-tr-block > .robot-item-gr:nth-child(4) { animation-delay: 0.1s; }
.robot-tr-block > .robot-item-gr:nth-child(3) { animation-delay: 0.2s; }
.robot-tr-block > .robot-item-gr:nth-child(2) { animation-delay: 0.3s; }
.robot-tr-block > .robot-item-gr:nth-child(1) { animation-delay: 0.4s; }

.notice-block > .robot-item-gr:nth-child(1) { animation-delay: 0.1s; }
.notice-block > .robot-item-gr:nth-child(2) { animation-delay: 0.2s; }
.notice-block > .robot-item-gr:nth-child(3) { animation-delay: 0.3s; }
.notice-block > .robot-item-gr:nth-child(4) { animation-delay: 0.4s; }
.notice-block > .robot-item-gr:nth-child(n+5) { animation-delay: 0.5s; }

.robot-compl-anim {
    opacity: 0;
    transform: translateY(-15px) scale(0.8);
    animation: 0.45s robotitem ease-in-out forwards;
    animation-delay: 0s;
}

.notice-block > .robot-compl-anim:nth-child(1) { animation-delay: 0.1s; }
.notice-block > .robot-compl-anim:nth-child(2) { animation-delay: 0.2s; }
.notice-block > .robot-compl-anim:nth-child(3) { animation-delay: 0.3s; }
.notice-block > .robot-compl-anim:nth-child(4) { animation-delay: 0.4s; }
.notice-block > .robot-compl-anim:nth-child(n+5) { animation-delay: 0.5s; }

.robot-item-gr.nodelay, .robot-compl-anim.nodelay {
    animation-delay: 0s!important;
}

@keyframes robotitem {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.robot-item-gr-card {
    background-color: var(--body-background-card);
    border-radius: 0;
    padding: 1rem;
}

.notice-block .robot-item-gr-card:first-child {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    border-top: 1px solid var(--border-card);
}

.notice-block .robot-item-gr-card:last-child {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    border-bottom: 1px solid var(--border-card);
}

.robot-tr-val {
    line-height: 1.4;
    white-space: nowrap;
}

.robot-tr-val.plus {
    color: var(--success);
}

.robot-tr-val.minus {
    color: var(--error);
}

.robot-item-desc {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--body-color);
}

.robot-item-desc span {
    font-size: 1rem;
    color: var(--main-color-active);
    white-space: nowrap;
}

.robot-tr-block {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.robot-title {
    font-size: 1.1rem;
    color: var(--body-color);
    font-weight: 500;
}

.robot-assets-card {
    display: grid;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    padding: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--border-card);
    border-left: 1px solid var(--border-card);
    border-right: 1px solid var(--border-card);
}

.robot-assets-card::after {
    content: "";
    z-index: 3;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--body-background));
    pointer-events: none;
}

.robot-one-block {
    display: grid;
}

.robot-btn-block {
    position: relative;
    top: -20px;
    z-index: 15;
    width: 100%;
    display: flex;
    justify-content: center;
}

.robot-btn-more {
    white-space: nowrap;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    background-color: #3c3e4e;
    color: var(--body-color-reverse);
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.robot-item-chevron {
    width: 1.25rem;
    height: 1.25rem;
}

.robot-item-chevron path {
    opacity: 0.8;
}

.robot-card-gr {
    position: relative;
    width: 100%;
    height: 250px;
}

.robot-card-gr::after {
    content: "";
    z-index: 12;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--body-background));
    pointer-events: none;
}

.robot-card-block {
    display: grid;
    position: relative;
}

.robot-card-tok {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.notice-item.robot-notice {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    width: calc(100% - (var(--gap) * 2));
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.1);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card);
}

.robot-card-gr .notice-item.robot-notice:nth-child(1) {
    z-index: 10;
    animation: 0.45s robotorder ease-in-out;
}

@keyframes robotorder {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.robot-card-gr .notice-item.robot-notice:nth-child(2) {
    z-index: 9;
    top: 42px;
    left: 10px;
    width: calc((100% - (var(--gap) * 2)) - 20px);
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out, top 0.4s ease-in-out;
}

.robot-card-gr .notice-item.robot-notice:nth-child(3) {
    z-index: 8;
    top: 52px;
    left: 20px;
    width: calc((100% - (var(--gap) * 2)) - 40px);
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out, top 0.4s ease-in-out;
}

.nowrap {
    white-space: nowrap;
}

.robot-ord-top {
    position: absolute;
    bottom: 20px;
    z-index: 15;
    width: 100%;
    display: flex;
    justify-content: center;
}

.wl-balance.robot-balance {
    font-size: 2rem;
    margin-bottom: 0;
}

.robot-tokens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0.75rem;
}

.robot-token {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--body-background-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card);
}

.robot-token-gr {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 0.5rem;
}

.robot-token-img {
    height: 1.5rem;
    width: 1.5rem;
}

.robot-token-name {
    font-size: 1rem;
    color: var(--body-color);
}

.robot-token-amount {
    white-space: nowrap;
    justify-self: center;
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.8;
}

.header-modal-title.header-modal-title-small {
    font-size: 1.05rem;
}

.robot-status-gr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 var(--gap);
    margin-top: 2rem;
}

.robot-status-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.robot-active {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
    color: var(--success);
}

.robot-active-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0px 0px 6px 2px rgb(21, 215, 24, 1);
    animation: gradientShift 3s infinite ease-in-out;
}

@keyframes gradientShift {
    0% { box-shadow: 0px 0px 6px 2px rgb(21, 215, 24, 0.9); }
    50% { box-shadow: 0px 0px 6px 2px rgb(21, 215, 24, 0.4); }
    100% {  box-shadow: 0px 0px 6px 2px rgb(21, 215, 24, 0.9); }
}

.robot-status-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

.robot-err {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.robot-err-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

.robot-err-bold {
    font-weight: 500;
}

.robot-strat-block {
    display: grid;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.robot-strat-gr {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 1rem;
}

.ord-proccess.robot {
    gap: 0.75rem;
}

.loader-proccess.robot {
    width: 1.1rem;
    background:
        radial-gradient(farthest-side,var(--warning) 94%,#0000) top/3px 3px no-repeat,
        conic-gradient(#0000 30%,var(--warning));
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 3px),#000 0);
}

.robot-ord-title {
    font-size: 1rem;
    color: var(--warning);
    line-height: 1.4;
}

.robot-strat-desc {
    font-size: 1rem;
    color: var(--body-color-mute);
    line-height: 1.4;
    text-align: center;
}

.robot-strat-desc.improved {
    color: var(--success);
    opacity: 1;
}

.robot-strat-imp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.robot-strat-imp svg {
    position: relative;
    top: 1px;
    width: 1.25rem;
    height: 1.25rem;
}

.robot-strat-imp svg path {
    stroke: var(--success);
}

.robot-strat-anim {
    opacity: 0.1;
    transform: translateY(-10px) scale(0.95);
    animation: 0.45s robotitem ease-in-out forwards;
}

@keyframes robotitem {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.robot-anim-fund {
    opacity: 0.1;
    transform: scale(1.2);
    animation: 0.45s robotfund ease-in-out forwards;
}

@keyframes robotfund {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.robot-anim-funds {
    opacity: 0;
    transform: translateX(20px);
    animation: 0.45s robotfunds ease-in-out forwards;
}

@keyframes robotfunds {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.robot-anim-funds.funds-delay-1 {
    animation-delay: 0.1s;
}
.robot-anim-funds.funds-delay-2 {
    animation-delay: 0.2s;
}
.robot-anim-funds.funds-delay-3 {
    animation-delay: 0.3s;
}
.robot-anim-funds.funds-delay-4 {
    animation-delay: 0.4s;
}
.robot-anim-funds.funds-delay-5 {
    animation-delay: 0.5s;
}

.robot-anim-token {
    opacity: 0;
    transform: translateY(-20px) scale(0.5);
    animation: 0.45s robotfunds ease-in-out forwards;
}

@keyframes robottoken {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.robot-anim-token.token-delay-1 {
    animation-delay: 0s;
}
.robot-anim-token.token-delay-2 {
    animation-delay: 0s;
}
.robot-anim-token.token-delay-3 {
    animation-delay: 0.1s;
}
.robot-anim-token.token-delay-4 {
    animation-delay: 0.1s;
}
.robot-anim-token.token-delay-5 {
    animation-delay: 0.2s;
}
.robot-anim-token.token-delay-6 {
    animation-delay: 0.2s;
}
.robot-anim-token.token-delay-7 {
    animation-delay: 0.3s;
}
.robot-anim-token.token-delay-8 {
    animation-delay: 0.3s;
}
.robot-anim-token.token-delay-9 {
    animation-delay: 0.4s;
}
.robot-anim-token.token-delay-10 {
    animation-delay: 0.4s;
}

.robot-strat-none {
    display: none!important;
}

.robot-logo {
    margin-top: 1rem;
    display: flex;
    justify-content: start;
    padding: 0 var(--gap);
}

.robot-logo img {
    width: auto;
    height: 1.75rem;
}

.robot-nowr {
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

[data-robot-stream="orders"] > .robot-notice:nth-child(2) .records-item, [data-robot-stream="orders"] > .robot-notice:nth-child(3) .records-item {
    opacity: 0.2;
}

.adm-user-fav {
    display: none;
    z-index: 1!important;
    position: absolute;
    left: 1px;
    top: -11px;
    height: 1.9rem;
    width: 1.9rem;
}

.admisfav .adm-user-fav {
    display: block;
}

.admisfav .adm-avatar-img {
    box-shadow: 0px -10px 20px 5px rgb(255, 209, 2, 0.9);
}

.admisblock .adm-user-fav {
    display: block;
}

.admisblock .adm-avatar-img {
    box-shadow: 0px -10px 20px 5px rgba(255, 2, 2, 0.9);
}

.menu-top .icon svg.trade-svg {
    width: 1.9rem;
    height: 1.9rem;
}

.lucky-wait-info {
    font-size: 0.9rem;
}

.adm-vip-switch {
    margin-top: 0.5rem;
}

.address-bad {
    font-size: 1rem;
    color: var(--error);
    font-weight: 400;
}

.access-orders-closed {
    display: block;
    padding: 3rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--body-color-mute);
    font-weight: 400;
}

.n2-menu-bottom {
    box-shadow: 0px 0px 5px 0px rgba(80, 80, 80, 0.2);
    background: var(--menu-bottom-background);
    border-radius: 0;
}

.n2-home-btn {
    position: relative;
    top: -4px;
    background: var(--menu-bottom-background);
    padding: 5px 0;
    border-radius: 50%;
    box-shadow: 0px -5px 5px -5px rgba(80, 80, 80, 0.2);
}

.n2-home-btn svg {
    width: 2.5rem;
    height: 2.5rem;
}

.header-modal-back svg path {
    stroke: var(--body-color);
    stroke-width: 1.5;
}

.wl-action-button.ord-record-btn {
    color: var(--body-color);
    border: 1px solid var(--border-card);
}

.wl-action-button.ord-record-btn svg {
    width: 1rem;
    height: 1rem;
}

.wl-action-button.ord-record-btn svg path {
    fill: var(--body-color);
}

.tm-dropdown svg path {
    stroke: var(--body-color);
}

.wl-action-bar-bott.wl-action-bar-bott {
    margin-bottom: 0;
}

.vipone-desc-item-v.active.n2-tm {
    color: var(--body-color);
}

.gr-card.n2-gr-card {
    margin-bottom: 0.5rem;
}

.gr-card.n2-gr-card-f {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.gr-select-box svg path {
    stroke: var(--body-color);
}

.gr-dialog-item-check path {
    fill: var(--main-color);
}

.n2-my-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.n2-my-logo-r {
    display: grid;
    gap: 0.7rem;
}

.wl-action-button.ord-record-btn svg.n2-ord-svg {
    width: 1.24rem;
    height: 1.24rem;
}

.n2-tm-gens {
    margin-top: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
}

.n2-tm-gens .tm-gens {
    flex: 0 0 auto;
    width: 275px;
}

.n2-tm-gens .tm-gens:first-child {
    margin-left: var(--gap);
}

.n2-tm-gens .tm-gens:last-child {
    margin-right: var(--gap);
}

.tm-container.n2-tm-container {
    position: relative;
    padding: 1.3rem 0 6.5rem 0;
}

.tm-container.n2-tm-container .tm-header, .tm-container.n2-tm-container .wl-action-bar.wl-action-bar-bott {
    padding: 0 var(--gap) 0 var(--gap);
}

.tm-container.n2-tm-container .wl-overview-card {
    margin: 0 var(--gap) 0 var(--gap);
}

.n2-my-menu-list .my-list-item {
    padding: 0.9rem 1rem;
}

.menu-top .n2-icons-left {
    position: absolute;
    display: flex;
    align-items: center;
    left: var(--gap);
}

.menu-top .icon.n2-tg-icon {
    padding-left: 0rem;
    padding-right: 1.25rem;
}

.n2-home-news {
    display: flex;
    justify-content: center;
    margin: 0.5rem var(--gap) 0 var(--gap);
}

#newsSingle .notice-item {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.robot-overview-card .wl-overview-title {
    color: var(--body-color-reverse);
}

.vipone-block .vipone-desc-item-v.active {
    color: var(--body-color);
}

.n2-vip-name {
    position: relative;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--body-color);
}

.tm-gens .vipone-title {
    padding-bottom: 1rem;
}

.n2-over-card {
    border: 1px solid #085271;
    box-shadow: 0px 6px 5px -6px rgb(4 39 67 / 50%);
    background: var(--menu-bottom-background);
    color: var(--body-color);
    display: grid;
    grid-template-columns: 1fr minmax(auto, max-content);
    padding: 0!important;
}

.n2-vipone-desc-item-k {
    opacity: 0.8;
}

.n2-vipone-desc-item-v {
    color: var(--body-color-reverse);
    font-weight: 500;
    justify-self: end;
}

.n2-over-card-k {
    display: grid;
    gap: 1.1rem;
    margin-left: 1rem;
    padding: 1.3rem 0;
}

.n2-over-card-v {
    display: grid;
    gap: 1.1rem;
    background: var(--background-card-main);
    padding: 1.3rem 1rem;
    box-shadow: 0 0 5px 1px rgb(4 39 67 / 50%);
}

.n2-robot-gen {
    margin-top: 0.5rem;
}

.n2-inp-ord .gr-currency {
    left: 1rem;
    top: unset;
    right: unset;
}

.n2-inp-ord input {
    padding: 0 1rem 0 2.25rem;
}

.n2-draw {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card);
    box-shadow: 0px 6px 5px -6px rgb(0 0 0 / 20%);
    overflow: hidden;
    background-color: var(--body-background-card);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23a3a3a3' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    gap: 0.5rem;
    padding: 1rem;
}

.n2-draw-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    font-size: 1rem;
    border: none;
    padding: 0;
    background: none;
    outline: none;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    transition: transform 1s, background-color 2s;
    box-sizing: border-box;
    background: var(--menu-bottom-background);
    border-radius: var(--radius-card);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border: 1px solid var(--border-card);
    animation: draw-anim-block 0.5s ease-in-out forwards;
    transform: translateY(-200px);
    opacity: 0;
}

[data-click-in] .n2-draw-btn:nth-child(7) { animation-delay: 0.0s; }
[data-click-in] .n2-draw-btn:nth-child(8) { animation-delay: 0.1s; }
[data-click-in] .n2-draw-btn:nth-child(9) { animation-delay: 0.2s; }

[data-click-in] .n2-draw-btn:nth-child(4) { animation-delay: 0.3s; }
[data-click-in] .n2-draw-btn:nth-child(5) { animation-delay: 0.4s; }
[data-click-in] .n2-draw-btn:nth-child(6) { animation-delay: 0.5s; }

[data-click-in] .n2-draw-btn:nth-child(1) { animation-delay: 0.6s; }
[data-click-in] .n2-draw-btn:nth-child(2) { animation-delay: 0.7s; }
[data-click-in] .n2-draw-btn:nth-child(3) { animation-delay: 0.8s; }

@keyframes draw-anim-block {
    0%   { transform: translateY(-150px); opacity: 0; }
    70%  { transform: translateY(10px); opacity: 1; }
    85%  { transform: translateY(-4px); opacity: 1;  }
    100% { transform: translateY(0); opacity: 1;  }
} 

.n2-draw-btn > svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
}

.n2-draw-btn > span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--success);
}

.n2-draw-start {
    position: relative;
    top: -0.5rem;
    width: 100%;
    display: grid;
    justify-content: center;
}

.n2-draw-title {
    text-align: center;
    font-size: 1.2rem;
}

.n2-draw-btn.n2-draw-wait svg {
    animation: 0.8s draw-anim-svg ease-in-out forwards;
}

@keyframes draw-anim-svg {
    0% {
        transform: translate(-50%, -50%) scale(1) rotateY(0deg);
        transform-origin: center;
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0) rotateY(180deg);
        transform-origin: center;
        opacity: 0;
    }
}

.n2-draw-btn.n2-draw-wait span {
    animation: 0.8s draw-anim-span ease-in forwards;
}

@keyframes draw-anim-span {
    0% {
        transform: translate(-50%, -50%) scale(0);
        transform-origin: center;
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.25);
        transform-origin: center;
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        transform-origin: center;
        opacity: 1;
    }
}

.n2-vip-date {
    padding-top: 5px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.n2-funds-label {
    position: absolute;
    top: 50%;
    right: -0.4rem;
    transform: translateY(-50%);
    z-index: 1;
    background-color: var(--warning);
    font-size: 0.8rem;
    color: var(--body-color-reverse);
    font-weight: 400;
    white-space: nowrap;
    padding: 0.3rem;
    border-radius: var(--radius-card);
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.modal-content-load {
    transition: filter 0.4s;
}

.modal-content-load.n2-loadmod {
    filter: blur(3px);
}

.ord-proccess-with.n2-clock-with {
    background-color: var(--body-background-card);
    padding: 1rem;
    border-radius: var(--radius-card);
}

.tm-header.n2-tm-header {
    justify-content: end;
    position: relative;
    margin-bottom: 0;
}

.tm-header.n2-tm-header button {
    position: absolute;
    bottom: -5px;
}

.n2-tm-note {
    margin: 1.3rem var(--gap) 0 var(--gap);
}
