@font-face {
    font-family: ProductSans;
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/ProductSansRegular.ttf);
}

@font-face {
    font-family: ProductSans;
    font-display: swap;
    font-style: bold;
    font-weight: 600;
    src: url(/fonts/ProductSansBold.ttf);
}

:root {
    --text-color: #8794a1;
    --accent-color: #4db2ff;
    --accent-rgb: 77, 178, 255;
    --accent-bg-color: rgba(var(--accent-rgb), .1);
    --dropdown-color: #dde4eb;
    --dropdown-bg-color: #2e3a47;
    --dropdown-bg-hover-color: #384553;
    --dropdown-secondary-color: #8c9aa9;
    --article-color: #fff;
    --dropdown-color: #fff;
    --header-color: #fff;
    --field-color: #fff;
    --field-bg-color: #242e38;
    --field-second-color: #8494a3;
    --field-placeholder-color: #8a98a6;
    --field-accent-color: #248bda;
    --btn-primary-color: #fff;
    --btn-primary-bg-rgb: 36, 139, 218;
    --btn-primary-bg-color: rgb(var(--btn-primary-bg-rgb));
    --btn-primary-bg-hover-color: #207cc2;
    --btn-primary-disabled-color: #a6d8ff;
    --btn-default-color: #fff;
    --btn-default-bg-color: #242e38;
    --btn-default-bg-hover-color: #293440;
    --btn-header-color: #fff;
    --btn-header-bg-rgb: 41, 52, 64;
    --btn-header-bg-color: rgb(var(--btn-header-bg-rgb));
    --btn-header-bg-hover-rgb: 63, 78, 96;
    --btn-header-bg-hover-color: rgb(var(--btn-header-bg-hover-rgb));
    --table-bg-rgb: 33, 42, 51;
    --table-bg-color: rgb(var(--table-bg-rgb));
    --table-header-bg-color: #293440;
    --table-bg-hover-color: #293440;
    --table-text-color: #8c9aa9;
    --filters-header-bg-color: #28323d;
    --filters-icon-color: #838f9c;
    --value-color: #fff;
    --header-height: 48px;
    --def-border-radius: 8px;
    --min-border-radius: 3px;
    --popup-border-radius: 12px;
    --bg-rgb: 26, 32, 38;
    --bg-color: rgb(var(--bg-rgb));
    --header-bg-rgb: 33, 42, 51;
    --header-bg-color: rgba(var(--header-bg-rgb), .9);
    --bg-hover-color: #212a33;
    --def-transition-duration: .2s;
    --def-transition: var(--def-transition-duration) ease;
    --first-half-transition: .1s ease-out;
    --second-half-transition: .1s ease-in .1s;
    --half-transition-duration: .15s;
    --settings-bg-rgb: var(--header-bg-rgb);
    --settings-bg-color: rgb(var(--settings-bg-rgb));
    --settings-bg-hover-color: #293440;
    --inactive-bg-color: #212a33;
    --inactive-color: #354352;
    --footer-bg-color: #111417;
    --footer-color: #6d8394;
    --footer-bg-color: #111417;
    --tooltip-bg-color: #2d3c4c;
    --tooltip-color: #fff;
    --header-tab-color-rgb: 203, 215, 229;
    --header-tab-color-active: #fff;
    --unavail-color-rgb: 255, 88, 99;
    --unavail-color: rgb(var(--unavail-color-rgb));
    --danger-color-rgb: 255, 88, 99;
    --danger-bg-color: rgba(var(--danger-color-rgb), .14);
    --danger-text-color: rgb(var(--danger-color-rgb));
    --warning-color-rgb: 255, 153, 83;
    --warning-bg-color: rgba(var(--warning-color-rgb), .14);
    --warning-text-color: rgb(var(--warning-color-rgb));
}

html.header-tabs {
    --header-height: 90px;
}

body {
    font-family: ProductSans, -apple-system, system-ui, sans-serif;
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    --cur-bg-rgb: var(--bg-rgb);
    background: var(--footer-bg-color);
    position: relative;
    padding: 0;
    color: var(--text-color);
}

.no-transition,
.no-transition * {
    transition: none !important;
}

a,
a:hover {
    color: var(--accent-color);
}

a:focus {
    color: var(--accent-color);
    outline: none;
}

.accent-color {
    color: var(--accent-color);
}

.mini-frac {
    font-size: 80%;
}

.link-text {
    color: var(--accent-color);
    cursor: pointer;
}

.link-text:hover {
    text-decoration: underline;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.icon,
.icon-after:after,
.icon-before:before {
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon-after:after,
.icon-before:before {
    content: '';
}

i.icon {
    font-style: normal;
}

.btn {
    display: inline-flex;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    padding: 12px 15px;
    justify-content: center;
    border-radius: var(--def-border-radius);
    /*transition: background-color var(--def-transition);*/
    border: none;
}

.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn:focus:active {
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: var(--btn-primary-color);
    background-color: var(--btn-primary-bg-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: var(--btn-primary-color);
    background-color: var(--btn-primary-bg-hover-color);
}

.btn-primary[disabled] {
    color: var(--btn-primary-disabled-color);
    background-color: var(--btn-primary-bg-color);
    opacity: 1;
}

.btn-default {
    color: var(--btn-default-color);
    background-color: var(--btn-default-bg-color);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active {
    color: var(--btn-default-color);
    background-color: var(--btn-default-bg-hover-color);
}

.btn-link,
.btn-link:hover,
.btn-link:focus {
    color: var(--accent-color);
}

.btn.btn-link:hover,
.btn.btn-link:focus {
    background-color: var(--bg-hover-color);
    text-decoration: none;
}

.btn-tonkeeper .tm-button-label:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    background: var(--image-url-tonkeeper) 0 center no-repeat;
    background-size: contain;
}

.form-control-wrap {
    display: flex;
    border-radius: var(--def-border-radius);
    background: var(--field-bg-color);
    position: relative;
}

.form-control {
    height: auto;
    font-size: 15px;
    line-height: 20px;
    padding: 11px 22px;
    word-break: break-word;
    box-shadow: none !important;
    border: none;
    background: var(--field-bg-color);
    border-radius: var(--def-border-radius);
    color: var(--field-color);
}

.form-control-wrap .form-control {
    background: transparent;
}

.form-control::-webkit-input-placeholder {
    transition: opacity .15s ease;
    color: var(--field-placeholder-color);
}

.form-control::-moz-placeholder {
    transition: opacity .15s ease;
    color: var(--field-placeholder-color);
}

.form-control:-ms-input-placeholder {
    transition: opacity .15s ease;
    color: var(--field-placeholder-color);
}

.form-control:focus::-webkit-input-placeholder {
    opacity: 0.4;
}

.form-control:focus::-moz-placeholder {
    opacity: 0.4;
}

.form-control:focus:-ms-input-placeholder {
    opacity: 0.4;
}

.form-control-hint {
    font-size: 14px;
    line-height: 18px;
    padding: 12px 16px 12px 0;
    color: var(--text-color);
    white-space: nowrap;
}

.form-group>label {
    font-size: 15px;
    line-height: 18px;
    margin: 15px 13px 10px;
    color: #fff;
}

.form-group>label .help-text {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-color);
}

.tm-main-form-label {
    font-size: 15px;
    line-height: 23px;
    margin: 0px 19px 12px;
    color: var(--header-color);
}

.tm-main-form-label-extra {
    font-size: 13px;
    line-height: 20px;
    margin: 2px 19px 13px;
    float: right;
}

.tm-main-form-label-badge {
    display: inline-block;
    font-size: 11px;
    line-height: 16px;
    font-weight: bold;
    padding: 3px 7px;
    margin: 0 10px;
    vertical-align: top;
    border-radius: 5px;
    white-space: nowrap;
    color: #5aec8c;
    background-color: rgba(90, 236, 140, .1);
}

.tm-main-form-group {
    margin-bottom: 20px;
}

.tm-main-form-link-wrap {
    font-size: 13px;
    line-height: 19px;
    margin-top: 20px;
    text-align: center;
}

.tm-form-radio-items {
    margin: -4px 0;
}

.tm-form-radio-item,
.tm-form-radio-item-more {
    display: block;
    position: relative;
    padding: 4px 0;
    margin-bottom: 0;
    cursor: pointer;
}

.icon-options-more:after {
    width: 20px;
    height: 20px;
    background-image: var(--image-url-options-more-icon);
}

.icon-hide:before {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-image: var(--image-url-hide-icon);
}

.tm-form-radio-item-wrap {
    padding: 0 3px;
    margin: 0 -3px;
    height: 56px;
    transition: all var(--def-transition);
    overflow: hidden;
}

.options-expanded .tm-form-radio-item-wrap.tm-more-options,
.options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
}

.tm-form-radio-item input.radio {
    position: absolute;
    left: -5000px;
}

.tm-form-radio-label {
    display: flex;
    font-size: 15px;
    line-height: 20px;
    padding: 14px 19px;
    border-radius: var(--def-border-radius);
    background: var(--field-bg-color);
    box-shadow: 0 0 0 0px var(--accent-color);
    transition: box-shadow var(--def-transition);
    color: var(--field-color);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.tm-form-radio-label svg {
    color: var(--field-bg-color);
}

.tm-form-radio-item input.radio~.tm-form-radio-label:before {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--field-second-color);
    background-color: var(--accent-color);
    box-shadow: inset 0 0 0 20px var(--field-bg-color);
    transition: border-color var(--def-transition), box-shadow var(--def-transition);
    margin-right: 14px;
}

.tm-form-radio-item input.radio:checked~.tm-form-radio-label {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.tm-form-radio-item input.radio:checked~.tm-form-radio-label:before {
    box-shadow: inset 0 0 0 2px var(--field-bg-color);
    border-color: var(--accent-color);
}

.tm-form-radio-item-more .tm-form-radio-label {
    display: block;
    text-align: center;
    color: var(--accent-color);
}

.tm-form-radio-label .tm-radio-label {
    flex-grow: 1;
}

.tm-form-radio-label .tm-radio-label-badge {
    display: inline-block;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    padding: 2px 4px;
    margin: 1px 4px 1px 8px;
    vertical-align: top;
    border-radius: 4px;
    background-color: var(--field-accent-color);
    white-space: nowrap;
}

.tm-form-radio-label .tm-value {
    width: 70px;
}

.tm-stars-price .tm-value.icon-ton:before,
.tm-form-radio-label .tm-value.icon-ton:before {
    width: 15px;
    height: 19px;
    margin-left: -1px;
    margin-right: 4px;
}

.tm-stars-options .tm-form-radio-label .tm-value {
    width: 100px;
    text-align: right;
}

.tm-form-radio-label .tm-radio-desc {
    font-weight: normal;
    text-align: right;
    color: var(--dropdown-secondary-color);
    width: 70px;
}

.tm-form-radio-label .tm-quantity {
    width: 60px;
    font-weight: normal;
    color: var(--dropdown-secondary-color);
}

.tm-form-radio-label .tm-quantity~.tm-value {
    width: 80px;
}

.tm-form-checkbox-item {
    display: inline-block;
    font-weight: normal;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}

.tm-form-checkbox-item input.checkbox {
    position: absolute;
    left: -5000px;
}

.tm-form-checkbox-label {
    display: block;
    font-size: 13px;
    line-height: 18px;
    padding: 5px 10px;
    color: var(--field-color);
    position: relative;
    overflow: hidden;
}

.tm-form-checkbox-item input.checkbox~.tm-form-checkbox-label:before {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1.4px var(--field-second-color);
    background: transparent var(--image-url-checkbox-icon) center no-repeat;
    background-size: 0%;
    transition: box-shadow var(--def-transition), background var(--def-transition);
    margin-right: 9px;
}

.tm-form-checkbox-item input.checkbox:checked~.tm-form-checkbox-label:before {
    box-shadow: inset 0 0 0 0 var(--field-second-color);
    background-color: #119bf7;
    background-size: 100%;
}

.tm-form-checkbox-label {
    display: inline-block;
}

.tm-form-checkbox-label {
    display: flex;
}

.tm-form-checkbox-label .tm-checkbox-label {
    flex-grow: 1;
}

.fit-text {
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
}

.tm-btn-group .btn {
    padding: 5px;
    color: var(--dropdown-color);
    border-radius: 0;
}

.tm-btn-group .btn:after {
    position: relative;
    transform: scale(.8);
}

.tm-btn-group .btn:first-child {
    border-top-left-radius: var(--def-border-radius);
    border-bottom-left-radius: var(--def-border-radius);
}

.tm-btn-group .btn:first-child:after {
    left: 1px;
}

.tm-btn-group .btn:last-child {
    border-top-right-radius: var(--def-border-radius);
    border-bottom-right-radius: var(--def-border-radius);
}

.tm-btn-group .btn:last-child:after {
    left: -1px;
}

.tm-dropdown {
    position: relative;
}

.tm-dropdown .dropdown-toggle.btn {
    padding: 5px 9px;
    color: var(--dropdown-color);
}

.tm-dropdown .dropdown-toggle.btn:after {
    width: 11px;
    height: 18px;
    margin-left: 4px;
    margin-right: -1px;
    background-image: var(--image-url-dropdown-caret);
}

.tm-dropdown.open>.dropdown-toggle.btn {
    --cur-bg-rgb: var(--btn-primary-bg-rgb);
    background-color: var(--btn-primary-bg-color);
}

.tm-dropdown.open>.dropdown-toggle.btn:after {
    background-image: var(--image-url-dropdown-caret-active);
}

.tm-dropdown>.dropdown-menu {
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
    z-index: 90;
    right: 0;
    left: auto;
    padding: 0;
    background-color: var(--dropdown-bg-color);
    border-radius: var(--def-border-radius);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.tm-header-action.tm-dropdown>.dropdown-menu {
    padding: 6px 0;
}

.tm-dropdown>.dropdown-backdrop {
    z-index: 89;
}

.tm-dropdown>.dropdown-menu>li>.dropdown-menu-item {
    display: block;
    position: relative;
    padding: 8px 60px 8px 14px;
    line-height: 20px;
    color: var(--dropdown-color);
    white-space: nowrap;
    cursor: pointer;
    clear: both;
}

.tm-dropdown>.dropdown-menu>li>.dropdown-menu-item.icon-before {
    padding-left: 46px;
}

.tm-dropdown>.dropdown-menu>li>.dropdown-menu-item[data-counter]:after {
    content: attr(data-counter);
    display: inline-block;
    color: var(--dropdown-secondary-color);
    white-space: nowrap;
    position: absolute;
    right: 15px;
}

.tm-dropdown>.dropdown-menu>li>.dropdown-menu-item:hover,
.tm-dropdown>.dropdown-menu>li>.dropdown-menu-item:focus {
    background-color: var(--dropdown-bg-hover-color);
}

.tm-dropdown>.dropdown-menu>li.selected {
    position: relative;
}

.tm-dropdown>.dropdown-menu>li.selected>.dropdown-menu-item:after {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 0;
    background-repeat: no-repeat;
    width: 14px;
    height: 10px;
    background-image: var(--image-url-dropdown-selected);
    position: absolute;
    right: 14px;
    top: 14px;
}

.tm-header-action.tm-dropdown>.dropdown-menu>li>.dropdown-menu-item.icon-before:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    margin: 8px 13px;
}

.tm-dropdown .icon-sort-asc:before,
.tm-dropdown .icon-sort-desc:before {
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

.tm-dropdown .icon-sort-asc:before {
    background-image: var(--image-url-sort-asc-icon);
}

.tm-dropdown .icon-sort-desc:before {
    background-image: var(--image-url-sort-desc-icon);
}

.tm-dropdown.open .icon-sort-asc:before,
.tm-dropdown.open .icon-sort-desc:before {
    background-image: var(--image-url-sort-active-icon);
}

#aj_content {
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    min-height: var(--viewport-height, 100vh);
    background: var(--bg-color);
}

.tm-header {
    display: flex;
    margin: 0 auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    background-color: var(--header-bg-color);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    height: var(--header-height);
}

.tm-logo {
    display: inline-flex;
    padding: 15px 14px;
}

.tm-logo-icon,
.tm-logo-text {
    display: inline-block;
    vertical-align: top;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.tm-logo-icon {
    width: 18px;
    height: 18px;
    padding: 8px;
    margin: -8px;
    box-sizing: content-box;
    background-image: var(--image-url-logo-icon);
    animation-timing-function: steps(59);
    animation-duration: 1s;
}

.tm-logo.play .tm-logo-icon {
    background-image: var(--image-url-logo-icon-animated, var(--image-url-logo-icon));
    animation-name: logo-play;
}

.tm-logo-progress .tm-logo-icon {
    --image-url-logo-icon-animated: url('/img/TelemintLogoSprite2.svg');
    animation-iteration-count: infinite;
    animation-duration: 2s;
    width: 78px;
    height: 78px;
}

@-webkit-keyframes logo-play {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes logo-play {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.tm-logo-text {
    width: 77px;
    height: 18px;
    background-image: var(--image-url-logo-text);
    background-position: left center;
    background-size: contain;
}

.tm-header-body {
    flex-grow: 1;
}

.tm-header-actions {
    margin: 10px 16px;
}

.tm-header-actions-thin {
    margin-right: 0;
}

.tm-header-action+.tm-header-action {
    margin-left: 14px;
}

.tm-header-actions .tm-dropdown>.dropdown-menu {
    width: 100%;
    min-width: fit-content;
}

.tm-header-button {
    font-size: 13px;
    line-height: 18px;
    padding: 5px 9px;
}

.tm-header-button.btn-default {
    color: var(--btn-header-color);
    --cur-bg-rgb: var(--btn-header-bg-rgb);
    background-color: var(--btn-header-bg-color);
}

.tm-header-button.btn-default:hover {
    --cur-bg-rgb: var(--btn-header-bg-hover-rgb);
    background-color: var(--btn-header-bg-hover-color);
}

.tm-header-button-photo {
    display: inline-block;
    vertical-align: top;
    width: 28px;
    height: 28px;
    border-radius: 14px;
    background: #677a8c;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: -5px 9px -5px -8px;
}

.tm-header-button-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tm-button-label {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tm-button-label.opt-fixed-width {
    max-width: 100px;
}

.icon-connect-telegram {
    width: 17px;
    height: 18px;
    background-image: var(--image-url-connect-telegram);
    margin-right: 9px;
    margin-left: -2px;
}

.icon-connect-ton {
    width: 17px;
    height: 18px;
    background-image: var(--image-url-connect-ton);
    margin-right: 8px;
    margin-left: -1px;
}

.icon-collectibles {
    width: 18px;
    height: 18px;
    background-image: var(--image-url-collectibles);
    margin-right: 10px;
}

.icon-change-account {
    width: 19px;
    height: 18px;
    background-image: var(--image-url-change-account);
    margin-right: 10px;
}

.icon-telegram-premium,
.icon-telegram-stars {
    width: 22px;
    height: 30px;
    margin-left: 6px;
}

i.icon-telegram-premium {
    background-image: var(--image-url-telegram-premium);
}

i.icon-telegram-stars {
    background-image: var(--image-url-stars-icon);
}

svg.icon-telegram-premium use {
    fill: var(--field-accent-color);
    scale: 0.833;
}

.tm-qr-code-label .icon-telegram-premium {
    margin: -4px 2px -2px;
    width: 24px;
    height: 34px;
}

.tm-qr-code-label svg.icon-telegram-premium use {
    fill: currentColor;
    scale: 0.9444;
}

.tm-qr-code-label svg.icon-telegram-stars {
    width: 20px;
    height: 20px;
    scale: 1.2;
    margin: 4px 2px;
}

.tm-qr-code-label svg.icon-telegram-stars use {
    transition: var(--def-transition) opacity;
}

.tm-qr-code-label svg.icon-telegram-stars use.icon-bg {
    fill: currentColor;
    opacity: 0;
}

.qr-inactive .tm-qr-code-label svg.icon-telegram-stars use.icon-main {
    opacity: 0;
}

.qr-inactive .tm-qr-code-label svg.icon-telegram-stars use.icon-bg {
    opacity: 1;
}

.icon-ton-qr {
    width: 24px;
    height: 28px;
    margin-right: 2px;
}

.tm-scrollable-wrap {
    position: relative;
    overflow: hidden;
}

.tm-x-scrollable,
.tm-y-scrollable {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tm-x-scrollable {
    overflow-y: none;
}

.tm-y-scrollable {
    overflow-x: none;
}

.tm-x-scrollable::-webkit-scrollbar,
.tm-y-scrollable::-webkit-scrollbar {
    display: none;
}

.tm-x-scrollable:before,
.tm-x-scrollable:after {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    width: var(--shadow-size);
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(-90deg, var(--shadow-gradient));
    transition: transform var(--def-transition);
    transform: translateX(calc(0 - var(--shadow-move)));
    z-index: 2;
}

.tm-x-scrollable:after {
    background: linear-gradient(90deg, var(--shadow-gradient));
    transform: translateX(var(--shadow-move));
    right: 0;
    left: auto;
}

.tm-x-scrollable.leftscroll:before,
.tm-x-scrollable.rightscroll:after {
    transform: translateX(0);
}

.tm-y-scrollable:before,
.tm-y-scrollable:after {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    height: var(--shadow-size);
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, var(--shadow-gradient));
    transition: transform var(--def-transition);
    transform: translateY(calc(0px - var(--shadow-move)));
    z-index: 2;
}

.tm-y-scrollable:after {
    background: linear-gradient(180deg, var(--shadow-gradient));
    transform: translateY(var(--shadow-move));
    bottom: 0;
    top: auto;
}

.tm-y-scrollable.topscroll:before,
.tm-y-scrollable.bottomscroll:after {
    transform: translateY(0);
}

.tm-header-tabs-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 48px;
}

.tm-header-tabs {
    display: flex;
    padding: 0 17px;
    --shadow-gradient: rgba(var(--header-bg-rgb), 0) 0%, rgba(var(--header-bg-rgb), 1) 70%;
    --shadow-size: 24px;
    --shadow-move: 10px;
}

.tm-header-tab,
.tm-section-tab,
.tm-pagination-item {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    padding: 12px 0;
    white-space: nowrap;
    color: rgba(var(--header-tab-color-rgb), .7);
    transition: color var(--def-transition);
    position: relative;
}

a.tm-header-tab:hover,
a.tm-header-tab:focus,
a.tm-section-tab:hover,
a.tm-section-tab:focus,
a.tm-pagination-item:hover,
a.tm-pagination-item:focus {
    text-decoration: none;
    color: rgba(var(--header-tab-color-rgb), .9);
}

.tm-header-tab.tab-active,
a.tm-header-tab.tab-active:hover,
a.tm-header-tab.tab-active:focus,
.tm-section-tab.tab-active,
a.tm-section-tab.tab-active:hover,
a.tm-section-tab.tab-active:focus,
.tm-pagination-item.active,
a.tm-pagination-item.active:hover,
a.tm-pagination-item.active:focus {
    color: var(--header-tab-color-active);
}

.tm-header-tab.tab-active:after,
.tm-section-tab.tab-active:after,
.tm-pagination-item.active:after {
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--field-accent-color);
    border-radius: 3px 3px 0 0;
}

.tm-header-tab+.tm-header-tab {
    margin-left: 17px;
}

.tm-label-new,
.tm-label-soon {
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    padding: 1px 5px;
    background-color: var(--field-accent-color);
    display: inline-block;
    margin-left: 4px;
    color: #fff;
    border-radius: 4px;
}

.tm-label-soon {
    background-color: #374451;
}

.tm-rarity {
    font-size: 10px;
    line-height: 14px;
    font-weight: normal;
    padding: 1px 4px;
    color: var(--accent-color);
    background-color: rgba(var(--accent-rgb), .1);
    margin-left: 4px;
    border-radius: 9px;
    display: inline-block;
    vertical-align: top;
}

.tm-rarity-uncommon {
    --accent-color: #5aec8c;
    --accent-rgb: 90, 236, 140;
}

.tm-rarity-rare {
    --accent-color: #26d0e3;
    --accent-rgb: 38, 208, 227;
}

.tm-rarity-epic {
    --accent-color: #b983ff;
    --accent-rgb: 185, 131, 255;
}

.tm-rarity-legendary {
    --accent-color: #ffbe4f;
    --accent-rgb: 255, 190, 79;
}

.tm-header-menu-button {
    padding: 15px;
    cursor: pointer;
}

.icon-header-menu:before {
    width: 22px;
    height: 18px;
    background-image: var(--image-url-header-menu);
}

.tm-header-menu {
    position: absolute;
    z-index: 105;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, .5);
    transition: height 0s 0s, background-color var(--def-transition);
    height: var(--viewport-height, 100vh);
}

.tm-header-menu.hide {
    display: block !important;
    background: rgba(0, 0, 0, 0);
    transition: height 0s var(--def-transition-duration), background-color var(--def-transition);
    pointer-events: none;
    height: 0vh;
}

.tm-header-menu-close-button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px;
    z-index: 106;
    cursor: pointer;
    transition: opacity var(--def-transition), transform var(--def-transition);
}

.tm-header-menu.hide .tm-header-menu-close-button {
    transform: rotate(-45deg);
    opacity: 0;
}

.icon-header-menu-close:before {
    width: 22px;
    height: 18px;
    background-image: var(--image-url-header-menu-close);
}

.tm-header-menu-window {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 288px;
    right: 0;
    top: 0;
    bottom: 0;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--bg-color);
    transition: transform var(--def-transition);
}

.tm-header-menu.hide .tm-header-menu-window {
    transform: translateX(100%);
}

.tm-menu-account-header {
    padding: 12px 64px 12px 19px;
}

.tm-header-menu-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
}

.tm-header-menu-footer {
    margin: auto 0 0;
    padding: 40px 12px 0;
}

.tm-header-menu-footer-text {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 20px;
    color: var(--header-color);
}

.tm-menu-button {
    padding: 10px 20px;
    margin: 0 0 12px;
}

.tm-menu-account-address {
    font-size: 15px;
    line-height: 22px;
    font-weight: bold;
    color: var(--header-color);
}

.tm-menu-account-desc {
    font-size: 11px;
    line-height: 20px;
    color: var(--accent-color);
}

.tm-menu-tg-account {
    display: flex;
    padding: 0 0 8px;
    margin: 0 -12px 0;
}

.tm-menu-tg-account-body {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    position: relative;
    padding: 6px 10px 5px 58px;
    white-space: nowrap;
}

a.tm-menu-tg-account-body:hover,
a.tm-menu-tg-account-body:focus {
    text-decoration: none;
}

.tm-menu-tg-account-photo {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    vertical-align: top;
    width: 26px;
    height: 26px;
    border-radius: 13px;
    background: #677a8c;
    text-align: center;
    overflow: hidden;
    margin: 8px 15px;
}

.tm-menu-tg-account-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tm-menu-tg-account-name {
    font-size: 12px;
    line-height: 15px;
    font-weight: bold;
    color: var(--header-color);
    text-overflow: ellipsis;
    overflow: hidden;
}

.tm-menu-tg-account-desc {
    font-size: 11px;
    line-height: 16px;
    color: var(--table-text-color);
    text-overflow: ellipsis;
    overflow: hidden;
}

.tm-menu-tg-account-logout {
    font-size: 12px;
    line-height: 18px;
    font-weight: normal;
    padding: 12px 18px;
}

.tm-menu-subheader {
    font-size: 10px;
    line-height: 17px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 16px 19px 2px;
    margin: 0;
}

.support-bots-text-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    background-image: var(--image-url-support-bots-text-icon);
    margin: 1px 5px 0 0;
    position: relative;
}

.tm-header-menu-body:first-child .tm-menu-subheader:first-child {
    padding-top: 26px;
    padding-right: 64px;
}

.tm-menu-link {
    display: block;
    font-size: 13px;
    line-height: 20px;
    padding: 11px 15px 11px 58px;
    position: relative;
    color: var(--header-color);
}

.tm-menu-link[data-counter]:after {
    content: attr(data-counter);
    display: inline-block;
    color: var(--dropdown-secondary-color);
    white-space: nowrap;
    position: absolute;
    right: 20px;
}

a.tm-menu-link:hover,
a.tm-menu-link:focus {
    background-color: var(--bg-hover-color);
    text-decoration: none;
    color: var(--header-color);
}

.tm-menu-link.icon-before:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    margin: 9px 17px;
}

.icon-menu-profile:before {
    background-image: var(--image-url-menu-profile);
}

.icon-menu-assets:before {
    background-image: var(--image-url-menu-assets);
}

.icon-menu-bids:before {
    background-image: var(--image-url-menu-bids);
}

.icon-menu-numbers:before {
    background-image: var(--image-url-menu-numbers);
}

.icon-menu-sessions:before {
    background-image: var(--image-url-menu-sessions);
}

.icon-menu-convert:before {
    background-image: var(--image-url-menu-convert);
}

.icon-menu-disconnect:before {
    background-image: var(--image-url-menu-disconnect);
}

.icon-menu-wallet:before {
    background-image: var(--image-url-menu-wallet);
}

.icon-menu-verify:before {
    background-image: var(--image-url-menu-verify);
}

.icon-menu-wallet-link:before {
    background-image: var(--image-url-menu-wallet-link);
}

.icon-menu-logout:before {
    background-image: var(--image-url-menu-logout);
}

.icon-menu-about:before {
    background-image: var(--image-url-menu-about);
}

.icon-menu-faq:before {
    background-image: var(--image-url-menu-faq);
}

.icon-menu-privacy:before {
    background-image: var(--image-url-menu-privacy);
}

.icon-menu-terms:before {
    background-image: var(--image-url-menu-terms);
}

@media (max-width: 991px) {
    .tm-header-actions-wide {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .tm-header-actions-thin {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .tm-header-menu-button,
    .tm-header-menu {
        display: none !important;
    }
}

.tm-footer {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    background-color: var(--footer-bg-color);
}

.tm-footer-links {
    display: flex;
    font-size: 12px;
    line-height: 16px;
    padding: 14px 20px;
    justify-content: center;
}

.tm-footer-link+.tm-footer-link {
    margin-left: 32px;
}

.tm-footer-link,
.tm-footer-link:hover,
.tm-footer-link:focus {
    color: var(--footer-color);
}

.tm-under-table-buttons {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.tm-under-table-buttons .btn {
    padding: 10px 16px;
}

.tm-under-table-buttons .btn+.btn {
    margin-top: 10px;
}

.tm-unavailable {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: var(--viewport-height, 100vh);
    padding: 20px 20px 120px;
}

.tm-unavailable-header {
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    color: var(--header-color);
    margin: 0;
}

.tm-unavailable-text {
    font-size: 13px;
    line-height: 17px;
    margin: 4px 0 0;
}

.tm-unavailable .tm-logo {
    padding: 0;
}

.tm-unavailable .tm-logo-icon {
    width: 130px;
    height: 130px;
    margin: -15px 0;
    padding: 0;
}

.tm-article {
    margin: 0 auto;
    max-width: 480px;
}

#dev_page_content_wrap {
    padding: 4px 18px 40px;
    max-width: none;
    color: var(--article-color);
}

#dev_page_content,
#dev_page_content p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--article-color);
}

#dev_page_content p,
#dev_page_content li {
    font-size: 13px;
    line-height: 17px;
    color: var(--text-color);
}

#dev_page_content>p {
    margin-bottom: 15px;
}

#dev_page_content_wrap h1,
#dev_page_content_wrap h2,
#dev_page_content_wrap h3,
#dev_page_content_wrap h4,
.page-content-wrap h3 {
    line-height: 1.4;
    font-weight: bold;
    position: relative;
}

#dev_page_content_wrap h1 {
    font-size: 24px;
    margin: 21px 0 15px;
}

#dev_page_content_wrap h2,
#dev_page_content_wrap h3 {
    font-size: 19px;
    margin: 21px 0 12px;
}

#dev_page_content_wrap h4,
#dev_page_content_wrap h5 {
    font-size: 17px;
    margin: 17px 0 10px;
}

#dev_page_content_wrap pre,
#dev_page_content_wrap code {
    font-family: monospace, 'Courier New';
    background-color: #9bc3e1;
    font-size: 87%;
}

#dev_page_content_wrap blockquote {
    background-color: var(--inactive-bg-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 3px 6px 6px 3px;
    padding: 9px 17px;
}

#dev_page_content_wrap ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

#dev_page_content_wrap ul>li {
    position: relative;
    padding-left: 21px;
    color: var(--text-color);
}

#dev_page_content_wrap ul>li:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background-color: var(--accent-color);
}

#dev_page_content_wrap ol {
    padding-left: 15px;
}

#dev_page_content_wrap ol>li {
    padding-left: 6px;
}

#dev_page_content_wrap hr {
    border-color: var(--dropdown-bg-hover-color);
    margin: 30px 0;
}

#dev_page_content_wrap .dev_page_image {
    display: block;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 10px 0px 5px;
}

#dev_page_content_wrap a.anchor {
    position: absolute;
    height: 1px;
    margin-top: -15px;
    top: calc(-1 * var(--header-height));
}

.tm-main {
    margin: 0 auto;
    width: 480px;
    max-width: 100%;
    padding-bottom: 70px;
    flex-grow: 1;
}

.tm-main-intro {
    text-align: center;
    padding: 21px 12px;
}

.tm-main-intro-icon {
    text-align: center;
}

.tm-main-intro-icon:before {
    margin: 12px 0 30px;
}

.icon-done:before {
    width: 96px;
    height: 96px;
    background-image: var(--image-url-done-icon);
}

.tm-main-intro-header {
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    color: var(--header-color);
    margin: 0;
}

.tm-main-intro-text {
    font-size: 13px;
    --line-height: 17px;
    line-height: var(--line-height);
    text-wrap: pretty;
    margin: 4px 0 0;
}

.icon-link-more:after {
    --icon-height: var(--line-height, 17px);
    width: calc(0.5 * var(--icon-height));
    height: var(--icon-height);
    background-image: var(--image-url-link-more);
}

.tm-main-intro-link {
    display: inline-block;
    font-size: 12px;
    line-height: 19px;
    border-radius: 20px;
    background-color: #12171c;
    color: var(--text-color);
    padding: 7px 15px;
    margin: 12px 0 -6px;
}

.tm-main-intro-link:hover,
.tm-main-intro-link:focus {
    text-decoration: none;
    color: var(--text-color);
}

.tm-main-intro-link .icon-link-more {
    color: var(--accent-color);
}

.tm-main-intro-link .icon-link-more:hover {
    text-decoration: underline;
}

.tm-main-intro-link .icon-link-more:after {
    width: 8px;
    height: 18px;
}

.tm-main-intro-buttons {
    text-align: center;
    max-width: 348px;
    margin: 0 auto;
}

.tm-main-intro-buttons .tm-main-intro-link-wrap {
    font-size: 14px;
    line-height: 20px;
    margin-top: 24px;
    text-align: center;
}

.tm-main-intro-auth-desc {
    font-size: 13px;
    line-height: 20px;
    margin: 20px 0 0;
    color: var(--text-color);
}

.tm-main-nft-image-header {
    margin: 0 auto 16px;
}

.tm-main-nft-image {
    --lottie-width: 140px;
    border-radius: 21px;
    overflow: hidden;
}

.tm-lottie {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: var(--lottie-width, 100%);
}

.tm-lottie[playbyclick] {
    cursor: pointer;
}

.tm-lottie:before {
    display: block;
    content: '';
    padding-top: 100%;
}

.tm-lottie img,
.tm-lottie canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tm-header-search-form {
    max-width: 164px;
    margin: 10px 0 10px auto;
}

.tm-field {
    border-radius: var(--def-border-radius);
    background: var(--field-bg-color);
    position: relative;
}

.tm-field-hint {
    margin: 8px 14px;
}

.tm-field .form-control-link {
    cursor: pointer;
}

.tm-field .form-control-link:hover {
    text-decoration: none;
}

.tm-field .form-control-link.urgent {
    color: var(--unavail-color);
}

.tm-search-field:before {
    position: absolute;
    margin: 4px 9px;
    pointer-events: none;
}

.tm-main-search-form .tm-search-field:before,
.tm-section-search-form .tm-search-field:before {
    margin: 12px 15px 12px 19px;
}

.tm-section-search-form {
    margin-top: -5px;
    margin-bottom: 18px;
}

.tm-search-input {
    height: auto;
    font-size: 13px;
    line-height: 16px;
    padding: 6px 12px 6px 32px;
    box-shadow: none !important;
    border: none;
    background: transparent;
    color: var(--field-color);
    text-overflow: ellipsis;
}

.tm-main-search-form .tm-input,
.tm-section-search-form .tm-input,
.tm-main-search-form .tm-search-prefix {
    font-size: 14px;
    line-height: 18px;
    padding: 12px 19px;
}

.tm-main-search-form .tm-search-input,
.tm-main-search-form .tm-search-prefix,
.tm-section-search-form .tm-search-input,
.tm-section-search-form .tm-search-prefix {
    padding: 12px 42px 12px 48px;
}

.tm-main-search-form .tm-search-prefix {
    position: absolute;
    padding-right: 0;
    color: var(--field-color);
}

.tm-main-search-form .tm-search-prefix+.tm-search-input {
    padding-left: 86px;
}

.tm-search-field-hint {
    font-size: 13px;
    line-height: 20px;
    margin: 10px 20px -8px;
}

.tm-search-field-hint .icon-ton {
    letter-spacing: 13px;
}

.tm-search-field-hint .icon-ton:before {
    width: 13px;
    height: 18px;
    margin-left: 0;
    margin-right: -13px;
}

.tm-search-field-hint .icon-link-more:after {
    width: 9px;
    height: 20px;
}

.tm-search-field-photo {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 7px 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
}

.tm-search-error-icon {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 11px 12px 11px 16px;
    width: 20px;
    height: 20px;
}

.tm-search-field-photo img {
    width: 100%;
}

.tm-search-field-error {
    font-size: 12px;
    line-height: 15px;
    height: 15px;
    margin: 7px 19px -10px;
    color: var(--unavail-color);
}

.error .tm-search-error-icon {
    display: inline-block;
}

.tm-main-search-form .error.icon-search:before {
    display: none;
}

.found .tm-search-field-photo {
    display: inline-block;
}

.myself .tm-main-form-myself {
    display: none;
}

.tm-search-field.found .tm-search-input {
    font-weight: bold;
    background-color: transparent;
    cursor: auto;
    pointer-events: none;
}

.tm-search-loading,
.tm-search-clear {
    position: absolute;
    top: 0;
    right: 0;
    /*left: 4px;*/
    padding: 12px;
    cursor: pointer;
    transition: visibility var(--def-transition), opacity var(--def-transition);
}

.tm-search-loading {
    visibility: hidden;
    opacity: 0;
}

.tm-search-clear {
    border-radius: var(--def-border-radius);
    cursor: pointer;
    /*left: auto;*/
    /*right: 0;*/
}

.tm-input:placeholder-shown~.tm-search-clear,
.tm-search-input:placeholder-shown~.tm-search-clear {
    visibility: hidden;
    opacity: 0;
}

.icon-search:before {
    width: 14px;
    height: 20px;
    background-image: var(--image-url-search);
}

.tm-main-search-form .icon-search:before,
.tm-section-search-form .icon-search:before {
    width: 15px;
    height: 18px;
    background-image: var(--image-url-main-search);
}

.tm-main-search-form .icon-search-clear:before,
.tm-section-search-form .icon-search-clear:before,
.tm-main-filters-search .icon-search-clear:before {
    width: 18px;
    height: 18px;
    background-image: var(--image-url-main-search-clear);
}

.tm-main-search-form .icon-search-error:before {
    width: 20px;
    height: 20px;
    background-image: var(--image-url-main-search-error);
}

.circle-progress-wrap {
    transform-origin: 50%;
    vertical-align: top;
}

.circle-progress {
    stroke: var(--field-second-color);
    stroke-width: 2px;
    stroke-linecap: round;
    fill: transparent;
    transform: rotateZ(-90deg);
    transform-origin: 50%;
    stroke-dasharray: 62px;
    r: 10px;
}

.play .circle-progress {
    animation: rotate-circle linear 1.5s infinite, resize-circle linear 360s infinite;
}

.loading .tm-search-loading {
    visibility: visible;
    opacity: 1;
}

.loading .tm-search-clear,
.loading .tm-search-rlabel {
    visibility: hidden;
    opacity: 0;
}

@-webkit-keyframes rotate-circle {
    from {
        transform: rotateZ(-90deg);
    }
    to {
        transform: rotateZ(270deg);
    }
}

@keyframes rotate-circle {
    from {
        transform: rotateZ(-90deg);
    }
    to {
        transform: rotateZ(270deg);
    }
}

@-webkit-keyframes resize-circle {
    from {
        stroke-dashoffset: 62px;
    }
    to {
        stroke-dashoffset: 6262px;
    }
}

@keyframes resize-circle {
    from {
        stroke-dashoffset: 62px;
    }
    to {
        stroke-dashoffset: 6262px;
    }
}

.tm-main.tm-main-catalog {
    width: 560px;
}

.tm-main.tm-main-catalog .tm-search-field-button {
    font-size: 14px;
    line-height: 18px;
    padding: 9px 12px;
}

.tm-main-catalog-filters {
    padding-top: 18px;
}

.tm-main-catalog-filters .tm-main-search-form .tm-search-input,
.tm-main-catalog-filters .tm-main-search-form .tm-search-prefix {
    font-size: 14px;
    line-height: 18px;
    padding: 9px 32px 9px 39px;
}

.tm-main-catalog-filters .tm-main-search-form .icon-search:before {
    width: 15px;
    height: 18px;
}

.tm-main-catalog-filters .tm-main-search-form .tm-search-field:before {
    margin: 9px 10px 9px 14px;
}

.tm-main-catalog-filters .tm-main-search-form .tm-search-field .tm-search-loading {
    transform-origin: right top;
    transform: scale(0.7826);
}

.tm-main-catalog-filters .tm-main-search-form .tm-search-field .tm-search-clear {
    padding: 9px;
}

.tm-main-catalog-filters .tm-search-field-row {
    display: flex;
}

.tm-main-catalog-filters .tm-search-field-row .tm-search-field {
    flex-grow: 1;
}

.tm-main-filters-wrap {
    display: none;
}

.tm-catalog-grid-wrap {
    --gap: 5px;
}

.tm-catalog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: calc(-1 * var(--gap));
    margin-bottom: calc(-1 * var(--gap));
}

.tm-catalog-grid .tm-grid-item,
.tm-catalog-grid .tm-grid-item-shadow {
    flex-shrink: 1;
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    min-width: 110px;
    margin-right: var(--gap);
    flex-basis: 1%;
}

.tm-catalog-grid .tm-grid-item {
    flex-direction: column;
    border-radius: var(--def-border-radius);
    background-color: var(--table-bg-color);
    margin-bottom: var(--gap);
    cursor: pointer;
}

.tm-catalog-grid .tm-grid-item:hover,
.tm-catalog-grid .tm-grid-item:focus {
    text-decoration: none;
}

.tm-catalog-grid-more-wrap {
    margin-top: var(--gap);
}

.tm-catalog-grid-more-wrap:empty {
    margin-top: 0;
}

.tm-catalog-grid-more {
    display: block;
    font-size: 15px;
    line-height: 18px;
    font-weight: bold;
    color: var(--table-text-color);
    background-color: var(--btn-default-bg-color);
    padding: 12px 15px;
    text-align: center;
    border-radius: var(--def-border-radius);
}

a.tm-catalog-grid-more {
    cursor: pointer;
}

a.tm-catalog-grid-more:hover,
a.tm-catalog-grid-more:focus {
    color: var(--table-text-color);
    background-color: var(--btn-default-bg-hover-color);
    text-decoration: none;
}

.tm-grid-item-thumb {
    position: relative;
}

.tm-grid-thumb {
    width: 100%;
    vertical-align: top;
    aspect-ratio: 1;
}

.tm-grid-item-content {
    text-align: center;
    padding: 10px 8px 9px;
}

.tm-grid-item-num,
.tm-grid-item-thumb .tm-grid-item-desc {
    position: absolute;
    bottom: 0;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, .2);
    font-size: 7px;
    line-height: 9px;
    padding: 2px 4px 1px;
    font-weight: bold;
    color: var(--value-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    margin: 4px;
}

.tm-grid-item-thumb .tm-grid-item-desc:empty {
    display: none;
}

.tm-grid-item-num {
    left: 0;
}

.tm-grid-item-thumb .tm-grid-item-desc {
    right: 0;
}

.tm-grid-item-name {
    font-size: 14px;
    line-height: 19px;
    font-weight: bold;
    color: var(--value-color);
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

.tm-grid-item-name .item-name {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tm-grid-item-content .tm-grid-item-desc {
    font-size: 13px;
    line-height: 19px;
    color: var(--table-text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tm-grid-item-values {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 17px;
    gap: 3px 5px;
}

.tm-grid-item-value.tm-value {
    font-size: 12px;
    font-weight: bold;
    color: var(--value-color);
}

.tm-grid-item-status {
    display: inline-block;
    font-size: 10px;
    line-height: 13px;
    font-weight: bold;
    padding: 2px 5px;
    vertical-align: top;
    border-radius: 5px;
    white-space: nowrap;
}

.tm-search-field-button {
    font-size: 14px;
    line-height: 18px;
    padding: 9px 12px;
    margin-left: 9px;
    flex-shrink: 0;
    width: 134px;
}

.tm-search-field-button .tm-button-label {
    text-align: left;
    flex-grow: 1;
}

.tm-search-field-button:after {
    width: 11px;
    height: 18px;
    margin-left: 6px;
    margin-right: -1px;
    background-image: var(--image-url-dropdown-caret);
}

.tm-search-field-button.filters-icon:before {
    width: 20px;
    height: 20px;
    margin: -1px 7px -1px -2px;
    background-image: var(--image-url-filters-icon);
}

.icon-ton:before {
    width: 13px;
    height: 16px;
    margin-right: 2px;
    background-image: var(--image-url-ton-icon);
}

.icon-usd:before {
    width: 13px;
    height: 16px;
    font-size: 14px;
    content: '$';
    text-align: center;
}

.icon-ton:empty:before {
    display: none;
}

.icon-ton-text {
    white-space: nowrap;
}

.icon-ton-text:before {
    --icon-height: var(--line-height, 20px);
    width: calc(0.8 * var(--icon-height));
    height: var(--icon-height);
    margin-right: calc(0.05 * var(--icon-height));
    background-image: var(--image-url-ton-text-icon);
}

.btn .icon-ton:before,
.popup-body .icon-ton:before,
.form-control-wrap.icon-ton:before {
    width: 15px;
    height: 19px;
    margin-left: -1px;
    margin-right: 4px;
}

.btn .icon-ton:before {
    margin-top: -1px;
    margin-left: 1px;
    background-image: var(--image-url-ton-btn-icon);
}

.tm-amount {
    white-space: nowrap;
}

.icon-stars:before {
    width: 13px;
    height: 16px;
    margin-right: 2px;
    background-image: var(--image-url-stars-icon);
}

.form-control-wrap.icon-stars:before {
    width: 15px;
    height: 19px;
    margin-left: -1px;
    margin-right: 4px;
}

.icon-gw-credits:before {
    content: '$';
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.tm-section {
    padding: 0 10px 5px;
}

.tm-section-header {
    display: flex;
    padding: 18px 0 9px;
    width: 100%;
}

.tm-section-subheader {
    font-size: 13px;
    line-height: 19px;
    margin: -15px 11px 16px;
    text-align: center;
    width: 100%;
}

.tm-section-header-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: var(--header-color);
    margin: 0;
    padding: 0 6px;
    flex-grow: 1;
    display: flex;
}

.tm-section-header-status {
    display: inline-block;
    font-size: 11px;
    line-height: 16px;
    font-weight: bold;
    padding: 3px 6px;
    margin: 5px 6px 1px;
    vertical-align: top;
    border-radius: 5px;
    white-space: nowrap;
}

.tm-section-header-status+.tm-section-header-status {
    margin-left: 0px;
}

.table-cell-status-thin,
.tm-section-header-status {
    color: #a5b8cc;
    background-color: rgba(165, 184, 204, .1);
}

.tm-grid-item-status.tm-status-avail,
.table-cell-status-thin.tm-status-avail,
.tm-section-header-status.tm-status-avail {
    color: #5aec8c;
    background-color: rgba(90, 236, 140, .1);
}

.tm-grid-item-status.tm-status-unavail,
.table-cell-status-thin.tm-status-unavail,
.tm-section-header-status.tm-status-unavail {
    color: var(--unavail-color);
    background-color: rgba(var(--unavail-color-rgb), .1);
}

.tm-grid-item-status.tm-status-banned,
.table-cell-status-thin.tm-status-banned,
.tm-section-header-status.tm-status-banned {
    color: var(--danger-text-color);
    background-color: rgba(var(--danger-color-rgb), .1);
}

.tm-grid-item-status.tm-status-taken,
.table-cell-status-thin.tm-status-taken,
.tm-section-header-status.tm-status-taken,
.tm-section-header-status.tm-status-restricted {
    color: var(--warning-text-color);
    background-color: rgba(var(--warning-color-rgb), .1);
}

.tm-section-header .btn-group {
    margin-left: 5px;
}

.icon-filter-view-list:after {
    width: 18px;
    height: 18px;
    background-image: var(--image-url-filter-list-icon);
}

.icon-filter-view-list.selected:after {
    background-image: var(--image-url-filter-list-selected-icon);
}

.icon-filter-view-grid:after {
    width: 18px;
    height: 18px;
    background-image: var(--image-url-filter-grid-icon);
}

.icon-filter-view-grid.selected:after {
    background-image: var(--image-url-filter-grid-selected-icon);
}

.tm-auction-section .tm-section-header {
    padding: 18px 0 17px;
}

.tm-auction-section {
    margin-bottom: -16px;
}

.tm-auction-section>.tm-section-box {
    width: 100%;
    margin-bottom: 16px;
}

.tm-section-header-close-wrap {
    display: flex;
    font-size: 12px;
    line-height: 18px;
    border-radius: 14px;
    background-color: var(--btn-default-bg-color);
    white-space: nowrap;
    padding: 5px 6px;
    margin: 0 -6px;
}

.tm-section-header-close-wrap .tm-section-header-title {
    padding: 0 5px;
}

.tm-section-header-close-wrap .tm-section-header-close {
    border-radius: 14px;
    padding: 5px;
    margin: -5px;
    cursor: pointer;
}

.tm-section-header-close-wrap .tm-section-header-close:after {
    width: 18px;
    height: 18px;
    border-radius: 9px;
    background-image: var(--image-url-header-close-icon);
    background-color: rgba(89, 104, 118, .5);
}

.tm-section-header-back {
    display: inline-block;
    vertical-align: top;
}

.tm-section-header-back:after {
    width: 22px;
    height: 22px;
    margin: 3px 5px;
    background-image: var(--image-url-header-back-icon);
}

.tm-section-auction-thumb {
    margin: 0 auto;
}

.tm-section-auction-thumb-column {
    margin-bottom: 20px;
    display: flex;
    width: 100%;
}

.tm-section-auction-thumb-column .tm-section-countdown-wrap {
    display: none;
}

.tm-section-auction-thumb-column .tm-section-buttons {
    display: none;
}

.tm-section-auction-image {
    --lottie-width: 140px;
    border-radius: 12px;
    overflow: hidden;
}

.tm-section-text {
    font-size: 13px;
    line-height: 1.4;
    margin: -2px 6px 15px;
}

.tm-section-text+.tm-section-text {
    margin-top: -9px;
}

.tm-section-blockquote {
    color: var(--text-color);
    background-color: var(--inactive-bg-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 3px 6px 6px 3px;
    padding: 9px 17px;
}

.tm-blockquote-header {
    color: var(--header-color);
    font-weight: bold;
    margin: 2px 0 5px;
}

.tm-blockquote-header .tm-label-new {
    vertical-align: top;
}

.tm-section-blockquote.tm-danger {
    color: var(--danger-text-color);
    background-color: var(--danger-bg-color);
    border-left-color: rgb(var(--danger-color-rgb));
    margin: 30px 0 -10px;
}

.tm-section-blockquote.tm-danger .tm-blockquote-header {
    color: var(--danger-text-color);
}

.tm-section-blockquote.tm-warning {
    color: var(--warning-text-color);
    background-color: var(--warning-bg-color);
    border-left-color: rgb(var(--warning-color-rgb));
    margin: 30px 0 -10px;
}

.tm-section-blockquote.tm-warning .tm-blockquote-header {
    color: var(--warning-text-color);
}

.tm-section-tabs-wrap {
    display: flex;
    justify-content: space-between;
}

.tm-section-tabs {
    display: flex;
    margin: -3px -10px 15px;
    padding: 0 6px;
}

.tm-section-tab {
    padding: 8px 0;
    margin: 0 10px;
}

.tm-section-tab.tab-active:after {
    height: 3px;
    border-radius: 2px;
}

.tm-section-tabs-csv {
    margin-left: -6px;
    margin-right: -6px;
}

.tm-section-tabs-csv .tm-section-tab {
    margin: 0 6px;
}

.tm-section-tabs-csv .tm-section-tab>svg {
    vertical-align: top;
    margin-right: 3px;
}

.tm-section-tab-counter {
    display: inline-block;
    font-size: 12px;
    line-height: 14px;
    padding: 1px 6px;
    border-radius: 8px;
    background-color: #2f3b47;
    color: var(--value-color);
}

.tm-section-tab-counter:empty {
    display: none;
}

.tm-section-pagination {
    display: flex;
    margin: 15px 0;
    padding: 0 6px;
}

.tm-pagination-item {
    padding: 8px 0;
}

.tm-pagination-item.active:after {
    height: 3px;
    border-radius: 2px;
}

.tm-pagination-item+.tm-pagination-item {
    margin-left: 20px;
}

.tm-form-subheader {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: var(--text-color);
    margin: 5px 0 0;
    padding: 0 13px;
}

.tm-section-hr {
    border-top: 1px solid var(--table-bg-color);
    margin: 20px 0;
}

.tm-main-settings {
    width: 440px;
}

.tm-settings-section {
    padding: 0 10px;
}

.tm-settings-section .tm-section-header {
    padding: 24px 0 14px;
}

.tm-settings-section .tm-section-header-text {
    font-size: 15px;
    line-height: 23px;
    padding: 0 13px;
    color: var(--text-color);
}

.tm-settings-list {
    margin-top: 24px;
}

.tm-section-header+.tm-settings-list {
    margin-top: 0;
}

.tm-settings-item {
    display: block;
    font-size: 15px;
    line-height: 20px;
    padding: 11px 15px 11px 56px;
    position: relative;
    color: var(--header-color);
    --cur-bg-rgb: var(--settings-bg-rgb);
    background-color: var(--settings-bg-color);
}

.tm-settings-head-item {
    display: flex;
}

.tm-settings-item-body {
    margin: -4px 0;
    flex-shrink: 1;
    flex-grow: 1;
    width: 1px;
}

.tm-settings-item+.tm-settings-item {
    margin-top: 1px;
}

.tm-settings-item[data-counter]:after {
    content: attr(data-counter);
    display: inline-block;
    color: var(--dropdown-secondary-color);
    white-space: nowrap;
    position: absolute;
    right: 8px;
    padding-right: 20px;
    background: var(--image-url-setting-go-icon) no-repeat right center;
}

a.tm-settings-item:hover,
a.tm-settings-item:focus {
    background-color: var(--settings-bg-hover-color);
    text-decoration: none;
    color: var(--header-color);
}

.tm-settings-item:first-child {
    border-top-left-radius: var(--def-border-radius);
    border-top-right-radius: var(--def-border-radius);
}

.tm-settings-item:last-child {
    border-bottom-left-radius: var(--def-border-radius);
    border-bottom-right-radius: var(--def-border-radius);
}

.tm-settings-item.icon-before:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
    margin: auto 16px;
}

.tm-settings-account-photo {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: inline-block;
    vertical-align: top;
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background: #677a8c;
    text-align: center;
    overflow: hidden;
    margin: auto 11px;
}

.tm-settings-account-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tm-settings-item-head,
.tm-settings-item-text {
    line-height: 18px;
}

.tm-settings-item-head {
    font-weight: bold;
}

.tm-settings-item-desc {
    font-size: 13px;
    line-height: 15px;
    color: var(--text-color);
    margin-top: 3px;
}

.tm-settings-item .tm-badge {
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
    padding: 2px 7px;
    margin: auto 0 auto 25px;
    vertical-align: top;
    border-radius: 4px;
    white-space: nowrap;
}

.tm-badge-unverified {
    color: #ff9953;
    background-color: rgba(255, 153, 83, .1);
}

.tm-badge-verified {
    color: #5aec8c;
    background-color: rgba(90, 236, 140, .1);
}

.tm-badge-failed {
    color: var(--unavail-color);
    background-color: rgba(var(--unavail-color-rgb), .1);
}

.tm-settings-hint {
    font-size: 13px;
    --line-height: 15px;
    line-height: var(--line-height);
    padding: 10px 13px 0;
}

.tm-section-kyc-wrap {
    background-color: var(--settings-bg-color);
    padding: 0 0 15px;
    border-radius: 12px;
    overflow: hidden;
}

.tm-section-kyc-wrap iframe {
    vertical-align: top;
}

.tm-section-kyc-buttons {
    margin-top: 24px;
}

.tm-table-empty,
.tm-table>tbody>tr>td.tm-cell-empty,
.tm-table>tbody>tr>td.tm-cell-empty-full {
    font-size: 14px;
    line-height: 20px;
    padding: 22px 15px;
    text-align: center;
    color: var(--table-text-color);
}

.tm-table-empty {
    border-radius: var(--def-border-radius);
    background-color: var(--table-bg-color);
}

.tm-table>tbody>tr>td.tm-cell-empty {
    font-size: 13px;
    padding: 7px 15px;
}

.tm-table-responsive {
    border-radius: var(--def-border-radius);
    margin-bottom: 0;
    border: none;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
}

.tm-table-wrap {
    border-radius: var(--def-border-radius);
    margin-bottom: 0;
    border: none;
    overflow: hidden;
}

.tm-table {
    color: var(--table-text-color);
    border-collapse: separate;
    margin-bottom: 0;
}

.tm-table-fixed {
    table-layout: fixed;
}

.tm-table>thead>tr>th,
.tm-table>tbody>tr>td,
.tm-table>tfoot>tr>td {
    padding: 0;
}

.tm-table>colgroup>col {
    --width: var(--thin-width);
    width: var(--width);
}

.tm-table>thead>tr>th {
    --width: var(--thin-width);
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    background-color: var(--table-header-bg-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    width: var(--width);
    border-bottom: none;
    padding: 7px 8px;
}

.tm-table>tbody>tr>td,
.tm-table>tfoot>tr>td {
    font-size: 13px;
    line-height: 16px;
    --cur-bg-rgb: var(--table-bg-rgb);
    background-color: var(--table-bg-color);
    border-top-color: var(--bg-color);
}

.tm-table>tfoot>tr>td .table-cell {
    align-items: center;
}

.tm-table .table-cell {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tm-table .tm-high-cells .table-cell {
    padding: 6px 8px 5px;
}

.tm-table .table-cell-oneline {
    padding-top: 8px;
    flex-direction: row;
    justify-content: start;
}

.tm-table .table-cell-oneline.table-cell-wide {
    padding-top: 12px;
    padding-bottom: 12px;
}

.tm-main-form-group .tm-table .table-cell,
.tm-main-form-group .tm-table .tm-high-cells .table-cell {
    padding-top: 10px;
    padding-bottom: 10px;
}

.tm-table td:first-child .table-cell,
.tm-table thead>tr>th:first-child {
    padding-left: 16px;
}

.tm-table td:last-child .table-cell,
.tm-table td.thin-last-col .table-cell,
.tm-table thead>tr>th:last-child,
.tm-table thead>tr>th.thin-last-col {
    padding-right: 16px;
}

.tm-table>thead>tr:first-child>th:first-child,
.tm-table>tbody>tr:first-child>td:first-child {
    border-top-left-radius: var(--def-border-radius);
}

.tm-table>thead~tbody>tr:first-child>td:first-child {
    border-top-left-radius: 0;
}

.tm-table>thead>tr:first-child>th:last-child,
.tm-table>tbody>tr:first-child>td:last-child,
.tm-table>thead>tr:first-child>th.thin-last-col,
.tm-table>tbody>tr:first-child>td.thin-last-col {
    border-top-right-radius: var(--def-border-radius);
}

.tm-table>thead~tbody>tr:first-child>td:last-child,
.tm-table>thead~tbody>tr:first-child>td.thin-last-col {
    border-top-right-radius: 0;
}

.tm-table>tbody>tr:last-child>td:first-child,
.tm-table>tfoot>tr:last-child>td:first-child {
    border-bottom-left-radius: var(--def-border-radius);
}

.tm-table>tbody>tr:last-child>td:last-child,
.tm-table>tfoot>tr:last-child>td:last-child,
.tm-table>tbody>tr:last-child>td.thin-last-col,
.tm-table>tfoot>tr:last-child>td.thin-last-col {
    border-bottom-right-radius: var(--def-border-radius);
}

.tm-table>tfoot+tbody>tr:last-child>td:first-child,
.tm-table>tfoot+tbody>tr:last-child>td:last-child {
    border-radius: 0;
}

.tm-table a.table-cell {
    color: inherit;
}

.tm-table a.table-cell:hover,
.tm-table a.table-cell:focus {
    text-decoration: none;
}

.tm-table .table-cell-more {
    font-weight: bold;
}

.tm-table a.table-cell-more {
    color: var(--accent-color);
    cursor: pointer;
}

.tm-table .tm-high-cells .table-cell,
.tm-table .table-row-thumbed .table-cell {
    height: 44px;
}

.tm-table .tm-row-selectable {
    cursor: pointer;
}

.tm-table .tm-row-selectable>td {
    position: relative;
}

.tm-table tbody .tm-row-selectable>td:last-child>.table-cell,
.tm-table tbody .tm-row-selectable>td.thin-last-col>.table-cell {
    padding-right: 32px;
}

.tm-table tbody .tm-row-selectable>td.thin-last-col>.table-cell:after,
.tm-table tbody .tm-row-selectable>td.wide-last-col>.table-cell:after {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 17px;
    background-image: var(--image-url-row-arrow);
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto 0;
}

.tm-table .tm-row-selectable:hover>td {
    background-color: var(--table-bg-hover-color);
}

.tm-table .tm-row-selectable:has(.table-selectable-in-row:hover)>td {
    background-color: var(--table-bg-color);
}

.tm-table>tbody>tr>td .table-cell-value.tm-value {
    font-size: 13px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tm-table>tbody>tr>td:first-child .table-cell-value.tm-value {
    font-size: 14px;
}

.tm-table>tbody>tr:first-child>td {
    border-top: none;
}

.tm-table .table-cell.table-cell-thumbed {
    position: relative;
}

.tm-table tbody .table-cell.table-cell-thumbed,
.tm-table .tm-high-cells .table-cell.table-cell-thumbed {
    padding-left: 46px;
}

.tm-table .tm-cell-thumb {
    position: absolute;
    width: 32px;
    top: 0;
    left: 0;
    margin: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.tm-table .table-cell-value,
.tm-table .table-cell-desc,
.tm-table .table-cell-action {
    font-size: 11px;
}

.tm-table .table-cell-oneline .table-cell-desc {
    font-size: 13px;
    margin-left: 7px;
}

.tm-cell-action {
    display: inline-flex;
    max-width: 100%;
    flex-wrap: nowrap;
    color: var(--accent-color);
}

.tm-cell-action:after {
    width: 14px;
    height: 19px;
    margin-left: 1px;
    flex-shrink: 0;
}

.tm-cell-action-label {
    flex-shrink: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.popup .popup-text.tm-gift-in-wallet {
    margin-top: 20px;
}

.tm-gift-in-wallet:before {
    width: 18px;
    height: 19px;
    background-image: var(--image-url-wallet-icon);
    margin-right: 7px;
}

.tm-table .table-cell-value-row {
    display: flex;
}

.table-cell-value-row>.table-cell-value {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-cell-value-row>.table-cell-status-thin {
    font-size: 11px;
    line-height: 12px;
    font-weight: bold;
    padding: 2px 5px;
    margin-left: 4px;
    border-radius: 4px;
    white-space: nowrap;
}

.tm-table .table-cell-desc-cols {
    display: flex;
}

.tm-table .table-cell-desc-cols .table-cell-desc-col+.table-cell-desc-col:before {
    content: '\2022';
    margin: 0 5px;
}

.tm-table .table-cell-value,
.tm-table .table-cell-value-link {
    color: var(--value-color);
}

.tm-table .table-cell-footer {
    font-size: 13px;
    line-height: 17px;
    padding: 1px 0;
    text-align: center;
}

.tm-table .tm-status-avail {
    color: #5aec8c;
}

.tm-table .tm-status-unavail {
    color: var(--unavail-color);
}

.tm-table .tm-status-taken {
    color: #ff9953;
}

.tm-inline-nowrap {
    display: inline-block;
    max-width: 100%;
}

.tm-nowrap,
.tm-inline-nowrap {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.support-bots-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-image: var(--image-url-support-bots-icon);
    margin-left: 6px;
    margin-top: 1px;
    position: relative;
}

.support-bots-icon>.tooltip-label {
    font-size: 14px;
    line-height: 17px;
    padding: 7px 10px;
    background-color: var(--tooltip-bg-color);
    border-radius: var(--def-border-radius);
    color: var(--tooltip-color);
    white-space: nowrap;
    margin: 9px 0;
}

.support-bots-icon>.tooltip-label,
.support-bots-icon:after {
    position: absolute;
    content: '';
    display: inline-block;
    vertical-align: top;
    /*  pointer-events: none;*/
    left: 50%;
    bottom: 100%;
    transition: transform var(--def-transition), opacity var(--def-transition), visibility var(--def-transition);
    transition-delay: .1s;
    transform: translate(-50px, -5px);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}

.support-bots-icon:after {
    width: 15px;
    height: 6px;
    background-image: var(--image-url-tooltip-bottom);
    transform: translate(-50%, -5px);
    margin: 3px 0;
}

.tm-wallet {
    display: inline-flex;
    white-space: nowrap;
    vertical-align: top;
    max-width: 100%;
}

.tm-table .tm-wallet {
    width: 300px;
}

.popup-text .tm-wallet {
    max-width: 100px;
}

a.tm-wallet:hover {
    text-decoration: none;
}

.tm-wallet .current-icon {
    width: 15px;
    height: 16px;
    flex-shrink: 0;
    align-self: center;
    background-image: var(--image-url-wallet-s-icon);
    margin-right: 5px;
    position: relative;
}

.tm-wallet .current-icon:before,
.tm-wallet .current-icon:after {
    position: absolute;
    content: '';
    display: inline-block;
    vertical-align: top;
    pointer-events: none;
    left: 50%;
    bottom: 100%;
    transition: transform var(--def-transition), opacity var(--def-transition), visibility var(--def-transition);
    transform: translate(-50%, -5px);
    visibility: hidden;
    opacity: 0;
}

.tm-wallet .current-icon:before {
    content: attr(data-tooltip);
    font-size: 14px;
    line-height: 17px;
    padding: 7px 10px;
    background-color: var(--tooltip-bg-color);
    border-radius: var(--def-border-radius);
    color: var(--tooltip-color);
    white-space: nowrap;
    margin: 9px 0;
}

.tm-wallet .current-icon:after {
    width: 15px;
    height: 6px;
    background-image: var(--image-url-tooltip-bottom);
    margin: 3px 0;
}

.tm-wallet .head,
.tm-wallet .tail {
    display: inline-flex;
    justify-content: flex-start;
    overflow: hidden;
    flex-shrink: 1;
    flex-basis: 50%;
}

a.tm-wallet:hover .head,
a.tm-wallet:hover .tail {
    text-decoration: underline;
}

.tm-wallet .tail {
    justify-content: flex-end;
}

.tm-wallet .middle:before {
    display: inline-block;
    content: '...';
    padding: 0 0.5em;
    margin: 0 -0.3em;
    position: relative;
    background: linear-gradient(90deg, rgba(var(--cur-bg-rgb), 0) 0px, rgba(var(--cur-bg-rgb), 1) 0.35em, rgba(var(--cur-bg-rgb), 0) 0.35em), linear-gradient(270deg, rgba(var(--cur-bg-rgb), 0) 0px, rgba(var(--cur-bg-rgb), 1) 0.35em, rgba(var(--cur-bg-rgb), 0) 0.35em);
}

.wallet-new .tm-wallet .middle:before {
    padding: 0;
    margin: 0;
}

.wallet-new .tm-wallet .middle {
    width: 0;
}

.wallet-new .tm-wallet .middle:before {
    display: inline-block;
    content: '...';
    color: transparent;
    width: 2em;
    transform: translateX(-50%);
    background: rgba(var(--cur-bg-rgb), .8);
    font-size: 0.6em;
    line-height: 0.7em;
    border-radius: 1em;
    vertical-align: -0.2em;
    margin-right: -2em;
    box-shadow: 0 0 5px 1px rgb(var(--cur-bg-rgb));
}

.wallet-new .tm-wallet .middle:after {
    display: inline-block;
    position: relative;
    content: '...';
    padding: 0 0.5em;
    background: linear-gradient(90deg, rgba(var(--cur-bg-rgb), 0) 0%, rgba(var(--cur-bg-rgb), 1) 50%, rgba(var(--cur-bg-rgb), 0) 100%);
    transform: translateX(-50%);
}

.tm-wallet .short {
    text-overflow: ellipsis;
    overflow: hidden;
    flex-basis: 100%;
}

.tm-web3-address {
    display: inline-flex;
    white-space: nowrap;
    max-width: 100%;
}

.tm-web3-address .subdomain {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tm-table-actions {
    display: flex;
}

.tm-table-action+.tm-table-action {
    margin-left: 5px;
}

.tm-table-button,
.tm-table-action-link,
.tm-dropdown .dropdown-toggle.tm-table-button {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 10px;
}

.tm-dropdown .dropdown-toggle.tm-table-button {
    background-color: var(--btn-header-bg-color);
}

.tm-dropdown .dropdown-toggle.tm-table-button:hover,
.tm-dropdown .dropdown-toggle.tm-table-button:focus {
    background-color: var(--btn-header-bg-hover-color);
}

.tm-table-action-link {
    font-weight: bold;
    color: var(--accent-color);
    border-radius: var(--def-border-radius);
    cursor: pointer;
}

a.tm-table-action-link:hover {
    text-decoration: none;
}

.tm-table-action-link:hover {
    background-color: var(--btn-header-bg-color);
}

.icon-actions:before {
    width: 11px;
    height: 16px;
    background-image: var(--image-url-dropdown-actions);
}

.tm-auction-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tm-auction-section .tm-section-header-text {
    font-size: 22px;
    white-space: nowrap;
    max-width: 100%;
    justify-content: center;
    flex-shrink: 1;
}

.tm-auction-section .tm-section-header-domain {
    text-overflow: ellipsis;
    overflow: hidden;
}

.tm-auction-section.tm-banned-nft .tm-section-header-domain {
    color: var(--danger-text-color);
}

.tm-auction-section.tm-banned-nft .tm-section-buttons .btn-primary {
    color: var(--danger-text-color);
    background-color: var(--danger-bg-color);
}

.tm-auction-section.tm-banned-nft .tm-section-buttons .btn .icon-ton:before {
    background-image: var(--image-url-warn-ton-btn-icon);
}

.tm-auction-message {
    font-size: 14px;
    line-height: 20px;
    --cur-bg-rgb: var(--table-bg-rgb);
    background-color: var(--table-bg-color);
    border-radius: var(--def-border-radius);
    color: var(--table-text-color);
    text-align: center;
    margin-top: 18px;
    padding: 24px 60px;
    overflow: hidden;
}

.tm-auction-message-header {
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
    color: var(--header-color);
    margin: 0 0 6px;
}

.tm-list {
    font-size: 13px;
    line-height: 18px;
    --cur-bg-rgb: var(--table-bg-rgb);
    background-color: var(--table-bg-color);
    border-radius: var(--def-border-radius);
    color: var(--table-text-color);
    overflow: hidden;
}

.tm-list dt,
.tm-list dd {
    line-height: 18px;
    white-space: nowrap;
}

.tm-list dd {
    display: block;
    margin-left: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--accent-color);
}

.tm-list-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-grow: 1;
    padding: 8px 16px;
    margin: 0;
}

.tm-list-item+.tm-list-item {
    border-top: 1px solid var(--bg-color);
}

.tm-list-item-title,
.tm-list-item-value .tm-value {
    font-weight: bold;
    color: var(--value-color);
}

.tm-list-item-value {
    display: flex;
    font-size: 14px;
    flex-direction: row;
    justify-content: space-between;
}

.tm-section-bid-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--def-border-radius);
    background-color: var(--table-bg-color);
    color: var(--table-text-color);
    overflow: hidden;
}

.tm-section-bid-info .tm-list-item-value {
    width: 45%;
}

.tm-section-tabs+.tm-section-bid-info,
.tm-section-tabs-wrap+.tm-section-bid-info {
    margin-bottom: 15px;
}

.tm-bid-info-text {
    --line-height: 17px;
    font-size: 13px;
    line-height: var(--line-height);
    padding: 5px 16px 10px;
}

.tm-bid-info-text:empty {
    display: none;
}

.tm-offer-info-text {
    padding-top: 8px;
    padding-bottom: 8px;
}

.tm-list-item-hint {
    --line-height: 17px;
    font-size: 13px;
    line-height: var(--line-height);
    padding: 0 16px 10px;
}

.tm-section-buttons {
    display: flex;
    flex-direction: row;
}

.tm-section-buttons>.btn {
    flex-grow: 1;
    flex-shrink: 1;
}

.tm-section-buttons>.btn+.btn {
    margin-left: 12px;
}

.tm-section-subscribe,
.tm-section-header-link {
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

.tm-section-header-link {
    margin: 3px 6px 2px;
    width: auto;
}

.tm-section-header>.tm-section-subscribe {
    display: none;
}

.tm-section-subscribe .unsubscribe-btn,
.tm-section-subscribe.subscribed .subscribe-btn {
    display: none;
}

.tm-section-subscribe .subscribe-btn,
.tm-section-subscribe.subscribed .unsubscribe-btn {
    display: inline-block;
}

.tm-section-howto {
    display: flex;
    font-size: 14px;
    line-height: 23px;
    padding: 11px 20px 12px;
    justify-content: left;
}

.tm-section-countdown-wrap {
    position: relative;
}

.tm-section-countdown,
.tm-section-countdown-end {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 13px;
    line-height: 28px;
    height: 36px;
    padding: 4px 0;
    transition: opacity ease, visibility ease;
    transition-duration: var(--half-transition-duration);
    transition-delay: var(--half-transition-duration);
}

.tm-section-countdown-end {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    transition: opacity ease, visibility ease;
    transition-duration: var(--half-transition-duration);
}

.tm-section-countdown-end,
.tm-section-countdown-wrap.ended .tm-section-countdown {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.tm-section-countdown-wrap.ended .tm-section-countdown {
    transition-delay: 0s;
}

.tm-section-countdown-wrap.ended .tm-section-countdown-end {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition-delay: var(--half-transition-duration);
}

.tm-timer-wrap.ended .tm-timer,
.tm-timer-wrap .tm-timer-end {
    display: none;
}

.tm-timer-wrap.ended .tm-timer-end {
    display: block;
}

.table-cell .tm-timer {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tm-countdown-label {
    white-space: nowrap;
    margin-right: 15px;
}

.tm-countdown-label.full {
    display: none;
}

.tm-countdown-timer {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tm-countdown-timer>.reel {}

.tm-countdown-timer>.reel+.reel {
    position: relative;
    margin-left: 17px;
}

.tm-countdown-timer>.reel+.reel:before {
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    color: var(--text-color);
    background-color: currentColor;
    box-shadow: 0 7px;
    left: -10px;
    top: 10px;
    opacity: 0.5;
}

.tm-countdown-timer>.reel>.digit:before {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin: 2px 0;
    content: attr(data-val);
    animation: none;
    line-height: 24px;
    white-space: pre;
}

.tm-countdown-timer>.reel>.digit[data-prev-val]:before {
    content: attr(data-prev-val) '\A' attr(data-val);
    animation: countdown-move ease-in-out .7s 1 forwards;
}

.tm-countdown-timer>.reel>.digit {
    display: inline-block;
    background-color: var(--table-bg-color);
    border-radius: 2px;
    text-align: center;
    min-width: 21px;
    height: 28px;
    overflow: hidden;
}

.tm-countdown-timer>.reel>.digit.timer-d {
    padding: 0 7px;
}

.tm-countdown-timer>.reel>.digit+.digit {
    margin-left: 1px;
}

.tm-countdown-timer>.reel>.digit:first-child {
    border-top-left-radius: var(--def-border-radius);
    border-bottom-left-radius: var(--def-border-radius);
}

.tm-countdown-timer>.reel>.digit:last-child {
    border-top-right-radius: var(--def-border-radius);
    border-bottom-right-radius: var(--def-border-radius);
}

.tm-datetime {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@-webkit-keyframes countdown-move {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes countdown-move {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
}

.tm-assign-accounts-list {
    background-color: var(--table-bg-color);
    border-radius: var(--def-border-radius);
    position: relative;
    max-height: 242px;
    margin-top: 18px;
    overflow: hidden;
    overflow-y: auto;
}

.tm-assign-account-item {
    display: block;
    font-weight: normal;
    position: relative;
    padding: 9px 12px;
    cursor: pointer;
    margin: 0;
}

.tm-assign-account-item:hover {
    background-color: var(--table-bg-hover-color);
}

.tm-assign-account-item+.tm-assign-account-item {
    border-top: 1px solid var(--bg-color);
}

.tm-assign-account-item>input[type="radio"] {
    position: absolute;
    left: -10000px;
}

.tm-assign-account-item>input[type="radio"]:checked~.tm-assign-account-content {
    padding-right: 40px;
}

.tm-assign-account-item>input[type="radio"]:checked~.tm-assign-account-content:after {
    position: absolute;
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: var(--image-url-list-item-selected-icon);
    width: 25px;
    height: 25px;
    top: 0;
    right: 0;
    margin: 14px 15px 0;
}

.tm-assign-account-link {
    font-size: 15px;
    line-height: 20px;
    padding: 11px 12px 11px 60px;
    color: var(--accent-color);
}

.tm-assign-account-photo {
    display: inline-block;
    vertical-align: top;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #677a8c;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: 1px 0;
    float: left;
}

.tm-assign-account-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tm-assign-account-content {
    margin-left: 48px;
    overflow: hidden;
}

.tm-assign-account-name {
    font-size: 14px;
    line-height: 19px;
    font-weight: bold;
}

.tm-assign-account-desc {
    font-size: 12px;
    line-height: 15px;
    font-weight: normal;
    color: var(--table-text-color);
}

.tm-assign-account-name,
.tm-assign-account-desc {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tm-popup-filters-list {
    background-color: var(--table-bg-color);
    border-radius: var(--def-border-radius);
    position: relative;
    overflow: hidden;
}

.tm-popup-filters-item {
    display: block;
    font-weight: normal;
    position: relative;
    padding: 9px 16px;
    cursor: pointer;
    margin: 0;
}

.tm-popup-filters-item:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 14px;
    width: 18px;
    height: 18px;
    background-image: var(--image-url-filter-arrow);
}

.tm-popup-filters-item:hover,
.tm-popup-filters-item:focus,
.tm-popup-filters-item:active {
    background-color: var(--table-bg-hover-color);
    text-decoration: none;
}

.tm-popup-filters-item+.tm-popup-filters-item {
    border-top: 1px solid var(--bg-color);
}

.tm-popup-filters-photo {
    display: inline-block;
    vertical-align: top;
    width: 26px;
    height: 26px;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: 4px 14px 4px 0;
    float: left;
}

.tm-popup-filters-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tm-popup-filters-content {
    overflow: hidden;
}

.tm-popup-filters-name {
    font-size: 14px;
    line-height: 19px;
    font-weight: bold;
    color: #fff;
}

.tm-popup-filters-desc {
    font-size: 13px;
    line-height: 15px;
    font-weight: normal;
    color: var(--table-text-color);
}

.tm-popup-filters-name,
.tm-popup-filters-desc {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tm-main-filters-box {
    background-color: var(--table-bg-color);
    border-radius: var(--def-border-radius);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.tm-main-filters-header,
.tm-main-filters-item {
    display: flex;
    justify-content: space-between;
    font-weight: normal;
    position: relative;
    padding: 10px 16px;
    cursor: pointer;
    margin: 0;
}

.tm-main-filters-header {
    padding-top: 12px;
    padding-bottom: 12px;
    transition: var(--def-transition) background-color;
}

.tm-main-filters-box.opened .tm-main-filters-header {
    background-color: var(--filters-header-bg-color);
}

.tm-main-filters-box .tm-main-filters-header:after {
    margin-right: -5px;
    margin-left: 6px;
    width: 18px;
    height: 18px;
    background-image: var(--image-url-filter-arrow-down);
    transition: var(--def-transition) transform;
}

.tm-main-filters-box.opened .tm-main-filters-header:after {
    transform: rotate(180deg);
}

.tm-main-filters-content {
    transition: var(--def-transition) opacity, var(--def-transition) visibility, var(--def-transition) height;
}

.tm-main-filters-search {
    position: relative;
}

.tm-main-filters-box .tm-input.tm-main-filter-search-field {
    font-size: 15px;
    line-height: 18px;
    padding: 10px 42px 10px 16px;
    border-radius: 0;
    background-color: transparent;
}

.tm-main-filters-box .tm-main-filters-search .tm-search-clear {
    padding: 10px 11px;
}

.tm-main-filters-box .tm-main-filters-search .tm-search-clear:before {
    width: 18px;
    height: 18px;
}

.tm-main-filters-list {
    scrollbar-color: rgba(204, 218, 233, 0.3) transparent;
    max-height: 285px;
    overflow: none;
    overflow-y: auto;
}

.tm-main-filters-wrap.fullsize .tm-main-filters-list {
    max-height: none;
}

.tm-main-filters-box.closed .tm-main-filters-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0 !important;
}

.tm-main-filters-item:hover,
.tm-main-filters-item:focus,
.tm-main-filters-item:active {
    background-color: var(--table-bg-hover-color);
    text-decoration: none;
}

.tm-main-filters-item.selected {
    background-color: var(--field-accent-color);
    color: var(--field-color);
}

.tm-main-filters-checkbox {
    display: inline-block;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 2px;
    margin: -2px 14px -2px 0;
}

.tm-main-filters-checkbox input.checkbox {
    position: absolute;
    left: -5000px;
}

.tm-main-filters-checkbox input.checkbox~.tm-checkbox-icon:before {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1.6px var(--filters-icon-color);
    background: transparent var(--image-url-checkbox-icon) center no-repeat;
    background-size: 0%;
    transition: box-shadow var(--def-transition), background var(--def-transition);
}

.tm-main-filters-checkbox input.checkbox:checked~.tm-checkbox-icon:before {
    box-shadow: inset 0 0 0 0 var(--field-second-color);
    background-color: #119bf7;
    background-size: 100%;
}

.tm-checkbox-icon {
    display: flex;
}

.tm-main-filters-photo {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: -2px 14px -2px 0;
    float: left;
}

.tm-main-filters-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tm-main-filter-attr-symbol .tm-main-filters-photo img {
    filter: url('#svg-filter--filters-icon-color');
}

.tm-main-filters-name,
.tm-main-filters-count {
    font-size: 15px;
    line-height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tm-main-filters-name {
    flex-grow: 1;
    color: #fff;
}

.tm-main-filters-count {
    flex-shrink: 0;
    color: var(--table-text-color);
}

.tm-main-filters-item.selected .tm-main-filters-count {
    color: var(--field-color);
}

.tm-number-codes {
    max-width: 348px;
    margin: 0 auto;
}

.tm-number-prev-codes {
    margin: 20px 0 0;
}

.tm-number-code-field {
    position: relative;
    font-size: 30px;
    line-height: 42px;
    font-weight: bold;
    padding: 12px 20px;
    background-color: var(--field-bg-color);
    border-radius: var(--def-border-radius);
    color: var(--field-color);
    text-align: center;
}

.tm-number-code-field[data-copy] {
    cursor: pointer;
}

.tm-nocopy {
    -webkit-user-select: none;
    user-select: none;
}

.tm-number-code-field>.tm-number-code-copy {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    padding: 24px 19px;
}

.tm-number-code-field>.tm-number-code-copy:before {
    width: 13px;
    height: 18px;
    margin-right: 7px;
    background-image: var(--image-url-copy-icon);
}

.table-cell-value>.tm-number-code-copy {
    display: inline-block;
    cursor: pointer;
}

.table-cell-value>.tm-number-code-copy:after {
    width: 13px;
    height: 18px;
    margin-left: 7px;
    background-image: var(--image-url-copy-text-icon);
}

.tm-number-code-date {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin: 8px 0 0;
}

.tm-number-code-button {
    margin-top: 24px;
}

.tm-number-code-button-desc {
    --line-height: 19px;
    font-size: 13px;
    line-height: var(--line-height);
    padding: 12px 5px 0;
    text-align: center;
}

.tm-number-code-button-desc:empty {
    display: none;
}

.tm-number-code-spoiler b.point {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    width: 4px;
    height: 4px;
    margin: -2px;
    border-radius: 50%;
    background-color: currentColor;
    pointer-events: none;
}

.tm-number-code-spoiler.blured {
    filter: blur(10px);
}

.tm-number-code-spoiler:before {
    content: attr(data-pattern);
    color: transparent;
}

.tm-number-code-spoiler.blured:before {
    color: inherit;
}

.qr-random-popup .tm-qr-code-label {
    overflow: visible;
}

.qr-random-popup .tm-number-code-spoiler.blured {
    filter: blur(7px);
}

.tm-number-form-group {
    margin: 36px 0 0;
}

.tm-checkbox-toggle {
    position: relative;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    padding: 11px 14px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.tm-checkbox-toggle .checkbox {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 24px;
}

.tm-checkbox-toggle .checkbox~.tm-checkbox-label:before,
.tm-checkbox-toggle .checkbox~.tm-checkbox-label:after {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
}

.tm-checkbox-toggle .checkbox~.tm-checkbox-label:before {
    margin: 11px 13px;
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background-color: #64717f;
    transition: var(--def-transition) background-color;
}

.tm-checkbox-toggle .checkbox:checked~.tm-checkbox-label:before {
    background-color: #149efa;
}

.tm-checkbox-toggle .checkbox~.tm-checkbox-label:after {
    width: 16px;
    height: 16px;
    margin: 13px;
    border-radius: 8px;
    background-color: #fff;
    right: 18px;
    transform: translateX(0);
    transition: var(--def-transition) transform;
}

.tm-checkbox-toggle .checkbox:checked~.tm-checkbox-label:after {
    background-color: #fff;
    transform: translateX(16px);
}

.cant-receive,
.codes-disabled .can-receive {
    display: none;
}

.codes-disabled .cant-receive {
    display: block;
}

/* popup */

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 110;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: start;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transition: width 0s 0s, left 0s 0s, background-color var(--def-transition);
    width: 100%;
}

.popup-container.hide {
    display: flex !important;
    background: rgba(0, 0, 0, 0);
    transition: width 0s var(--def-transition-duration), left 0s var(--def-transition-duration), background-color var(--def-transition);
    pointer-events: none;
    left: -10000px;
    width: 0%;
}

.popup {
    min-width: 100%;
    margin: auto 0 0;
    word-wrap: break-word;
    border-radius: var(--popup-border-radius) var(--popup-border-radius) 0 0;
    background: var(--bg-color);
    font-size: 14px;
    line-height: 19px;
    transform: translateY(0%);
    transition: transform var(--def-transition);
    color: #fff;
}

.popup-container.hide .popup {
    transform: translateY(100%);
}

.popup section {
    position: relative;
    padding-bottom: 46px;
    max-width: 320px;
    margin: 0 auto;
}

.popup h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    margin: 0 0 15px;
}

.popup .form-group {
    margin: 0 -8px 7px;
}

.popup .form-group>label {
    margin-left: 8px;
    margin-right: 8px;
}

.popup .help-block {
    font-size: 14px;
    line-height: 18px;
    margin: 10px 8px 0;
    color: var(--text-color);
}

.popup-body {
    position: relative;
    padding: 22px 20px 30px;
}

.popup-side-icons {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
}

.popup-side-icons-new {
    position: absolute;
    margin: 19px;
    z-index: 1;
    right: 0;
    top: 0;
}

.popup-body .icon-popup-close {
    display: inline-block;
    vertical-align: top;
    line-height: 0;
    padding: 17px;
    border-radius: var(--popup-border-radius);
    cursor: pointer;
}

.popup-body .icon-popup-close:before {
    width: 10px;
    height: 10px;
    background-image: var(--image-url-popup-close);
}

.popup-side-icons-new .icon-popup-close {
    padding: 8px;
    border-radius: 50%;
    background-color: var(--filters-header-bg-color);
}

.popup-side-icons-new .icon-popup-close:before {
    background-image: var(--image-url-popup-close-new);
}

.popup-loading-body {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(var(--bg-rgb), .8);
    border-radius: var(--def-border-radius);
    transition: visibility var(--def-transition), opacity var(--def-transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.popup-loading-body .tm-logo-progress {
    margin: auto;
}

.popup-container.popup-loading .popup-loading-body {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popup .popup-auction-thumb {
    float: right;
    width: 48px;
    height: 48px;
    background-color: var(--field-bg-color);
    border-radius: 5px;
    margin: -5px 0 0 15px;
}

.popup .popup-text {
    margin: 0;
    position: relative;
    z-index: 1;
}

.popup .popup-buttons {
    margin: -8px -12px -8px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.popup .popup-buttons .btn {
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 8px 12px;
}

.popup .popup-buttons .btn+.btn {
    margin-left: 12px;
}

.popup .popup-body .btn-block+.btn-block {
    margin: 10px 0 -8px;
}

.qr-code-popup-container .popup,
.ton-auth-popup-container .popup {
    width: 320px;
}

.login-popup-container .popup {
    width: 480px;
}

.login-popup-container h2 {
    font-size: 18px;
    line-height: 1.4em;
    font-weight: bold;
    margin: 0 0 14px;
}

.login-popup-container p {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
}

.login-popup-container p.help-block {
    margin-top: 18px;
    margin-bottom: -7px;
}

.login-popup-container .form-group {
    margin: 18px 0 0;
}

.login-popup-container .form-control {
    max-width: 280px;
}

.form-popup-container .popup-body {
    padding: 22px 20px 30px;
}

.form-popup-container .popup h4,
.form-popup-container .popup-text {
    margin-left: 8px;
    margin-right: 8px;
}

.form-popup-container form {
    padding: 6px 0 0;
    text-align: left;
}

.form-popup-container .form-group {
    padding: 22px 0 0;
    margin: 0;
}

.form-popup-container .form-group>label {
    margin: 0 8px 10px;
}

.form-popup-container .form-main-button {
    margin-top: 40px;
}

.form-popup-container .popup .popup-buttons {
    margin-left: -4px;
    margin-right: -4px;
}

.place-bid-popup-container .popup h2 {
    font-size: 30px;
    line-height: 1.4em;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.place-bid-popup-container .popup section {
    padding-bottom: 0;
}

.place-bid-popup-container .popup-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    text-align: center;
    margin: 2px 0 4px;
}

.qr-code-popup-container .popup-body {
    padding: 22px 18px 30px;
    text-align: center;
}

.qr-code-popup-container .popup h2 {
    font-size: 22px;
    line-height: 35px;
    font-weight: bold;
    margin: 0;
}

.qr-code-popup-container .popup section {
    padding-bottom: 0;
}

.qr-code-popup-container .popup-text {
    --line-height: 20px;
    font-size: 14px;
    line-height: var(--line-height);
    color: var(--text-color);
    margin: 2px 20px 20px;
}

.qr-code-popup-container .popup-hint-text {
    --line-height: 20px;
    font-size: 14px;
    line-height: var(--line-height);
    color: var(--text-color);
    margin: 20px 20px 2px;
}

.qr-code-popup-container .popup-footer-text {
    --line-height: 16px;
    font-size: 12px;
    line-height: var(--line-height);
    color: var(--text-color);
    margin: 15px 20px 5px;
}

.tm-qr-code {
    position: relative;
    width: 196px;
    min-height: 196px;
    border-radius: 18px;
    background-color: #fff;
    margin: 20px auto;
    padding: 13px;
    cursor: default;
    transition: var(--def-transition) all;
}

.tm-qr-code:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 100%;
    background: url('data:image/svg+xml,%3Csvg%20height%3D%2255%22%20viewBox%3D%220%200%2055%2055%22%20width%3D%2255%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m6.94%2013.98%2018.58%208.96c.22.11.37.34.37.6l-.07%2020.79c0%20.22-.12.43-.31.55-.31.2-.71.1-.91-.21l-18.51-29.75c-.12-.19-.13-.43-.03-.63.16-.33.55-.47.88-.31zm42%20.31c.1.2.09.44-.03.63l-18.51%2029.75c-.2.31-.6.41-.91.21-.19-.12-.31-.33-.31-.55l-.07-20.79c0-.26.15-.49.37-.6l18.58-8.96c.33-.16.72-.02.88.31zm-2.39-4.29c.26%200%20.5.15.6.39.15.34%200%20.73-.33.87l-19.12%208.48c-.17.07-.37.07-.54-.01l-19-8.47c-.23-.1-.39-.34-.39-.6%200-.36.3-.66.66-.66z%22%20fill%3D%22%23354352%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
    transition: var(--def-transition) opacity, var(--def-transition) transform;
    transform: scale(0);
    opacity: 0;
}

.tm-qr-code:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(270deg, rgba(var(--bg-rgb), 0) 0%, #425366 40%, rgba(var(--bg-rgb), 0) 100%);
    background-size: 200px 100%;
    background-repeat: no-repeat;
    animation: qr-loading linear 3s infinite;
    transition: var(--def-transition) opacity, var(--def-transition) visibility;
}

.tm-qr-code-image {
    position: relative;
    display: inline-block;
    width: 170px;
    height: 170px;
    vertical-align: top;
    background: no-repeat center;
    background-size: contain;
    transition: var(--def-transition) opacity;
}

.tm-qr-code-label {
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
    margin: 5px auto 0;
    color: var(--bg-color);
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    transition: var(--def-transition) color;
}

.tm-qr-code-or {
    margin: -5px 0 15px;
    color: var(--text-color);
}

.qr-inactive .tm-qr-code {
    background-color: var(--inactive-bg-color);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .02);
    overflow: hidden;
}

.qr-inactive .tm-qr-code:before {
    transform: scale(1);
    opacity: 1;
}

.qr-inactive .tm-qr-code:after {
    visibility: visible;
    opacity: .32;
}

.qr-inactive .tm-qr-code .tm-qr-code-image {
    opacity: 0;
}

.qr-inactive .tm-qr-code .tm-qr-code-label {
    color: var(--inactive-color);
}

.qr-code-popup-container .btn-primary,
.qr-code-popup-container .btn-primary:hover,
.qr-code-popup-container .btn-primary:focus {
    transition: var(--def-transition) background-color;
}

.qr-code-popup-container .btn-block:before {
    content: attr(data-inactive-label);
    position: absolute;
    transition: var(--def-transition) opacity;
    opacity: 0;
}

.qr-code-popup-container .btn-primary:before {
    transition: var(--def-transition) opacity, var(--def-transition) color;
    color: var(--btn-primary-color);
}

.qr-code-popup-container .btn-block .tm-button-label {
    transition: var(--def-transition) opacity;
}

.qr-code-popup-container.qr-inactive .btn-primary,
.qr-code-popup-container.qr-inactive .btn-primary:hover,
.qr-code-popup-container.qr-inactive .btn-primary:focus {
    pointer-events: none;
    background-color: var(--inactive-bg-color);
}

.qr-code-popup-container.qr-inactive .btn-block:before {
    opacity: 1;
}

.qr-code-popup-container.qr-inactive .btn-primary:before {
    color: #425366;
}

.qr-code-popup-container.qr-inactive .btn-block .tm-button-label {
    opacity: 0;
}

.verify-popup-container .popup .popup-text {
    color: var(--text-color);
}

.bot-username-popup-container .popup {
    text-align: center;
}

.bot-username-popup-container .popup section {
    padding-bottom: 0;
}

.bot-username-popup-container .popup .popup-text {
    color: var(--text-color);
}

.bot-username-popup-container form {
    text-align: center;
    padding: 0;
}

.gift-premium-popup-container .popup {
    text-align: center;
}

.gift-premium-popup-container .popup section {
    padding-bottom: 0;
}

.gift-premium-popup-container .popup .popup-text {
    color: var(--text-color);
}

.gift-premium-popup-container .popup .popup-text+.popup-text {
    margin-top: 10px;
}

.gift-premium-popup-container form {
    text-align: center;
    padding: 0;
}

.gift-premium-popup-container .tm-form-checkbox-label {
    margin-top: 10px;
}

.gift-premium-popup-container .form-main-button {
    margin-top: 30px;
}

.tm-gift-premium-preview {
    margin: 14px auto 0;
    width: 224px;
    padding: 16px 0 11px;
    border-radius: 16px;
    background-color: var(--field-bg-color);
}

.gift-premium-popup-container.iam-sender .tm-form-checkbox-item,
.gift-premium-popup-container.bot-recipient .tm-form-checkbox-item {
    display: none;
}

.preview-sender-shown,
.gift-premium-popup-container.show-sender .preview-sender-hidden,
.gift-premium-popup-container.show-sender.iam-sender .preview-sender-shown {
    transition: transform var(--first-half-transition);
    transform: scaleY(0);
}

.gift-premium-popup-container.show-sender .preview-sender-shown {
    transform: scaleY(1);
}

.gift-premium-popup-container.show-sender.iam-sender .preview-sender-hidden {
    transform: scaleY(1);
}

.tm-gift-premium-preview .preview-sender-name,
.tm-gift-premium-preview .preview-sender-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.tm-gift-premium-preview .preview-sender-name {
    font-size: 14px;
    line-height: 19px;
    font-weight: bold;
    transition: transform var(--second-half-transition);
    backface-visibility: hidden;
}

.tm-gift-premium-preview .preview-sender-name.preview-sender-shown {
    transition: transform var(--first-half-transition);
    margin-top: -19px;
}

.gift-premium-popup-container.show-sender .preview-sender-shown {
    transition: transform var(--second-half-transition);
}

.tm-gift-premium-preview .preview-sender-text {
    font-size: 13px;
    line-height: 19px;
}

.tm-gift-premium-preview .preview-sticker,
.tm-gift-premium-preview-sent .preview-sticker {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 144px;
    height: 144px;
    margin: 1px 0 10px;
    cursor: pointer;
}

.tm-gift-premium-preview .preview-sticker canvas,
.tm-gift-premium-preview .preview-sticker img,
.tm-gift-premium-preview-sent .preview-sticker canvas,
.tm-gift-premium-preview-sent .preview-sticker img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.tm-gift-premium-preview .preview-sticker img,
.tm-gift-premium-preview-sent .preview-sticker img {
    filter: blur(4px);
}

.tm-gift-premium-preview .preview-nft.preview-sticker {
    border-radius: 21px;
    overflow: hidden;
    margin: 16px 0 10px;
}

.tm-gift-premium-preview .preview-gift-text {
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
}

.tm-gift-premium-preview .preview-gift-desc {
    font-size: 13px;
    line-height: 20px;
}

.tm-gift-premium-preview+.popup-text {
    margin-top: 19px;
}

.tm-giveaway-whats-next,
.tm-gift-premium-preview-sent {
    width: 348px;
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 22px 30px;
    border-radius: 16px;
    background-color: var(--field-bg-color);
    color: var(--field-color);
    text-align: center;
}

.tm-giveaway-whats-next {
    padding: 24px;
    text-align: left;
}

.tm-gift-premium-preview-sent .preview-sticker {
    width: 164px;
    height: 164px;
    margin: -17px 0 12px;
}

.tm-gift-premium-preview-sent .preview-nft.preview-sticker {
    border-radius: 21px;
    overflow: hidden;
    margin: 12px 0 12px;
}

.tm-gift-premium-preview-sent .preview-gift-text {
    font-size: 16px;
    line-height: 23px;
    font-weight: bold;
}

.tm-gift-premium-preview-sent .preview-gift-desc {
    font-size: 14px;
    line-height: 23px;
    margin: 3px 0 0;
}

.tm-giveaway-whats-next .whats-next-header {
    font-size: 15px;
    line-height: 18px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 0;
}

.whats-next-list {
    font-size: 15px;
    line-height: 23px;
    margin: 8px 0 0;
    padding-left: 35px;
    list-style: none;
    list-style-image: none;
    counter-reset: list;
    text-align: left;
}

.whats-next-list .whats-next-item {
    position: relative;
    margin: 15px 0 0;
}

.whats-next-list .whats-next-item:before,
.whats-next-list .whats-next-item .item-anchor {
    display: inline-block;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    background-color: var(--field-accent-color);
}

.whats-next-list .whats-next-item:before {
    position: absolute;
    left: -35px;
    width: 19px;
    height: 19px;
    font-size: 12px;
    line-height: 15px;
    padding: 2px 0;
    margin: 2px 0;
    counter-increment: list;
    content: counter(list);
}

.whats-next-list .whats-next-item .item-anchor {
    width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 12px;
    padding: 2px 0;
    margin: 0 2px -1px 1px;
}

.whats-next-list .whats-next-item .icon-app-more {
    margin: 0 2px;
}

.icon-app-more:before {
    display: inline-block;
    width: 26px;
    height: 26px;
    vertical-align: top;
    margin-bottom: -3px;
    background-image: var(--image-url-app-more-icon);
}

.tm-main-box-processing {
    width: 348px;
    max-width: 100%;
    border-radius: 16px;
    background-color: var(--field-bg-color);
    padding: 30px 50px;
    margin: 10px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tm-main-box-processing .tm-logo-progress {
    padding: 0 0 20px;
}

.tm-main-box-icon-error {
    margin: 0 auto 20px;
}

.tm-main-box-processing-error .icon-error:before {
    width: 50px;
    height: 50px;
    background-image: var(--image-url-main-search-error);
}

.tm-main-box-processing-error .tm-main-box-processing-head {
    color: var(--unavail-color);
}

.tm-main-box-icon-expired {
    margin: 0 auto 20px;
}

.tm-main-box-processing-expired .icon-expired:before {
    width: 50px;
    height: 50px;
    background-image: var(--image-url-main-search-expired);
}

.tm-main-box-processing-head {
    font-size: 17px;
    line-height: 24px;
    font-weight: bold;
    color: var(--field-color);
}

.tm-main-box-processing-text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

.ads-popup-container .popup {
    text-align: center;
}

.ads-popup-container .popup h4 {
    font-size: 22px;
    line-height: 27px;
    margin: 4px 30px 0;
}

.ads-popup-container .popup section {
    padding-bottom: 0;
}

.ads-popup-container .popup .popup-text {
    padding: 12px 36px 0;
}

.ads-popup-container .whats-next-list {
    font-size: 14px;
    line-height: 18px;
    margin: 20px 10px 0;
}

.ads-popup-container .form-main-button {
    margin-top: 30px;
}

.ads-popup-container .icon-link-more:after {
    width: 9px;
    height: 18px;
}

.choose-collection-popup-container .popup-body h4 {
    font-size: 20px;
    margin-bottom: 0;
}

.choose-collection-popup-container .popup-body {
    padding: 21px 16px 0;
}

.choose-collection-popup-container .popup-body-scrollable-wrap {
    margin-top: 7px;
}

.choose-collection-popup-container .popup-body-scrollable {
    padding: 14px 0 24px;
    max-height: calc(100vh - 150px);
}

.choose-collection-popup-container .popup-body-scrollable {
    --shadow-gradient: rgba(var(--bg-rgb), 0) 0%, rgba(var(--bg-rgb), 1) 70%;
    --shadow-size: 24px;
    --shadow-move: 12px;
}

.choose-collection-popup-container .popup-body-scrollable.bottomscroll:after {
    display: none;
}

.choose-collection-popup-container .popup-body section {
    padding-bottom: 0;
    max-width: none;
}

.tm-main-premium-intro {
    padding: 42px 0;
}

.tm-main-premium-options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.tm-main-premium-option {
    position: relative;
    width: 300px;
    max-width: 100%;
    border-radius: 16px;
    background-color: var(--field-bg-color);
    padding: 15px 30px;
    margin: 0 15px 15px;
    text-align: center;
}

.tm-premium-opt-icon {
    display: inline-block;
    width: 200px;
    height: 125px;
    vertical-align: top;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.tm-premium-opt-icon-gift {
    background-image: var(--image-url-premium-opt-gift-icon);
}

.tm-premium-opt-icon-giveaway {
    background-image: var(--image-url-premium-opt-giveaway-icon);
}

.tm-premium-opt-icon-pay {
    background-image: var(--image-url-ads-opt-pay-icon);
}

.tm-premium-opt-icon-rewards {
    background-image: var(--image-url-ads-opt-rewards-icon);
}

.tm-premium-opt-icon-for-creators {
    background-image: var(--image-url-ads-opt-for-creators-icon);
}

.tm-main-premium-option .tm-label-new,
.tm-main-premium-option .tm-label-soon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    line-height: 16px;
    padding: 2px 7px;
    margin: 14px;
}

.tm-main-premium-option-head {
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    margin-top: 4px;
    color: var(--field-color);
}

.tm-main-premium-option-text {
    font-size: 15px;
    line-height: 22px;
    margin-top: 8px;
    color: var(--text-color);
}

.tm-main-premium-option-text.short {
    margin-left: 15px;
    margin-right: 15px;
}

.tm-main-premium-option-button {
    margin: 30px 0 21px;
}

.tm-premium-boost-label {
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    padding: 3px 6px;
    font-weight: bold;
    background-color: #9f53ff;
    color: #fff;
    border-radius: 6px;
    margin: 9px 10px;
}

.tm-stars-per-user-label {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    text-align: right;
    color: var(--dropdown-secondary-color);
    margin-right: 10px;
}

.tm-stars-per-user-label svg.icon {
    transform: scale(0.85) translateX(1px);
}

.tm-search-rbox,
.tm-premium-boost-label.tm-search-rlabel {
    position: absolute;
    top: 0;
    right: 0;
}

.icon-boost:before {
    width: 11px;
    height: 18px;
    vertical-align: top;
    background-image: var(--image-url-boost-icon);
}

.tm-premium-boost-label.icon-boost:before {
    margin-right: 4px;
}

.tm-stars-price {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    font-size: 15px;
    line-height: 20px;
    padding: 11px 7px;
    margin-right: 42px;
    font-weight: bold;
    transition: visibility var(--def-transition), opacity var(--def-transition);
    color: #fff;
}

.tm-stars-price .tm-radio-desc {
    font-weight: normal;
    text-align: right;
    color: var(--dropdown-secondary-color);
    margin-left: 20px;
}

.tm-input:focus~.tm-stars-price {
    visibility: hidden;
    opacity: 0;
}

.processing-popup-container .popup-body {
    width: 348px;
    max-width: 100%;
    border-radius: 16px;
    padding: 30px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tm-popup-processing .tm-logo-progress {
    padding: 0 0 20px;
}

.tm-popup-processing-error .icon-error:before {
    width: 50px;
    height: 50px;
    background-image: var(--image-url-main-search-error);
}

.tm-popup-processing-error .tm-popup-processing-head {
    color: var(--unavail-color);
}

.tm-popup-processing-head {
    font-size: 17px;
    line-height: 24px;
    font-weight: bold;
    color: var(--field-color);
}

.tm-popup-processing-text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
    color: var(--text-color);
}

.toast-container {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 201;
    padding: 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    pointer-events: none;
}

.popup-container.hide {
    display: flex !important;
    background: rgba(0, 0, 0, 0);
    transition: width 0s var(--def-transition-duration), left 0s var(--def-transition-duration), background-color var(--def-transition);
    pointer-events: none;
    left: -10000px;
    width: 0%;
}

.toast {
    max-width: 320px;
    padding: 8px 24px;
    background: var(--table-bg-color);
    border-radius: var(--def-border-radius);
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #fff;
}

.toast a {
    color: var(--accent-color);
    pointer-events: auto;
}

@-webkit-keyframes qr-loading {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes qr-loading {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.form-control-wrap.tm-coin-field:before {
    position: absolute;
    margin: 11px 16px 12px;
    pointer-events: none;
}

.tm-coin-field>.form-control {
    padding-left: 46px;
}

.dots-animated:after {
    position: absolute;
    display: inline-block;
    animation: dotty steps(1, end) 1s infinite;
    content: '...';
}

@-webkit-keyframes dotty {
    0%,
    100% {
        content: '';
    }
    25% {
        content: '.';
    }
    50% {
        content: '..';
    }
    75% {
        content: '...';
    }
}

@keyframes dotty {
    0%,
    100% {
        content: '';
    }
    25% {
        content: '.';
    }
    50% {
        content: '..';
    }
    75% {
        content: '...';
    }
}

@media (max-width: 767px) {
    .wide-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .thin-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .tm-header-tab .full-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .tm-header-tab .short-only {
        display: none !important;
    }
}

@media (min-width: 480px) {
    .tm-table>colgroup>col {
        --width: var(--medium-width, var(--thin-width));
    }
    .tm-table>thead>tr>th {
        --width: var(--medium-width, var(--thin-width));
    }
    .popup-container {
        padding: 40px 20px;
    }
    .popup {
        width: 360px;
        min-width: 0;
        margin-bottom: auto;
        border-radius: var(--def-border-radius);
    }
    .popup-body {
        padding: 22px 26px;
    }
    .popup section {
        max-height: none;
    }
    .form-popup-container .popup-body {
        padding-bottom: 20px;
    }
    .qr-code-popup-container .popup-body {
        padding-bottom: 18px;
    }
    .popup {
        transform: scale(1);
        opacity: 1;
        transition: transform var(--def-transition), opacity var(--def-transition);
    }
    .popup-container.hide .popup {
        transform: scale(0.98);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    :root {
        --header-height: 56px;
    }
    html.header-tabs {
        --header-height: 56px;
    }
    .btn {
        font-size: 15px;
        line-height: 18px;
        padding: 14px 20px;
    }
    .tm-header-logo {
        min-width: calc((100vw - 720px) / 2);
    }
    .tm-logo {
        padding: 16px 22px;
    }
    .tm-logo-icon {
        width: 24px;
        height: 24px;
        padding: 10px;
        margin: -10px -11px -10px -9px;
    }
    .tm-logo-text {
        width: 101px;
        height: 24px;
    }
    .tm-header-button {
        font-size: 15px;
        line-height: 18px;
        padding: 9px 14px;
    }
    .tm-header-actions {
        display: flex;
    }
    .tm-header-tabs-wrap {
        position: static;
    }
    .tm-header-tabs {
        padding: 0;
        overflow-x: visible;
    }
    .tm-header-tabs:before,
    .tm-header-tabs:after {
        visibility: hidden;
    }
    .tm-header-tab {
        padding: 19px 0;
    }
    .tm-header-tab+.tm-header-tab {
        margin-left: 26px;
    }
    .tm-header-menu-button {
        padding: 19px;
    }
    .tm-section-header-close-wrap {
        font-size: 15px;
        line-height: 22px;
        border-radius: 18px;
        padding: 7px 7px;
        margin: 0 -13px;
    }
    .tm-section-header-close-wrap .tm-section-header-title {
        padding: 0 7px;
    }
    .tm-section-header-close-wrap .tm-section-header-close {
        border-radius: 18px;
        padding: 7px;
        margin: -7px;
    }
    .tm-section-header-close-wrap .tm-section-header-close:after {
        width: 22px;
        height: 22px;
        border-radius: 11px;
    }
    .tm-section-header-back {
        margin-left: -6px;
    }
    .tm-section-header-back:after {
        width: 24px;
        height: 24px;
        margin: 6px;
    }
    .tm-btn-group .btn {
        padding: 9px;
    }
    .tm-btn-group .btn:after {
        transform: scale(1);
    }
    .tm-dropdown .dropdown-toggle.btn {
        padding: 9px 14px;
    }
    .tm-dropdown .dropdown-toggle.btn:after,
    .tm-search-field-button:after {
        width: 15px;
        height: 18px;
        margin-left: 8px;
        margin-right: -4px;
    }
    .support-bots-icon:hover>.tooltip-label,
    .support-bots-icon:hover:after {
        pointer-events: auto;
        transition-delay: .3s;
        transform: translate(-50px, 0);
        visibility: visible;
        opacity: 1;
    }
    .support-bots-icon:hover:after {
        transform: translate(-50%, 0);
    }
    .tm-wallet .current-icon {
        width: 18px;
        height: 19px;
    }
    .current-icon:hover:before,
    .current-icon:hover:after {
        transition-delay: .3s;
        transform: translate(-50%, 0);
        visibility: visible;
        opacity: 1;
    }
    .tm-unavailable {
        padding: 36px 42px;
    }
    .tm-unavailable-header {
        font-size: 30px;
        line-height: 36px;
    }
    .tm-unavailable-text {
        font-size: 16px;
        line-height: 23px;
        margin-top: 8px;
    }
    .tm-unavailable .tm-logo-icon {
        width: 160px;
        height: 160px;
    }
    .tm-rarity {
        font-size: 11px;
        padding: 2px 5px;
    }
    .tm-article {
        max-width: 672px;
    }
    #dev_page_content,
    #dev_page_content p {
        line-height: 1.45;
    }
    #dev_page_content p,
    #dev_page_content li {
        font-size: 16px;
        line-height: 23px;
    }
    #dev_page_content>p {
        margin-bottom: 20px;
    }
    #dev_page_content_wrap h1 {
        font-size: 30px;
        margin: 32px 0 27px;
    }
    #dev_page_content_wrap h2,
    #dev_page_content_wrap h3 {
        font-size: 24px;
    }
    #dev_page_content_wrap h4,
    #dev_page_content_wrap h5 {
        font-size: 19px;
    }
    #dev_page_content_wrap ul {
        margin-bottom: 20px;
    }
    .tm-main {
        width: 720px;
        box-sizing: content-box;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    .tm-main-wide-options {
        width: 990px;
    }
    .tm-main-settings {
        width: 440px;
    }
    .tm-main-kyc {
        width: 510px;
    }
    .tm-main-premium {
        max-width: 480px;
    }
    .tm-main-intro {
        padding: 36px 42px;
    }
    .tm-main-premium .tm-main-intro {
        padding: 36px 12px;
    }
    .tm-main-intro-header {
        font-size: 28px;
        line-height: 36px;
    }
    .tm-main-intro-text {
        font-size: 15px;
        --line-height: 23px;
        margin-top: 8px;
    }
    /*.icon-link-more:after {
    width: 12px;
    height: 23px;
  }*/
    .tm-main-intro-link {
        font-size: 14px;
        line-height: 19px;
        padding: 10px 20px;
        margin: 20px 0 -8px;
    }
    .tm-main-intro-link .icon-link-more:after {
        width: 10px;
        height: 19px;
    }
    .icon-telegram-premium,
    .icon-telegram-stars {
        width: 26px;
        height: 36px;
        margin-left: 7px;
    }
    svg.icon-telegram-premium use {
        scale: 1;
    }
    .tm-main.tm-main-catalog {
        width: 708px;
    }
    .tm-main.tm-main-catalog .tm-search-field-button {
        font-size: 15px;
        line-height: 18px;
        padding: 12px 16px;
        width: 154px;
    }
    .tm-catalog-grid-wrap {
        --gap: 12px;
    }
    .tm-catalog-grid .tm-grid-item,
    .tm-catalog-grid .tm-grid-item-shadow {
        min-width: 168px;
        max-width: 168px;
    }
    .tm-grid-item-content {
        padding: 10px 10px 13px;
    }
    .tm-grid-item-values {
        line-height: 20px;
        padding: 7px 0 0;
    }
    .tm-grid-item-value.tm-value {
        font-size: 14px;
    }
    .tm-grid-item-status {
        font-size: 13px;
        line-height: 16px;
        padding: 2px 6px;
    }
    .tm-main-nft-image-header {
        margin-bottom: 24px;
    }
    .tm-main-nft-image {
        --lottie-width: 200px;
    }
    .tm-header-search-form {
        max-width: 274px;
        margin-left: 0;
        margin-right: auto;
    }
    .icon-search:before {
        width: 16px;
    }
    .tm-search-input {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 20px 8px 40px;
    }
    .tm-search-field:before {
        margin: 8px 12px;
    }
    .tm-main-search-form .tm-input,
    .tm-main-search-form .tm-search-prefix {
        font-size: 17px;
        line-height: 24px;
        padding: 14px 19px 16px;
    }
    .tm-main-search-form .tm-search-input,
    .tm-main-search-form .tm-search-prefix,
    .tm-section-search-form .tm-search-input,
    .tm-section-search-form .tm-search-prefix {
        padding: 14px 54px 16px 66px;
    }
    .tm-main-search-form .tm-search-prefix {
        padding-right: 0;
    }
    .tm-main-search-form .tm-search-prefix+.tm-search-input {
        padding-left: 112px;
    }
    .tm-main-search-form .tm-search-field:before {
        margin: 14px 22px 16px;
    }
    .tm-main-search-form .icon-search:before {
        width: 20px;
        height: 24px;
    }
    .tm-main-search-form .icon-search-clear:before,
    .tm-section-search-form .icon-search-clear:before {
        width: 22px;
        height: 22px;
    }
    .tm-section-search-form .icon-search:before,
    .tm-main-premium .tm-main-search-form .icon-search:before {
        width: 17px;
        height: 20px;
        margin: 14px 16px 16px 20px;
    }
    .tm-section-search-form .tm-input,
    .tm-main-premium .tm-main-search-form .tm-input {
        font-size: 15px;
        line-height: 24px;
        padding: 12px 19px;
    }
    .tm-main-premium .tm-main-search-form .tm-coin-field>.form-control,
    .tm-main-premium .tm-main-search-form .tm-coin-field>.form-control-hint {
        font-size: 15px;
        line-height: 24px;
        padding: 12px 19px;
    }
    .tm-main-premium .tm-main-search-form .tm-coin-field>.form-control {
        padding-left: 52px;
    }
    .tm-main-premium .tm-main-search-form .form-control-wrap.tm-coin-field:before {
        width: 20px;
        height: 20px;
        margin: 14px 16px 14px 17px;
    }
    .tm-section-search-form .tm-search-input,
    .tm-main-premium .tm-main-search-form .tm-search-input,
    .tm-main-premium .tm-main-search-form .tm-search-prefix {
        padding: 12px 54px 12px 52px;
    }
    .tm-main-catalog-filters .tm-main-search-form .tm-search-input,
    .tm-main-catalog-filters .tm-main-search-form .tm-search-prefix {
        font-size: 15px;
        line-height: 18px;
        padding: 12px 42px 12px 48px;
    }
    .tm-main-catalog-filters .tm-main-search-form .icon-search:before {
        width: 16px;
        height: 20px;
    }
    .tm-main-catalog-filters .tm-main-search-form .tm-search-field:before {
        margin: 11px 14px 11px 18px;
    }
    .tm-main-catalog-filters .tm-main-search-form .tm-search-field .tm-search-clear {
        padding: 12px;
    }
    .tm-main-catalog-filters .tm-main-search-form .tm-search-field .tm-search-clear:before {
        width: 18px;
        height: 18px;
    }
    .tm-stars-per-user-label {
        font-size: 15px;
        margin-right: 20px;
    }
    .tm-main-form-group {
        margin-bottom: 28px;
    }
    .tm-main-form-link-wrap {
        font-size: 15px;
        line-height: 19px;
        margin-top: 30px;
    }
    .tm-main-form-label-badge {
        font-size: 13px;
        line-height: 17px;
        padding: 4px 8px;
        margin: -1px 10px;
        border-radius: 6px;
    }
    .tm-search-loading,
    .tm-search-clear {
        padding: 16px;
    }
    .tm-section-search-form .tm-search-loading,
    .tm-main-premium .tm-main-search-form .tm-search-loading,
    .tm-section-search-form .tm-search-clear,
    .tm-main-premium .tm-main-search-form .tm-search-clear {
        padding: 13px;
    }
    .tm-search-error-icon {
        margin: 17px 19px;
    }
    .tm-main-premium .tm-main-search-form .tm-search-error-icon {
        margin: 14px 14px 14px 18px;
    }
    .tm-search-field-photo {
        margin: 9px 14px;
        width: 36px;
        height: 36px;
    }
    .tm-main-premium .tm-search-field-photo {
        margin: 10px 14px;
        width: 28px;
        height: 28px;
    }
    .icon-ton:before,
    .icon-stars:before {
        width: 15px;
        height: 19px;
        margin-left: -1px;
        margin-right: 4px;
    }
    .tm-section {
        padding: 0 0 10px;
    }
    .tm-section-header {
        padding: 22px 0 14px;
    }
    .tm-section-subheader {
        margin-top: -17px;
        margin-bottom: 18px;
        text-align: left;
    }
    .tm-section-header .btn-group {
        margin-left: 12px;
    }
    .tm-settings-section {
        padding: 0;
    }
    .tm-auction-section .tm-section-header-domain {
        max-width: 400px;
    }
    .tm-section-header-text {
        font-size: 22px;
        line-height: 36px;
        padding: 0 13px;
    }
    .tm-section-header-status {
        font-size: 13px;
        line-height: 17px;
        padding: 3px 10px;
        margin: 9px 10px 4px;
        border-radius: 6px;
    }
    .tm-section-text {
        font-size: 15px;
        line-height: 1.4;
        margin: -4px 13px 18px;
    }
    .tm-section-text+.tm-section-text {
        margin-top: -9px;
    }
    .tm-section-tabs {
        margin: -6px -10px 23px;
        padding: 0 13px;
    }
    .tm-section-tab {
        padding: 10px 0;
        margin: 0 10px;
    }
    .tm-pagination {
        padding: 0 13px;
    }
    .tm-table-empty,
    .tm-table>tbody>tr>td.tm-cell-empty,
    .tm-table>tbody>tr>td.tm-cell-empty-full {
        padding: 30px 20px;
    }
    .tm-table>tbody>tr>td.tm-cell-empty {
        font-size: 14px;
        padding: 10px 20px;
    }
    .tm-table-responsive {
        overflow: hidden;
    }
    .tm-table>colgroup>col {
        --width: var(--wide-width);
    }
    .tm-table>thead>tr>th {
        --width: var(--wide-width);
        font-size: 14px;
        line-height: 18px;
        padding: 10px;
    }
    .tm-table>tbody>tr>td {
        font-size: 14px;
        line-height: 19px;
    }
    .tm-table .table-cell,
    .tm-table .tm-high-cells .table-cell {
        padding: 10px;
    }
    .tm-main-form-group .tm-table .table-cell,
    .tm-main-form-group .tm-table .tm-high-cells .table-cell {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .tm-table td:first-child .table-cell,
    .tm-table thead>tr>th:first-child {
        padding-left: 20px;
    }
    .tm-table td.thin-last-col .table-cell,
    .tm-table thead>tr>th.thin-last-col {
        padding-right: 10px;
    }
    .tm-table td:last-child .table-cell,
    .tm-table td.wide-last-col .table-cell,
    .tm-table thead>tr>th:last-child,
    .tm-table thead>tr>th.wide-last-col {
        padding-right: 20px;
    }
    .tm-table>thead>tr:first-child>th.thin-last-col {
        border-top-right-radius: 0;
    }
    .tm-table>thead>tr:first-child>th.wide-last-col {
        border-top-right-radius: var(--def-border-radius);
    }
    .tm-table>tbody>tr:last-child>td.thin-last-col,
    .tm-table>tfoot>tr:last-child>td.thin-last-col {
        border-bottom-right-radius: 0;
    }
    .tm-table>tbody>tr:last-child>td.wide-last-col,
    .tm-table>tfoot>tr:last-child>td.wide-last-col {
        border-bottom-right-radius: var(--def-border-radius);
    }
    .tm-table .tm-high-cells .table-cell {
        height: 58px;
    }
    .tm-table .table-cell-value,
    .tm-table .table-cell-desc,
    .tm-table .table-cell-action {
        font-size: 13px;
    }
    .tm-table .table-cell-oneline {
        padding-top: 10px;
    }
    .tm-table .table-cell-oneline.table-cell-wide {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .tm-table .table-cell-oneline .table-cell-desc {
        font-size: 14px;
    }
    .tm-table tbody .tm-row-selectable>td.thin-last-col>.table-cell {
        padding-right: 10px;
    }
    .tm-table tbody .tm-row-selectable>td.thin-last-col>.table-cell:after {
        display: none;
    }
    .tm-table tbody .tm-row-selectable>td:last-child>.table-cell,
    .tm-table tbody .tm-row-selectable>td.wide-last-col>.table-cell {
        padding-right: 40px;
    }
    .tm-table tbody .tm-row-selectable>td.wide-last-col>.table-cell:after {
        display: block;
        width: 11px;
        right: 20px;
    }
    .tm-table .tm-high-cells .table-row-thumbed .table-cell {
        height: 76px;
    }
    .tm-table tbody .table-cell.table-cell-thumbed {
        padding-left: 46px;
    }
    .tm-table .tm-high-cells .table-cell.table-cell-thumbed {
        padding-left: 83px;
    }
    .tm-table .tm-high-cells .tm-cell-thumb {
        width: 58px;
        margin: 9px 10px;
        border-radius: 4px;
    }
    .tm-table .tm-high-cells .table-cell.table-cell-thumbed .table-cell-desc,
    .tm-table .tm-high-cells .table-cell.table-cell-thumbed .table-cell-action {
        margin-top: 2px;
    }
    .tm-table>tbody>tr>td .table-cell-value.tm-value {
        font-size: 14px;
    }
    .tm-table>tbody>tr>td:first-child .table-cell-value.tm-value {
        font-size: 15px;
    }
    .table-cell-value-row>.table-cell-status-thin {
        font-size: 12px;
        margin-top: 2px;
        margin-bottom: 1px;
    }
    .tm-table-action+.tm-table-action,
    button.wide-only~.tm-table-action+.tm-table-action {
        margin-left: 10px;
    }
    .tm-table-action-link+.tm-table-action-link {
        margin-left: 5px;
    }
    .tm-table-button,
    .tm-table-action-link {
        font-size: 14px;
        line-height: 18px;
        padding: 7px 11px;
    }
    .tm-grid-item-value.tm-value {
        font-size: 15px;
    }
    .tm-auction-section .tm-section-header {
        padding: 30px 0 19px;
    }
    .tm-section-subscribe {
        display: none;
    }
    .tm-section-header>.tm-section-subscribe,
    .tm-section-header>.tm-section-header-link {
        display: block;
        margin: 9px 20px 4px;
        width: auto;
    }
    .tm-auction-section {
        margin-bottom: -22px;
    }
    .tm-auction-section>.tm-section-box {
        width: calc(50% - 12px);
        margin-bottom: 22px;
    }
    .tm-auction-thumbed-section>.tm-section-box {
        width: 424px;
    }
    .tm-section-auction-thumb-column {
        margin-bottom: -270px;
        display: block;
        width: 270px;
    }
    .tm-section-auction-image {
        --lottie-width: 270px;
    }
    .tm-auction-section .tm-section-header {
        order: 1;
    }
    .tm-auction-section .tm-section-subheader {
        order: 2;
    }
    .tm-auction-section .tm-section-bid-info {
        order: 3;
    }
    .tm-auction-section .tm-section-auction-info {
        order: 4;
    }
    .tm-auction-section .tm-section-auction-thumb-column {
        order: 5;
    }
    .tm-auction-section .tm-section-buttons {
        order: 6;
    }
    .tm-auction-section .tm-section-countdown-wrap {
        order: 7;
    }
    .tm-auction-thumbed-section .tm-section-bid-info {
        order: 5;
    }
    .tm-auction-thumbed-section .tm-section-countdown-wrap {
        display: none;
    }
    .tm-section-auction-thumb-column .tm-section-countdown-wrap {
        display: block;
    }
    .tm-section-auction-thumb-column .tm-section-countdown {
        display: block;
        text-align: center;
        height: auto;
        padding: 18px 0 0;
    }
    .tm-section-auction-thumb-column .tm-countdown-label {
        margin: 0 0 7px;
    }
    .tm-section-auction-thumb-column .tm-countdown-label.short {
        display: none;
    }
    .tm-section-auction-thumb-column .tm-countdown-label.full {
        display: block;
    }
    .tm-section-auction-thumb-column .tm-countdown-timer {
        display: inline-flex;
    }
    .tm-section-auction-thumb-column .tm-section-buttons {
        display: flex;
        margin-top: 22px;
    }
    .tm-section-tabs+.tm-section-bid-info,
    .tm-section-tabs-wrap+.tm-section-bid-info {
        margin-bottom: 23px;
    }
    .tm-stars-price {
        padding: 14px 7px;
        margin-right: 48px;
    }
    .tm-form-radio-item input.radio~.tm-form-radio-label:before {
        margin-right: 19px;
    }
    .tm-auction-section .tm-section-header-text {
        font-size: 28px;
        justify-content: start;
    }
    .tm-bid-info-text {
        --line-height: 19px;
        padding: 2px 20px 10px;
    }
    .tm-offer-info-text {
        --line-height: 18px;
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .tm-list-item-hint {
        --line-height: 19px;
        padding: 0 20px 10px;
    }
    .tm-under-table-buttons {
        flex-direction: row;
    }
    .tm-under-table-buttons .btn+.btn {
        margin-top: 0;
        margin-left: 14px;
    }
    .tm-list {
        font-size: 14px;
        line-height: 20px;
    }
    .tm-list dt,
    .tm-list dd {
        line-height: 20px;
    }
    .tm-list-item {
        padding: 11px 20px;
    }
    .tm-section-countdown,
    .tm-section-countdown-end {
        font-size: 14px;
        line-height: 30px;
        height: 46px;
        padding: 8px 0;
    }
    .tm-countdown-label {
        margin-right: 16px;
    }
    .tm-countdown-timer {
        font-size: 15px;
    }
    .tm-countdown-timer>.reel>.digit:before {
        margin: 3px 0;
    }
    .tm-countdown-timer>.reel>.digit {
        min-width: 23px;
        height: 30px;
    }
    .tm-countdown-timer>.reel>.digit.timer-d {
        padding: 0 8px;
    }
    .tm-premium-boost-label {
        margin: 12px;
    }
    .tm-main-box-processing {
        margin: 50px auto 0;
    }
    .tm-form-radio-label .tm-quantity {
        width: 110px;
    }
    .tm-form-radio-label .tm-value {
        width: 90px;
    }
    .tm-stars-options .tm-form-radio-label .tm-value {
        width: 110px;
        text-align: left;
    }
    .tm-form-radio-label .tm-radio-desc {
        width: 70px;
    }
    .gift-premium-popup-container .popup .popup-text+.popup-text {
        margin-top: 15px;
    }
    .tm-gift-premium-preview {
        margin: 20px auto 0;
    }
}

@media (min-width: 1096px) {
    .tm-main.tm-main-catalog {
        width: 1096px;
    }
    .tm-main-catalog-wrap {
        display: flex;
        padding: 0 32px;
    }
    .tm-main-catalog-filters {
        width: 294px;
        padding-top: 84px;
        margin-right: 30px;
        flex-shrink: 0;
    }
    .tm-main-catalog-filters .tm-section {
        position: sticky;
        top: calc(var(--header-height) + 20px);
        height: calc(100vh - calc(var(--header-height) + 40px));
        border-radius: var(--def-border-radius);
        padding-bottom: 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-y: auto;
    }
    .tm-main-catalog-filters .tm-section::-webkit-scrollbar {
        display: none;
    }
    .tm-main-catalog-content {
        flex-grow: 1;
    }
    .tm-main-catalog-content .tm-section-header {
        padding-top: 34px;
    }
    .tm-main-filters-wrap {
        display: block;
    }
    .tm-main.tm-main-catalog .tm-search-field-button,
    .choose-collection-popup-container {
        display: none !important;
    }
    .tm-section-header-close-wrap {
        font-size: 22px;
        line-height: 36px;
        border-radius: 0;
        background-color: transparent;
        flex-direction: row-reverse;
        padding: 0;
        margin: 0;
    }
    .tm-section-header-close-wrap .tm-section-header-title {
        padding: 0 0 0 10px;
    }
    .tm-section-header-close-wrap .tm-section-header-close {
        line-height: 24px;
        border-radius: 12px;
        padding: 6px;
        margin: 0 0 0 -12px;
    }
    .tm-section-header-close-wrap .tm-section-header-close:after {
        width: 24px;
        height: 24px;
        border-radius: 0;
        background-image: var(--image-url-header-back-icon);
        background-color: transparent;
    }
}

@media (min-width: 1280px) {
    .tm-main.tm-main-catalog {
        width: 1276px;
    }
}

@media (min-width: 1460px) {
    .tm-main.tm-main-catalog {
        width: 1456px;
    }
}

.tm-pay-card:has(.tm-underpaid-remaining) {
    border: 2px solid var(--warning-text-color);
    /*background: var(--warning-bg-color);*/
}

.tm-underpaid-remaining {
    color: var(--warning-text-color) !important;
}

.tm-pay-review-banner {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    margin: 0 0 12px;
    background: var(--warning-bg-color);
    color: var(--warning-text-color);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.tm-pay-review-banner-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.tm-pay-card {
    background: var(--header-bg-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
}

.tm-pay-timer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #242e3821;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tm-pay-timer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.tm-pay-timer-text {
    font-size: 13px;
    text-align: start;
    color: rgba(255, 255, 255, 0.4);
}

.tm-pay-timer-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    max-width: 220px;
}

.tm-pay-timer-fill {
    height: 100%;
    background: var(--accent-color, #39ade7);
    border-radius: 2px;
    transition: width 1s linear;
}

.tm-pay-timer-clock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.tm-pay-timer-clock-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(57, 173, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-pay-timer-clock-icon svg {
    width: 14px;
    height: 14px;
}

.tm-pay-tabs {
    display: flex;
    padding: 16px 20px 0;
    gap: 0;
}

.tm-pay-tab {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.15s;
}

.tm-pay-tab:first-child {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.tm-pay-tab:last-child {
    border-radius: 0 8px 8px 0;
}

.tm-pay-tab.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.tm-pay-body {
    padding: 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 24px;
}

@media (max-width: 520px) {
    .tm-pay-body {
        flex-direction: column;
        align-items: center;
    }
}

.tm-pay-qr {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
    background-size: 100%;
}

.tm-pay-qr canvas {
    width: 100%;
    height: 100%;
}

.tm-pay-details {
    flex: 1;
    min-width: 0;
}

.tm-pay-field {
    margin-bottom: 18px;
}

.tm-pay-field:last-child {
    margin-bottom: 0;
}

.tm-pay-field-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: start;
    font-weight: 600;
}

.tm-pay-field-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tm-pay-field-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--header-color);
    word-break: break-all;
    text-align: start;
    line-height: 1.35;
}

.tm-pay-field-value-sm {
    font-size: 14px;
    font-weight: 600;
}

.tm-pay-field-usd {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.tm-pay-badge-eth {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: rgba(98, 126, 234, 0.15);
    color: #8C9EFF;
    border: 1px solid rgba(98, 126, 234, 0.25);
    border-radius: 4px;
    padding: 2px 7px;
    letter-spacing: 0.03em;
    vertical-align: middle;
    margin-left: 2px;
}

.tm-pay-badge-ton {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: rgba(0, 152, 234, 0.12);
    color: #5BB8F0;
    border: 1px solid rgba(0, 152, 234, 0.2);
    border-radius: 4px;
    padding: 2px 7px;
    letter-spacing: 0.03em;
    vertical-align: middle;
    margin-left: 2px;
}

.tm-pay-copy-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--btn-default-bg-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.12s;
    position: relative;
}

.tm-pay-copy-btn:hover {
    /*background: var(--btn-default-bg-hover-color);*/
    background: rgba(57, 173, 231, 0.25);
}

.tm-pay-copy-btn svg {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.tm-pay-copy-btn {
    background: rgba(57, 173, 231, 0.15);
    border-color: rgba(57, 173, 231, 0.3);
}

.tm-pay-copy-btn svg {
    color: #39ade7;
}

.tm-pay-copy-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #39ade7;
    color: var(--header-color);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

.tm-pay-copy-btn.copied .tm-pay-copy-tooltip {
    opacity: 1;
}

.tm-pay-footer-msg {
    text-align: center;
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--text-color);
}

.tm-pay-footer-msg b {
    color: var(--header-color);
    font-weight: 700;
}

.tm-pay-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 20px;
}

.tm-pay-user-photo {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 6px 0 3px;
    position: relative;
    bottom: 2px;
}

.tm-pay-user-photo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.tm-pay-wallet-section {
    padding: 18px 20px 20px;
}

.tm-pay-wallet-label {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 18px;
    font-weight: 500;
}

.tm-pay-wallet-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--header-color);
    transition: all 0.15s;
}

.tm-pay-wallet-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.tm-pay-wallet-btn-icon {
    width: 28px;
    height: 28px;
}

.tm-pay-wallet-btn.primary {
    background-color: var(--btn-primary-bg-color);
}

.tm-pay-wallet-btn.primary:hover {
    background-color: var(--btn-primary-bg-hover-color);
}

.tm-pay-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 4px;
}

.tm-pay-summary-item {
    text-align: center;
    flex: 1;
}

.tm-pay-summary-label {
    font-size: 11px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-weight: 600;
}

.tm-pay-summary-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--header-color);
}

.tm-pay-summary-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.tm-pay-cancel {
    text-align: center;
    margin-top: 16px;
}

.tm-pay-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    margin: 0 0 16px;
    background: rgba(243, 156, 18, 0.06);
    border: 1px solid rgba(243, 156, 18, 0.12);
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.tm-pay-warning-icon {
    flex-shrink: 0;
    color: #F39C12;
    font-size: 16px;
    margin-top: 1px;
}

.tm-cancel-payment {
    margin: 26px auto;
    display: block;
    width: fit-content;
    font-size: 13px;
    cursor: pointer;
}

.js-premium-options .tm-value {
    text-align: end;
}

.tm-currency-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tm-currency-tabs .radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 480px) {
    .tm-currency-tab.dropdown-toggle.icon-after:after {
        content: '';
        width: 16px;
        height: 18px;
        margin-bottom: 2px;
        position: absolute;
        right: 12px;
        background-image: var(--image-url-dropdown-caret);
    }
    .tm-currency-tab.dropdown-toggle.icon-after {
        padding-right: 22px;
    }
}

.tm-currency-tab {
    flex: 1;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 8px;
    background: var(--field-bg-color);
    color: var(--field-color);
    font-size: 13px;
    font-weight: 600;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    transition: all 0.15s;
    margin: 0;
}

.tm-currency-tab:has(.radio:checked) {
    color: var(--header-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.dropdown-menu .tm-currency-tab {
    background: none;
}

.dropdown-menu .tm-currency-tab:hover {
    background-color: var(--dropdown-bg-hover-color);
}

.tm-currency-tab-icon {
    font-size: 13px;
    transition: color 0.15s;
    background-size: 100%;
    font-size: 0;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
}

.tm-currency-tab .tab-icon-ton {
    background-image: var(--image-url-ton-icon);
    background-position: 0;
}

.tm-currency-tab .tab-icon-usdt-ton {
    background-image: var(--image-url-usdt-ton-icon);
}

.tm-currency-tab .tab-icon-ton {
    background-image: var(--image-url-ton-icon);
    background-position: 0;
}

.tm-currency-tab .tab-icon-usdt {
    background-image: var(--image-url-usdt-icon);
}

.tm-currency-tab .tab-icon-usdc {
    background-image: var(--image-url-usdc-icon);
}

.tm-currency-tab .tab-icon-usdc-base {
    background-image: var(--image-url-usdc-base-icon);
}

.tm-currency-tab .tab-icon-usdt-pol {
    background-image: var(--image-url-usdt-pol-icon);
}

.tm-currency-tab .tab-icon-usdc-pol {
    background-image: var(--image-url-usdc-pol-icon);
}

.tm-currency-tab .tab-network {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.tm-pay-wallet-label {
    text-align: center;
}

.popup-body.js-process-erc20 {
    background: var(--field-bg-color);
    border-radius: 32px;
    margin-top: 0;
}

.tm-pay-summary-value svg {
    color: #1a2027;
}

.tm-pay-summary-value .icon-telegram-premium {
    width: 24px;
    height: 24px;
}

.tm-pay-summary-value .icon-telegram-premium use {
    scale: 0.833 !important;
}

.tm-pay-wallet-row {
    display: flex;
    gap: 8px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    background: var(--table-header-bg-color);
    margin-top: -6px;
    font-size: 13px;
    white-space: nowrap;
}

.tm-pay-wallet-addr {
    font-family: monospace;
    color: var(--header-color);
    font-weight: 600;
}

.tm-pay-wallet-net {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tm-pay-wallet-change {
    margin-inline-start: auto;
}

.js-cancel-payment {
    cursor: pointer;
}

.tm-pay-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2.6px solid rgba(255, 255, 255, .25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: tm-spin .8s linear infinite;
    vertical-align: -2px;
}

@keyframes tm-spin {
    to {
        transform: rotate(360deg);
    }
}

/* images */

:root {
    --image-url-logo-icon: url('data:image/svg+xml,%3Csvg%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M%20126.3%20153.6%20L%20252%20209.2%20C%20255.2%20210.7%20259.2%20210.5%20264.2%20208.2%20L%20388%20153.5%20C%20394.6%20151.1%20390.9%20143.7%20385.7%20144.5%20L%20129.1%20143.4%20C%20121.9%20143.7%20119.9%20150.9%20126.3%20153.6%20Z%20M%20116.2%20182.1%20L%20234.6%20366.1%20C%20238.3%20372.1%20247.7%20368.7%20247.4%20363.3%20L%20247.2%20237.1%20C%20247.1%20230%20245.3%20228.4%20240.8%20226.5%20L%20122.4%20173.8%20C%20118.1%20171.4%20112.3%20175.4%20116.2%20182.1%20Z%20M%20267.5%20234.8%20L%20267.8%20361.8%20C%20267.9%20370.3%20276.4%20371.9%20281.3%20364.7%20L%20384.2%20205.3%20L%20386.4%20201.9%20L%20388.3%20199%20L%20388.3%20198.9%20L%20399.1%20182.3%20C%20402.4%20176.8%20397.2%20170.5%20389.4%20174.2%20L%20272%20227.1%20C%20271.8%20227.2%20271.6%20227.3%20271.4%20227.4%20C%20269.9%20228.3%20268.9%20229.2%20268.4%20230.3%20C%20267.7%20231.5%20267.5%20233%20267.5%20234.8%20Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-logo-text: url('data:image/svg+xml,%3Csvg%20height%3D%2253%22%20viewBox%3D%220%200%20226%2053%22%20width%3D%22226%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m%2023.84%2048%20h%206.82%20v%20-18.91%20h%208.8%20v%20-6.2%20h%20-8.8%20v%20-12.09%20h%2011.22%20v%20-6.2%20h%20-18.04%20z%20m%2021.81%200%20h%206.82%20v%20-18.6%20h%202.36%20c%203.1%200%204.28%201.3%204.28%205.33%20v%207.94%20c%200%203.53%200.24%204.21%200.62%205.33%20h%206.94%20c%20-0.68%20-1.61%20-0.74%20-3.16%20-0.74%20-5.27%20v%20-7.63%20c%200%20-4.89%20-1.12%20-8.12%20-4.53%20-9.17%20v%20-0.13%20c%203.04%20-1.24%204.46%20-4.09%204.46%20-8.55%20v%20-2.67%20c%200%20-6.69%20-3.03%20-9.98%20-10.1%20-9.98%20h%20-10.11%20z%20m%206.82%20-24.8%20v%20-12.4%20h%203.1%20c%202.42%200%203.47%201.36%203.47%204.46%20v%203.35%20c%200%203.47%20-1.55%204.59%20-4.09%204.59%20z%20m%2016.86%2024.8%20h%206.32%20l%201.24%20-8.49%20h%207.75%20v%20-0.13%20l%201.24%208.62%20h%206.82%20l%20-7.07%20-43.4%20h%20-9.23%20z%20m%208.37%20-14.38%20l%202.97%20-21.46%20h%200.13%20l%203.04%2021.46%20z%20m%2028.32%2015%20c%206.7%200%2010.17%20-3.97%2010.17%20-10.91%20v%20-14.2%20h%20-9.86%20v%206.2%20h%203.41%20v%208.49%20c%200%203.1%20-1.36%204.22%20-3.53%204.22%20s%20-3.53%20-1.12%20-3.53%20-4.22%20v%20-23.74%20c%200%20-3.1%201.36%20-4.28%203.53%20-4.28%20s%203.53%201.18%203.53%204.28%20v%204.15%20h%206.45%20v%20-3.72%20c%200%20-6.94%20-3.47%20-10.91%20-10.17%20-10.91%20c%20-6.69%200%20-10.16%203.97%20-10.16%2010.91%20v%2022.82%20c%200%206.94%203.47%2010.91%2010.16%2010.91%20z%20m%2015.06%20-0.62%20h%205.95%20v%20-32.86%20h%200.13%20l%204.96%2032.86%20h%205.7%20l%204.96%20-32.86%20h%200.13%20v%2032.86%20h%206.44%20v%20-43.4%20h%20-9.73%20l%20-4.34%2031.06%20h%20-0.12%20l%20-4.34%20-31.06%20h%20-9.74%20z%20m%2033.85%200%20h%2018.6%20v%20-6.2%20h%20-11.78%20v%20-13.33%20h%209.36%20v%20-6.2%20h%20-9.36%20v%20-11.47%20h%2011.78%20v%20-6.2%20h%20-18.6%20z%20m%2022.99%200%20h%206.08%20v%20-31.68%20h%200.12%20l%208.18%2031.68%20h%207.01%20v%20-43.4%20h%20-6.08%20v%2025.98%20h%20-0.12%20l%20-6.63%20-25.98%20h%20-8.56%20z%20m%2032.29%200%20h%206.82%20v%20-37.2%20h%207.13%20v%20-6.2%20h%20-21.08%20v%206.2%20h%207.13%20z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-connect-telegram: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2017%2018%22%20width%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m.32%208.22c4.81-2.07%208.02-3.43%209.62-4.08%203.48-1.43%204.87-1.96%205.61-2.13.23-.06%201.45.29%201.45%201.18%200%202.58-1.32%208.8-1.87%2011.67-.23%201.22-1.88%201.6-3.74.45-1.47-.91-2.27-1.52-3.68-2.44-1.63-1.05-.58-1.63.35-2.58.25-.25%204.47-4.03%204.55-4.37.01-.04.02-.2-.08-.29-.09-.08-.24-.05-.34-.03-.14.03-2.46%201.54-6.96%204.53-.66.44-1.25.66-1.79.65-.59-.02-1.15-.05-2.56-.6-.94-.37-1.13-1.02-.56-1.96z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-connect-ton: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2017%2018%22%20width%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.7%22%3E%3Cpath%20d%3D%22m1.84%203h13.3c.28%200%20.5.22.5.5%200%20.09-.02.17-.06.25l-6.33%2011.18c-.27.48-.88.65-1.36.38-.16-.09-.3-.23-.38-.39l-6.11-11.18c-.13-.24-.04-.55.2-.68.08-.04.16-.06.24-.06z%22%2F%3E%3Cpath%20d%3D%22m8.5%2015v-12%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-tonkeeper: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23fff%22%20fill-rule%3D%22nonzero%22%3E%3Cpath%20d%3D%22m9%208%207-3-7%2011z%22%20opacity%3D%22.75%22%2F%3E%3Cpath%20d%3D%22m9%208-7-3%207%2011z%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22m9%208-7-3%207-3%207%203z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-telegram-premium: url('data:image/svg+xml,%3Csvg%20height%3D%2236%22%20viewBox%3D%220%200%2026%2036%22%20width%3D%2226%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m8.88%2013.45%202.89-5.71c.33-.66%201.14-.93%201.8-.6.25.13.46.35.59.61l2.73%205.51c.22.45.66.76%201.16.82l5.7.68c.78.09%201.33.79%201.24%201.57-.04.31-.18.61-.41.84l-4.52%204.42c-.18.18-.27.43-.23.68l.75%205.98c.1.85-.5%201.63-1.36%201.74-.32.04-.65-.02-.94-.18l-4.77-2.59c-.34-.19-.76-.19-1.11-.01l-4.93%202.52c-.7.35-1.55.07-1.91-.62-.13-.26-.18-.55-.14-.84l.4-2.74c.19-1.34%201.03-2.51%202.23-3.12l5.49-2.78c.15-.08.2-.26.13-.4-.06-.12-.18-.18-.31-.16l-6.71.95c-1.02.15-2.06-.14-2.87-.79l-2.23-1.82c-.64-.51-.73-1.45-.22-2.09.24-.29.59-.48.97-.53l5.73-.74c.36-.04.68-.27.85-.6z%22%20fill%3D%22%23248bda%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-collectibles: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20stroke%3D%22%23fff%22%20stroke-width%3D%221.4%22%3E%3Cpath%20d%3D%22m1.56%2015.33h14.44c.31%200%20.56-.25.56-.55v-9.72c0-1.69-1.37-3.06-3.06-3.06h-9.44c-1.69%200-3.06%201.37-3.06%203.06v9.72c0%20.3.25.55.56.55z%22%2F%3E%3Cpath%20d%3D%22m1.277778%207.972222h5.138889%22%2F%3E%3Cpath%20d%3D%22m11.277778%207.972222h5.138889%22%2F%3E%3Cpath%20d%3D%22m10.72%206.59.14%203.47c0%20.19-.08.36-.21.48-.12.13-.29.2-.48.2h-2.78c-.19%200-.36-.07-.49-.2-.12-.12-.2-.29-.2-.48v-3.34z%22%20transform%3D%22matrix%28-1%200%200%201%2017.56%200%29%22%2F%3E%3C%2Fg%3E%3Crect%20fill%3D%22%23fff%22%20height%3D%221.39%22%20rx%3D%22.42%22%20width%3D%221.11%22%20x%3D%228.22%22%20y%3D%227.97%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-change-account: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20width%3D%2219%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.4%22%3E%3Cpath%20d%3D%22m11.39%205.06v-1.23c0-1.01-.82-1.83-1.83-1.83h-6.73c-1.01%200-1.83.82-1.83%201.83v9.78c0%201.01.82%201.83%201.83%201.83h6.73c1.01%200%201.83-.82%201.83-1.83v-1.53%22%2F%3E%3Cpath%20d%3D%22m5.89%208.72h12.07%22%2F%3E%3Cpath%20d%3D%22m14.9%205.21%203.3%203.3c.12.12.12.31%200%20.43l-3.3%203.3%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-popup-close: url('data:image/svg+xml,%3Csvg%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20width%3D%2210%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1%209%208-8m0%208-8-8%22%20fill%3D%22none%22%20stroke%3D%22%238794a1%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%3C%2Fsvg%3E');
    --image-url-popup-close-new: url('data:image/svg+xml,%3Csvg%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20width%3D%2210%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1%209%208-8m0%208-8-8%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.73%22%2F%3E%3C%2Fsvg%3E');
    --image-url-header-menu: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2022%2018%22%20width%3D%2222%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3%209h16m-16-6h16m-16%2012h16%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.73%22%2F%3E%3C%2Fsvg%3E');
    --image-url-header-menu-close: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2022%2018%22%20width%3D%2222%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5%2015%2012-12m0%2012-12-12%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.733333%22%2F%3E%3C%2Fsvg%3E');
    --image-url-menu-profile: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m6.86%2019.08c0-1.76%201.43-3.19%203.2-3.19h3.94c1.77%200%203.2%201.43%203.2%203.19m-5.2-11.76a3.01%203.01%200%201%201%200%206.02%203.01%203.01%200%201%201%200-6.02zm0-4.16a8.84%208.84%200%201%201%200%2017.68%208.84%208.84%200%201%201%200-17.68z%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E');
    --image-url-menu-assets: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m10%2060h52c1.1%200%202-.9%202-2v-35c0-6.08-4.92-11-11-11h-34c-6.08%200-11%204.92-11%2011v35c0%201.1.9%202%202%202zm-1-26.5h18.5zm36%200h18.5zm-16-5.7c-.33%200-.63.13-.85.35s-.35.52-.35.85v12c0%20.88.36%201.68.94%202.26s1.38.94%202.26.94h10c.88%200%201.68-.36%202.26-.94s.94-1.38.94-2.26v-12c0-.33-.13-.63-.35-.85s-.52-.35-.85-.35z%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223.6%22%2F%3E%3Crect%20fill%3D%22%23fff%22%20height%3D%225%22%20rx%3D%221.5%22%20width%3D%224%22%20x%3D%2234%22%20y%3D%2233.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-bids: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2236%22%20cy%3D%2236%22%20r%3D%2231%22%20stroke-width%3D%223.6%22%2F%3E%3Cpath%20d%3D%22m22.73%2026h26.52c.57%200%201.04.47%201.04%201.04%200%20.18-.05.35-.13.5l-12.56%2023.05c-.55%201.01-1.82%201.38-2.83.83-.36-.2-.65-.5-.85-.86l-12.12-23.03c-.26-.51-.07-1.14.44-1.41.15-.08.32-.12.49-.12zm13.27%2024.89v-24.89%22%20stroke-width%3D%223.4%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-numbers: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223.6%22%3E%3Cpath%20d%3D%22m17.16%2015.2c1.76%200%203.38.65%204.6%201.74%201.23%201.09%202.07%202.62%202.28%204.37l.75%206.43c.23%202.02-.43%204.01-1.8%205.48l-1.59%202.81c3.46%206.26%209.51%2011.59%2015.82%2014.99l2.97-1.98c1.48-1.36%203.94-1.89%205.97-1.65l6.05%201.01c1.9.4%203.31%201.39%204.26%202.95.83%201.34%201.3%203.17%201.33%205.52%200%201.97-.82%203.77-2.14%205.03-1.31%201.27-3.11%202.01-5.07%201.89-11.37-.71-21.61-5.59-29.17-13.14-7.57-7.55-12.47-17.75-13.18-29.1-.13-2.1.11-3.6.8-4.59.7-1.02%201.85-1.76%204.07-1.76z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Crect%20height%3D%2214%22%20rx%3D%223.33%22%20width%3D%2220%22%20x%3D%2240%22%20y%3D%2219%22%2F%3E%3Cpath%20d%3D%22m44.2%2018.86v-5.06c0-3.2%202.6-5.8%205.8-5.8s5.8%202.6%205.8%205.8v5.06%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-sessions: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%3E%3Cpath%20d%3D%22m52.5%2028.5h10c1.66%200%203%201.34%203%203v22c0%201.66-1.34%203-3%203h-10c-1.66%200-3-1.34-3-3v-22c0-1.66%201.34-3%203-3z%22%20stroke-width%3D%223.6%22%2F%3E%3Cg%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22m5.5%2056h35%22%20stroke-width%3D%224.2%22%2F%3E%3Cpath%20d%3D%22m12%2055.5v-34.5c0-2.76%202.24-5%205-5h37.34c2.79%200%205.07%202.21%205.16%205%22%20stroke-width%3D%223.6%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-convert: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223.6%22%3E%3Ccircle%20cx%3D%2235.027778%22%20cy%3D%2234%22%20r%3D%2212.152778%22%2F%3E%3Ccircle%20cx%3D%2235.027778%22%20cy%3D%2234%22%20r%3D%2212.152778%22%2F%3E%3Cg%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22m47.18%2034.49c-.65%207.45%201.62%2011.34%206.81%2011.66%205.18.33%207.77-3.72%207.77-12.15%200-14.77-11.97-26.74-26.73-26.74-14.77%200-26.74%2011.97-26.74%2026.74s11.97%2026.74%2026.74%2026.74h18.18%22%2F%3E%3Cpath%20d%3D%22m47%2053%208.54%207.12c.21.17.24.49.06.7-.02.02-.04.04-.06.06l-8.54%207.12%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-disconnect: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m45.5%2023.5v-4c0-3.31-2.69-6-6-6h-22c-3.31%200-6%202.69-6%206v32c0%203.31%202.69%206%206%206h22c3.31%200%206-2.69%206-6v-5m-18-11h39.5zm29.5-11.5%2010.79%2010.79c.39.39.39%201.03%200%201.42l-10.79%2010.79%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223.6%22%2F%3E%3C%2Fsvg%3E');
    --image-url-menu-wallet: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2218.26%22%20cy%3D%2212%22%20fill%3D%22%23fff%22%20r%3D%221.07%22%2F%3E%3Cpath%20d%3D%22m19.94%2016.28v.3a3.36%203.36%200%200%201%20-3.36%203.36h-9.47a3.36%203.36%200%200%201%20-3.36-3.36v-9.16a3.36%203.36%200%200%201%203.36-3.36h9.47a3.36%203.36%200%200%201%203.36%203.36v.3m-3.2%200h3.05a1.83%201.83%200%200%201%201.84%201.84v4.88a1.83%201.83%200%200%201%20-1.84%201.84h-3.05a1.83%201.83%200%200%201%20-1.84-1.84v-4.88a1.83%201.83%200%200%201%201.84-1.84z%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E');
    --image-url-menu-verify: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m11.16%2019.68-1.3.67c-.78.41-1.74.11-2.15-.67-.04-.08-.08-.17-.11-.26l-.07-.24c-.4-1.29-1.42-2.31-2.71-2.71l-.24-.07c-.84-.27-1.31-1.16-1.04-2%20.03-.09.06-.18.11-.26l.11-.23c.63-1.19.63-2.63%200-3.82l-.11-.23c-.41-.78-.11-1.74.67-2.15.08-.04.17-.08.26-.11l.24-.07c1.29-.4%202.31-1.42%202.71-2.71l.07-.24c.27-.84%201.16-1.31%202-1.04.09.03.18.06.26.11l.23.11c1.19.63%202.63.63%203.82%200l.23-.11c.78-.41%201.74-.11%202.15.67.04.08.08.17.11.26l.07.24c.4%201.29%201.42%202.31%202.71%202.71l.24.07c.84.27%201.31%201.16%201.04%202-.03.09-.06.18-.11.26l-.11.23c-.63%201.19-.63%202.63%200%203.82l.11.23c.41.78.11%201.74-.67%202.15-.08.04-.17.08-.26.11l-.24.07c-1.29.4-2.31%201.42-2.71%202.71l-.07.24c-.27.84-1.16%201.31-2%201.04-.09-.03-.18-.06-.26-.11l-1.3-.67c-.52-.28-1.16-.28-1.68%200zm-2.52-7.34%202.51%202.7c.02.02.06.02.08%200l4.58-4.84%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E');
    --image-url-menu-wallet-link: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%3E%3Cpath%20d%3D%22m16.53%208.64v-2.84c0-1.18-.96-2.13-2.14-2.13h-9.26c-1.18%200-2.13.95-2.13%202.13v12.07c0%201.18.95%202.13%202.13%202.13h9.26c1.18%200%202.14-.95%202.14-2.13v-2.84m-1.38-3.2h7.65m-3.18-3.72%203.16%203.48c.13.14.13.35%200%20.48l-3.16%203.49%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.28%22%2F%3E%3Cpath%20d%3D%22m6.59%209h6.48c.14%200%20.25.11.25.25%200%20.04-.01.09-.03.12l-3.08%205.5c-.13.24-.44.33-.68.19-.08-.04-.15-.11-.19-.2l-2.97-5.49c-.07-.12-.02-.27.1-.34.03-.02.08-.03.12-.03zm3.24%205.93v-5.93%22%20stroke-width%3D%221.07%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-logout: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.2%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228.84%22%2F%3E%3Cpath%20d%3D%22m9%2015%206-6m0%206-6-6%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-about: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%2236%22%20cy%3D%2236%22%20r%3D%2229%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223.6%22%2F%3E%3Cpath%20d%3D%22m36%2047.85v-14.64%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%224.4%22%2F%3E%3Ccircle%20cx%3D%2236%22%20cy%3D%2224.77%22%20fill%3D%22%23fff%22%20r%3D%222.81%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-faq: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m28.98%2027.35c0-4.21%203.28-6.32%207.02-6.32s7.23%202.03%207.91%206.08c.03.15.05.29.08.43.53%202.64-.73%205.13-3.78%207.49-2.7%202.08-4.23%204.27-4.59%206.58%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223.6%22%2F%3E%3Ccircle%20cx%3D%2236%22%20cy%3D%2236%22%20r%3D%2229%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223.6%22%2F%3E%3Crect%20fill%3D%22%23fff%22%20height%3D%224.8%22%20rx%3D%222.25%22%20width%3D%224.8%22%20x%3D%2232.9%22%20y%3D%2247.23%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-menu-privacy: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m34.81%206.51c.76-.27%201.6-.27%202.36.01l22.1%208.02c.66.23%201.21.66%201.61%201.19.4.54.64%201.19.68%201.89.76%2013.39-.33%2023.34-3.12%2029.89-2.78%206.48-9.36%2012.53-19.96%2017.98-.47.24-4.81.28-5.5-.02-10.9-4.77-17.74-10.82-20.72-17.98-3.05-7.32-3.84-17.33-2.26-30.07.09-.66.35-1.26.74-1.75.4-.49.93-.88%201.55-1.1zm-10.5%2031.37%208.19%207.39c.15.14.38.13.51-.02l16.73-17.63%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223.6%22%2F%3E%3C%2Fsvg%3E');
    --image-url-menu-terms: url('data:image/svg+xml,%3Csvg%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%20width%3D%2272%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223.6%22%3E%3Crect%20height%3D%2256%22%20rx%3D%228%22%20width%3D%2248%22%20x%3D%2212%22%20y%3D%228%22%2F%3E%3Cg%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22m23.69%2043.625h24.183%22%2F%3E%3Cpath%20d%3D%22m23.69%2051.625h24.183%22%2F%3E%3Cpath%20d%3D%22m28%2027.88%205.48%204.96c.1.09.25.08.34-.01l11.18-11.83%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-done-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2296%22%20viewBox%3D%220%200%2096%2096%22%20width%3D%2296%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%2248%22%20cy%3D%2248%22%20fill%3D%22%23248bda%22%20r%3D%2248%22%2F%3E%3Cpath%20d%3D%22m30%2052%2012%2013%2026-27%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-link-more: url('data:image/svg+xml,%3Csvg%20height%3D%2223%22%20viewBox%3D%220%200%2012%2023%22%20width%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m%206%208%20l%204.15%204.12%20c%200.19%200.19%200.19%200.51%200%200.7%20l%20-4.15%204.18%22%20fill%3D%22none%22%20stroke%3D%22%234db2ff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
    --image-url-search: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2016%2020%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%238494a3%22%20stroke-width%3D%221.41%22%3E%3Cellipse%20cx%3D%228.82%22%20cy%3D%228.35%22%20rx%3D%224.48%22%20ry%3D%224.64%22%2F%3E%3Cpath%20d%3D%22m2%2016%203.77-3.89%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-main-search: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2020%2024%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%238494a3%22%20stroke-width%3D%222%22%3E%3Cellipse%20cx%3D%2211.66%22%20cy%3D%2210.4%22%20rx%3D%226.34%22%20ry%3D%226.4%22%2F%3E%3Cpath%20d%3D%22m2%2021%205.34-5.39%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-main-search-clear: url('data:image/svg+xml,%3Csvg%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20width%3D%2222%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5%2017%2012-12m-12%200%2012%2012%22%20stroke%3D%22%238494a3%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%20x1%3D%225%22%20x2%3D%2217%22%20y1%3D%225%22%20y2%3D%2217%22%2F%3E%3C%2Fsvg%3E');
    --image-url-main-search-error: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20fill%3D%22%23fff%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m10%200c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010-10-4.48-10-10%204.48-10%2010-10zm0%2012.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm0-7.75c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201s1-.45%201-1v-5c0-.55-.45-1-1-1z%22%20fill%3D%22%23ff5863%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-main-search-expired: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20fill%3D%22%23fff%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m10%200c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010-10-4.48-10-10%204.48-10%2010-10zm0%2012.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm0-7.75c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201s1-.45%201-1v-5c0-.55-.45-1-1-1z%22%20fill%3D%22%23ff9953%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-dropdown-caret: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2015%2018%22%20width%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2%207.5%205.11%205.15c.2.19.52.19.71%200l5.18-5.15%22%20fill%3D%22none%22%20stroke%3D%22%23677a8c%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
    --image-url-dropdown-caret-active: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2015%2018%22%20width%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2%207.5%205.11%205.15c.2.19.52.19.71%200l5.18-5.15%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
    --image-url-dropdown-selected: url('data:image/svg+xml,%3Csvg%20height%3D%2210%22%20viewBox%3D%220%200%2014%2010%22%20width%3D%2214%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1%204.91%203.75%203.78c.17.17.45.17.62%200l7.63-7.69%22%20fill%3D%22none%22%20stroke%3D%22%234db2ff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
    --image-url-dropdown-actions: url('data:image/svg+xml,%3Csvg%20height%3D%2248%22%20viewBox%3D%220%200%2033%2048%22%20width%3D%2233%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%2216.5%22%20cy%3D%229%22%20r%3D%224.5%22%2F%3E%3Ccircle%20cx%3D%2216.5%22%20cy%3D%2224%22%20r%3D%224.5%22%2F%3E%3Ccircle%20cx%3D%2216.5%22%20cy%3D%2239%22%20r%3D%224.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-filters-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.8%22%3E%3Cpath%20d%3D%22M6%2012H18M4%207H20M8%2017H16%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-checkbox-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m4.9%2010.17%202.57%202.57c.08.08.2.08.28%200l5.78-5.77%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%3C%2Fsvg%3E');
    --image-url-ton-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2219%22%20viewBox%3D%220%200%2015%2019%22%20width%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1.74%204.5h11.51c.24%200%20.44.2.44.44%200%20.08-.02.15-.05.22l-5.46%209.9c-.24.43-.78.59-1.21.35-.15-.08-.27-.21-.36-.36l-5.26-9.9c-.12-.21-.04-.48.18-.6.07-.03.14-.05.21-.05zm5.76%2010.67v-10.67z%22%20fill%3D%22none%22%20stroke%3D%22%234db2ff%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
    --image-url-usdt-ton-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:hyvector='https://www.hyvector.com/dtd' x='-0.0006' y='2' width='267.0352' height='240.899' viewBox='-0.0005911880919375889 1.9999999999984688 267.03520932546166 240.89899375154997' %3E%3Cg hyvector:transform='translate(0.00713224, -24.12849215) scale(13.06424607, 13.06424607)' %3E%3Cpath fill-rule='evenodd' d='M56.9079 26.1285h150.5001c3.5926 0 6.8979 1.9204 8.6877 5.0428l43.8567 76.2952c2.2747 3.9581 1.5989 8.9517-1.6461 12.1628l-120.6875 119.4072c-3.9061 3.8724-10.2034 3.8724-14.1094 0l-120.5308-119.2504c-3.3227-3.2859-3.9451-8.4273-1.5023-12.4111l46.8745-76.4519c1.8235-2.9786 5.0646-4.7946 8.5571-4.7946zM187.9684 60.2v21.3993h-42.8638v14.854c30.1 1.5808 52.7011 8.0999 52.8579 15.8992v16.2911c-0.1698 7.7994-22.7579 14.3184-52.8579 15.8992v36.4362h-28.4801v-36.4362c-30.1-1.5808-52.6881-8.0998-52.8579-15.8992v-16.2911c0.1698-7.7993 22.7579-14.3184 52.871-15.8992v-14.854h-42.8769v-21.3993zM130.8776 133.3598c32.125 0 58.972-5.5 65.5564-12.8552-5.5784-6.2447-25.7366-11.1569-51.3425-12.5025v15.5465c-9.4781 0.4982-18.9758 0.4982-28.4539 0v-15.5465c-25.6059 1.3456-45.7641 6.2578-51.3425 12.5025 6.5844 7.3552 33.4445 12.8552 65.5825 12.8552z' transform='translate(0.00713224, -24.12849215)' hyvector:transform='scale(1)' hyvector:d='M4.356 2h11.52c0.275 0 0.528 0.147 0.665 0.386l3.357 5.84c0.1741192395616 0.3029723156082 0.1223879443801 0.6852091077824-0.126 0.931l-9.238 9.14c-0.2989864199267 0.2964111254753-0.7810135800733 0.2964111254753-1.08 0l-9.226-9.128c-0.2543383083964-0.251515915208-0.3019780466038-0.6450615786604-0.115-0.95l3.588-5.852c0.1395804686406-0.2279925033912 0.3876738156704-0.3670005314216 0.655-0.367zM14.388 4.608v1.638h-3.281v1.137c2.304 0.121 4.034 0.62 4.046 1.217v1.247c-0.013 0.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-0.121-4.033-0.62-4.046-1.217v-1.247c0.013-0.597 1.742-1.096 4.047-1.217v-1.137h-3.282v-1.638zM10.018 10.208c2.459 0 4.514-0.421 5.018-0.984-0.427-0.478-1.97-0.854-3.93-0.957v1.19c-0.725499153644 0.0381373546243-1.452500846356 0.0381373546243-2.178 0v-1.19c-1.96 0.103-3.503 0.479-3.93 0.957 0.504 0.563 2.56 0.984 5.02 0.984z' hyvector:nodetypes='10c16c7c' fill='%23009393' /%3E%3Cpath fill-rule='evenodd' d='M187.9684 60.2v21.3993h-42.8638v14.854c30.1 1.5808 52.7011 8.0999 52.8579 15.8992v16.2911c-0.1698 7.7994-22.7579 14.3184-52.8579 15.8992v36.4362h-28.4801v-36.4362c-30.1-1.5808-52.6881-8.0998-52.8579-15.8992v-16.2911c0.1698-7.7993 22.7579-14.3184 52.871-15.8992v-14.854h-42.8769v-21.3993zM196.434 120.5046c-6.5713 7.3552-33.4445 12.8552-65.5694 12.8552-32.1381 0-58.9851-5.5-65.5564-12.8552 5.5653-6.2447 25.7365-11.1569 51.3294-12.5025v15.5465c9.4824 0.4983 18.9845 0.4983 28.467 0v-15.5465c25.5928 1.3456 45.751 6.2578 51.3294 12.5025z' transform='translate(0.00713224, -24.12849215)' hyvector:transform='scale(1)' hyvector:d='M14.388 4.608v1.638h-3.281v1.137c2.304 0.121 4.034 0.62 4.046 1.217v1.247c-0.013 0.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-0.121-4.033-0.62-4.046-1.217v-1.247c0.013-0.597 1.742-1.096 4.047-1.217v-1.137h-3.282v-1.638zM15.036 9.224c-0.503 0.563-2.56 0.984-5.019 0.984-2.46 0-4.515-0.421-5.018-0.984 0.426-0.478 1.97-0.854 3.929-0.957v1.19c0.7258324733384 0.0381466281435 1.453167526662 0.0381466281435 2.179 0v-1.19c1.959 0.103 3.502 0.479 3.929 0.957z' hyvector:nodetypes='16c7c' fill='%23ffffff' /%3E%3Cpath d='M213.1914 284.2552c39.2474 0 71.0638-31.8164 71.0638-71.0638 0-39.2475-31.8164-71.0638-71.0638-71.0638-39.2475 0-71.0638 31.8163-71.0638 71.0638 0 39.2474 31.8163 71.0638 71.0638 71.0638z' transform='translate(-17.22056104, -41.35618543)' hyvector:transform='translate(-1.3186902, -1.3186902) scale(1.08791268, 1.08791268)' hyvector:d='M15 20c2.761423749154 0 5-2.238576250846 5-5 0-2.761423749154-2.238576250846-5-5-5-2.761423749154 0-5 2.238576250846-5 5 0 2.761423749154 2.238576250846 5 5 5z' hyvector:nodetypes='4c' fill='%230088cc' /%3E%3Cpath fill-rule='evenodd' d='M254.5169 248.7945h52.4181c1.8701 0 3.7215 0.2618 5.6476 1.1594 1.9426 0.9553 3.5522 2.4737 4.6191 4.3573 1.012 1.7843 1.5406 3.802 1.5335 5.8533 0.0089 2.1168-0.5187 4.2013-1.5335 6.059l-0.0374 0.0561-33.1377 56.9064c-0.7245 1.2568-2.0649 2.0313-3.5157 2.0313-1.4508 0-2.7912-0.7745-3.5157-2.0313l-32.5393-56.8129-0.0187-0.0374c-1.1331-1.6637-1.8513-3.5746-2.0945-5.5728-0.3763-4.6121 2.1508-8.9731 6.3396-10.9399 1.8373-0.7733 3.8247-1.1248 5.8159-1.0285zM276.4528 256.9106h-21.9546c-1.44 0-2.001 0.0935-2.375 0.2805-1.1194 0.511-1.7942 1.6731-1.6831 2.8986 0.0374 0.3553 0.187 0.748 1.0099 2.1132l0.0374 0.0935 24.9654 43.5727zM284.5877 256.9106v49.1829l25.5264-43.8719c0.3257-0.6365 0.4925-1.3422 0.4863-2.0571 0.0069-0.5986-0.1345-1.1897-0.4115-1.7205-0.195-0.2977-0.4139-0.5791-0.6545-0.8415-0.107-0.1101-0.2339-0.1989-0.374-0.2618-0.6975-0.3167-1.4601-0.4641-2.2254-0.4301z' transform='translate(-84.54297905, -110.63097659)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' hyvector:transform='translate(-6.47187069, -6.62131469) scale(1.43144322, 1.43144322)' hyvector:d='M13.61 13.304h2.803c0.1 0 0.199 0.014 0.302 0.062 0.1038754532547 0.0510829162539 0.1899496706576 0.1322784330751 0.247 0.233 0.0541164925242 0.0954153361003 0.0823820630574 0.2033070870381 0.082 0.313 0.0004747607628 0.1131928135514-0.0277362619935 0.2246607571249-0.082 0.324l-0.002 0.003-1.772 3.043c-0.0387443099162 0.0672108315573-0.1104215401706 0.1086256487909-0.188 0.1086256487909-0.0775784598294 0-0.1492556900838-0.0414148172336-0.188-0.1086256487909l-1.74-3.038-0.001-0.002c-0.060593460273-0.0889648780552-0.0989980043067-0.191148397002-0.112-0.298-0.020123732107-0.2466302630028 0.1150121142531-0.4798292899074 0.339-0.585 0.0982517736828-0.0413512632861 0.2045253052352-0.0601456177407 0.311-0.055zM14.783 13.738h-1.174c-0.077 0-0.107 0.005-0.127 0.015-0.0598594798637 0.0273253222023-0.0959419681676 0.0894673853924-0.09 0.155 0.002 0.019 0.01 0.04 0.054 0.113l0.002 0.005 1.335 2.33zM15.218 13.738v2.63l1.365-2.346c0.0174113978891-0.0340331269943 0.0263317410048-0.0717730401762 0.026-0.11 0.000370017402-0.0320121528076-0.0071879824058-0.0636183338219-0.022-0.092-0.0104308042814-0.0159216299546-0.022135848944-0.0309709730923-0.035-0.045-0.0057225957208-0.0058879721843-0.0125089363251-0.0106384106073-0.02-0.014-0.0373008643539-0.016934274684-0.0780753163722-0.0248150511245-0.119-0.023z' hyvector:nodetypes='15c7c8c' fill='%23ffffff' stroke='%23ffffff' /%3E%3C/g%3E%3C/svg%3E");
    --image-url-usdt-pol-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:hyvector='https://www.hyvector.com/dtd' x='-0.0006' y='2' width='20.001' height='17.6453' viewBox='-0.0005911880919372003 1.9999999999984768 20.00100693619216 17.645344539342528' %3E%3Cg hyvector:transform='scale(1)' %3E%3Cpath fill-rule='evenodd' d='M4.356 2h11.52c0.275 0 0.528 0.147 0.665 0.386l3.357 5.84c0.1741 0.303 0.1224 0.6852-0.126 0.931l-9.238 9.14c-0.299 0.2964-0.781 0.2964-1.08 0l-9.226-9.128c-0.2543-0.2515-0.302-0.6451-0.115-0.95l3.588-5.852c0.1396-0.228 0.3877-0.367 0.655-0.367zM14.388 4.608v1.638h-3.281v1.137c2.304 0.121 4.034 0.62 4.046 1.217v1.247c-0.013 0.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-0.121-4.033-0.62-4.046-1.217v-1.247c0.013-0.597 1.742-1.096 4.047-1.217v-1.137h-3.282v-1.638zM10.018 10.208c2.459 0 4.514-0.421 5.018-0.984-0.427-0.478-1.97-0.854-3.93-0.957v1.19c-0.7255 0.0381-1.4525 0.0381-2.178 0v-1.19c-1.96 0.103-3.503 0.479-3.93 0.957 0.504 0.563 2.56 0.984 5.02 0.984z' hyvector:transform='scale(1)' hyvector:d='M4.356 2h11.52c0.275 0 0.528 0.147 0.665 0.386l3.357 5.84c0.1741192395616 0.3029723156082 0.1223879443801 0.6852091077824-0.126 0.931l-9.238 9.14c-0.2989864199267 0.2964111254753-0.7810135800733 0.2964111254753-1.08 0l-9.226-9.128c-0.2543383083964-0.251515915208-0.3019780466038-0.6450615786604-0.115-0.95l3.588-5.852c0.1395804686406-0.2279925033912 0.3876738156704-0.3670005314216 0.655-0.367zM14.388 4.608v1.638h-3.281v1.137c2.304 0.121 4.034 0.62 4.046 1.217v1.247c-0.013 0.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-0.121-4.033-0.62-4.046-1.217v-1.247c0.013-0.597 1.742-1.096 4.047-1.217v-1.137h-3.282v-1.638zM10.018 10.208c2.459 0 4.514-0.421 5.018-0.984-0.427-0.478-1.97-0.854-3.93-0.957v1.19c-0.725499153644 0.0381373546243-1.452500846356 0.0381373546243-2.178 0v-1.19c-1.96 0.103-3.503 0.479-3.93 0.957 0.504 0.563 2.56 0.984 5.02 0.984z' hyvector:nodetypes='10c16c7c' fill='%23009393' /%3E%3Cpath fill-rule='evenodd' d='M14.388 4.608v1.638h-3.281v1.137c2.304 0.121 4.034 0.62 4.046 1.217v1.247c-0.013 0.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-0.121-4.033-0.62-4.046-1.217v-1.247c0.013-0.597 1.742-1.096 4.047-1.217v-1.137h-3.282v-1.638zM15.036 9.224c-0.503 0.563-2.56 0.984-5.019 0.984-2.46 0-4.515-0.421-5.018-0.984 0.426-0.478 1.97-0.854 3.929-0.957v1.19c0.7258 0.0381 1.4532 0.0381 2.179 0v-1.19c1.959 0.103 3.502 0.479 3.929 0.957z' hyvector:transform='scale(1)' hyvector:d='M14.388 4.608v1.638h-3.281v1.137c2.304 0.121 4.034 0.62 4.046 1.217v1.247c-0.013 0.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-0.121-4.033-0.62-4.046-1.217v-1.247c0.013-0.597 1.742-1.096 4.047-1.217v-1.137h-3.282v-1.638zM15.036 9.224c-0.503 0.563-2.56 0.984-5.019 0.984-2.46 0-4.515-0.421-5.018-0.984 0.426-0.478 1.97-0.854 3.929-0.957v1.19c0.7258324733384 0.0381466281435 1.453167526662 0.0381466281435 2.179 0v-1.19c1.959 0.103 3.502 0.479 3.929 0.957z' hyvector:nodetypes='16c7c' fill='%23ffffff' /%3E%3Cg hyvector:transform='translate(8.45406149, 7.94928626) scale(0.0357917, 0.0357917)' %3E%3Cellipse cx='14.8265' cy='14.557' rx='5.0884' ry='5.0884' hyvector:transform='translate(35.87613344, 42.44910434) scale(2.84332237, 2.84332237)' fill='%236c00f6' /%3E%3Cpath d='M7.8314 3.5642l-1.7979 1.0326v3.2227l-0.992 0.575-0.9981-0.5754v-1.1506l0.9981-0.57 0.6417 0.3722v-0.9309l-0.6473-0.3675-1.7975 1.0443v2.0656l1.8035 1.0386 1.7975-1.0386v-3.2223l0.9981-0.5755 0.9975 0.5755v1.1454l-0.9975 0.5807-0.6474-0.3755v0.9263l0.6413 0.3698 1.8151-1.0325v-2.0773z' transform='translate(8.45406149, 7.94928626)' hyvector:transform='scale(1)' hyvector:d='M218.804 99.5819l-50.232 28.8501v90.041l-27.716 16.066-27.886-16.079v-32.147l27.886-15.923 17.93 10.398v-26.009l-18.087-10.268-50.2195 29.176v57.712l50.3895 29.019 50.219-29.019v-90.028l27.886-16.08 27.872 16.08v32.003l-27.872 16.223-18.087-10.49v25.879l17.917 10.333 50.715-28.849v-58.038z' hyvector:nodetypes='24c' fill='%23ffffff' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    --image-url-usdt-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cscript xmlns=''/%3E%3Cscript xmlns=''/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.356 2h11.52c.275 0 .528.147.665.386l3.357 5.84a.77.77 0 0 1-.126.931l-9.238 9.14a.767.767 0 0 1-1.08 0L.228 9.169a.77.77 0 0 1-.115-.95l3.588-5.852A.768.768 0 0 1 4.356 2Zm10.032 2.608v1.638h-3.281v1.137c2.304.121 4.034.62 4.046 1.217v1.247c-.013.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-.121-4.033-.62-4.046-1.217V8.6c.013-.597 1.742-1.096 4.047-1.217V6.246H5.646V4.608h8.742Zm-4.37 5.6c2.459 0 4.514-.421 5.018-.984-.427-.478-1.97-.854-3.93-.957v1.19a20.745 20.745 0 0 1-2.178 0v-1.19c-1.96.103-3.503.479-3.93.957.504.563 2.56.984 5.02.984Z' fill='%23009393'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.388 4.608v1.638h-3.281v1.137c2.304.121 4.034.62 4.046 1.217v1.247c-.013.597-1.742 1.096-4.046 1.217v2.789h-2.18v-2.789c-2.304-.121-4.033-.62-4.046-1.217V8.6c.013-.597 1.742-1.096 4.047-1.217V6.246H5.646V4.608h8.742Zm.648 4.616c-.503.563-2.56.984-5.019.984-2.46 0-4.515-.421-5.018-.984.426-.478 1.97-.854 3.929-.957v1.19a20.759 20.759 0 0 0 2.179 0v-1.19c1.959.103 3.502.479 3.929.957Z' fill='%23fff'/%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
    --image-url-usdc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='86977684-12db-4850-8f30-233a7c267d11' viewBox='0 0 2000 2000'%3E%3Cscript xmlns=''/%3E%3Cscript xmlns=''/%3E%3Cpath d='M1000 2000c554.17 0 1000-445.83 1000-1000S1554.17 0 1000 0 0 445.83 0 1000s445.83 1000 1000 1000z' fill='%232775ca'/%3E%3Cpath d='M1275 1158.33c0-145.83-87.5-195.83-262.5-216.66-125-16.67-150-50-150-108.34s41.67-95.83 125-95.83c75 0 116.67 25 137.5 87.5 4.17 12.5 16.67 20.83 29.17 20.83h66.66c16.67 0 29.17-12.5 29.17-29.16v-4.17c-16.67-91.67-91.67-162.5-187.5-170.83v-100c0-16.67-12.5-29.17-33.33-33.34h-62.5c-16.67 0-29.17 12.5-33.34 33.34v95.83c-125 16.67-204.16 100-204.16 204.17 0 137.5 83.33 191.66 258.33 212.5 116.67 20.83 154.17 45.83 154.17 112.5s-58.34 112.5-137.5 112.5c-108.34 0-145.84-45.84-158.34-108.34-4.16-16.66-16.66-25-29.16-25h-70.84c-16.66 0-29.16 12.5-29.16 29.17v4.17c16.66 104.16 83.33 179.16 220.83 200v100c0 16.66 12.5 29.16 33.33 33.33h62.5c16.67 0 29.17-12.5 33.34-33.33v-100c125-20.84 208.33-108.34 208.33-220.84z' fill='%23fff'/%3E%3Cpath d='M787.5 1595.83c-325-116.66-491.67-479.16-370.83-800 62.5-175 200-308.33 370.83-370.83 16.67-8.33 25-20.83 25-41.67V325c0-16.67-8.33-29.17-25-33.33-4.17 0-12.5 0-16.67 4.16-395.83 125-612.5 545.84-487.5 941.67 75 233.33 254.17 412.5 487.5 487.5 16.67 8.33 33.34 0 37.5-16.67 4.17-4.16 4.17-8.33 4.17-16.66v-58.34c0-12.5-12.5-29.16-25-37.5zm441.67-1300c-16.67-8.33-33.34 0-37.5 16.67-4.17 4.17-4.17 8.33-4.17 16.67v58.33c0 16.67 12.5 33.33 25 41.67 325 116.66 491.67 479.16 370.83 800-62.5 175-200 308.33-370.83 370.83-16.67 8.33-25 20.83-25 41.67V1700c0 16.67 8.33 29.17 25 33.33 4.17 0 12.5 0 16.67-4.16 395.83-125 612.5-545.84 487.5-941.67-75-237.5-258.34-416.67-487.5-491.67z' fill='%23fff'/%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
    ;
    --image-url-usdc-base-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:hyvector='https://www.hyvector.com/dtd' x='343.185' y='4.2516' width='213.3398' height='212.0899' viewBox='343.18499018089597 4.251597827842064 213.33984661645275 212.0899166780556' %3E%3Cg hyvector:transform='translate(343.18499018, 4.25159783) scale(0.10424816, 0.10424816)' %3E%3Cpath d='M104.2482 208.4963c57.7712 0 104.2481-46.4769 104.2481-104.2481 0-57.7712-46.4769-104.2482-104.2481-104.2482-57.7712 0-104.2482 46.477-104.2482 104.2482 0 57.7712 46.477 104.2481 104.2482 104.2481z' transform='translate(343.18499018, 4.25159783)' hyvector:transform='scale(1)' hyvector:d='M1000 2000c554.17 0 1000-445.83 1000-1000 0-554.17-445.83-1000-1000-1000-554.17 0-1000 445.83-1000 1000 0 554.17 445.83 1000 1000 1000z' hyvector:nodetypes='4c' fill='%232775ca' /%3E%3Cpath d='M132.9164 120.7538c0-15.2025-9.1217-20.415-27.3651-22.5864-13.0311-1.7379-15.6373-5.2124-15.6373-11.2943 0-6.0818 4.3441-9.9901 13.0311-9.9901 7.8186 0 12.1626 2.6062 14.3341 9.1217 0.4347 1.3031 1.7378 2.1715 3.0409 2.1715h6.9492c1.7378 0 3.0409-1.3031 3.0409-3.0399v-0.4347c-1.7378-9.5564-9.5564-16.9403-19.5465-17.8087v-10.4248c0-1.7378-1.3031-3.0409-3.4746-3.4756h-6.5155c-1.7379 0-3.041 1.3031-3.4757 3.4756v9.9901c-13.031 1.7378-21.2833 10.4248-21.2833 21.2843 0 14.3342 8.687 19.9802 26.9305 22.1528 12.1626 2.1715 16.0719 4.7777 16.0719 11.7279 0 6.9502-6.0818 11.7279-14.3341 11.7279-11.2943 0-15.2036-4.7787-16.5067-11.2942-0.4337-1.7368-1.7368-2.6062-3.0399-2.6062h-7.3849c-1.7368 0-3.0399 1.3031-3.0399 3.0409v0.4347c1.7368 10.8585 8.687 18.6771 23.0211 20.8496v10.4248c0 1.7368 1.3031 3.0399 3.4746 3.4746h6.5155c1.7379 0 3.041-1.3031 3.4757-3.4746v-10.4248c13.031-2.1725 21.718-11.2942 21.718-23.0221z' transform='translate(343.18499018, 4.25159783)' hyvector:transform='scale(1)' hyvector:d='M1275 1158.33c0-145.83-87.5-195.83-262.5-216.66-125-16.67-150-50-150-108.34 0-58.34 41.67-95.83 125-95.83 75 0 116.67 25 137.5 87.5 4.17 12.5 16.67 20.83 29.17 20.83h66.66c16.67 0 29.17-12.5 29.17-29.16v-4.17c-16.67-91.67-91.67-162.5-187.5-170.83v-100c0-16.67-12.5-29.17-33.33-33.34h-62.5c-16.67 0-29.17 12.5-33.34 33.34v95.83c-125 16.67-204.16 100-204.16 204.17 0 137.5 83.33 191.66 258.33 212.5 116.67 20.83 154.17 45.83 154.17 112.5 0 66.67-58.34 112.5-137.5 112.5-108.34 0-145.84-45.84-158.34-108.34-4.16-16.66-16.66-25-29.16-25h-70.84c-16.66 0-29.16 12.5-29.16 29.17v4.17c16.66 104.16 83.33 179.16 220.83 200v100c0 16.66 12.5 29.16 33.33 33.33h62.5c16.67 0 29.17-12.5 33.34-33.33v-100c125-20.84 208.33-108.34 208.33-220.84z' hyvector:nodetypes='30c' fill='%23ffffff' /%3E%3Cpath d='M82.0954 166.3623c-33.8806-12.1616-51.2557-49.9515-38.6583-83.3985 6.5155-18.2434 20.8496-32.1428 38.6583-38.6583 1.7378-0.8684 2.6062-2.1715 2.6062-4.3441v-6.0807c0-1.7379-0.8684-3.041-2.6062-3.4746-0.4347 0-1.3031 0-1.7378 0.4336-41.2645 13.0311-63.852 56.9028-50.821 98.1674 7.8186 24.3242 26.4968 43.0024 50.821 50.821 1.7378 0.8684 3.4756 0 3.9093-1.7378 0.4347-0.4337 0.4347-0.8684 0.4347-1.7368v-6.0819c0-1.3031-1.3031-3.0398-2.6062-3.9093zM128.1387 30.8397c-1.7378-0.8684-3.4756 0-3.9093 1.7378-0.4347 0.4348-0.4347 0.8684-0.4347 1.7379v6.0808c0 1.7378 1.3031 3.4746 2.6062 4.344 33.8806 12.1616 51.2557 49.9515 38.6583 83.3985-6.5155 18.2434-20.8496 32.1428-38.6583 38.6583-1.7378 0.8684-2.6062 2.1715-2.6062 4.3441v6.0808c0 1.7378 0.8684 3.0409 2.6062 3.4746 0.4347 0 1.3031 0 1.7378-0.4337 41.2646-13.031 63.852-56.9028 50.821-98.1674-7.8186-24.7589-26.9315-43.4371-50.821-51.2557z' transform='translate(343.18499018, 4.25159783)' hyvector:transform='scale(1)' hyvector:d='M787.5 1595.83c-325-116.66-491.67-479.16-370.83-800 62.5-175 200-308.33 370.83-370.83 16.67-8.33 25-20.83 25-41.67v-58.33c0-16.67-8.33-29.17-25-33.33-4.17 0.0000000000001-12.5 0.0000000000001-16.67 4.16-395.83 125-612.5 545.84-487.5 941.67 75 233.33 254.17 412.5 487.5 487.5 16.67 8.33 33.34 0 37.5-16.67 4.17-4.16 4.17-8.33 4.17-16.66v-58.34c0-12.5-12.5-29.16-25-37.5zM1229.17 295.83c-16.67-8.33-33.34-0.0000000000001-37.5 16.67-4.17 4.17-4.17 8.33-4.17 16.67v58.33c0 16.67 12.5 33.33 25 41.67 325 116.66 491.67 479.16 370.83 800-62.5 175-200 308.33-370.83 370.83-16.67 8.33-25 20.83-25 41.67v58.33c0 16.67 8.33 29.17 25 33.33 4.17 0 12.5 0 16.67-4.16 395.83-125 612.5-545.84 487.5-941.67-75-237.5-258.34-416.67-487.5-491.67z' hyvector:nodetypes='12c12c' fill='%23ffffff' /%3E%3Cpath d='M4.3336 99.3398c-2.8912 0-4.3336-1.4455-4.3336-4.3335v-63.3386c0-2.8911 1.4456-4.3336 4.3336-4.3336h63.3354c2.8911 0 4.3336 1.4456 4.3336 4.3336v63.3354c0 2.8912-1.4456 4.3336-4.3336 4.3336h-63.3354z' transform='translate(479.83150721, 112.31091317)' hyvector:transform='translate(1310.78115393, 1036.55853902) scale(3.00794525, 3.00794525)' hyvector:d='M13.82 316.8c-9.22 0-13.82-4.61-13.82-13.82v-201.99c0-9.22 4.61-13.82 13.82-13.82h201.98c9.22 0 13.82 4.61 13.82 13.82v201.98c0 9.22-4.61 13.82-13.82 13.82l-201.98-0.0000000000001z' hyvector:nodetypes='9c' fill='%230052FF' /%3E%3Cpath d='M82.6976 91.3477c0-5.4915 3.5329-9.0244 9.0244-9.0244h63.3354c5.4914 0 9.0243 3.5329 9.0243 9.0244v63.3354c0 5.4914-3.5329 9.0243-9.0243 9.0243h-63.1623c-0.0575 0.0021-0.1152 0.0031-0.1731 0.0031-5.4915 0-9.0244-3.5329-9.0244-9.0243zM154.7002 91.7048h-62.6211v62.6211h62.6211z' transform='translate(392.44312196, 52.63097186)' hyvector:transform='translate(472.50842702, 464.0789469) scale(0.72165482, 0.72165482)' hyvector:d='M1099.246688973 1214.225921494c0.0000000002801-72.99385083677 46.96072477855-119.9546682254 119.9546682257-119.9546682254l841.8772648179-0.0000000000321c72.99385083685 0.0000000000009 119.9546682255 46.96072477831 119.9546682255 119.9546682254l-0.0000000000327 841.877264818c-0.0000000000009 72.99385083672-46.96072477825 119.9546682254-119.9546682254 119.9546682254l-839.5759749766-0.0000000000123c-0.7636731577184 0.0277076073548-1.530849643579 0.0416812191711-2.301289841353 0.0416812191711-72.99385083684-0.0000000000009-119.9546682254-46.96072477834-119.9546682254-119.9546682254zM2056.33084358 1218.973699931l-832.3817079448-0.0000000004916 0.0000000000214 832.3817079449 832.3817079449 0.0000000000064z' hyvector:nodetypes='9c4c' fill='%23ffffff' /%3E%3C/g%3E%3C/svg%3E");
    --image-url-usdc-pol-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:hyvector='https://www.hyvector.com/dtd' x='35.1024' y='0.4846' width='20.0387' height='19.6716' viewBox='35.102404240620835 0.48460389138304194 20.038711930678815 19.67161539437799' %3E%3Cg hyvector:transform='translate(35.10240424, 0.48460389) scale(0.00943216, 0.00943216)' %3E%3Cpath d='M9.4322 18.8643c5.227 0 9.4321-4.2051 9.4321-9.4321 0-5.2271-4.2051-9.4322-9.4321-9.4322-5.2271 0-9.4322 4.2051-9.4322 9.4322 0 5.227 4.2051 9.4321 9.4322 9.4321z' transform='translate(35.10240424, 0.48460389)' hyvector:transform='scale(1)' hyvector:d='M1000 2000c554.17 0 1000-445.83 1000-1000 0-554.17-445.83-1000-1000-1000-554.17 0-1000 445.83-1000 1000 0 554.17 445.83 1000 1000 1000z' hyvector:nodetypes='4c' fill='%232775ca' /%3E%3Cpath d='M12.026 10.9256c0-1.3755-0.8253-1.8471-2.4759-2.0436-1.1791-0.1573-1.4149-0.4716-1.4149-1.0219 0-0.5503 0.3931-0.9039 1.1791-0.9039 0.7074 0 1.1004 0.2358 1.2969 0.8253 0.0393 0.1179 0.1572 0.1965 0.2751 0.1965h0.6288c0.1572 0 0.2751-0.1179 0.2751-0.275v-0.0394c-0.1572-0.8646-0.8646-1.5327-1.7685-1.6113v-0.9432c0-0.1572-0.1179-0.2751-0.3144-0.3144h-0.5895c-0.1572 0-0.2751 0.1179-0.3145 0.3144v0.9039c-1.179 0.1572-1.9257 0.9432-1.9257 1.9258 0 1.2969 0.786 1.8077 2.4367 2.0043 1.1004 0.1965 1.4541 0.4323 1.4541 1.0611 0 0.6289-0.5503 1.0611-1.2969 1.0611-1.0219 0-1.3756-0.4323-1.4935-1.0218-0.0392-0.1572-0.1571-0.2358-0.275-0.2358h-0.6682c-0.1572 0-0.2751 0.1179-0.2751 0.2751v0.0393c0.1572 0.9825 0.786 1.6899 2.083 1.8865v0.9432c0 0.1571 0.1179 0.275 0.3143 0.3143h0.5895c0.1573 0 0.2752-0.1179 0.3145-0.3143v-0.9432c1.179-0.1966 1.965-1.0219 1.965-2.083z' transform='translate(35.10240424, 0.48460389)' hyvector:transform='scale(1)' hyvector:d='M1275 1158.33c0-145.83-87.5-195.83-262.5-216.66-125-16.67-150-50-150-108.34 0-58.34 41.67-95.83 125-95.83 75 0 116.67 25 137.5 87.5 4.17 12.5 16.67 20.83 29.17 20.83h66.66c16.67 0 29.17-12.5 29.17-29.16v-4.17c-16.67-91.67-91.67-162.5-187.5-170.83v-100c0-16.67-12.5-29.17-33.33-33.34h-62.5c-16.67 0-29.17 12.5-33.34 33.34v95.83c-125 16.67-204.16 100-204.16 204.17 0 137.5 83.33 191.66 258.33 212.5 116.67 20.83 154.17 45.83 154.17 112.5 0 66.67-58.34 112.5-137.5 112.5-108.34 0-145.84-45.84-158.34-108.34-4.16-16.66-16.66-25-29.16-25h-70.84c-16.66 0-29.16 12.5-29.16 29.17v4.17c16.66 104.16 83.33 179.16 220.83 200v100c0 16.66 12.5 29.16 33.33 33.33h62.5c16.67 0 29.17-12.5 33.34-33.33v-100c125-20.84 208.33-108.34 208.33-220.84z' hyvector:nodetypes='30c' fill='%23ffffff' /%3E%3Cpath d='M7.4278 15.0521c-3.0654-1.1003-4.6375-4.5195-3.4977-7.5457 0.5895-1.6506 1.8864-2.9082 3.4977-3.4977 0.1573-0.0786 0.2358-0.1965 0.2358-0.3931v-0.5501c0-0.1573-0.0785-0.2752-0.2358-0.3144-0.0393 0-0.1179 0-0.1572 0.0392-3.7335 1.179-5.7772 5.1485-4.5982 8.882 0.7074 2.2008 2.3974 3.8908 4.5982 4.5982 0.1572 0.0785 0.3145 0 0.3537-0.1573 0.0393-0.0392 0.0393-0.0785 0.0393-0.1571v-0.5503c0-0.1179-0.1179-0.275-0.2358-0.3537zM11.5937 2.7903c-0.1572-0.0786-0.3144 0-0.3537 0.1573-0.0393 0.0393-0.0393 0.0785-0.0393 0.1572v0.5502c0 0.1572 0.1179 0.3143 0.2358 0.393 3.0654 1.1004 4.6375 4.5195 3.4977 7.5457-0.5895 1.6507-1.8864 2.9082-3.4977 3.4978-0.1572 0.0785-0.2358 0.1964-0.2358 0.393v0.5502c0 0.1572 0.0786 0.2751 0.2358 0.3143 0.0393 0 0.1179 0 0.1572-0.0392 3.7336-1.179 5.7772-5.1484 4.5982-8.882-0.7074-2.2401-2.4367-3.9301-4.5982-4.6375z' transform='translate(35.10240424, 0.48460389)' hyvector:transform='scale(1)' hyvector:d='M787.5 1595.83c-325-116.66-491.67-479.16-370.83-800 62.5-175 200-308.33 370.83-370.83 16.67-8.33 25-20.83 25-41.67v-58.33c0-16.67-8.33-29.17-25-33.33-4.17 0.0000000000001-12.5 0.0000000000001-16.67 4.16-395.83 125-612.5 545.84-487.5 941.67 75 233.33 254.17 412.5 487.5 487.5 16.67 8.33 33.34 0 37.5-16.67 4.17-4.16 4.17-8.33 4.17-16.66v-58.34c0-12.5-12.5-29.16-25-37.5zM1229.17 295.83c-16.67-8.33-33.34-0.0000000000001-37.5 16.67-4.17 4.17-4.17 8.33-4.17 16.67v58.33c0 16.67 12.5 33.33 25 41.67 325 116.66 491.67 479.16 370.83 800-62.5 175-200 308.33-370.83 370.83-16.67 8.33-25 20.83-25 41.67v58.33c0 16.67 8.33 29.17 25 33.33 4.17 0 12.5 0 16.67-4.16 395.83-125 612.5-545.84 487.5-941.67-75-237.5-258.34-416.67-487.5-491.67z' hyvector:nodetypes='12c12c' fill='%23ffffff' /%3E%3Cg hyvector:transform='translate(930.53365276, 867.10504905) scale(3.72874573, 3.72874573)' %3E%3Cellipse cx='50.1411' cy='15.1562' rx='5' ry='5' hyvector:transform='translate(35.87613344, 42.44910434) scale(2.84332237, 2.84332237)' fill='%236c00f6' /%3E%3Cpath d='M7.6954 3.5023l-1.7667 1.0147v3.1667l-0.9748 0.5651-0.9807-0.5655v-1.1306l0.9807-0.5601 0.6306 0.3657v-0.9147l-0.6361-0.3611-1.7662 1.0261v2.0297l1.7722 1.0206 1.7662-1.0206v-3.1663l0.9807-0.5655 0.9803 0.5655v1.1256l-0.9803 0.5706-0.6361-0.369v0.9102l0.6302 0.3634 1.7836-1.0146v-2.0412z' transform='translate(43.87934689, 8.66327777)' hyvector:transform='scale(1)' hyvector:d='M218.804 99.5819l-50.232 28.8501v90.041l-27.716 16.066-27.886-16.079v-32.147l27.886-15.923 17.93 10.398v-26.009l-18.087-10.268-50.2195 29.176v57.712l50.3895 29.019 50.219-29.019v-90.028l27.886-16.08 27.872 16.08v32.003l-27.872 16.223-18.087-10.49v25.879l17.917 10.333 50.715-28.849v-58.038z' hyvector:nodetypes='24c' fill='%23ffffff' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    --image-url-ton-btn-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2219%22%20viewBox%3D%220%200%2015%2019%22%20width%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1.74%204.5h11.51c.24%200%20.44.2.44.44%200%20.08-.02.15-.05.22l-5.46%209.9c-.24.43-.78.59-1.21.35-.15-.08-.27-.21-.36-.36l-5.26-9.9c-.12-.21-.04-.48.18-.6.07-.03.14-.05.21-.05zm5.76%2010.67v-10.67z%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
    --image-url-warn-ton-btn-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2219%22%20viewBox%3D%220%200%2015%2019%22%20width%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1.74%204.5h11.51c.24%200%20.44.2.44.44%200%20.08-.02.15-.05.22l-5.46%209.9c-.24.43-.78.59-1.21.35-.15-.08-.27-.21-.36-.36l-5.26-9.9c-.12-.21-.04-.48.18-.6.07-.03.14-.05.21-.05zm5.76%2010.67v-10.67z%22%20fill%3D%22none%22%20stroke%3D%22%23ff5863%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
    --image-url-ton-text-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2016%2020%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2.68%205h10.63c.22%200%20.4.18.4.41%200%20.07-.01.14-.05.2l-5.04%209.08c-.22.4-.72.54-1.11.32-.14-.08-.25-.19-.32-.33l-4.87-9.08c-.1-.2-.03-.45.17-.55.06-.03.12-.05.19-.05zm5.32%209.78v-9.78z%22%20fill%3D%22none%22%20stroke%3D%22%238c9aa9%22%20stroke-width%3D%221.39%22%2F%3E%3C%2Fsvg%3E');
    --image-url-stars-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cpath%20id%3D%22a%22%20d%3D%22m6.02%204.99%202.21-4.42c.25-.51.86-.72%201.37-.46.2.1.36.27.46.47l2.08%204.26c.17.34.5.58.88.63l4.36.52c.59.08%201.02.62.95%201.22-.03.24-.14.47-.32.65l-3.45%203.42c-.14.13-.2.33-.18.53l.57%204.61c.09.66-.38%201.27-1.03%201.35-.25.03-.5-.02-.72-.14l-3.64-2c-.26-.14-.58-.15-.85-.01l-3.77%201.95c-.53.27-1.18.06-1.45-.48-.11-.2-.14-.43-.11-.65l.3-2.12c.15-1.04.79-1.93%201.71-2.41l4.19-2.15c.11-.06.15-.2.1-.31-.05-.09-.14-.14-.24-.12l-5.12.74c-.78.11-1.58-.11-2.19-.62l-1.71-1.4c-.49-.4-.56-1.12-.17-1.62.19-.22.45-.37.74-.41l4.38-.57c.28-.03.52-.21.65-.46z%22%2F%3E%3ClinearGradient%20id%3D%22b%22%20x1%3D%2225%25%22%20x2%3D%2274.92%25%22%20y1%3D%22.825%25%22%20y2%3D%22107.86%25%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23ffd951%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23ffb222%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22c%22%20x1%3D%2250%25%22%20x2%3D%2250%25%22%20y1%3D%220%25%22%20y2%3D%2299.8%25%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23e58f0d%22%2F%3E%3Cstop%20offset%3D%22.9996%22%20stop-color%3D%22%23eb7915%22%2F%3E%3C%2FlinearGradient%3E%3Cfilter%20id%3D%22d%22%20height%3D%22110.6%25%22%20width%3D%22110.3%25%22%20x%3D%22-5.2%25%22%20y%3D%22-5.3%25%22%3E%3CfeOffset%20dx%3D%221%22%20dy%3D%221%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetInner1%22%2F%3E%3CfeComposite%20in%3D%22shadowOffsetInner1%22%20in2%3D%22SourceAlpha%22%20k2%3D%22-1%22%20k3%3D%221%22%20operator%3D%22arithmetic%22%20result%3D%22shadowInnerInner1%22%2F%3E%3CfeColorMatrix%20in%3D%22shadowInnerInner1%22%20type%3D%22matrix%22%20values%3D%220%200%200%200%201%200%200%200%200%201%200%200%200%200%201%200%200%200%200.657%200%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate%281.389%201.389%29%22%3E%3Cuse%20fill%3D%22url%28%23b%29%22%20fill-rule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23a%22%2F%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url%28%23d%29%22%20xlink%3Ahref%3D%22%23a%22%2F%3E%3Cuse%20stroke%3D%22url%28%23c%29%22%20stroke-width%3D%22.89%22%20xlink%3Ahref%3D%22%23a%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-support-bots-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%234db2ff%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate%28.67%202%29%22%3E%3Cpath%20d%3D%22m7.33%200c2.58%200%204.67%202.09%204.67%204.67v4.56c0%201.28-1.04%202.33-2.33%202.33h-4.68c-1.28%200-2.32-1.05-2.32-2.33v-4.56c0-2.58%202.09-4.67%204.66-4.67zm0%201.11c-1.96%200-3.55%201.59-3.55%203.56v.44c0%20.74.59%201.33%201.33%201.33h4.45c.73%200%201.33-.59%201.33-1.33v-.44c0-1.97-1.59-3.56-3.56-3.56z%22%2F%3E%3Crect%20height%3D%224.89%22%20rx%3D%22.89%22%20width%3D%221.78%22%20x%3D%2212.89%22%20y%3D%224.89%22%2F%3E%3Crect%20height%3D%224.89%22%20rx%3D%22.89%22%20width%3D%221.78%22%20y%3D%224.89%22%2F%3E%3Cellipse%20cx%3D%228.89%22%20cy%3D%224.22%22%20rx%3D%221%22%20ry%3D%221%22%2F%3E%3Cellipse%20cx%3D%225.78%22%20cy%3D%224.22%22%20rx%3D%221%22%20ry%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-support-bots-text-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2217%22%20viewBox%3D%220%200%2017%2017%22%20width%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%238c9aa9%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate%28.708333%202.125%29%22%3E%3Cpath%20d%3D%22m7.79%200c2.74%200%204.96%202.22%204.96%204.96v4.84c0%201.37-1.11%202.48-2.47%202.48h-4.97c-1.37%200-2.48-1.11-2.48-2.48v-4.84c0-2.74%202.22-4.96%204.96-4.96zm0%201.18c-2.08%200-3.78%201.69-3.78%203.78v.47c0%20.78.64%201.42%201.42%201.42h4.72c.79%200%201.42-.64%201.42-1.42v-.47c0-2.09-1.69-3.78-3.78-3.78z%22%2F%3E%3Crect%20height%3D%225.19%22%20rx%3D%22.94%22%20width%3D%221.89%22%20x%3D%2213.69%22%20y%3D%225.19%22%2F%3E%3Crect%20height%3D%225.19%22%20rx%3D%22.94%22%20width%3D%221.89%22%20y%3D%225.19%22%2F%3E%3Cellipse%20cx%3D%229.44%22%20cy%3D%224.49%22%20rx%3D%221%22%20ry%3D%221%22%2F%3E%3Cellipse%20cx%3D%226.14%22%20cy%3D%224.49%22%20rx%3D%221%22%20ry%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-wallet-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cmask%20id%3D%22a%22%3E%3Cpath%20d%3D%22m18-.5v4h-7.5c-1.93%200-3.5%201.57-3.5%203.5v4c0%201.93%201.57%203.5%203.5%203.5h7.5v5h-18v-20z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fmask%3E%3Cg%20fill%3D%22%234db2ff%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m15.44%205c.48%200%20.86.26%201.14.53s.42.64.42%201.12v4.73c0%20.45-.14.82-.42%201.1s-.66.52-1.14.52h-5.39c-.47%200-.85-.24-1.13-.52s-.42-.65-.42-1.1v-4.73c0-.48.14-.85.42-1.12s.66-.53%201.13-.53zm-2.94%202.5c-.39%200-.74.15-1.04.45-.31.29-.46.64-.46%201.03%200%20.4.15.76.46%201.06.3.31.65.46%201.04.46s.74-.15%201.04-.46c.31-.3.46-.66.46-1.06%200-.39-.15-.74-.46-1.03-.3-.3-.65-.45-1.04-.45z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22m4%201.5h10c1.1%200%202%20.9%202%202v11c0%201.1-.9%202-2%202h-10c-1.66%200-3-1.34-3-3v-9c0-1.66%201.34-3%203-3z%22%20mask%3D%22url%28%23a%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-wallet-s-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2219%22%20viewBox%3D%220%200%2018%2019%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m12.5%2011c.39%200%20.74-.15%201.04-.46.31-.3.46-.66.46-1.06%200-.39-.15-.74-.46-1.03-.3-.3-.65-.45-1.04-.45s-.74.15-1.04.45c-.31.29-.46.64-.46%201.03%200%20.4.15.76.46%201.06.3.31.65.46%201.04.46zm-2.45%202.5c-.47%200-.85-.24-1.13-.52s-.42-.65-.42-1.1v-4.73c0-.48.14-.85.42-1.12s.66-.53%201.13-.53h5.39c.48%200%20.86.26%201.14.53s.42.64.42%201.12v4.73c0%20.45-.14.82-.42%201.1s-.66.52-1.14.52zm-9.05%201v-10c0-1.38%201.12-2.5%202.5-2.5h11.38c.33%200%20.63.13.88.39.25.25.38.54.38.86v.75h-6.35c-.81%200-1.49.64-2.02%201.17-.53.52-.77%201.18-.77%201.98v4.73c0%20.79.24%201.45.77%201.97.53.53%201.21%201.15%202.02%201.15h6.35v.75c0%20.33-.13.63-.38.88s-.55.37-.88.37h-11.38c-1.38%200-2.5-1.12-2.5-2.5z%22%20fill%3D%22%234cb0fd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-copy-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2013%2018%22%20width%3D%2213%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.4%22%3E%3Crect%20height%3D%2211.5%22%20rx%3D%221.5%22%20width%3D%228.48%22%20x%3D%223.52%22%20y%3D%224.5%22%2F%3E%3Cpath%20d%3D%22m1%2012.25v-7.5c0-1.52%201.23-2.75%202.75-2.75h4.35%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-copy-text-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2013%2018%22%20width%3D%2213%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%234db2ff%22%20stroke-width%3D%221.4%22%3E%3Crect%20height%3D%2211.5%22%20rx%3D%221.5%22%20width%3D%228.48%22%20x%3D%223.52%22%20y%3D%224.5%22%2F%3E%3Cpath%20d%3D%22m1%2012.25v-7.5c0-1.52%201.23-2.75%202.75-2.75h4.35%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-tooltip-bottom: url('data:image/svg+xml,%3Csvg%20height%3D%226%22%20viewBox%3D%220%200%2015%206%22%20width%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200h15c-.22%200-.47.1-.66.29l-4.71%204.64c-1.17%201.15-3.05%201.15-4.21%200l-4.72-4.64c-.19-.19-.44-.29-.7-.29z%22%20fill%3D%22%232d3c4c%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    --image-url-row-arrow: url('data:image/svg+xml,%3Csvg%20height%3D%2217%22%20viewBox%3D%220%200%2011%2017%22%20width%3D%2211%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3%2014%205.15-5.11c.19-.2.19-.52%200-.71l-5.15-5.18%22%20fill%3D%22none%22%20stroke%3D%22%235b6975%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
    --image-url-filter-arrow: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m7%203.5%205.43%205.4c.04.04.04.1%200%20.14l-5.43%205.46%22%20fill%3D%22none%22%20stroke%3D%22%23838f9c%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.9%22%2F%3E%3C%2Fsvg%3E');
    --image-url-filter-arrow-down: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.5%207.2%205.11%205.15c.2.19.52.19.71%200l5.18-5.15%22%20fill%3D%22none%22%20stroke%3D%22%23838f9c%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.8%22%2F%3E%3C%2Fsvg%3E');
    --image-url-list-item-selected-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%20width%3D%2225%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m6%2013.44%204.3%204.3c.2.2.52.2.71%200l8.74-8.74%22%20fill%3D%22none%22%20stroke%3D%22%234db2ff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222.2%22%2F%3E%3C%2Fsvg%3E');
    --image-url-premium-opt-gift-icon: url('data:image/svg+xml,%3Csvg%20height%3D%22125%22%20viewBox%3D%220%200%20200%20125%22%20width%3D%22200%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cpath%20id%3D%22premium-star%22%20d%3D%22M%20-2.02%201.1%20L%20-5.49%200.62%20C%20-5.81%200.58%20-6%200.4%20-5.99%20-0.04%20C%20-5.96%20-0.31%20-5.75%20-0.51%20-5.49%20-0.55%20L%20-2.02%20-1.02%20C%20-1.53%20-1.09%20-1.15%20-1.47%20-1.08%20-1.96%20L%20-0.61%20-5.43%20C%20-0.56%20-5.75%20-0.27%20-5.98%200.06%20-5.93%20C%200.32%20-5.9%200.53%20-5.69%200.56%20-5.43%20L%201.04%20-1.96%20C%201.11%20-1.47%201.49%20-1.09%201.97%20-1.02%20L%205.44%20-0.55%20C%205.77%20-0.51%205.99%20-0.21%205.95%200.12%20C%205.91%200.38%205.71%200.59%205.44%200.62%20L%201.97%201.1%20C%201.49%201.16%201.11%201.55%201.04%202.03%20L%200.56%205.5%20C%200.52%205.82%200.22%206.05%20-0.1%206.01%20C%20-0.37%205.97%20-0.57%205.76%20-0.61%205.5%20L%20-1.08%202.03%20C%20-1.15%201.55%20-1.53%201.16%20-2.02%201.1%20Z%22%2F%3E%3C%2Fdefs%3E%3Cstyle%3Esvg%26gt%3Bg%7Btransform%3Ascale%28var%28--s%2C1%29%29%20translate%28var%28--x%29%2Cvar%28--y%29%29%3Btransform-origin%3Avar%28--x%29%20var%28--y%29%3Bopacity%3Avar%28--o%2C1%29%3Bfill%3A%23219cfb%3B--k%3Acalc%28-1%20%2A%20var%28--i%29%29%3B--bdur%3Avar%28--d%2C3s%29%3B--bdel%3Acalc%28.2s%20%2A%20var%28--k%29%29%3B--mdur%3Acalc%2810%20%2A%20var%28--bdur%29%29%3B--mdel%3Acalc%28var%28--bdel%29%20%2B%20calc%28var%28--bdur%29%20%2A%20var%28--k%29%29%29%3B%7Dg%26gt%3Bg%7Banimation%3Avar%28--mdur%29%20steps%281%29%20var%28--mdel%29%20infinite%20move%20%7Dg%26gt%3Bg%26gt%3Buse%7Banimation%3Avar%28--bdur%29%20ease%20var%28--bdel%29%20infinite%20blink%7D%40keyframes%20blink%7B0%25%2Cto%7Bopacity%3A0%3Btransform%3Ascale%28.1%29%3B%7D45%25%2C55%25%7Bopacity%3A1%3Btransform%3Ascale%281%29%7D%7D%40keyframes%20move%7B0%25%2Cto%7Btransform%3Atranslate%280%2C0%29%7D10%25%7Btransform%3Atranslate%28-3px%2C6px%29%7D20%25%7Btransform%3Atranslate%285px%2C-2px%29%7D30%25%7Btransform%3Atranslate%287px%2C4px%29%7D40%25%7Btransform%3Atranslate%28-6px%2C1px%29%7D50%25%7Btransform%3Atranslate%282px%2C-7px%29%7D60%25%7Btransform%3Atranslate%281px%2C3px%29%7D70%25%7Btransform%3Atranslate%28-5px%2C5px%29%7D80%25%7Btransform%3Atranslate%286px%2C-6px%29%7D90%25%7Btransform%3Atranslate%283px%2C2px%29%7D%7D%3C%2Fstyle%3E%3Cpath%20fill%3D%22%23219cfb%22%20d%3D%22M%2087.64%2046.07%20L%2096.3%2029.17%20C%2097.3%2027.22%2099.72%2026.44%20101.7%2027.42%20C%20102.47%2027.81%20103.1%2028.43%20103.49%2029.2%20L%20111.67%2045.5%20C%20112.33%2046.83%20113.64%2047.74%20115.14%2047.92%20L%20132.26%2049.93%20C%20134.59%2050.2%20136.25%2052.28%20135.97%2054.57%20C%20135.86%2055.51%20135.42%2056.39%20134.73%2057.05%20L%20121.19%2070.13%20C%20120.65%2070.66%20120.38%2071.41%20120.48%2072.16%20L%20122.73%2089.81%20C%20123.05%2092.34%20121.23%2094.65%20118.66%2094.96%20C%20117.69%2095.08%20116.7%2094.9%20115.84%2094.44%20L%20101.54%2086.78%20C%20100.51%2086.23%2099.26%2086.21%2098.21%2086.74%20L%2083.4%2094.19%20C%2081.31%2095.24%2078.76%2094.42%2077.69%2092.37%20C%2077.29%2091.6%2077.15%2090.73%2077.27%2089.88%20L%2078.46%2081.78%20C%2079.03%2077.82%2081.54%2074.38%2085.16%2072.56%20L%20101.62%2064.33%20C%20102.06%2064.11%20102.23%2063.58%20102.01%2063.15%20C%20101.83%2062.81%20101.46%2062.62%20101.09%2062.68%20L%2080.96%2065.5%20C%2077.88%2065.93%2074.76%2065.08%2072.35%2063.15%20L%2065.65%2057.79%20C%2063.74%2056.26%2063.45%2053.5%2065%2051.61%20C%2065.72%2050.74%2066.76%2050.17%2067.9%2050.02%20L%2085.08%2047.86%20C%2086.18%2047.72%2087.14%2047.05%2087.64%2046.07%20Z%22%2F%3E%3Cg%20style%3D%22--x%3A53.8px%3B--y%3A85.4px%3B--i%3A0%3B--d%3A2.4s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A63.4px%3B--y%3A26.6px%3B--i%3A1%3B--d%3A4.7s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A145.6px%3B--y%3A79px%3B--s%3A0.8%3B--i%3A2%3B--d%3A3.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A114.6px%3B--y%3A19px%3B--s%3A0.8%3B--i%3A3%3B--d%3A5.0s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A142.3px%3B--y%3A29.9px%3B--o%3A0.4%3B--i%3A4%3B--d%3A2.8s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A166.3px%3B--y%3A57.6px%3B--o%3A0.4%3B--i%3A5%3B--d%3A3.6s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A40.3px%3B--y%3A46.6px%3B--s%3A0.8%3B--o%3A0.35%3B--i%3A6%3B--d%3A4.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A116.5px%3B--y%3A110.2px%3B--s%3A0.724%3B--o%3A0.35%3B--i%3A7%3B--d%3A2.5s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A22px%3B--y%3A67.7px%3B--s%3A0.5%3B--o%3A0.33%3B--i%3A8%3B--d%3A4.3s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A95.9px%3B--y%3A99.7px%3B--s%3A0.5%3B--o%3A0.33%3B--i%3A9%3B--d%3A3.9s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-premium-opt-giveaway-icon: url('data:image/svg+xml,%3Csvg%20height%3D%22125%22%20viewBox%3D%220%200%20200%20125%22%20width%3D%22200%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cpath%20id%3D%22f%22%20d%3D%22M%202%20-8.67%20L%20-5.37%200.21%20C%20-5.56%200.45%20-5.53%200.8%20-5.29%201%20C%20-5.19%201.08%20-5.07%201.13%20-4.94%201.13%20H%20-2.43%20C%20-2.12%201.13%20-1.87%201.38%20-1.87%201.69%20C%20-1.87%201.72%20-1.87%201.75%20-1.88%201.78%20L%20-2.99%208.46%20C%20-3.04%208.77%20-2.84%209.06%20-2.53%209.11%20C%20-2.33%209.14%20-2.13%209.07%20-2%208.91%20L%205.38%20-0.21%20C%205.57%20-0.45%205.54%20-0.8%205.3%20-1%20C%205.2%20-1.08%205.07%20-1.12%204.94%20-1.12%20H%202.6%20C%202.29%20-1.12%202.04%20-1.38%202.04%20-1.69%20C%202.04%20-1.71%202.05%20-1.74%202.05%20-1.77%20L%202.98%20-8.23%20C%203.03%20-8.54%202.82%20-8.83%202.51%20-8.87%20C%202.32%20-8.9%202.12%20-8.83%202%20-8.67%20Z%22%2F%3E%3C%2Fdefs%3E%3Cstyle%3Esvg%26gt%3Bg%7Btransform%3Ascale%28var%28--s%2C1%29%29%20translate%28var%28--x%29%2Cvar%28--y%29%29%3Btransform-origin%3Avar%28--x%29%20var%28--y%29%3Bopacity%3Avar%28--o%2C1%29%3Bfill%3A%23219cfb%3B--k%3Acalc%28-1%20%2A%20var%28--i%29%29%3B--bdur%3Avar%28--d%2C3s%29%3B--bdel%3Acalc%28.2s%20%2A%20var%28--k%29%29%3B--mdur%3Acalc%2810%20%2A%20var%28--bdur%29%29%3B--mdel%3Acalc%28var%28--bdel%29%20%2B%20calc%28var%28--bdur%29%20%2A%20var%28--k%29%29%29%7Dg%26gt%3Bg%7Banimation%3Avar%28--mdur%29%20steps%281%29%20var%28--mdel%29%20infinite%20move%7Dg%26gt%3Bg%26gt%3Buse%7Banimation%3Avar%28--bdur%29%20ease%20var%28--bdel%29%20infinite%20blink%7D%40keyframes%20blink%7B0%25%2Cto%7Bopacity%3A0%3Btransform%3Ascale%28.1%29%7D45%25%2C55%25%7Bopacity%3A1%3Btransform%3Ascale%281%29%7D%7D%40keyframes%20move%7B0%25%2Cto%7Btransform%3Atranslate%280%2C0%29%7D10%25%7Btransform%3Atranslate%284px%2C-6px%29%7D20%25%7Btransform%3Atranslate%28-2px%2C5px%29%7D30%25%7Btransform%3Atranslate%286px%2C3px%29%7D40%25%7Btransform%3Atranslate%28-7px%2C-4px%29%7D50%25%7Btransform%3Atranslate%283px%2C7px%29%7D60%25%7Btransform%3Atranslate%281px%2C-3px%29%7D70%25%7Btransform%3Atranslate%28-5px%2C2px%29%7D80%25%7Btransform%3Atranslate%282px%2C-1px%29%7D90%25%7Btransform%3Atranslate%28-6px%2C6px%29%7D%7D%3C%2Fstyle%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%20x%3D%2224.75%22%20y%3D%2215.375%22%20transform%3D%22scale%284%29%22%20fill%3D%22%23219cfb%22%2F%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A133px%3B--y%3A19.8px%3B--s%3A.97%3B--o%3A0.69%3B--i%3A0%3B--d%3A2.3s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A47px%3B--y%3A42.6px%3B--s%3A.94%3B--i%3A1%3B--d%3A4.6s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A77.4px%3B--y%3A22px%3B--s%3A0.67%3B--o%3A.18%3B--i%3A2%3B--d%3A3.5s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A177.5px%3B--y%3A67px%3B--s%3A0.67%3B--o%3A.34%3B--i%3A3%3B--d%3A2.8s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A146.5px%3B--y%3A49.9px%3B--s%3A0.67%3B--i%3A4%3B--d%3A4.2s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A24.5px%3B--y%3A78px%3B--s%3A0.67%3B--o%3A0.38%3B--i%3A5%3B--d%3A3.9s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A141px%3B--y%3A80.6px%3B--s%3A.94%3B--o%3A0.34%3B--i%3A6%3B--d%3A4.8s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A113px%3B--y%3A104.4px%3B--s%3A0.72%3B--i%3A7%3B--d%3A2.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20class%3D%22s%22%20style%3D%22--x%3A66px%3B--y%3A84.4px%3B--s%3A0.72%3B--i%3A8%3B--d%3A3.2s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23f%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-ads-opt-pay-icon: url('data:image/svg+xml,%3Csvg%20height%3D%22125%22%20viewBox%3D%220%200%20200%20125%22%20width%3D%22200%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cpath%20id%3D%22premium-star%22%20d%3D%22M%20-2.02%201.1%20L%20-5.49%200.62%20C%20-5.81%200.58%20-6%200.4%20-5.99%20-0.04%20C%20-5.96%20-0.31%20-5.75%20-0.51%20-5.49%20-0.55%20L%20-2.02%20-1.02%20C%20-1.53%20-1.09%20-1.15%20-1.47%20-1.08%20-1.96%20L%20-0.61%20-5.43%20C%20-0.56%20-5.75%20-0.27%20-5.98%200.06%20-5.93%20C%200.32%20-5.9%200.53%20-5.69%200.56%20-5.43%20L%201.04%20-1.96%20C%201.11%20-1.47%201.49%20-1.09%201.97%20-1.02%20L%205.44%20-0.55%20C%205.77%20-0.51%205.99%20-0.21%205.95%200.12%20C%205.91%200.38%205.71%200.59%205.44%200.62%20L%201.97%201.1%20C%201.49%201.16%201.11%201.55%201.04%202.03%20L%200.56%205.5%20C%200.52%205.82%200.22%206.05%20-0.1%206.01%20C%20-0.37%205.97%20-0.57%205.76%20-0.61%205.5%20L%20-1.08%202.03%20C%20-1.15%201.55%20-1.53%201.16%20-2.02%201.1%20Z%22%2F%3E%3C%2Fdefs%3E%3Cstyle%3Esvg%26gt%3Bg%7Btransform%3Ascale%28var%28--s%2C1%29%29%20translate%28var%28--x%29%2Cvar%28--y%29%29%3Btransform-origin%3Avar%28--x%29%20var%28--y%29%3Bopacity%3Avar%28--o%2C1%29%3Bfill%3A%23219cfb%3B--k%3Acalc%28-1%20%2A%20var%28--i%29%29%3B--bdur%3Avar%28--d%2C3s%29%3B--bdel%3Acalc%28.2s%20%2A%20var%28--k%29%29%3B--mdur%3Acalc%2810%20%2A%20var%28--bdur%29%29%3B--mdel%3Acalc%28var%28--bdel%29%20%2B%20calc%28var%28--bdur%29%20%2A%20var%28--k%29%29%29%7Dg%26gt%3Bg%7Banimation%3Avar%28--mdur%29%20steps%281%29%20var%28--mdel%29%20infinite%20move%7Dg%26gt%3Bg%26gt%3Buse%7Banimation%3Avar%28--bdur%29%20ease%20var%28--bdel%29%20infinite%20blink%7D%40keyframes%20blink%7B0%25%2Cto%7Bopacity%3A0%3Btransform%3Ascale%28.1%29%7D45%25%2C55%25%7Bopacity%3A1%3Btransform%3Ascale%281%29%7D%7D%40keyframes%20move%7B0%25%2Cto%7Btransform%3Atranslate%280%2C0%29%7D10%25%7Btransform%3Atranslate%28-4.7px%2C3.7px%29%7D20%25%7Btransform%3Atranslate%28-3.7px%2C-4.7px%29%7D30%25%7Btransform%3Atranslate%28-3px%2C0px%29%7D40%25%7Btransform%3Atranslate%283.5px%2C.2px%29%7D50%25%7Btransform%3Atranslate%28-1.3px%2C-.5px%29%7D60%25%7Btransform%3Atranslate%280px%2C-.7px%29%7D70%25%7Btransform%3Atranslate%28-4.8px%2C3px%29%7D80%25%7Btransform%3Atranslate%282.4px%2C.7px%29%7D90%25%7Btransform%3Atranslate%28-2.1px%2C3.3px%29%7D%7D%3C%2Fstyle%3E%3Cg%20style%3D%22--x%3A52.8px%3B--y%3A85.1px%3B--i%3A0%3B--d%3A4.2s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A65.3px%3B--y%3A26.3px%3B--i%3A1%3B--d%3A4.9s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A150.6px%3B--y%3A81.7px%3B--s%3A0.8%3B--i%3A2%3B--d%3A4.0s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A114.6px%3B--y%3A15.8px%3B--s%3A0.8%3B--i%3A3%3B--d%3A3.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A144.3px%3B--y%3A29.7px%3B--o%3A0.4%3B--i%3A4%3B--d%3A4.6s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A171.3px%3B--y%3A56.3px%3B--o%3A0.4%3B--i%3A5%3B--d%3A3.7s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A42.3px%3B--y%3A46.3px%3B--s%3A0.8%3B--o%3A0.35%3B--i%3A6%3B--d%3A3.8s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A128.5px%3B--y%3A108px%3B--s%3A0.724%3B--o%3A0.35%3B--i%3A7%3B--d%3A4.2s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A24px%3B--y%3A67.5px%3B--s%3A0.5%3B--o%3A0.33%3B--i%3A8%3B--d%3A3.8s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A99px%3B--y%3A107.4px%3B--s%3A0.5%3B--o%3A0.33%3B--i%3A9%3B--d%3A3.7s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Adv%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M103%2028.74C123.98%2028.74%20141%2044.22%20141%2063.3%20141%2082.39%20123.98%2097.87%20103%2097.87%2097.11%2097.87%2091.53%2096.65%2086.56%2094.47%2085.28%2095.45%2084.12%2096.2%2083.08%2096.74%2079.56%2098.53%2077.2%2099.17%2071.84%2099.73%2070.39%2099.88%2069.42%2098.59%2070.55%2097.47%2072.97%2095.07%2074.31%2090.83%2075.02%2086.69%2068.8%2080.54%2065%2072.32%2065%2063.3%2065%2044.22%2082.01%2028.74%20103%2028.74Z%22%20id%3D%22Combined-Shape%22%20fill%3D%22%23219CFB%22%2F%3E%3Cpath%20d%3D%22M101.53%2071.65C102.15%2072.1%20102.48%2072.44%20102.53%2072.65%20103.08%2075.3%20103.5%2077.31%20103.8%2078.69%20104.05%2081.13%20103.35%2083.35%20101.35%2083.66%20101.28%2083.67%20101.21%2083.67%20101.14%2083.68L100.75%2083.71C98.68%2083.88%2096.74%2082.44%2095.9%2080.11%2093.74%2076.71%2092.35%2074.16%2091.74%2072.45%2091.68%2072.28%2091.89%2072.01%2092.37%2071.65L101.53%2071.65ZM88.96%2053.38%2099.44%2053.38C101.18%2053.38%20102.59%2054.79%20102.59%2056.53L102.59%2066.21C102.59%2067.95%20101.18%2069.36%2099.44%2069.36L88.96%2069.36C85.48%2069.36%2082.66%2066.54%2082.66%2063.06L82.66%2059.68C82.66%2056.2%2085.48%2053.38%2088.96%2053.38ZM106.45%2052.38%20114.59%2046.95C116.23%2045.86%20118.44%2046.31%20119.53%2047.94%20119.92%2048.53%20120.12%2049.21%20120.12%2049.91L120.12%2071.88C120.12%2073.84%20118.53%2075.43%20116.57%2075.43%20115.93%2075.43%20115.31%2075.27%20114.77%2074.95L106.59%2070.16C105.71%2069.65%20105.18%2068.72%20105.18%2067.71L105.18%2054.75C105.18%2053.8%20105.65%2052.91%20106.45%2052.38Z%22%20id%3D%22Combined-Shape%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-ads-opt-rewards-icon: url('data:image/svg+xml,%3Csvg%20height%3D%22125%22%20viewBox%3D%220%200%20200%20125%22%20width%3D%22200%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cpath%20id%3D%22premium-star%22%20d%3D%22M-.02%207C.35%207%20.94%206.73.94%206.23L.94%205.5C3.24%205.24%204.46%203.93%204.46%202.07%204.46.45%203.44-.53%201.37-.92L-.18-1.22C-1.22-1.42-1.7-1.8-1.7-2.39-1.7-3.05-1.08-3.58-.12-3.58.71-3.58%201.3-3.32%202-2.69%202.41-2.35%202.75-2.2%203.19-2.2%203.71-2.2%204.13-2.56%204.13-3.08%204.13-3.52%203.89-3.98%203.43-4.4%202.82-4.97%202.03-5.33.94-5.46L.94-6.16C.94-6.66.37-7-0-7-.37-7-.91-6.67-.91-6.16L-.91-5.48C-3.13-5.28-4.4-4.01-4.4-2.19-4.4-.58-3.39.44-1.41.83L.14%201.15C1.32%201.4%201.79%201.75%201.79%202.34%201.79%203.09%201.17%203.59.01%203.59-.82%203.59-1.63%203.26-2.36%202.62-2.83%202.24-3.12%202.13-3.48%202.13-4.07%202.13-4.54%202.48-4.54%203.09-4.54%203.56-4.27%204.02-3.81%204.42-3.13%205.03-2.16%205.4-.91%205.5L-.91%206.21C-.91%206.72-.39%207-.02%207Z%22%2F%3E%3C%2Fdefs%3E%3Cstyle%3Esvg%26gt%3Bg%7Btransform%3Ascale%28var%28--s%2C1%29%29%20translate%28var%28--x%29%2Cvar%28--y%29%29%3Btransform-origin%3Avar%28--x%29%20var%28--y%29%3Bopacity%3Avar%28--o%2C1%29%3Bfill%3A%23219cfb%3B--k%3Acalc%28-1%20%2A%20var%28--i%29%29%3B--bdur%3Avar%28--d%2C3s%29%3B--bdel%3Acalc%28.2s%20%2A%20var%28--k%29%29%3B--mdur%3Acalc%2810%20%2A%20var%28--bdur%29%29%3B--mdel%3Acalc%28var%28--bdel%29%20%2B%20calc%28var%28--bdur%29%20%2A%20var%28--k%29%29%29%7Dg%26gt%3Bg%7Banimation%3Avar%28--mdur%29%20steps%281%29%20var%28--mdel%29%20infinite%20move%7Dg%26gt%3Bg%26gt%3Buse%7Banimation%3Avar%28--bdur%29%20ease%20var%28--bdel%29%20infinite%20blink%7D%40keyframes%20blink%7B0%25%2Cto%7Bopacity%3A0%3Btransform%3Ascale%28.1%29%7D45%25%2C55%25%7Bopacity%3A1%3Btransform%3Ascale%281%29%7D%7D%40keyframes%20move%7B0%25%2Cto%7Btransform%3Atranslate%280%2C0%29%7D10%25%7Btransform%3Atranslate%28-4.7px%2C3.7px%29%7D20%25%7Btransform%3Atranslate%28-3.7px%2C-4.7px%29%7D30%25%7Btransform%3Atranslate%28-3px%2C0px%29%7D40%25%7Btransform%3Atranslate%283.5px%2C.2px%29%7D50%25%7Btransform%3Atranslate%28-1.3px%2C-.5px%29%7D60%25%7Btransform%3Atranslate%280px%2C-.7px%29%7D70%25%7Btransform%3Atranslate%28-4.8px%2C3px%29%7D80%25%7Btransform%3Atranslate%282.4px%2C.7px%29%7D90%25%7Btransform%3Atranslate%28-2.1px%2C3.3px%29%7D%7D%3C%2Fstyle%3E%3Cg%20style%3D%22--x%3A55.5px%3B--y%3A89px%3B--i%3A0%3B--d%3A2.4s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A70px%3B--y%3A13px%3B--s%3A0.88%3B--i%3A1%3B--d%3A4.7s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A148.5px%3B--y%3A89px%3B--i%3A2%3B--d%3A3.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A138.5px%3B--y%3A17.5px%3B--s%3A1.22%3B--o%3A0.57%3B--i%3A3%3B--d%3A5.0s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A151.5px%3B--y%3A50px%3B--i%3A4%3B--d%3A2.8s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A178px%3B--y%3A67px%3B--s%3A0.88%3B--o%3A0.42%3B--i%3A5%3B--d%3A3.6s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A44.5px%3B--y%3A43.5px%3B--s%3A1.22%3B--o%3A0.66%3B--i%3A6%3B--d%3A4.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A111.5px%3B--y%3A108px%3B--o%3A0.49%3B--i%3A7%3B--d%3A2.5s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A22.5px%3B--y%3A77px%3B--o%3A0.42%3B--i%3A8%3B--d%3A4.3s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23premium-star%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cellipse%20fill%3D%22%23149EFA%22%20cx%3D%2299.67%22%20cy%3D%2258.64%22%20rx%3D%2237.67%22%20ry%3D%2237.64%22%2F%3E%3Cpath%20d%3D%22M100.04%2081C101.19%2081%20103.03%2080.14%20103.03%2078.52L103.03%2076.18C110.19%2075.34%20114%2071.14%20114%2065.15%20114%2059.96%20110.83%2056.8%20104.39%2055.56L99.55%2054.57C96.31%2053.94%2094.82%2052.73%2094.82%2050.83%2094.82%2048.7%2096.74%2047.01%2099.76%2047.01%20102.31%2047.01%20104.16%2047.82%20106.33%2049.87%20107.61%2050.95%20108.66%2051.44%20110.04%2051.44%20111.65%2051.44%20112.98%2050.27%20112.98%2048.6%20112.98%2047.19%20112.21%2045.69%20110.78%2044.35%20108.89%2042.53%20106.43%2041.37%20103.03%2040.94L103.03%2038.71C103.03%2037.09%20101.27%2036%20100.12%2036%2098.96%2036%2097.28%2037.07%2097.28%2038.71L97.28%2040.89C90.38%2041.52%2086.43%2045.62%2086.43%2051.46%2086.43%2056.62%2089.55%2059.91%2095.74%2061.17L100.55%2062.21C104.23%2063%20105.69%2064.11%20105.69%2066.01%20105.69%2068.44%20103.75%2070.03%20100.14%2070.03%2097.56%2070.03%2095.05%2068.97%2092.78%2066.92%2091.32%2065.7%2090.4%2065.35%2089.27%2065.35%2087.46%2065.35%2086%2066.46%2086%2068.44%2086%2069.95%2086.82%2071.42%2088.25%2072.71%2090.37%2074.66%2093.39%2075.85%2097.28%2076.18L97.28%2078.47C97.28%2080.09%2098.89%2081%20100.04%2081Z%22%20id%3D%22Path%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-ads-opt-for-creators-icon: url('data:image/svg+xml,%3Csvg%20height%3D%22125%22%20viewBox%3D%220%200%20200%20125%22%20width%3D%22200%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cpath%20id%3D%22ton%22%20d%3D%22M.56%200%209.43%200C9.62%200%209.76.15%209.76.33%209.76.39%209.75.44%209.72.49L5.5%207.97C5.32%208.28%204.91%208.4%204.6%208.22%204.49%208.16%204.4%208.07%204.34%207.96L.27.49C.18.33.24.13.4.04.45.01.5%200%20.56%200ZM5%208%205%200%22%20fill%3D%22none%22%20stroke%3D%22%23149efa%22%20stroke-width%3D%221.43%22%2F%3E%3C%2Fdefs%3E%3Cstyle%3Esvg%26gt%3Bg%7Btransform%3Ascale%28var%28--s%2C1%29%29%20translate%28var%28--x%29%2Cvar%28--y%29%29%3Btransform-origin%3Avar%28--x%29%20var%28--y%29%3Bopacity%3Avar%28--o%2C1%29%3Bfill%3A%23219cfb%3B--k%3Acalc%28-1%20%2A%20var%28--i%29%29%3B--bdur%3Avar%28--d%2C3s%29%3B--bdel%3Acalc%28.2s%20%2A%20var%28--k%29%29%3B--mdur%3Acalc%2810%20%2A%20var%28--bdur%29%29%3B--mdel%3Acalc%28var%28--bdel%29%20%2B%20calc%28var%28--bdur%29%20%2A%20var%28--k%29%29%29%7Dg%26gt%3Bg%7Banimation%3Avar%28--mdur%29%20steps%281%29%20var%28--mdel%29%20infinite%20move%7Dg%26gt%3Bg%26gt%3Buse%7Banimation%3Avar%28--bdur%29%20ease%20var%28--bdel%29%20infinite%20blink%7D%40keyframes%20blink%7B0%25%2Cto%7Bopacity%3A0%3Btransform%3Ascale%28.1%29%7D45%25%2C55%25%7Bopacity%3A1%3Btransform%3Ascale%281%29%7D%7D%40keyframes%20move%7B0%25%2Cto%7Btransform%3Atranslate%280%2C0%29%7D10%25%7Btransform%3Atranslate%28-4.7px%2C3.7px%29%7D20%25%7Btransform%3Atranslate%28-3.7px%2C-4.7px%29%7D30%25%7Btransform%3Atranslate%28-3px%2C0px%29%7D40%25%7Btransform%3Atranslate%283.5px%2C.2px%29%7D50%25%7Btransform%3Atranslate%28-1.3px%2C-.5px%29%7D60%25%7Btransform%3Atranslate%280px%2C-.7px%29%7D70%25%7Btransform%3Atranslate%28-4.8px%2C3px%29%7D80%25%7Btransform%3Atranslate%282.4px%2C.7px%29%7D90%25%7Btransform%3Atranslate%28-2.1px%2C3.3px%29%7D%7D%3C%2Fstyle%3E%3Cg%20style%3D%22--x%3A55.5px%3B--y%3A89px%3B--i%3A0%3B--d%3A2.4s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A70px%3B--y%3A13px%3B--s%3A0.88%3B--i%3A1%3B--d%3A4.7s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A148.5px%3B--y%3A89px%3B--i%3A2%3B--d%3A3.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A138.5px%3B--y%3A17.5px%3B--s%3A1.22%3B--o%3A0.57%3B--i%3A3%3B--d%3A5.0s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A151.5px%3B--y%3A50px%3B--i%3A4%3B--d%3A2.8s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A178px%3B--y%3A67px%3B--s%3A0.88%3B--o%3A0.42%3B--i%3A5%3B--d%3A3.6s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A44.5px%3B--y%3A43.5px%3B--s%3A1.22%3B--o%3A0.66%3B--i%3A6%3B--d%3A4.1s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A111.5px%3B--y%3A108px%3B--o%3A0.49%3B--i%3A7%3B--d%3A2.5s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20style%3D%22--x%3A22.5px%3B--y%3A77px%3B--o%3A0.42%3B--i%3A8%3B--d%3A4.3s%22%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%22%23ton%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cellipse%20fill%3D%22%23149EFA%22%20cx%3D%2299.67%22%20cy%3D%2258.64%22%20rx%3D%2237.67%22%20ry%3D%2237.64%22%2F%3E%3Cpath%20d%3D%22M98.61%2072.83%2098.67%2072.87C99.52%2073.43%2099.76%2074.59%2099.21%2075.46L98.14%2077.15C97.61%2077.99%2096.52%2078.25%2095.68%2077.74L95.62%2077.7C94.77%2077.13%2094.53%2075.98%2095.08%2075.11L96.15%2073.42C96.68%2072.58%2097.77%2072.32%2098.61%2072.83L98.61%2072.83ZM88.62%2049.46C89.24%2050.01%2090.01%2050.44%2090.92%2050.77%2091.68%2051.04%2092.5%2051.22%2093.37%2051.31%2093.53%2051.32%2093.64%2051.46%2093.62%2051.62%2093.62%2051.68%2093.6%2051.73%2093.56%2051.78L93.38%2052.01C90.55%2055.56%2089.95%2057.8%2091.59%2058.74%2093.27%2059.7%2095.62%2058.59%2098.65%2055.43%2098.89%2055.17%2099.19%2054.97%2099.51%2054.83L100.28%2054.51C100.82%2054.29%20101.42%2054.32%20101.93%2054.59%20104.32%2055.84%20106.88%2057.38%20109.61%2059.21%20112.27%2061%20114.83%2062.88%20117.28%2064.85L117.77%2065.25C118.58%2065.92%20118.72%2067.13%20118.06%2067.96%20118.01%2068.03%20117.95%2068.1%20117.88%2068.16L117.82%2068.22C117.35%2068.63%20116.68%2068.74%20115.81%2068.56L115.71%2068.54%20112.89%2066.8%20110.07%2065.08C108.53%2064.14%20107.63%2063.61%20107.37%2063.47L107.32%2063.45C107%2063.31%20106.61%2063.46%20106.47%2063.8%20106.34%2064.1%20106.45%2064.46%20106.74%2064.63L114.21%2069.06C114.85%2069.44%20115.07%2070.28%20114.69%2070.93%20114.65%2071.02%20114.59%2071.09%20114.53%2071.16L114.48%2071.22C114.19%2071.51%20113.79%2071.72%20113.28%2071.85%20112.71%2071.99%20112.11%2071.9%20111.61%2071.6L105.23%2067.81C104.95%2067.65%20104.59%2067.74%20104.42%2068.03%20104.25%2068.31%20104.34%2068.68%20104.62%2068.85L111.05%2072.85C111.31%2073.01%20111.4%2073.37%20111.24%2073.64%20111.22%2073.66%20111.21%2073.68%20111.2%2073.7%20110.76%2074.25%20110.38%2074.61%20110.05%2074.77%20109.62%2074.98%20108.98%2074.98%20108.13%2074.77L103.09%2072.28C102.75%2072.11%20102.35%2072.25%20102.18%2072.58%20102.01%2072.89%20102.13%2073.28%20102.44%2073.45L102.47%2073.46%20106.88%2075.6C107.17%2075.74%20107.29%2076.08%20107.15%2076.37%20107.13%2076.43%20107.09%2076.49%20107.04%2076.54%20106.51%2077.06%20105.64%2077.36%20104.41%2077.43%20103.07%2077.51%20101.74%2077.27%20100.4%2076.72L100.24%2076.65C99.95%2076.52%2099.82%2076.18%2099.94%2075.89%2099.96%2075.83%2099.99%2075.78%20100.03%2075.74%20100.61%2075.07%20100.71%2074.22%20100.34%2073.18%2099.91%2071.96%2099.09%2071.31%2097.88%2071.23L97.79%2071.22C97.63%2071.21%2097.51%2071.08%2097.52%2070.92%2097.56%2069.91%2097.34%2069.12%2096.86%2068.54%2096.38%2067.96%2095.65%2067.62%2094.68%2067.53L94.57%2067.52C94.49%2067.52%2094.43%2067.45%2094.44%2067.37%2094.57%2065.67%2093.93%2064.52%2092.51%2063.93%2091.14%2063.36%2090.01%2063.85%2089.12%2065.41%2089.08%2065.49%2088.97%2065.52%2088.89%2065.48%2088.86%2065.46%2088.84%2065.43%2088.82%2065.4%2088.34%2064.39%2087.75%2063.77%2087.06%2063.56%2086.34%2063.33%2085.41%2063.51%2084.28%2064.09%2084.17%2064.15%2084.03%2064.12%2083.95%2064.03L82.37%2062.36C82.03%2062%2081.96%2061.44%2082.2%2061L88.62%2049.46ZM95.64%2069.24%2095.64%2069.24C96.47%2069.84%2096.67%2071%2096.09%2071.85L93.83%2075.15C93.27%2075.97%2092.18%2076.19%2091.36%2075.65L91.29%2075.61C90.47%2075.01%2090.26%2073.85%2090.84%2073.01L93.1%2069.7C93.68%2068.86%2094.81%2068.65%2095.64%2069.24ZM92.43%2065.41%2092.44%2065.41C93.27%2066%2093.47%2067.17%2092.89%2068.01L89.99%2072.26C89.43%2073.08%2088.33%2073.3%2087.51%2072.76L87.45%2072.72C86.62%2072.13%2086.42%2070.96%2087%2070.12L89.9%2065.87C90.47%2065.03%2091.61%2064.82%2092.43%2065.41ZM87.15%2064.81%2087.16%2064.81C88.01%2065.38%2088.25%2066.53%2087.7%2067.4L86.93%2068.61C86.4%2069.45%2085.31%2069.71%2084.47%2069.2L84.41%2069.16C83.56%2068.59%2083.32%2067.44%2083.87%2066.57L84.64%2065.36C85.18%2064.5%2086.31%2064.25%2087.15%2064.81ZM104.91%2047.96C106.81%2047.96%20108.45%2048.89%20111.26%2049.21%20112.75%2049.38%20113.94%2049.35%20114.83%2049.11%20115.2%2049%20115.6%2049.17%20115.79%2049.52L121.59%2060.09C121.78%2060.44%20121.71%2060.88%20121.43%2061.15L119.19%2063.26C118.89%2063.55%20118.42%2063.57%20118.09%2063.31%20115.49%2061.22%20112.88%2059.31%20110.25%2057.59%20107.59%2055.84%20104.81%2054.24%20101.91%2052.8%20101.58%2052.64%20101.21%2052.61%20100.86%2052.72L99.16%2053.29C98.92%2053.37%2098.7%2053.52%2098.53%2053.72L98.22%2054.08C97.15%2055.33%2096.35%2056.13%2095.8%2056.49%2093.8%2057.81%2092.25%2057.86%2091.93%2057.02%2091.74%2056.49%2093.2%2054.1%2096.34%2049.83%2096.64%2049.42%2097.07%2049.13%2097.56%2048.99%20100.07%2048.31%20102.52%2047.96%20104.91%2047.96ZM85.23%2044.99%2087.55%2046.36C88.09%2046.68%2088.27%2047.38%2087.96%2047.93L80.34%2061.42C80.03%2061.96%2079.33%2062.15%2078.79%2061.82L76.56%2060.47C76.02%2060.15%2075.84%2059.46%2076.15%2058.91L83.68%2045.41C84%2044.86%2084.69%2044.67%2085.23%2044.99ZM120.27%2044.58%20127.85%2058.07C128.16%2058.63%20127.97%2059.33%20127.43%2059.65L125.17%2060.96C124.63%2061.27%20123.94%2061.08%20123.63%2060.53L115.99%2047.1C115.68%2046.55%20115.86%2045.85%20116.4%2045.53L118.73%2044.15C119.27%2043.84%20119.96%2044.03%20120.27%2044.58Z%22%20id%3D%22Path%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-boost-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2011%2018%22%20width%3D%2211%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5.84.14-5.74%206.53c-.15.17-.13.43.04.58.07.07.17.1.27.1h2.14c.23%200%20.41.19.41.41%200%20.03%200%20.05-.01.07l-.83%204.94c-.04.22.11.43.34.47.14.03.28-.03.38-.14l5.75-6.71c.15-.17.13-.43-.04-.58-.08-.06-.17-.1-.27-.1h-2.02c-.23%200-.41-.18-.41-.41%200-.02%200-.04%200-.06l.71-4.77c.03-.22-.13-.43-.35-.47-.14-.02-.28.04-.37.14z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate%281.1555%202.3794%29%22%2F%3E%3C%2Fsvg%3E');
    --image-url-app-more-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2226%22%20viewBox%3D%220%200%2026%2026%22%20width%3D%2226%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20opacity%3D%22.07%22%20r%3D%2213%22%2F%3E%3Cg%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2213%22%20r%3D%221.67%22%2F%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%221.67%22%2F%3E%3Ccircle%20cx%3D%2219%22%20cy%3D%2213%22%20r%3D%221.67%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-options-more-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m4.5%208.2%205.1%205.1c.2.2.5.2.7%200l5.2-5.1%22%20fill%3D%22none%22%20stroke%3D%22%234db2ff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.8%22%2F%3E%3C%2Fsvg%3E');
    --image-url-setting-go-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m7%204.5%204.43%204.4c.04.04.04.1%200%20.14l-4.43%204.46%22%20fill%3D%22none%22%20stroke%3D%22%238c9aa9%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%3C%2Fsvg%3E');
    --image-url-header-back-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m11.7%2020-6.6-6.9c-.1%200-.1-.2%200-.2l6.6-6.9m-6.7%207h14%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222.7%22%2F%3E%3C%2Fsvg%3E');
    --image-url-header-close-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m6%2012%206-6m0%206-6-6%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
    --image-url-filter-list-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20fill%3D%22%23838f9c%22%3E%3Ccircle%20cx%3D%222.2%22%20cy%3D%224%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%222.2%22%20cy%3D%229%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%222.2%22%20cy%3D%2214%22%20r%3D%221.2%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m6%204h11m-11%205h11m-11%205h11%22%20stroke%3D%22%23838f9c%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-filter-list-selected-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%222.2%22%20cy%3D%224%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%222.2%22%20cy%3D%229%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%222.2%22%20cy%3D%2214%22%20r%3D%221.2%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m6%204h11m-11%205h11m-11%205h11%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-filter-grid-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23838f9c%22%20stroke-width%3D%221.6%22%3E%3Crect%20height%3D%2214.4%22%20rx%3D%224.2%22%20width%3D%2214.4%22%20x%3D%221.8%22%20y%3D%221.8%22%2F%3E%3Cpath%20d%3D%22m9%201.8v14.4m-7.2-7.2h14.4%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-filter-grid-selected-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6%22%3E%3Crect%20height%3D%2214.4%22%20rx%3D%224.2%22%20width%3D%2214.4%22%20x%3D%221.8%22%20y%3D%221.8%22%2F%3E%3Cpath%20d%3D%22m9%201.8v14.4m-7.2-7.2h14.4%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-sort-desc-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22m2%207.02%202.94-2.96c.04-.03.09-.03.13%200l3%202.96m-3.04-2.47v8.76%22%20stroke%3D%22%23838f9c%22%2F%3E%3Cpath%20d%3D%22m9.93%2010.98%202.94%202.96c.04.03.09.03.13%200l3-2.96m-3.04%202.47v-8.76%22%20stroke%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-sort-asc-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22m2%207.02%202.94-2.96c.04-.03.09-.03.13%200l3%202.96m-3.04-2.47v8.76%22%20stroke%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22m9.93%2010.98%202.94%202.96c.04.03.09.03.13%200l3-2.96m-3.04%202.47v-8.76%22%20stroke%3D%22%23838f9c%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-sort-active-icon: url('data:image/svg+xml,%3Csvg%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22m2%207.02%202.94-2.96c.04-.03.09-.03.13%200l3%202.96m-3.04-2.47v8.76%22%20stroke%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22m9.93%2010.98%202.94%202.96c.04.03.09.03.13%200l3-2.96m-3.04%202.47v-8.76%22%20stroke%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    --image-url-hide-icon: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%3E%3Cmask%20id%3D%22a%22%3E%3Cpath%20d%3D%22m22%202v20h-20v-20zm-16.04%201.6c-.65-.65-1.71-.65-2.36%200s-.65%201.71%200%202.36l14.44%2014.44c.65.65%201.71.65%202.36%200s.65-1.71%200-2.36z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fmask%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%234db2ff%22%20stroke-width%3D%221.2%22%3E%3Cpath%20d%3D%22m4.78%204.78%2014.44%2014.44%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22m12%205.38c2.2%200%204.28.89%205.87%202.11%201.76%201.34%202.97%203.1%202.97%204.51s-1.21%203.17-2.97%204.51c-1.59%201.22-3.67%202.11-5.87%202.11s-4.28-.89-5.87-2.11c-1.76-1.34-2.97-3.1-2.97-4.51s1.21-3.17%202.97-4.51c1.59-1.22%203.67-2.11%205.87-2.11z%22%20mask%3D%22url%28%23a%29%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20mask%3D%22url%28%23a%29%22%20r%3D%223.06%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}