@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;
  --text-primary: #ffffff;
  --dropdown-bg-hover-color: #384553;
  --dropdown-secondary-color: #8c9aa9;
  --article-color: #fff;
  --dropdown-color: #fff;
  --header-color: #fff;
  --field-color: #fff;
  --button-hover: #0076c8;
  --card-bg: #2a2e39;
  --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-color: #6d8394;
  --footer-bg-color: #202530;
  --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: #141414;
  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;
}
.info-h {
  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);
}
.input-ch {
  margin: 0 0 10px 0;
}
.btn-add-channel {
  color: #c9c9c9;
  width:100%;
  background-color: #2b343d;
  border: 1px solid #1f2429;
}
.btn-add-channel:hover,
.btn-add-channel:focus,
.btn-add-channel:active {
  color: var(--btn-primary-color);
  background-color: var(--btn-primary-bg-hover-color);
}


.user-lh {
  color: #c9c9c9;
  width:100%;
  border: 1px solid #1f2429;
}

.channel {
  background: #51616e;
  border: 1px solid #32373d;
  box-sizing: border-box;
  display: inline-block;
}
.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;
}

.loader {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #3390ec;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.tm-soon {

}

.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;
  color: white;
}

.form-control-wrap {
  display: flex;
  border-radius: var(--def-border-radius);
  background: var(--field-bg-color);
  position: relative;
}
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.tm-main-search-form .tm-search-input,
.tm-main-search-form .tm-search-prefix {
  padding: 12px 22px 12px 28px;
}


.container {
    max-width: 480px;
    margin: 40px auto;
    border-radius: 18px;
    padding: 24px;
}

h2.js-order-id {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section {
    padding-top: 20px;
    margin-top: 16px;
}

.section p,
.section span {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.section h3,
.section div,
.section .value {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    word-break: break-word;
}

.section .pair {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.section .pair span:first-child {
    min-width: 110px;
    font-size: 14px;
    color: #ffffff;
}

.section .pair span:last-child {
    font-weight: 500;
    color: #ffffff;
    font-size: 15px;
}

a.js-transaction-hash {
    display: inline-block;
    color: #2d7ff9;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px;
    text-decoration: none;
}

a.js-transaction-hash:hover {
    text-decoration: underline;
}

.button-wrapper {
    text-align: center;
    margin-top: 24px;
}

button.back-btn {
    background: #2d7ff9;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

button.back-btn:hover {
    background: #1f5bcc;
}




.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);
}
.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 {
  display: flex;
  align-items: center;
  width: 70px;
}
.tm-stars-price .tm-value.icon-ton:before,
.tm-form-radio-label .tm-value.icon-ton:before {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: -1px;
  margin-right: 4px;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.tm-val {
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:23px;
}
.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);
}
.login-popup-container .form-control {
  max-width: 280px;
}

.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: #1b1b1b;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  height: var(--header-height);
  align-items: center;
}
.tm-logo {
  display: inline-flex;
}


.tm-logo-icon {
  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('/static/logo-f.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-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;
}
.icon-telegram-stars-giveaway {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background-image: var(--image-url-stars-icon);
}
.icon-telegram-premium-giveaway {
  margin-left: 4px;
  width: 18px;
  height: 18px;
}

.icon-telegram-stars-attr {
  margin-right: 4px;
  width: 16px;
  height: 16px;
  background-image: var(--image-url-stars-icon);
}
.icon-telegram-premium-attr {
  margin-right: 4px;
  width: 18px;
  height: 18px;
}

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.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;
  position: relative;
  top:-2px;
  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: var(--accent-bg-color);
  margin-left: 4px;
  border-radius: 9px;
  display: inline-block;
  vertical-align: top;
}
.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);
}
.tm-coin-field > .form-control {
  padding-left: 46px;
}

@media (max-width: 991px) {
  .tm-header-actions-wide {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .tm-header-actions-thin {
    display: none !important;
  }
  .tm-main-premium .tm-main-search-form .tm-coin-field > .form-control {
    padding-left: 52px;
  }
}
@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);
  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%;
}
.prize-input {
  height: auto;
  font-size: 15px;
  line-height: 20px;
  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);
}
.tm-header-search-form {
  max-width: 164px;
  margin: 10px 0 10px auto;
}
.tm-field {
  border-radius: var(--def-border-radius);
  border: 1px solid gray;
  position: relative;
  display: flex;
  align-items: center;
}
.tm-field-pr {
  border-radius: var(--def-border-radius);
  position: relative;
  display: flex;
  align-items: center;
}
.tm-field-g {
  border-radius: var(--def-border-radius);
  background: var(--field-bg-color);
  position: relative;
  display: flex;
  align-items: center;
}
.tm-field-ch {
  border-radius: var(--def-border-radius);
  background: var(--field-bg-color);
  width: 50%;
  margin: 0 0 0 1px;
}
.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 {
  margin: 12px 15px 12px 19px;
}
.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-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 {
  padding: 12px 42px 12px 48px;
}

.tm-search-input-ch, {
  padding: 12px 22px 12px 28px;
}

.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);
}

.list-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  background-color: var(--dropdown-bg-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.list-menu.show {
  max-height: 350px;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
}
.list-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  width: 100%;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.list-menu button:hover {background-color: var(--button-hover);}

.list-menu-giveaway {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  background-color: var(--dropdown-bg-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.list-menu-giveaway.show {
  max-height: 350px;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
}
.list-menu-giveaway button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  width: 100%;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.list-menu-giveaway button:hover {background-color: var(--button-hover);}

.list-menu-giveaway-datetime {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  margin-bottom: 10px;
  background-color: var(--dropdown-bg-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px); /* снизу вверх */
  transition: all 0.3s ease;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.list-menu-giveaway-datetime.show {
  max-height: 350px;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
}
.list-menu-giveaway-datetime button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  width: 100%;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.list-menu-giveaway-datetime button:hover {background-color: var(--button-hover);}

.list-menu-premium {
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 0;
  max-height: 350px;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
}
.list-menu-premium button:hover {background-color: var(--button-hover);}

.js-duration {
  background: var(--field-bg-color);
  margin: 0px 0px 10px 0px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 10px;
  padding: 14px 16px;
  width: 100%;
  border: none;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.js-stars-buy-btn disabled {
  background: black;
}

.tm-search-loading {
  visibility: hidden;
  opacity: 0;
}
.tm-search-clear {
  border-radius: var(--def-border-radius);
  cursor: pointer;
}
i-s {
  width: 14px;
  height: 20px;
  background-image: var(--image-url-search);
}
.icon-search:before {
  width: 14px;
  height: 20px;
  background-image: var(--image-url-search);
}
.tm-main-search-form .icon-search:before {
  width: 15px;
  height: 18px;
  background-image: var(--image-url-main-search);
}
.tm-main-search-form .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-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 {
  font-size: 14px;
  line-height: 20px;
  padding: 22px 15px;
  text-align: center;
  border-radius: var(--def-border-radius);
  background-color: var(--table-bg-color);
  color: var(--table-text-color);
}

.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.noselect: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 {
  font-size: 11px;
}
.tm-table .table-cell-oneline .table-cell-desc {
  font-size: 13px;
  margin-left: 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-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: 8px;
}
.tm-table-button,
.tm-table-action-link,
.tm-dropdown .dropdown-toggle.tm-table-button {
  font-size: 12px;
  line-height: 16px;
  padding: 6px 10px;
}
.dropdown-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.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 14px;
  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-photo {
  display: inline-block;
  vertical-align: top;
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: #677a8c;
  text-align: center;
  overflow: hidden;
  position: relative;
  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-list {
  transition: var(--def-transition) opacity, var(--def-transition) visibility, var(--def-transition) height;
  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-list {
  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;
}

.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;
}
.center-vert {
  position: absolute;
  top: 50%;
  left: 50%;
}
.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;
  color: white;
}
.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;
}
.preview-sticker {
  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-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 {
  font-size: 14px;
  text-align: center;
  color: var(--dropdown-secondary-color);
}
.tm-half {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.tm-search-rbox,
.tm-premium-boost-label.tm-search-rlabel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.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;
  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;
}

.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: 418px) {
  .wide-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .thin-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
    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-header-button {
    font-size: 15px;
  }
  .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-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 {
    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 {
    width: 22px;
    height: 22px;
  }
  .tm-main-premium .tm-main-search-form .icon-search:before {
    width: 17px;
    height: 20px;
    margin: 14px 16px 16px 20px;
  }
  .tm-main-premium .tm-main-search-form .tm-input {
    font-size: 15px;
    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 .form-control-wrap.tm-coin-field:before {
    width: 20px;
    height: 20px;
    margin: 14px 16px 14px 17px;
  }
  .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;
  }
  .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-main-premium .tm-main-search-form .tm-search-loading,
  .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 {
    padding: 30px 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 {
    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: 72px;
  }
  .tm-table tbody .table-cell.table-cell-thumbed {
    padding-left: 46px;
  }
  .tm-table .tm-high-cells .table-cell.table-cell-thumbed {
    padding-left: 81px;
  }
  .tm-table .tm-high-cells .tm-cell-thumb {
    width: 58px;
    margin: 7px 8px;
    border-radius: 4px;
  }
  .tm-table .tm-high-cells .table-cell.table-cell-thumbed .table-cell-desc {
    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 {
    margin-left: 16px;
  }
  .tm-table-action-link + .tm-table-action-link {
    margin-left: 5px;
  }
  .tm-table-button,
  .tm-table-action-link {
    font-size: 13px;
    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;
  }
  .list-menu li {
    font-size: 15px;
  }
  .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;
  }
}


@media (max-width: 480px) {
  .list-menu li {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .list-menu li {
    font-size: 14px;
  }
}


:root {
  --image-url-logo-icon: url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%20%3F%3E%3Csvg%20baseProfile%3D%22tiny%22%20height%3D%221024px%22%20version%3D%221.2%22%20width%3D%221024px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%20%2F%3E%3Cpolygon%20fill%3D%22white%22%20points%3D%22665.5%2C782.0%20666.0%2C781.5%20666.5%2C781.0%20667.0%2C780.5%20667.5%2C780.0%20668.0%2C779.5%20668.5%2C779.0%20668.5%2C778.0%20669.0%2C777.5%20669.5%2C777.0%20669.5%2C776.0%20670.0%2C775.5%20670.5%2C775.0%20670.5%2C774.0%20671.0%2C773.5%20671.5%2C773.0%20672.0%2C772.5%20672.5%2C772.0%20672.5%2C771.0%20673.0%2C770.5%20673.5%2C770.0%20674.0%2C769.5%20674.5%2C769.0%20674.5%2C768.0%20675.0%2C767.5%20675.5%2C767.0%20675.5%2C766.0%20676.0%2C765.5%20676.5%2C765.0%20676.5%2C764.0%20677.0%2C763.5%20677.5%2C763.0%20678.0%2C762.5%20678.5%2C762.0%20678.5%2C761.0%20679.0%2C760.5%20679.5%2C760.0%20680.0%2C759.5%20680.5%2C759.0%20680.5%2C758.0%20681.0%2C757.5%20681.5%2C757.0%20681.5%2C756.0%20682.0%2C755.5%20682.5%2C755.0%20682.5%2C754.0%20683.0%2C753.5%20683.5%2C753.0%20684.0%2C752.5%20684.5%2C752.0%20684.5%2C751.0%20685.0%2C750.5%20685.5%2C750.0%20685.5%2C749.0%20686.0%2C748.5%20686.5%2C748.0%20687.0%2C747.5%20687.5%2C747.0%20687.5%2C746.0%20688.0%2C745.5%20688.5%2C745.0%20689.0%2C744.5%20689.5%2C744.0%20689.5%2C743.0%20690.0%2C742.5%20690.5%2C742.0%20690.5%2C741.0%20691.0%2C740.5%20691.5%2C740.0%20691.5%2C739.0%20692.0%2C738.5%20692.5%2C738.0%20693.0%2C737.5%20693.5%2C737.0%20693.5%2C736.0%20694.0%2C735.5%20694.5%2C735.0%20694.5%2C734.0%20695.0%2C733.5%20695.5%2C733.0%20696.0%2C732.5%20696.5%2C732.0%20696.5%2C731.0%20697.0%2C730.5%20697.5%2C730.0%20697.5%2C729.0%20698.0%2C728.5%20698.5%2C728.0%20699.0%2C727.5%20699.5%2C727.0%20699.5%2C726.0%20700.0%2C725.5%20700.5%2C725.0%20700.5%2C724.0%20701.0%2C723.5%20701.5%2C723.0%20702.0%2C722.5%20702.5%2C722.0%20702.5%2C721.0%20703.0%2C720.5%20703.5%2C720.0%20704.0%2C719.5%20704.5%2C719.0%20704.5%2C718.0%20705.0%2C717.5%20705.5%2C717.0%20705.5%2C716.0%20706.0%2C715.5%20706.5%2C715.0%20707.0%2C714.5%20707.5%2C714.0%20707.5%2C713.0%20708.0%2C712.5%20708.5%2C712.0%20708.5%2C711.0%20709.0%2C710.5%20709.5%2C710.0%20710.0%2C709.5%20710.5%2C709.0%20710.5%2C708.0%20711.0%2C707.5%20711.5%2C707.0%20711.5%2C706.0%20712.0%2C705.5%20712.5%2C705.0%20712.5%2C704.0%20713.0%2C703.5%20713.5%2C703.0%20714.0%2C702.5%20714.5%2C702.0%20714.5%2C701.0%20715.0%2C700.5%20715.5%2C700.0%20716.0%2C699.5%20716.5%2C699.0%20716.5%2C698.0%20717.0%2C697.5%20717.5%2C697.0%20717.5%2C696.0%20718.0%2C695.5%20718.5%2C695.0%20718.5%2C694.0%20719.0%2C693.5%20719.5%2C693.0%20720.0%2C692.5%20720.5%2C692.0%20720.5%2C691.0%20721.0%2C690.5%20721.5%2C690.0%20721.5%2C689.0%20722.0%2C688.5%20722.5%2C688.0%20723.0%2C687.5%20723.5%2C687.0%20723.5%2C686.0%20724.0%2C685.5%20724.5%2C685.0%20725.0%2C684.5%20725.5%2C684.0%20725.5%2C683.0%20726.0%2C682.5%20726.5%2C682.0%20727.0%2C681.5%20727.5%2C681.0%20727.5%2C680.0%20728.0%2C679.5%20728.5%2C679.0%20729.0%2C678.5%20729.5%2C678.0%20729.5%2C677.0%20730.0%2C676.5%20730.5%2C676.0%20730.5%2C675.0%20731.0%2C674.5%20731.5%2C674.0%20731.5%2C673.0%20732.0%2C672.5%20732.5%2C672.0%20733.0%2C671.5%20733.5%2C671.0%20733.5%2C670.0%20734.0%2C669.5%20734.5%2C669.0%20734.5%2C668.0%20735.0%2C667.5%20735.5%2C667.0%20736.0%2C666.5%20736.5%2C666.0%20736.5%2C665.0%20737.0%2C664.5%20737.5%2C664.0%20737.5%2C663.0%20738.0%2C662.5%20738.5%2C662.0%20738.5%2C661.0%20739.0%2C660.5%20739.5%2C660.0%20740.0%2C659.5%20740.5%2C659.0%20740.5%2C658.0%20741.0%2C657.5%20741.5%2C657.0%20741.5%2C656.0%20742.0%2C655.5%20742.5%2C655.0%20743.0%2C654.5%20743.5%2C654.0%20743.5%2C653.0%20744.0%2C652.5%20744.5%2C652.0%20744.5%2C651.0%20745.0%2C650.5%20745.5%2C650.0%20746.0%2C649.5%20746.5%2C649.0%20746.5%2C648.0%20747.0%2C647.5%20747.5%2C647.0%20748.0%2C646.5%20748.5%2C646.0%20748.5%2C645.0%20749.0%2C644.5%20749.5%2C644.0%20749.5%2C643.0%20750.0%2C642.5%20750.5%2C642.0%20751.0%2C641.5%20751.5%2C641.0%20751.5%2C640.0%20752.0%2C639.5%20752.5%2C639.0%20752.5%2C638.0%20753.0%2C637.5%20753.5%2C637.0%20753.5%2C636.0%20754.0%2C635.5%20754.5%2C635.0%20755.0%2C634.5%20755.5%2C634.0%20755.5%2C633.0%20756.0%2C632.5%20756.5%2C632.0%20756.5%2C631.0%20757.0%2C630.5%20757.5%2C630.0%20758.0%2C629.5%20758.5%2C629.0%20758.5%2C628.0%20759.0%2C627.5%20759.5%2C627.0%20759.5%2C626.0%20760.0%2C625.5%20760.5%2C625.0%20761.0%2C624.5%20761.5%2C624.0%20761.5%2C623.0%20762.0%2C622.5%20762.5%2C622.0%20762.5%2C621.0%20763.0%2C620.5%20763.5%2C620.0%20764.0%2C619.5%20764.5%2C619.0%20764.5%2C618.0%20765.0%2C617.5%20765.5%2C617.0%20765.5%2C616.0%20766.0%2C615.5%20766.5%2C615.0%20767.0%2C614.5%20767.5%2C614.0%20767.5%2C613.0%20768.0%2C612.5%20768.5%2C612.0%20768.5%2C611.0%20769.0%2C610.5%20769.5%2C610.0%20770.0%2C609.5%20770.5%2C609.0%20770.5%2C608.0%20771.0%2C607.5%20771.5%2C607.0%20771.5%2C606.0%20772.0%2C605.5%20772.5%2C605.0%20773.0%2C604.5%20773.5%2C604.0%20773.5%2C603.0%20774.0%2C602.5%20774.5%2C602.0%20774.5%2C601.0%20775.0%2C600.5%20775.5%2C600.0%20775.5%2C599.0%20776.0%2C598.5%20776.5%2C598.0%20777.0%2C597.5%20777.5%2C597.0%20777.5%2C596.0%20778.0%2C595.5%20778.5%2C595.0%20778.5%2C594.0%20779.0%2C593.5%20779.5%2C593.0%20779.5%2C592.0%20780.0%2C591.5%20780.5%2C591.0%20781.0%2C590.5%20781.5%2C590.0%20781.5%2C589.0%20782.0%2C588.5%20782.5%2C588.0%20782.5%2C587.0%20783.0%2C586.5%20783.5%2C586.0%20784.0%2C585.5%20784.5%2C585.0%20784.5%2C584.0%20785.0%2C583.5%20785.5%2C583.0%20786.0%2C582.5%20786.5%2C582.0%20786.5%2C581.0%20787.0%2C580.5%20787.5%2C580.0%20787.5%2C579.0%20788.0%2C578.5%20788.5%2C578.0%20789.0%2C577.5%20789.5%2C577.0%20789.5%2C576.0%20790.0%2C575.5%20790.5%2C575.0%20790.5%2C574.0%20791.0%2C573.5%20791.5%2C573.0%20792.0%2C572.5%20792.5%2C572.0%20792.5%2C571.0%20793.0%2C570.5%20793.5%2C570.0%20793.5%2C569.0%20794.0%2C568.5%20794.5%2C568.0%20795.0%2C567.5%20795.5%2C567.0%20795.5%2C566.0%20796.0%2C565.5%20796.5%2C565.0%20796.5%2C564.0%20797.0%2C563.5%20797.5%2C563.0%20798.0%2C562.5%20798.5%2C562.0%20798.5%2C561.0%20799.0%2C560.5%20799.5%2C560.0%20799.5%2C559.0%20800.0%2C558.5%20800.5%2C558.0%20801.0%2C557.5%20801.5%2C557.0%20801.5%2C556.0%20802.0%2C555.5%20802.5%2C555.0%20802.5%2C554.0%20803.0%2C553.5%20803.5%2C553.0%20803.5%2C552.0%20804.0%2C551.5%20804.5%2C551.0%20805.0%2C550.5%20805.5%2C550.0%20805.5%2C549.0%20806.0%2C548.5%20806.5%2C548.0%20806.5%2C547.0%20807.0%2C546.5%20807.5%2C546.0%20808.0%2C545.5%20808.5%2C545.0%20808.5%2C544.0%20809.0%2C543.5%20809.5%2C543.0%20809.5%2C542.0%20810.0%2C541.5%20810.5%2C541.0%20811.0%2C540.5%20811.5%2C540.0%20811.5%2C539.0%20812.0%2C538.5%20812.5%2C538.0%20812.5%2C537.0%20813.0%2C536.5%20813.5%2C536.0%20813.5%2C535.0%20814.0%2C534.5%20814.5%2C534.0%20815.0%2C533.5%20815.5%2C533.0%20815.5%2C532.0%20816.0%2C531.5%20816.5%2C531.0%20816.5%2C530.0%20817.0%2C529.5%20817.5%2C529.0%20818.0%2C528.5%20818.5%2C528.0%20818.5%2C527.0%20819.0%2C526.5%20819.5%2C526.0%20820.0%2C525.5%20820.5%2C525.0%20820.5%2C524.0%20820.0%2C523.5%20819.5%2C523.0%20819.0%2C522.5%20818.5%2C522.0%20818.5%2C521.0%20818.0%2C520.5%20817.5%2C520.0%20817.5%2C519.0%20817.0%2C518.5%20816.5%2C518.0%20816.5%2C517.0%20816.0%2C516.5%20815.5%2C516.0%20815.0%2C515.5%20814.5%2C515.0%20814.5%2C514.0%20814.0%2C513.5%20813.5%2C513.0%20813.0%2C512.5%20812.5%2C512.0%20812.5%2C511.0%20812.0%2C510.5%20811.5%2C510.0%20811.0%2C509.5%20810.5%2C509.0%20810.5%2C508.0%20810.0%2C507.5%20809.5%2C507.0%20809.5%2C506.0%20809.0%2C505.5%20808.5%2C505.0%20808.5%2C504.0%20808.0%2C503.5%20807.5%2C503.0%20807.0%2C502.5%20806.5%2C502.0%20806.5%2C501.0%20806.0%2C500.5%20805.5%2C500.0%20805.5%2C499.0%20805.0%2C498.5%20804.5%2C498.0%20804.5%2C497.0%20804.0%2C496.5%20803.5%2C496.0%20803.5%2C495.0%20803.0%2C494.5%20802.5%2C494.0%20802.0%2C493.5%20801.5%2C493.0%20801.5%2C492.0%20801.0%2C491.5%20800.5%2C491.0%20800.5%2C490.0%20800.0%2C489.5%20799.5%2C489.0%20799.0%2C488.5%20798.5%2C488.0%20798.5%2C487.0%20798.0%2C486.5%20797.5%2C486.0%20797.0%2C485.5%20796.5%2C485.0%20796.5%2C484.0%20796.0%2C483.5%20795.5%2C483.0%20795.5%2C482.0%20795.0%2C481.5%20794.5%2C481.0%20794.0%2C480.5%20793.5%2C480.0%20793.5%2C479.0%20793.0%2C478.5%20792.5%2C478.0%20792.5%2C477.0%20792.0%2C476.5%20791.5%2C476.0%20791.0%2C475.5%20790.5%2C475.0%20790.5%2C474.0%20790.0%2C473.5%20789.5%2C473.0%20789.5%2C472.0%20789.0%2C471.5%20788.5%2C471.0%20788.0%2C470.5%20787.5%2C470.0%20787.5%2C469.0%20787.0%2C468.5%20786.5%2C468.0%20786.0%2C467.5%20785.5%2C467.0%20785.5%2C466.0%20785.0%2C465.5%20784.5%2C465.0%20784.5%2C464.0%20784.0%2C463.5%20783.5%2C463.0%20783.0%2C462.5%20782.5%2C462.0%20782.5%2C461.0%20782.0%2C460.5%20781.5%2C460.0%20781.0%2C459.5%20780.5%2C459.0%20780.5%2C458.0%20780.0%2C457.5%20779.5%2C457.0%20779.5%2C456.0%20779.0%2C455.5%20778.5%2C455.0%20778.0%2C454.5%20777.5%2C454.0%20777.5%2C453.0%20777.0%2C452.5%20776.5%2C452.0%20776.5%2C451.0%20776.0%2C450.5%20775.5%2C450.0%20775.0%2C449.5%20774.5%2C449.0%20774.5%2C448.0%20774.0%2C447.5%20773.5%2C447.0%20773.5%2C446.0%20773.0%2C445.5%20772.5%2C445.0%20772.0%2C444.5%20771.5%2C444.0%20771.5%2C443.0%20771.0%2C442.5%20770.5%2C442.0%20770.5%2C441.0%20770.0%2C440.5%20769.5%2C440.0%20769.5%2C439.0%20769.0%2C438.5%20768.5%2C438.0%20768.0%2C437.5%20767.5%2C437.0%20767.5%2C436.0%20767.0%2C435.5%20766.5%2C435.0%20766.5%2C434.0%20766.0%2C433.5%20765.5%2C433.0%20765.0%2C432.5%20764.5%2C432.0%20764.5%2C431.0%20764.0%2C430.5%20763.5%2C430.0%20763.0%2C429.5%20762.5%2C429.0%20762.5%2C428.0%20762.0%2C427.5%20761.5%2C427.0%20761.0%2C426.5%20760.5%2C426.0%20760.5%2C425.0%20760.0%2C424.5%20759.5%2C424.0%20759.5%2C423.0%20759.0%2C422.5%20758.5%2C422.0%20758.5%2C421.0%20758.0%2C420.5%20757.5%2C420.0%20757.0%2C419.5%20756.5%2C419.0%20756.5%2C418.0%20756.0%2C417.5%20755.5%2C417.0%20755.5%2C416.0%20755.0%2C415.5%20754.5%2C415.0%20754.0%2C414.5%20753.5%2C414.0%20753.5%2C413.0%20753.0%2C412.5%20752.5%2C412.0%20752.5%2C411.0%20752.0%2C410.5%20751.5%2C410.0%20751.0%2C409.5%20750.5%2C409.0%20750.5%2C408.0%20750.0%2C407.5%20749.5%2C407.0%20749.5%2C406.0%20749.0%2C405.5%20748.5%2C405.0%20748.0%2C404.5%20747.5%2C404.0%20747.5%2C403.0%20747.0%2C402.5%20746.5%2C402.0%20746.5%2C401.0%20746.0%2C400.5%20745.5%2C400.0%20745.0%2C399.5%20744.5%2C399.0%20744.5%2C398.0%20744.0%2C397.5%20743.5%2C397.0%20743.0%2C396.5%20742.5%2C396.0%20742.5%2C395.0%20742.0%2C394.5%20741.5%2C394.0%20741.5%2C393.0%20741.0%2C392.5%20740.5%2C392.0%20740.5%2C391.0%20740.0%2C390.5%20739.5%2C390.0%20739.0%2C389.5%20738.5%2C389.0%20738.5%2C388.0%20738.0%2C387.5%20737.5%2C387.0%20737.0%2C386.5%20736.5%2C386.0%20736.5%2C385.0%20736.0%2C384.5%20735.5%2C384.0%20735.5%2C383.0%20735.0%2C382.5%20734.5%2C382.0%20734.5%2C381.0%20734.0%2C380.5%20733.5%2C380.0%20733.0%2C379.5%20732.5%2C379.0%20732.5%2C378.0%20732.0%2C377.5%20731.5%2C377.0%20731.0%2C376.5%20730.5%2C376.0%20730.5%2C375.0%20730.0%2C374.5%20729.5%2C374.0%20729.5%2C373.0%20729.0%2C372.5%20728.5%2C372.0%20728.0%2C371.5%20727.5%2C371.0%20727.5%2C370.0%20727.0%2C369.5%20726.5%2C369.0%20726.5%2C368.0%20726.0%2C367.5%20725.5%2C367.0%20725.0%2C366.5%20724.5%2C366.0%20724.5%2C365.0%20724.0%2C364.5%20723.5%2C364.0%20723.0%2C363.5%20722.0%2C363.5%20721.0%2C363.5%20720.0%2C363.5%20719.0%2C363.5%20718.0%2C363.5%20717.0%2C363.5%20716.0%2C363.5%20715.0%2C363.5%20714.0%2C363.5%20713.0%2C363.5%20712.0%2C363.5%20711.0%2C363.5%20710.0%2C363.5%20709.0%2C363.5%20708.0%2C363.5%20707.0%2C363.5%20706.0%2C363.5%20705.0%2C363.5%20704.0%2C363.5%20703.0%2C363.5%20702.0%2C363.5%20701.0%2C363.5%20700.0%2C363.5%20699.0%2C363.5%20698.0%2C363.5%20697.0%2C363.5%20696.0%2C363.5%20695.0%2C363.5%20694.0%2C363.5%20693.0%2C363.5%20692.0%2C363.5%20691.0%2C363.5%20690.0%2C363.5%20689.0%2C363.5%20688.0%2C363.5%20687.0%2C363.5%20686.0%2C363.5%20685.0%2C363.5%20684.0%2C363.5%20683.0%2C363.5%20682.0%2C363.5%20681.0%2C363.5%20680.0%2C363.5%20679.0%2C363.5%20678.0%2C363.5%20677.0%2C363.5%20676.0%2C363.5%20675.0%2C363.5%20674.0%2C363.5%20673.0%2C363.5%20672.0%2C363.5%20671.0%2C363.5%20670.0%2C363.5%20669.0%2C363.5%20668.0%2C363.5%20667.0%2C363.5%20666.0%2C363.5%20665.0%2C363.5%20664.0%2C363.5%20663.0%2C363.5%20662.0%2C363.5%20661.0%2C363.5%20660.0%2C363.5%20659.0%2C363.5%20658.0%2C363.5%20657.0%2C363.5%20656.0%2C363.5%20655.0%2C363.5%20654.0%2C363.5%20653.0%2C363.5%20652.0%2C363.5%20651.0%2C363.5%20650.0%2C363.5%20649.0%2C363.5%20648.0%2C363.5%20647.0%2C363.5%20646.0%2C363.5%20645.0%2C363.5%20644.0%2C363.5%20643.0%2C363.5%20642.0%2C363.5%20641.0%2C363.5%20640.0%2C363.5%20639.0%2C363.5%20638.0%2C363.5%20637.0%2C363.5%20636.0%2C363.5%20635.0%2C363.5%20634.0%2C363.5%20633.0%2C363.5%20632.0%2C363.5%20631.0%2C363.5%20630.0%2C363.5%20629.0%2C363.5%20628.0%2C363.5%20627.0%2C363.5%20626.0%2C363.5%20625.0%2C363.5%20624.0%2C363.5%20623.0%2C363.5%20622.0%2C363.5%20621.0%2C363.5%20620.0%2C363.5%20619.0%2C363.5%20618.0%2C363.5%20617.0%2C363.5%20616.0%2C363.5%20615.0%2C363.5%20614.0%2C363.5%20613.0%2C363.5%20612.0%2C363.5%20611.0%2C363.5%20610.0%2C363.5%20609.0%2C363.5%20608.0%2C363.5%20607.0%2C363.5%20606.0%2C363.5%20605.0%2C363.5%20604.0%2C363.5%20603.0%2C363.5%20602.0%2C363.5%20601.0%2C363.5%20600.0%2C363.5%20599.0%2C363.5%20598.0%2C363.5%20597.0%2C363.5%20596.0%2C363.5%20595.0%2C363.5%20594.0%2C363.5%20593.0%2C363.5%20592.0%2C363.5%20591.0%2C363.5%20590.0%2C363.5%20589.0%2C363.5%20588.0%2C363.5%20587.0%2C363.5%20586.0%2C363.5%20585.0%2C363.5%20584.0%2C363.5%20583.0%2C363.5%20582.0%2C363.5%20581.5%2C364.0%20581.0%2C364.5%20580.5%2C365.0%20580.5%2C366.0%20580.0%2C366.5%20579.5%2C367.0%20579.5%2C368.0%20579.0%2C368.5%20578.5%2C369.0%20578.0%2C369.5%20577.5%2C370.0%20577.5%2C371.0%20577.0%2C371.5%20576.5%2C372.0%20576.5%2C373.0%20576.0%2C373.5%20575.5%2C374.0%20575.0%2C374.5%20574.5%2C375.0%20574.5%2C376.0%20574.0%2C376.5%20573.5%2C377.0%20573.5%2C378.0%20573.0%2C378.5%20572.5%2C379.0%20572.0%2C379.5%20571.5%2C380.0%20571.5%2C381.0%20571.0%2C381.5%20570.5%2C382.0%20570.0%2C382.5%20569.5%2C383.0%20569.5%2C384.0%20569.0%2C384.5%20568.5%2C385.0%20568.5%2C386.0%20568.0%2C386.5%20567.5%2C387.0%20567.5%2C388.0%20567.0%2C388.5%20566.5%2C389.0%20566.0%2C389.5%20565.5%2C390.0%20565.5%2C391.0%20565.0%2C391.5%20564.5%2C392.0%20564.5%2C393.0%20564.0%2C393.5%20563.5%2C394.0%20563.0%2C394.5%20562.5%2C395.0%20562.5%2C396.0%20562.0%2C396.5%20561.5%2C397.0%20561.5%2C398.0%20561.0%2C398.5%20560.5%2C399.0%20560.0%2C399.5%20559.5%2C400.0%20559.5%2C401.0%20559.0%2C401.5%20558.5%2C402.0%20558.0%2C402.5%20557.5%2C403.0%20557.5%2C404.0%20557.0%2C404.5%20556.5%2C405.0%20556.5%2C406.0%20556.0%2C406.5%20555.5%2C407.0%20555.0%2C407.5%20554.5%2C408.0%20554.5%2C409.0%20554.0%2C409.5%20553.5%2C410.0%20553.5%2C411.0%20553.0%2C411.5%20552.5%2C412.0%20552.0%2C412.5%20551.5%2C413.0%20551.5%2C414.0%20551.0%2C414.5%20550.5%2C415.0%20550.5%2C416.0%20550.0%2C416.5%20549.5%2C417.0%20549.0%2C417.5%20548.5%2C418.0%20548.5%2C419.0%20548.0%2C419.5%20547.5%2C420.0%20547.5%2C421.0%20547.0%2C421.5%20546.5%2C422.0%20546.0%2C422.5%20545.5%2C423.0%20545.5%2C424.0%20545.0%2C424.5%20544.5%2C425.0%20544.5%2C426.0%20544.0%2C426.5%20543.5%2C427.0%20543.5%2C428.0%20543.0%2C428.5%20542.5%2C429.0%20542.0%2C429.5%20541.5%2C430.0%20541.5%2C431.0%20541.0%2C431.5%20540.5%2C432.0%20540.0%2C432.5%20539.5%2C433.0%20539.5%2C434.0%20539.0%2C434.5%20538.5%2C435.0%20538.5%2C436.0%20538.0%2C436.5%20537.5%2C437.0%20537.0%2C437.5%20536.5%2C438.0%20536.5%2C439.0%20536.0%2C439.5%20535.5%2C440.0%20535.5%2C441.0%20535.0%2C441.5%20534.5%2C442.0%20534.0%2C442.5%20533.5%2C443.0%20533.5%2C444.0%20533.0%2C444.5%20532.5%2C445.0%20532.0%2C445.5%20531.5%2C446.0%20531.5%2C447.0%20531.0%2C447.5%20530.5%2C448.0%20530.5%2C449.0%20530.0%2C449.5%20529.5%2C450.0%20529.5%2C451.0%20529.0%2C451.5%20528.5%2C452.0%20528.0%2C452.5%20527.5%2C453.0%20527.5%2C454.0%20527.0%2C454.5%20526.5%2C455.0%20526.0%2C455.5%20525.5%2C456.0%20525.5%2C457.0%20525.0%2C457.5%20524.5%2C458.0%20524.5%2C459.0%20524.0%2C459.5%20523.5%2C460.0%20523.0%2C460.5%20522.5%2C461.0%20522.5%2C462.0%20522.0%2C462.5%20521.5%2C463.0%20521.5%2C464.0%20521.0%2C464.5%20520.5%2C465.0%20520.0%2C465.5%20519.5%2C466.0%20519.5%2C467.0%20519.0%2C467.5%20518.5%2C468.0%20518.5%2C469.0%20518.0%2C469.5%20517.5%2C470.0%20517.0%2C470.5%20516.5%2C471.0%20516.5%2C472.0%20516.0%2C472.5%20515.5%2C473.0%20515.5%2C474.0%20515.0%2C474.5%20514.5%2C475.0%20514.5%2C476.0%20514.0%2C476.5%20513.5%2C477.0%20513.0%2C477.5%20512.5%2C478.0%20512.5%2C479.0%20512.0%2C479.5%20511.5%2C480.0%20511.0%2C480.5%20510.5%2C481.0%20510.5%2C482.0%20511.0%2C482.5%20512.0%2C482.5%20513.0%2C482.5%20514.0%2C482.5%20515.0%2C482.5%20516.0%2C482.5%20517.0%2C482.5%20518.0%2C482.5%20519.0%2C482.5%20520.0%2C482.5%20521.0%2C482.5%20522.0%2C482.5%20523.0%2C482.5%20524.0%2C482.5%20525.0%2C482.5%20526.0%2C482.5%20527.0%2C482.5%20528.0%2C482.5%20529.0%2C482.5%20530.0%2C482.5%20531.0%2C482.5%20532.0%2C482.5%20533.0%2C482.5%20534.0%2C482.5%20535.0%2C482.5%20536.0%2C482.5%20537.0%2C482.5%20538.0%2C482.5%20539.0%2C482.5%20540.0%2C482.5%20541.0%2C482.5%20542.0%2C482.5%20543.0%2C482.5%20544.0%2C482.5%20545.0%2C482.5%20546.0%2C482.5%20547.0%2C482.5%20548.0%2C482.5%20549.0%2C482.5%20550.0%2C482.5%20551.0%2C482.5%20552.0%2C482.5%20553.0%2C482.5%20554.0%2C482.5%20555.0%2C482.5%20556.0%2C482.5%20557.0%2C482.5%20558.0%2C482.5%20559.0%2C482.5%20560.0%2C482.5%20561.0%2C482.5%20562.0%2C482.5%20563.0%2C482.5%20564.0%2C482.5%20565.0%2C482.5%20566.0%2C482.5%20567.0%2C482.5%20568.0%2C482.5%20569.0%2C482.5%20570.0%2C482.5%20571.0%2C482.5%20572.0%2C482.5%20573.0%2C482.5%20574.0%2C482.5%20575.0%2C482.5%20576.0%2C482.5%20577.0%2C482.5%20578.0%2C482.5%20579.0%2C482.5%20580.0%2C482.5%20581.0%2C482.5%20582.0%2C482.5%20583.0%2C482.5%20584.0%2C482.5%20585.0%2C482.5%20586.0%2C482.5%20587.0%2C482.5%20588.0%2C482.5%20589.0%2C482.5%20590.0%2C482.5%20591.0%2C482.5%20592.0%2C482.5%20593.0%2C482.5%20594.0%2C482.5%20595.0%2C482.5%20596.0%2C482.5%20597.0%2C482.5%20598.0%2C482.5%20599.0%2C482.5%20600.0%2C482.5%20601.0%2C482.5%20602.0%2C482.5%20603.0%2C482.5%20604.0%2C482.5%20605.0%2C482.5%20606.0%2C482.5%20607.0%2C482.5%20608.0%2C482.5%20609.0%2C482.5%20610.0%2C482.5%20611.0%2C482.5%20612.0%2C482.5%20613.0%2C482.5%20614.0%2C482.5%20615.0%2C482.5%20616.0%2C482.5%20617.0%2C482.5%20618.0%2C482.5%20619.0%2C482.5%20620.0%2C482.5%20621.0%2C482.5%20622.0%2C482.5%20623.0%2C482.5%20624.0%2C482.5%20625.0%2C482.5%20626.0%2C482.5%20627.0%2C482.5%20628.0%2C482.5%20629.0%2C482.5%20630.0%2C482.5%20631.0%2C482.5%20632.0%2C482.5%20633.0%2C482.5%20634.0%2C482.5%20635.0%2C482.5%20636.0%2C482.5%20637.0%2C482.5%20638.0%2C482.5%20639.0%2C482.5%20640.0%2C482.5%20641.0%2C482.5%20642.0%2C482.5%20643.0%2C482.5%20644.0%2C482.5%20645.0%2C482.5%20646.0%2C482.5%20647.0%2C482.5%20648.0%2C482.5%20649.0%2C482.5%20650.0%2C482.5%20651.0%2C482.5%20652.0%2C482.5%20653.0%2C482.5%20654.0%2C482.5%20655.0%2C482.5%20656.0%2C482.5%20657.0%2C482.5%20658.0%2C482.5%20658.5%2C483.0%20659.0%2C483.5%20659.5%2C484.0%20660.0%2C484.5%20660.5%2C485.0%20660.5%2C486.0%20661.0%2C486.5%20661.5%2C487.0%20661.5%2C488.0%20662.0%2C488.5%20662.5%2C489.0%20662.5%2C490.0%20663.0%2C490.5%20663.5%2C491.0%20663.5%2C492.0%20664.0%2C492.5%20664.5%2C493.0%20665.0%2C493.5%20665.5%2C494.0%20665.5%2C495.0%20666.0%2C495.5%20666.5%2C496.0%20666.5%2C497.0%20667.0%2C497.5%20667.5%2C498.0%20667.5%2C499.0%20668.0%2C499.5%20668.5%2C500.0%20669.0%2C500.5%20669.5%2C501.0%20669.5%2C502.0%20670.0%2C502.5%20670.5%2C503.0%20670.5%2C504.0%20671.0%2C504.5%20671.5%2C505.0%20672.0%2C505.5%20672.5%2C506.0%20672.5%2C507.0%20673.0%2C507.5%20673.5%2C508.0%20673.5%2C509.0%20674.0%2C509.5%20674.5%2C510.0%20674.5%2C511.0%20675.0%2C511.5%20675.5%2C512.0%20675.5%2C513.0%20676.0%2C513.5%20676.5%2C514.0%20676.5%2C515.0%20677.0%2C515.5%20677.5%2C516.0%20678.0%2C516.5%20678.5%2C517.0%20678.5%2C518.0%20678.5%2C519.0%20679.0%2C519.5%20679.5%2C520.0%20680.0%2C520.5%20680.5%2C521.0%20680.5%2C522.0%20681.0%2C522.5%20681.5%2C523.0%20681.5%2C524.0%20682.0%2C524.5%20682.5%2C525.0%20682.5%2C526.0%20683.0%2C526.5%20683.5%2C527.0%20683.5%2C528.0%20684.0%2C528.5%20684.5%2C529.0%20684.5%2C530.0%20685.0%2C530.5%20685.5%2C531.0%20686.0%2C531.5%20686.5%2C532.0%20686.5%2C533.0%20687.0%2C533.5%20687.5%2C534.0%20687.5%2C535.0%20688.0%2C535.5%20688.5%2C536.0%20688.5%2C537.0%20689.0%2C537.5%20689.5%2C538.0%20690.0%2C538.5%20690.5%2C539.0%20690.5%2C540.0%20691.0%2C540.5%20691.5%2C541.0%20691.5%2C542.0%20692.0%2C542.5%20692.5%2C543.0%20692.5%2C544.0%20693.0%2C544.5%20693.5%2C545.0%20694.0%2C545.5%20694.5%2C546.0%20694.5%2C547.0%20695.0%2C547.5%20695.5%2C548.0%20695.5%2C549.0%20696.0%2C549.5%20696.5%2C550.0%20696.5%2C551.0%20697.0%2C551.5%20697.5%2C552.0%20697.5%2C553.0%20698.0%2C553.5%20698.5%2C554.0%20698.5%2C555.0%20699.0%2C555.5%20699.5%2C556.0%20700.0%2C556.5%20700.5%2C557.0%20700.5%2C558.0%20701.0%2C558.5%20701.5%2C559.0%20701.5%2C560.0%20702.0%2C560.5%20702.5%2C561.0%20702.5%2C562.0%20703.0%2C562.5%20703.5%2C563.0%20704.0%2C563.5%20704.5%2C564.0%20704.5%2C565.0%20705.0%2C565.5%20705.5%2C566.0%20705.5%2C567.0%20706.0%2C567.5%20706.5%2C568.0%20707.0%2C568.5%20707.5%2C569.0%20707.5%2C570.0%20708.0%2C570.5%20708.5%2C571.0%20708.5%2C572.0%20709.0%2C572.5%20709.5%2C573.0%20710.0%2C573.5%20710.5%2C574.0%20710.5%2C575.0%20711.0%2C575.5%20711.5%2C576.0%20711.5%2C577.0%20712.0%2C577.5%20712.5%2C578.0%20713.0%2C578.5%20713.5%2C579.0%20713.5%2C580.0%20714.0%2C580.5%20714.5%2C581.0%20714.5%2C582.0%20715.0%2C582.5%20715.5%2C583.0%20715.5%2C584.0%20716.0%2C584.5%20716.5%2C585.0%20716.5%2C586.0%20717.0%2C586.5%20717.5%2C587.0%20717.5%2C588.0%20718.0%2C588.5%20718.5%2C589.0%20719.0%2C589.5%20719.5%2C590.0%20719.5%2C591.0%20719.5%2C592.0%20720.0%2C592.5%20720.5%2C593.0%20721.0%2C593.5%20721.5%2C594.0%20721.5%2C595.0%20722.0%2C595.5%20722.5%2C596.0%20722.5%2C597.0%20723.0%2C597.5%20723.5%2C598.0%20723.5%2C599.0%20724.0%2C599.5%20724.5%2C600.0%20724.5%2C601.0%20725.0%2C601.5%20725.5%2C602.0%20726.0%2C602.5%20726.5%2C603.0%20726.5%2C604.0%20727.0%2C604.5%20727.5%2C605.0%20727.5%2C606.0%20728.0%2C606.5%20728.5%2C607.0%20728.5%2C608.0%20729.0%2C608.5%20729.5%2C609.0%20730.0%2C609.5%20730.5%2C610.0%20730.5%2C611.0%20731.0%2C611.5%20731.5%2C612.0%20731.5%2C613.0%20732.0%2C613.5%20732.5%2C614.0%20732.5%2C615.0%20733.0%2C615.5%20733.5%2C616.0%20733.5%2C617.0%20734.0%2C617.5%20734.5%2C618.0%20735.0%2C618.5%20735.5%2C619.0%20735.5%2C620.0%20736.0%2C620.5%20736.5%2C621.0%20736.5%2C622.0%20737.0%2C622.5%20737.5%2C623.0%20738.0%2C623.5%20738.5%2C624.0%20738.5%2C625.0%20739.0%2C625.5%20739.5%2C626.0%20739.5%2C627.0%20740.0%2C627.5%20740.5%2C628.0%20740.5%2C629.0%20741.0%2C629.5%20741.5%2C630.0%20742.0%2C630.5%20742.5%2C631.0%20742.5%2C632.0%20742.5%2C633.0%20743.0%2C633.5%20743.5%2C634.0%20744.0%2C634.5%20744.5%2C635.0%20744.0%2C635.5%20743.5%2C636.0%20743.0%2C636.5%20742.0%2C636.5%20741.0%2C636.5%20740.0%2C636.5%20739.0%2C636.5%20738.0%2C636.5%20737.0%2C636.5%20736.0%2C636.5%20735.0%2C636.5%20734.0%2C636.5%20733.0%2C636.5%20732.0%2C636.5%20731.0%2C636.5%20730.0%2C636.5%20729.0%2C636.5%20728.0%2C636.5%20727.0%2C636.5%20726.0%2C636.5%20725.0%2C636.5%20724.0%2C636.5%20723.0%2C636.5%20722.0%2C636.5%20721.0%2C636.5%20720.0%2C636.5%20719.0%2C636.5%20718.0%2C636.5%20717.0%2C636.5%20716.0%2C636.5%20715.0%2C636.5%20714.0%2C636.5%20713.0%2C636.5%20712.0%2C636.5%20711.0%2C636.5%20710.0%2C636.5%20709.0%2C636.5%20708.0%2C636.5%20707.0%2C636.5%20706.0%2C636.5%20705.0%2C636.5%20704.0%2C636.5%20703.0%2C636.5%20702.0%2C636.5%20701.0%2C636.5%20700.0%2C636.5%20699.0%2C636.5%20698.0%2C636.5%20697.0%2C636.5%20696.0%2C636.5%20695.0%2C636.5%20694.0%2C636.5%20693.0%2C636.5%20692.0%2C636.5%20691.0%2C636.5%20690.0%2C636.5%20689.0%2C636.5%20688.0%2C636.5%20687.0%2C636.5%20686.0%2C636.5%20685.0%2C636.5%20684.0%2C636.5%20683.0%2C636.5%20682.0%2C636.5%20681.0%2C636.5%20680.0%2C636.5%20679.0%2C636.5%20678.0%2C636.5%20677.0%2C636.5%20676.0%2C636.5%20675.0%2C636.5%20674.0%2C636.5%20673.0%2C636.5%20672.0%2C636.5%20671.0%2C636.5%20670.0%2C636.5%20669.0%2C636.5%20668.0%2C636.5%20667.0%2C636.5%20666.0%2C636.5%20665.0%2C636.5%20664.0%2C636.5%20663.0%2C636.5%20662.0%2C636.5%20661.0%2C636.5%20660.0%2C636.5%20659.0%2C636.5%20658.0%2C636.5%20657.0%2C636.5%20656.0%2C636.5%20655.0%2C636.5%20654.0%2C636.5%20653.0%2C636.5%20652.0%2C636.5%20651.0%2C636.5%20650.0%2C636.5%20649.0%2C636.5%20648.0%2C636.5%20647.0%2C636.5%20646.0%2C636.5%20645.0%2C636.5%20644.0%2C636.5%20643.0%2C636.5%20642.0%2C636.5%20641.0%2C636.5%20640.0%2C636.5%20639.0%2C636.5%20638.0%2C636.5%20637.0%2C636.5%20636.0%2C636.5%20635.0%2C636.5%20634.0%2C636.5%20633.0%2C636.5%20632.0%2C636.5%20631.0%2C636.5%20630.0%2C636.5%20629.0%2C636.5%20628.0%2C636.5%20627.0%2C636.5%20626.0%2C636.5%20625.0%2C636.5%20624.0%2C636.5%20623.0%2C636.5%20622.0%2C636.5%20621.0%2C636.5%20620.0%2C636.5%20619.0%2C636.5%20618.0%2C636.5%20617.0%2C636.5%20616.0%2C636.5%20615.0%2C636.5%20614.0%2C636.5%20613.0%2C636.5%20612.0%2C636.5%20611.0%2C636.5%20610.0%2C636.5%20609.0%2C636.5%20608.0%2C636.5%20607.0%2C636.5%20606.0%2C636.5%20605.0%2C636.5%20604.0%2C636.5%20603.0%2C636.5%20602.0%2C636.5%20601.0%2C636.5%20600.0%2C636.5%20599.0%2C636.5%20598.0%2C636.5%20597.0%2C636.5%20596.0%2C636.5%20595.0%2C636.5%20594.0%2C636.5%20593.0%2C636.5%20592.0%2C636.5%20591.0%2C636.5%20590.0%2C636.5%20589.0%2C636.5%20588.0%2C636.5%20587.0%2C636.5%20586.0%2C636.5%20585.0%2C636.5%20584.0%2C636.5%20583.0%2C636.5%20582.0%2C636.5%20581.0%2C636.5%20580.0%2C636.5%20579.0%2C636.5%20578.0%2C636.5%20577.0%2C636.5%20576.0%2C636.5%20575.0%2C636.5%20574.0%2C636.5%20573.0%2C636.5%20572.0%2C636.5%20571.0%2C636.5%20570.0%2C636.5%20569.0%2C636.5%20568.0%2C636.5%20567.0%2C636.5%20566.0%2C636.5%20565.0%2C636.5%20564.0%2C636.5%20563.0%2C636.5%20562.0%2C636.5%20561.0%2C636.5%20560.0%2C636.5%20559.0%2C636.5%20558.0%2C636.5%20557.0%2C636.5%20556.0%2C636.5%20555.0%2C636.5%20554.0%2C636.5%20553.0%2C636.5%20552.0%2C636.5%20551.0%2C636.5%20550.0%2C636.5%20549.0%2C636.5%20548.0%2C636.5%20547.0%2C636.5%20546.0%2C636.5%20545.0%2C636.5%20544.0%2C636.5%20543.0%2C636.5%20542.0%2C636.5%20541.0%2C636.5%20540.0%2C636.5%20539.0%2C636.5%20538.0%2C636.5%20537.0%2C636.5%20536.0%2C636.5%20535.0%2C636.5%20534.0%2C636.5%20533.0%2C636.5%20532.0%2C636.5%20531.0%2C636.5%20530.0%2C636.5%20529.0%2C636.5%20528.0%2C636.5%20527.0%2C636.5%20526.0%2C636.5%20525.0%2C636.5%20524.0%2C636.5%20523.0%2C636.5%20522.0%2C636.5%20521.0%2C636.5%20520.0%2C636.5%20519.0%2C636.5%20518.0%2C636.5%20517.0%2C636.5%20516.0%2C636.5%20515.0%2C636.5%20514.0%2C636.5%20513.0%2C636.5%20512.0%2C636.5%20511.0%2C636.5%20510.0%2C636.5%20509.0%2C636.5%20508.0%2C636.5%20507.0%2C636.5%20506.0%2C636.5%20505.0%2C636.5%20504.0%2C636.5%20503.0%2C636.5%20502.0%2C636.5%20501.0%2C636.5%20500.0%2C636.5%20499.0%2C636.5%20498.0%2C636.5%20497.0%2C636.5%20496.0%2C636.5%20495.0%2C636.5%20494.0%2C636.5%20493.0%2C636.5%20492.0%2C636.5%20491.0%2C636.5%20490.0%2C636.5%20489.0%2C636.5%20488.0%2C636.5%20487.0%2C636.5%20486.0%2C636.5%20485.0%2C636.5%20484.0%2C636.5%20483.0%2C636.5%20482.0%2C636.5%20481.0%2C636.5%20480.0%2C636.5%20479.0%2C636.5%20478.0%2C636.5%20477.0%2C636.5%20476.0%2C636.5%20475.0%2C636.5%20474.0%2C636.5%20473.0%2C636.5%20472.0%2C636.5%20471.0%2C636.5%20470.0%2C636.5%20469.0%2C636.5%20468.0%2C636.5%20467.0%2C636.5%20466.0%2C636.5%20465.0%2C636.5%20464.0%2C636.5%20463.0%2C636.5%20462.0%2C636.5%20461.0%2C636.5%20460.0%2C636.5%20459.0%2C636.5%20458.0%2C636.5%20457.0%2C636.5%20456.0%2C636.5%20455.0%2C636.5%20454.0%2C636.5%20453.0%2C636.5%20452.0%2C636.5%20451.0%2C636.5%20450.0%2C636.5%20449.0%2C636.5%20448.0%2C636.5%20447.0%2C636.5%20446.0%2C636.5%20445.0%2C636.5%20444.0%2C636.5%20443.0%2C636.5%20442.0%2C636.5%20441.0%2C636.5%20440.0%2C636.5%20439.0%2C636.5%20438.0%2C636.5%20437.0%2C636.5%20436.0%2C636.5%20435.0%2C636.5%20434.0%2C636.5%20433.0%2C636.5%20432.0%2C636.5%20431.0%2C636.5%20430.0%2C636.5%20429.0%2C636.5%20428.0%2C636.5%20427.0%2C636.5%20426.0%2C636.5%20425.0%2C636.5%20424.0%2C636.5%20423.0%2C636.5%20422.0%2C636.5%20421.0%2C636.5%20420.0%2C636.5%20419.0%2C636.5%20418.0%2C636.5%20417.0%2C636.5%20416.0%2C636.5%20415.0%2C636.5%20414.0%2C636.5%20413.0%2C636.5%20412.0%2C636.5%20411.0%2C636.5%20410.0%2C636.5%20409.0%2C636.5%20408.0%2C636.5%20407.0%2C636.5%20406.0%2C636.5%20405.0%2C636.5%20404.0%2C636.5%20403.0%2C636.5%20402.0%2C636.5%20401.0%2C636.5%20400.0%2C636.5%20399.0%2C636.5%20398.0%2C636.5%20397.0%2C636.5%20396.0%2C636.5%20395.0%2C636.5%20394.0%2C636.5%20393.0%2C636.5%20392.0%2C636.5%20391.0%2C636.5%20390.0%2C636.5%20389.0%2C636.5%20388.0%2C636.5%20387.0%2C636.5%20386.0%2C636.5%20385.0%2C636.5%20384.0%2C636.5%20383.0%2C636.5%20382.0%2C636.5%20381.0%2C636.5%20380.0%2C636.5%20379.0%2C636.5%20378.0%2C636.5%20377.0%2C636.5%20376.0%2C636.5%20375.0%2C636.5%20374.0%2C636.5%20373.0%2C636.5%20372.0%2C636.5%20371.0%2C636.5%20370.0%2C636.5%20369.0%2C636.5%20368.0%2C636.5%20367.0%2C636.5%20366.0%2C636.5%20365.0%2C636.5%20364.0%2C636.5%20363.0%2C636.5%20362.0%2C636.5%20361.0%2C636.5%20360.0%2C636.5%20359.0%2C636.5%20358.0%2C636.5%20357.0%2C636.5%20356.0%2C636.5%20355.0%2C636.5%20354.0%2C636.5%20353.0%2C636.5%20352.0%2C636.5%20351.0%2C636.5%20350.0%2C636.5%20349.0%2C636.5%20348.0%2C636.5%20347.0%2C636.5%20346.0%2C636.5%20345.0%2C636.5%20344.0%2C636.5%20343.0%2C636.5%20342.0%2C636.5%20341.0%2C636.5%20340.0%2C636.5%20339.0%2C636.5%20338.0%2C636.5%20337.0%2C636.5%20336.0%2C636.5%20335.0%2C636.5%20334.0%2C636.5%20333.0%2C636.5%20332.0%2C636.5%20331.0%2C636.5%20330.0%2C636.5%20329.0%2C636.5%20328.0%2C636.5%20327.0%2C636.5%20326.0%2C636.5%20325.0%2C636.5%20324.0%2C636.5%20323.0%2C636.5%20322.0%2C636.5%20321.0%2C636.5%20320.0%2C636.5%20319.0%2C636.5%20318.0%2C636.5%20317.0%2C636.5%20316.0%2C636.5%20315.0%2C636.5%20314.0%2C636.5%20313.0%2C636.5%20312.0%2C636.5%20311.0%2C636.5%20310.0%2C636.5%20309.0%2C636.5%20308.0%2C636.5%20307.0%2C636.5%20306.0%2C636.5%20305.0%2C636.5%20304.0%2C636.5%20303.0%2C636.5%20302.0%2C636.5%20301.0%2C636.5%20300.0%2C636.5%20299.0%2C636.5%20298.0%2C636.5%20297.0%2C636.5%20296.0%2C636.5%20295.0%2C636.5%20294.0%2C636.5%20293.0%2C636.5%20292.0%2C636.5%20291.0%2C636.5%20290.0%2C636.5%20289.0%2C636.5%20288.0%2C636.5%20287.0%2C636.5%20286.0%2C636.5%20285.0%2C636.5%20284.0%2C636.5%20283.0%2C636.5%20282.0%2C636.5%20281.0%2C636.5%20280.0%2C636.5%20279.0%2C636.5%20278.5%2C636.0%20278.0%2C635.5%20277.5%2C635.0%20278.0%2C634.5%20278.5%2C634.0%20278.5%2C633.0%20279.0%2C632.5%20279.5%2C632.0%20279.5%2C631.0%20280.0%2C630.5%20280.5%2C630.0%20280.5%2C629.0%20281.0%2C628.5%20281.5%2C628.0%20282.0%2C627.5%20282.5%2C627.0%20282.5%2C626.0%20283.0%2C625.5%20283.5%2C625.0%20283.5%2C624.0%20284.0%2C623.5%20284.5%2C623.0%20284.5%2C622.0%20285.0%2C621.5%20285.5%2C621.0%20285.5%2C620.0%20286.0%2C619.5%20286.5%2C619.0%20287.0%2C618.5%20287.5%2C618.0%20287.5%2C617.0%20288.0%2C616.5%20288.5%2C616.0%20289.0%2C615.5%20289.5%2C615.0%20289.5%2C614.0%20290.0%2C613.5%20290.5%2C613.0%20290.5%2C612.0%20291.0%2C611.5%20291.5%2C611.0%20292.0%2C610.5%20292.5%2C610.0%20292.5%2C609.0%20293.0%2C608.5%20293.5%2C608.0%20293.5%2C607.0%20294.0%2C606.5%20294.5%2C606.0%20295.0%2C605.5%20295.5%2C605.0%20295.5%2C604.0%20296.0%2C603.5%20296.5%2C603.0%20297.0%2C602.5%20297.5%2C602.0%20297.5%2C601.0%20298.0%2C600.5%20298.5%2C600.0%20298.5%2C599.0%20299.0%2C598.5%20299.5%2C598.0%20299.5%2C597.0%20300.0%2C596.5%20300.5%2C596.0%20301.0%2C595.5%20301.5%2C595.0%20301.5%2C594.0%20302.0%2C593.5%20302.5%2C593.0%20303.0%2C592.5%20303.5%2C592.0%20303.5%2C591.0%20304.0%2C590.5%20304.5%2C590.0%20304.5%2C589.0%20305.0%2C588.5%20305.5%2C588.0%20306.0%2C587.5%20306.5%2C587.0%20306.5%2C586.0%20307.0%2C585.5%20307.5%2C585.0%20307.5%2C584.0%20308.0%2C583.5%20308.5%2C583.0%20309.0%2C582.5%20309.5%2C582.0%20309.5%2C581.0%20310.0%2C580.5%20310.5%2C580.0%20310.5%2C579.0%20311.0%2C578.5%20311.5%2C578.0%20312.0%2C577.5%20312.5%2C577.0%20312.5%2C576.0%20313.0%2C575.5%20313.5%2C575.0%20313.5%2C574.0%20314.0%2C573.5%20314.5%2C573.0%20314.5%2C572.0%20315.0%2C571.5%20315.5%2C571.0%20316.0%2C570.5%20316.5%2C570.0%20316.5%2C569.0%20317.0%2C568.5%20317.5%2C568.0%20317.5%2C567.0%20318.0%2C566.5%20318.5%2C566.0%20318.5%2C565.0%20319.0%2C564.5%20319.5%2C564.0%20319.5%2C563.0%20320.0%2C562.5%20320.5%2C562.0%20321.0%2C561.5%20321.5%2C561.0%20321.5%2C560.0%20322.0%2C559.5%20322.5%2C559.0%20322.5%2C558.0%20323.0%2C557.5%20323.5%2C557.0%20324.0%2C556.5%20324.5%2C556.0%20324.5%2C555.0%20325.0%2C554.5%20325.5%2C554.0%20325.5%2C553.0%20326.0%2C552.5%20326.5%2C552.0%20327.0%2C551.5%20327.5%2C551.0%20327.5%2C550.0%20328.0%2C549.5%20328.5%2C549.0%20328.5%2C548.0%20329.0%2C547.5%20329.5%2C547.0%20330.0%2C546.5%20330.5%2C546.0%20330.5%2C545.0%20331.0%2C544.5%20331.5%2C544.0%20331.5%2C543.0%20332.0%2C542.5%20332.5%2C542.0%20333.0%2C541.5%20333.5%2C541.0%20333.5%2C540.0%20334.0%2C539.5%20334.5%2C539.0%20334.5%2C538.0%20335.0%2C537.5%20335.5%2C537.0%20336.0%2C536.5%20336.5%2C536.0%20336.5%2C535.0%20337.0%2C534.5%20337.5%2C534.0%20337.5%2C533.0%20338.0%2C532.5%20338.5%2C532.0%20339.0%2C531.5%20339.5%2C531.0%20339.5%2C530.0%20340.0%2C529.5%20340.5%2C529.0%20341.0%2C528.5%20341.5%2C528.0%20341.5%2C527.0%20342.0%2C526.5%20342.5%2C526.0%20342.5%2C525.0%20343.0%2C524.5%20343.5%2C524.0%20344.0%2C523.5%20344.5%2C523.0%20344.5%2C522.0%20345.0%2C521.5%20345.5%2C521.0%20345.5%2C520.0%20346.0%2C519.5%20346.5%2C519.0%20347.0%2C518.5%20347.5%2C518.0%20347.5%2C517.0%20348.0%2C516.5%20348.5%2C516.0%20349.0%2C515.5%20349.5%2C515.0%20349.5%2C514.0%20350.0%2C513.5%20350.5%2C513.0%20350.5%2C512.0%20351.0%2C511.5%20351.5%2C511.0%20352.0%2C510.5%20352.5%2C510.0%20352.5%2C509.0%20353.0%2C508.5%20353.5%2C508.0%20353.5%2C507.0%20354.0%2C506.5%20354.5%2C506.0%20355.0%2C505.5%20355.5%2C505.0%20355.5%2C504.0%20356.0%2C503.5%20356.5%2C503.0%20357.0%2C502.5%20357.5%2C502.0%20357.5%2C501.0%20358.0%2C500.5%20358.5%2C500.0%20358.5%2C499.0%20359.0%2C498.5%20359.5%2C498.0%20359.5%2C497.0%20360.0%2C496.5%20360.5%2C496.0%20361.0%2C495.5%20361.5%2C495.0%20361.5%2C494.0%20362.0%2C493.5%20362.5%2C493.0%20362.5%2C492.0%20363.0%2C491.5%20363.5%2C491.0%20363.5%2C490.0%20364.0%2C489.5%20364.5%2C489.0%20364.5%2C488.0%20365.0%2C487.5%20365.5%2C487.0%20366.0%2C486.5%20366.5%2C486.0%20366.5%2C485.0%20367.0%2C484.5%20367.5%2C484.0%20367.5%2C483.0%20368.0%2C482.5%20368.5%2C482.0%20369.0%2C481.5%20369.5%2C481.0%20369.5%2C480.0%20370.0%2C479.5%20370.5%2C479.0%20370.5%2C478.0%20371.0%2C477.5%20371.5%2C477.0%20372.0%2C476.5%20372.5%2C476.0%20372.5%2C475.0%20373.0%2C474.5%20373.5%2C474.0%20374.0%2C473.5%20374.5%2C473.0%20374.5%2C472.0%20375.0%2C471.5%20375.5%2C471.0%20375.5%2C470.0%20376.0%2C469.5%20376.5%2C469.0%20376.5%2C468.0%20377.0%2C467.5%20377.5%2C467.0%20378.0%2C466.5%20378.5%2C466.0%20378.5%2C465.0%20379.0%2C464.5%20379.5%2C464.0%20379.5%2C463.0%20380.0%2C462.5%20380.5%2C462.0%20380.5%2C461.0%20381.0%2C460.5%20381.5%2C460.0%20382.0%2C459.5%20382.5%2C459.0%20382.5%2C458.0%20383.0%2C457.5%20383.5%2C457.0%20383.5%2C456.0%20384.0%2C455.5%20384.5%2C455.0%20384.5%2C454.0%20385.0%2C453.5%20385.5%2C453.0%20385.5%2C452.0%20386.0%2C451.5%20386.5%2C451.0%20387.0%2C450.5%20387.5%2C450.0%20387.5%2C449.0%20388.0%2C448.5%20388.5%2C448.0%20389.0%2C447.5%20389.5%2C447.0%20389.5%2C446.0%20390.0%2C445.5%20390.5%2C445.0%20390.5%2C444.0%20391.0%2C443.5%20391.5%2C443.0%20392.0%2C442.5%20392.5%2C442.0%20392.5%2C441.0%20393.0%2C440.5%20393.5%2C440.0%20393.5%2C439.0%20394.0%2C438.5%20394.5%2C438.0%20395.0%2C437.5%20395.5%2C437.0%20395.5%2C436.0%20396.0%2C435.5%20396.5%2C435.0%20396.5%2C434.0%20397.0%2C433.5%20397.5%2C433.0%20398.0%2C432.5%20398.5%2C432.0%20398.5%2C431.0%20399.0%2C430.5%20399.5%2C430.0%20399.5%2C429.0%20400.0%2C428.5%20400.5%2C428.0%20401.0%2C427.5%20401.5%2C427.0%20401.5%2C426.0%20402.0%2C425.5%20402.5%2C425.0%20403.0%2C424.5%20403.5%2C424.0%20403.5%2C423.0%20404.0%2C422.5%20404.5%2C422.0%20404.5%2C421.0%20405.0%2C420.5%20405.5%2C420.0%20406.0%2C419.5%20406.5%2C419.0%20406.5%2C418.0%20407.0%2C417.5%20407.5%2C417.0%20408.0%2C416.5%20408.5%2C416.0%20408.5%2C415.0%20409.0%2C414.5%20409.5%2C414.0%20409.5%2C413.0%20410.0%2C412.5%20410.5%2C412.0%20410.5%2C411.0%20411.0%2C410.5%20411.5%2C410.0%20412.0%2C409.5%20412.5%2C409.0%20412.5%2C408.0%20412.5%2C407.0%20413.0%2C406.5%20413.5%2C406.0%20414.0%2C405.5%20414.5%2C405.0%20414.5%2C404.0%20415.0%2C403.5%20415.5%2C403.0%20415.5%2C402.0%20416.0%2C401.5%20416.5%2C401.0%20416.5%2C400.0%20417.0%2C399.5%20417.5%2C399.0%20418.0%2C398.5%20418.5%2C398.0%20418.5%2C397.0%20419.0%2C396.5%20419.5%2C396.0%20419.5%2C395.0%20420.0%2C394.5%20420.5%2C394.0%20421.0%2C393.5%20421.5%2C393.0%20421.5%2C392.0%20422.0%2C391.5%20422.5%2C391.0%20423.0%2C390.5%20423.5%2C390.0%20423.5%2C389.0%20424.0%2C388.5%20424.5%2C388.0%20424.5%2C387.0%20425.0%2C386.5%20425.5%2C386.0%20426.0%2C385.5%20426.5%2C385.0%20426.5%2C384.0%20427.0%2C383.5%20427.5%2C383.0%20427.5%2C382.0%20428.0%2C381.5%20428.5%2C381.0%20429.0%2C380.5%20429.5%2C380.0%20429.5%2C379.0%20430.0%2C378.5%20430.5%2C378.0%20430.5%2C377.0%20431.0%2C376.5%20431.5%2C376.0%20432.0%2C375.5%20432.5%2C375.0%20432.5%2C374.0%20433.0%2C373.5%20433.5%2C373.0%20433.5%2C372.0%20434.0%2C371.5%20434.5%2C371.0%20435.0%2C370.5%20435.5%2C370.0%20435.5%2C369.0%20436.0%2C368.5%20436.5%2C368.0%20437.0%2C367.5%20437.5%2C367.0%20437.5%2C366.0%20438.0%2C365.5%20438.5%2C365.0%20438.5%2C364.0%20439.0%2C363.5%20439.5%2C363.0%20439.5%2C362.0%20440.0%2C361.5%20440.5%2C361.0%20441.0%2C360.5%20441.5%2C360.0%20441.5%2C359.0%20442.0%2C358.5%20442.5%2C358.0%20442.5%2C357.0%20443.0%2C356.5%20443.5%2C356.0%20443.5%2C355.0%20444.0%2C354.5%20444.5%2C354.0%20445.0%2C353.5%20445.5%2C353.0%20445.5%2C352.0%20446.0%2C351.5%20446.5%2C351.0%20446.5%2C350.0%20447.0%2C349.5%20447.5%2C349.0%20447.5%2C348.0%20448.0%2C347.5%20448.5%2C347.0%20449.0%2C346.5%20449.5%2C346.0%20449.5%2C345.0%20450.0%2C344.5%20450.5%2C344.0%20451.0%2C343.5%20451.5%2C343.0%20451.5%2C342.0%20452.0%2C341.5%20452.5%2C341.0%20452.5%2C340.0%20453.0%2C339.5%20453.5%2C339.0%20454.0%2C338.5%20454.5%2C338.0%20454.5%2C337.0%20455.0%2C336.5%20455.5%2C336.0%20455.5%2C335.0%20456.0%2C334.5%20456.5%2C334.0%20456.5%2C333.0%20457.0%2C332.5%20457.5%2C332.0%20458.0%2C331.5%20458.5%2C331.0%20458.5%2C330.0%20459.0%2C329.5%20459.5%2C329.0%20459.5%2C328.0%20460.0%2C327.5%20460.5%2C327.0%20461.0%2C326.5%20461.5%2C326.0%20461.5%2C325.0%20462.0%2C324.5%20462.5%2C324.0%20462.5%2C323.0%20463.0%2C322.5%20463.5%2C322.0%20464.0%2C321.5%20464.5%2C321.0%20464.5%2C320.0%20465.0%2C319.5%20465.5%2C319.0%20465.5%2C318.0%20466.0%2C317.5%20466.5%2C317.0%20466.5%2C316.0%20467.0%2C315.5%20467.5%2C315.0%20468.0%2C314.5%20468.5%2C314.0%20468.5%2C313.0%20469.0%2C312.5%20469.5%2C312.0%20469.5%2C311.0%20470.0%2C310.5%20470.5%2C310.0%20470.5%2C309.0%20471.0%2C308.5%20471.5%2C308.0%20472.0%2C307.5%20472.5%2C307.0%20472.5%2C306.0%20473.0%2C305.5%20473.5%2C305.0%20473.5%2C304.0%20474.0%2C303.5%20474.5%2C303.0%20474.5%2C302.0%20475.0%2C301.5%20475.5%2C301.0%20476.0%2C300.5%20476.5%2C300.0%20476.5%2C299.0%20477.0%2C298.5%20477.5%2C298.0%20478.0%2C297.5%20478.5%2C297.0%20478.5%2C296.0%20479.0%2C295.5%20479.5%2C295.0%20480.0%2C294.5%20480.5%2C294.0%20480.5%2C293.0%20481.0%2C292.5%20481.5%2C292.0%20481.5%2C291.0%20482.0%2C290.5%20482.5%2C290.0%20483.0%2C289.5%20483.5%2C289.0%20483.5%2C288.0%20484.0%2C287.5%20484.5%2C287.0%20484.5%2C286.0%20485.0%2C285.5%20485.5%2C285.0%20486.0%2C284.5%20486.5%2C284.0%20486.5%2C283.0%20487.0%2C282.5%20487.5%2C282.0%20487.5%2C281.0%20488.0%2C280.5%20488.5%2C280.0%20489.0%2C279.5%20489.5%2C279.0%20489.5%2C278.0%20490.0%2C277.5%20490.5%2C277.0%20490.5%2C276.0%20491.0%2C275.5%20491.5%2C275.0%20491.5%2C274.0%20492.0%2C273.5%20492.5%2C273.0%20493.0%2C272.5%20493.5%2C272.0%20493.5%2C271.0%20494.0%2C270.5%20494.5%2C270.0%20494.5%2C269.0%20495.0%2C268.5%20495.5%2C268.0%20495.5%2C267.0%20496.0%2C266.5%20496.5%2C266.0%20496.5%2C265.0%20497.0%2C264.5%20497.5%2C264.0%20498.0%2C263.5%20498.5%2C263.0%20498.5%2C262.0%20499.0%2C261.5%20499.5%2C261.0%20499.5%2C260.0%20500.0%2C259.5%20500.5%2C259.0%20501.0%2C258.5%20501.5%2C258.0%20501.5%2C257.0%20502.0%2C256.5%20502.5%2C256.0%20502.5%2C255.0%20503.0%2C254.5%20503.5%2C254.0%20504.0%2C253.5%20504.5%2C253.0%20504.5%2C252.0%20505.0%2C251.5%20505.5%2C251.0%20505.5%2C250.0%20506.0%2C249.5%20506.5%2C249.0%20507.0%2C248.5%20507.5%2C248.0%20507.5%2C247.0%20508.0%2C246.5%20508.5%2C246.0%20508.5%2C245.0%20509.0%2C244.5%20509.5%2C244.0%20510.0%2C243.5%20510.5%2C243.0%20511.0%2C242.5%20511.5%2C243.0%20512.0%2C243.5%20512.5%2C244.0%20513.0%2C244.5%20513.5%2C245.0%20513.5%2C246.0%20514.0%2C246.5%20514.5%2C247.0%20515.0%2C247.5%20515.5%2C248.0%20515.5%2C249.0%20516.0%2C249.5%20516.5%2C250.0%20516.5%2C251.0%20517.0%2C251.5%20517.5%2C252.0%20518.0%2C252.5%20518.5%2C253.0%20518.5%2C254.0%20519.0%2C254.5%20519.5%2C255.0%20519.5%2C256.0%20520.0%2C256.5%20520.5%2C257.0%20521.0%2C257.5%20521.5%2C258.0%20521.5%2C259.0%20522.0%2C259.5%20522.5%2C260.0%20522.5%2C261.0%20523.0%2C261.5%20523.5%2C262.0%20524.0%2C262.5%20524.5%2C263.0%20524.5%2C264.0%20525.0%2C264.5%20525.5%2C265.0%20525.5%2C266.0%20526.0%2C266.5%20526.5%2C267.0%20527.0%2C267.5%20527.5%2C268.0%20527.5%2C269.0%20528.0%2C269.5%20528.5%2C270.0%20529.0%2C270.5%20529.5%2C271.0%20529.5%2C272.0%20530.0%2C272.5%20530.5%2C273.0%20530.5%2C274.0%20531.0%2C274.5%20531.5%2C275.0%20532.0%2C275.5%20532.5%2C276.0%20532.5%2C277.0%20533.0%2C277.5%20533.5%2C278.0%20533.5%2C279.0%20534.0%2C279.5%20534.5%2C280.0%20535.0%2C280.5%20535.5%2C281.0%20535.5%2C282.0%20536.0%2C282.5%20536.5%2C283.0%20537.0%2C283.5%20537.5%2C284.0%20537.5%2C285.0%20538.0%2C285.5%20538.5%2C286.0%20539.0%2C286.5%20539.5%2C287.0%20539.5%2C288.0%20540.0%2C288.5%20540.5%2C289.0%20540.5%2C290.0%20541.0%2C290.5%20541.5%2C291.0%20542.0%2C291.5%20542.5%2C292.0%20542.5%2C293.0%20543.0%2C293.5%20543.5%2C294.0%20543.5%2C295.0%20544.0%2C295.5%20544.5%2C296.0%20544.5%2C297.0%20545.0%2C297.5%20545.5%2C298.0%20545.5%2C299.0%20546.0%2C299.5%20546.5%2C300.0%20546.5%2C301.0%20547.0%2C301.5%20547.5%2C302.0%20548.0%2C302.5%20548.5%2C303.0%20548.5%2C304.0%20549.0%2C304.5%20549.5%2C305.0%20550.0%2C305.5%20550.5%2C306.0%20550.5%2C307.0%20551.0%2C307.5%20551.5%2C308.0%20551.5%2C309.0%20552.0%2C309.5%20552.5%2C310.0%20553.0%2C310.5%20553.5%2C311.0%20553.5%2C312.0%20554.0%2C312.5%20554.5%2C313.0%20554.5%2C314.0%20555.0%2C314.5%20555.5%2C315.0%20556.0%2C315.5%20556.5%2C316.0%20556.5%2C317.0%20557.0%2C317.5%20557.5%2C318.0%20557.5%2C319.0%20558.0%2C319.5%20558.5%2C320.0%20559.0%2C320.5%20559.5%2C321.0%20559.5%2C322.0%20560.0%2C322.5%20560.5%2C323.0%20561.0%2C323.5%20561.5%2C324.0%20561.5%2C325.0%20562.0%2C325.5%20562.5%2C326.0%20562.5%2C327.0%20563.0%2C327.5%20563.5%2C328.0%20564.0%2C328.5%20564.5%2C329.0%20564.5%2C330.0%20565.0%2C330.5%20565.5%2C331.0%20565.5%2C332.0%20566.0%2C332.5%20566.5%2C333.0%20567.0%2C333.5%20567.5%2C334.0%20567.5%2C335.0%20568.0%2C335.5%20568.5%2C336.0%20568.5%2C337.0%20569.0%2C337.5%20569.5%2C338.0%20570.0%2C338.5%20570.5%2C339.0%20570.5%2C340.0%20571.0%2C340.5%20571.5%2C341.0%20571.5%2C342.0%20572.0%2C342.5%20572.5%2C343.0%20573.0%2C343.5%20573.5%2C344.0%20573.5%2C345.0%20574.0%2C345.5%20574.5%2C346.0%20575.0%2C346.5%20575.5%2C347.0%20575.5%2C348.0%20576.0%2C348.5%20576.5%2C349.0%20576.5%2C350.0%20577.0%2C350.5%20577.5%2C351.0%20577.5%2C352.0%20578.0%2C352.5%20578.5%2C353.0%20579.0%2C353.5%20579.5%2C354.0%20579.5%2C355.0%20580.0%2C355.5%20580.5%2C356.0%20580.5%2C357.0%20581.0%2C357.5%20582.0%2C357.5%20583.0%2C357.5%20583.5%2C357.0%20583.5%2C356.0%20584.0%2C355.5%20584.5%2C355.0%20584.5%2C354.0%20585.0%2C353.5%20585.5%2C353.0%20586.0%2C352.5%20586.5%2C352.0%20586.5%2C351.0%20587.0%2C350.5%20587.5%2C350.0%20587.5%2C349.0%20588.0%2C348.5%20588.5%2C348.0%20589.0%2C347.5%20589.5%2C347.0%20589.5%2C346.0%20590.0%2C345.5%20590.5%2C345.0%20591.0%2C344.5%20591.5%2C344.0%20591.5%2C343.0%20592.0%2C342.5%20592.5%2C342.0%20593.0%2C341.5%20593.5%2C341.0%20593.5%2C340.0%20594.0%2C339.5%20594.5%2C339.0%20594.5%2C338.0%20595.0%2C337.5%20595.5%2C337.0%20596.0%2C336.5%20596.5%2C336.0%20596.5%2C335.0%20597.0%2C334.5%20597.5%2C334.0%20598.0%2C333.5%20598.5%2C333.0%20598.5%2C332.0%20599.0%2C331.5%20599.5%2C331.0%20599.5%2C330.0%20600.0%2C329.5%20600.5%2C329.0%20601.0%2C328.5%20601.5%2C328.0%20601.5%2C327.0%20602.0%2C326.5%20602.5%2C326.0%20602.5%2C325.0%20603.0%2C324.5%20603.5%2C324.0%20604.0%2C323.5%20604.5%2C323.0%20604.5%2C322.0%20605.0%2C321.5%20605.5%2C321.0%20606.0%2C320.5%20606.5%2C320.0%20606.5%2C319.0%20607.0%2C318.5%20607.5%2C318.0%20608.0%2C317.5%20608.5%2C317.0%20608.5%2C316.0%20609.0%2C315.5%20609.5%2C315.0%20609.5%2C314.0%20610.0%2C313.5%20610.5%2C313.0%20611.0%2C312.5%20611.5%2C312.0%20611.5%2C311.0%20612.0%2C310.5%20612.5%2C310.0%20612.5%2C309.0%20613.0%2C308.5%20613.5%2C308.0%20614.0%2C307.5%20614.5%2C307.0%20614.5%2C306.0%20615.0%2C305.5%20615.5%2C305.0%20616.0%2C304.5%20616.5%2C304.0%20616.5%2C303.0%20617.0%2C302.5%20617.5%2C302.0%20618.0%2C301.5%20618.5%2C301.0%20618.5%2C300.0%20619.0%2C299.5%20619.5%2C299.0%20619.5%2C298.0%20620.0%2C297.5%20620.5%2C297.0%20621.0%2C296.5%20621.5%2C296.0%20621.5%2C295.0%20622.0%2C294.5%20622.5%2C294.0%20623.0%2C293.5%20623.5%2C293.0%20623.5%2C292.0%20624.0%2C291.5%20624.5%2C291.0%20624.5%2C290.0%20625.0%2C289.5%20625.5%2C289.0%20626.0%2C288.5%20626.5%2C288.0%20626.5%2C287.0%20627.0%2C286.5%20627.5%2C286.0%20627.5%2C285.0%20628.0%2C284.5%20628.5%2C284.0%20629.0%2C283.5%20629.5%2C283.0%20629.5%2C282.0%20630.0%2C281.5%20630.5%2C281.0%20631.0%2C280.5%20631.5%2C280.0%20631.5%2C279.0%20632.0%2C278.5%20632.5%2C278.0%20632.5%2C277.0%20633.0%2C276.5%20633.5%2C276.0%20633.5%2C275.0%20634.0%2C274.5%20634.5%2C274.0%20635.0%2C273.5%20635.5%2C273.0%20635.5%2C272.0%20636.0%2C271.5%20636.5%2C271.0%20637.0%2C270.5%20637.5%2C270.0%20637.5%2C269.0%20638.0%2C268.5%20638.5%2C268.0%20638.5%2C267.0%20639.0%2C266.5%20639.5%2C266.0%20640.0%2C265.5%20640.5%2C265.0%20640.5%2C264.0%20641.0%2C263.5%20641.5%2C263.0%20641.5%2C262.0%20642.0%2C261.5%20643.0%2C261.5%20643.5%2C261.0%20643.5%2C260.0%20644.0%2C259.5%20644.5%2C259.0%20644.5%2C258.0%20645.0%2C257.5%20645.5%2C257.0%20646.0%2C256.5%20646.5%2C256.0%20646.5%2C255.0%20647.0%2C254.5%20647.5%2C254.0%20647.5%2C253.0%20648.0%2C252.5%20648.5%2C252.0%20649.0%2C251.5%20649.5%2C251.0%20649.5%2C250.0%20650.0%2C249.5%20650.5%2C249.0%20650.5%2C248.0%20651.0%2C247.5%20651.5%2C247.0%20652.0%2C246.5%20652.5%2C246.0%20652.5%2C245.0%20653.0%2C244.5%20653.5%2C244.0%20653.5%2C243.0%20653.5%2C242.0%20653.0%2C241.5%20652.0%2C241.5%20651.0%2C241.5%20650.0%2C241.5%20649.0%2C241.5%20648.0%2C241.5%20647.0%2C241.5%20646.0%2C241.5%20645.0%2C241.5%20644.0%2C241.5%20643.0%2C241.5%20642.0%2C241.5%20641.0%2C241.5%20640.0%2C241.5%20639.0%2C241.5%20638.0%2C241.5%20637.0%2C241.5%20636.0%2C241.5%20635.0%2C241.5%20634.0%2C241.5%20633.0%2C241.5%20632.0%2C241.5%20631.0%2C241.5%20630.0%2C241.5%20629.0%2C241.5%20628.0%2C241.5%20627.0%2C241.5%20626.0%2C241.5%20625.0%2C241.5%20624.0%2C241.5%20623.0%2C241.5%20622.0%2C241.5%20621.0%2C241.5%20620.0%2C241.5%20619.0%2C241.5%20618.0%2C241.5%20617.0%2C241.5%20616.0%2C241.5%20615.0%2C241.5%20614.0%2C241.5%20613.0%2C241.5%20612.0%2C241.5%20611.0%2C241.5%20610.0%2C241.5%20609.0%2C241.5%20608.0%2C241.5%20607.0%2C241.5%20606.0%2C241.5%20605.0%2C241.5%20604.0%2C241.5%20603.0%2C241.5%20602.0%2C241.5%20601.0%2C241.5%20600.0%2C241.5%20599.0%2C241.5%20598.0%2C241.5%20597.0%2C241.5%20596.0%2C241.5%20595.0%2C241.5%20594.0%2C241.5%20593.0%2C241.5%20592.0%2C241.5%20591.0%2C241.5%20590.0%2C241.5%20589.0%2C241.5%20588.0%2C241.5%20587.0%2C241.5%20586.0%2C241.5%20585.0%2C241.5%20584.0%2C241.5%20583.0%2C241.5%20582.0%2C241.5%20581.0%2C241.5%20580.0%2C241.5%20579.0%2C241.5%20578.0%2C241.5%20577.0%2C241.5%20576.0%2C241.5%20575.0%2C241.5%20574.0%2C241.5%20573.0%2C241.5%20572.0%2C241.5%20571.0%2C241.5%20570.0%2C241.5%20569.0%2C241.5%20568.0%2C241.5%20567.0%2C241.5%20566.0%2C241.5%20565.0%2C241.5%20564.0%2C241.5%20563.0%2C241.5%20562.0%2C241.5%20561.0%2C241.5%20560.0%2C241.5%20559.0%2C241.5%20558.0%2C241.5%20557.0%2C241.5%20556.0%2C241.5%20555.0%2C241.5%20554.0%2C241.5%20553.0%2C241.5%20552.0%2C241.5%20551.0%2C241.5%20550.0%2C241.5%20549.0%2C241.5%20548.0%2C241.5%20547.0%2C241.5%20546.0%2C241.5%20545.0%2C241.5%20544.0%2C241.5%20543.0%2C241.5%20542.0%2C241.5%20541.0%2C241.5%20540.0%2C241.5%20539.0%2C241.5%20538.0%2C241.5%20537.0%2C241.5%20536.0%2C241.5%20535.0%2C241.5%20534.0%2C241.5%20533.0%2C241.5%20532.0%2C241.5%20531.0%2C241.5%20530.0%2C241.5%20529.0%2C241.5%20528.0%2C241.5%20527.0%2C241.5%20526.0%2C241.5%20525.0%2C241.5%20524.0%2C241.5%20523.0%2C241.5%20522.0%2C241.5%20521.0%2C241.5%20520.0%2C241.5%20519.0%2C241.5%20518.0%2C241.5%20517.0%2C241.5%20516.0%2C241.5%20515.0%2C241.5%20514.0%2C241.5%20513.0%2C241.5%20512.0%2C241.5%20511.0%2C241.5%20510.0%2C241.5%20509.0%2C241.5%20508.0%2C241.5%20507.0%2C241.5%20506.0%2C241.5%20505.0%2C241.5%20504.0%2C241.5%20503.0%2C241.5%20502.0%2C241.5%20501.0%2C241.5%20500.0%2C241.5%20499.0%2C241.5%20498.0%2C241.5%20497.0%2C241.5%20496.0%2C241.5%20495.0%2C241.5%20494.0%2C241.5%20493.0%2C241.5%20492.0%2C241.5%20491.0%2C241.5%20490.0%2C241.5%20489.0%2C241.5%20488.0%2C241.5%20487.0%2C241.5%20486.0%2C241.5%20485.0%2C241.5%20484.0%2C241.5%20483.0%2C241.5%20482.0%2C241.5%20481.0%2C241.5%20480.0%2C241.5%20479.0%2C241.5%20478.0%2C241.5%20477.0%2C241.5%20476.0%2C241.5%20475.0%2C241.5%20474.0%2C241.5%20473.0%2C241.5%20472.0%2C241.5%20471.0%2C241.5%20470.0%2C241.5%20469.0%2C241.5%20468.0%2C241.5%20467.0%2C241.5%20466.0%2C241.5%20465.0%2C241.5%20464.0%2C241.5%20463.0%2C241.5%20462.0%2C241.5%20461.0%2C241.5%20460.0%2C241.5%20459.0%2C241.5%20458.0%2C241.5%20457.0%2C241.5%20456.0%2C241.5%20455.0%2C241.5%20454.0%2C241.5%20453.0%2C241.5%20452.0%2C241.5%20451.0%2C241.5%20450.0%2C241.5%20449.0%2C241.5%20448.0%2C241.5%20447.0%2C241.5%20446.0%2C241.5%20445.0%2C241.5%20444.0%2C241.5%20443.0%2C241.5%20442.0%2C241.5%20441.0%2C241.5%20440.0%2C241.5%20439.0%2C241.5%20438.0%2C241.5%20437.0%2C241.5%20436.0%2C241.5%20435.0%2C241.5%20434.0%2C241.5%20433.0%2C241.5%20432.0%2C241.5%20431.0%2C241.5%20430.0%2C241.5%20429.0%2C241.5%20428.0%2C241.5%20427.0%2C241.5%20426.0%2C241.5%20425.0%2C241.5%20424.0%2C241.5%20423.0%2C241.5%20422.0%2C241.5%20421.0%2C241.5%20420.0%2C241.5%20419.0%2C241.5%20418.0%2C241.5%20417.0%2C241.5%20416.0%2C241.5%20415.0%2C241.5%20414.0%2C241.5%20413.0%2C241.5%20412.0%2C241.5%20411.0%2C241.5%20410.0%2C241.5%20409.0%2C241.5%20408.0%2C241.5%20407.0%2C241.5%20406.0%2C241.5%20405.0%2C241.5%20404.0%2C241.5%20403.0%2C241.5%20402.0%2C241.5%20401.0%2C241.5%20400.0%2C241.5%20399.0%2C241.5%20398.0%2C241.5%20397.0%2C241.5%20396.0%2C241.5%20395.0%2C241.5%20394.0%2C241.5%20393.0%2C241.5%20392.0%2C241.5%20391.0%2C241.5%20390.0%2C241.5%20389.0%2C241.5%20388.0%2C241.5%20387.0%2C241.5%20386.0%2C241.5%20385.0%2C241.5%20384.0%2C241.5%20383.0%2C241.5%20382.0%2C241.5%20381.0%2C241.5%20380.0%2C241.5%20379.0%2C241.5%20378.0%2C241.5%20377.0%2C241.5%20376.0%2C241.5%20375.0%2C241.5%20374.0%2C241.5%20373.0%2C241.5%20372.0%2C241.5%20371.0%2C241.5%20370.0%2C241.5%20369.0%2C241.5%20368.0%2C241.5%20367.0%2C241.5%20366.0%2C241.5%20365.0%2C241.5%20364.0%2C241.5%20363.0%2C241.5%20362.5%2C242.0%20362.0%2C242.5%20361.5%2C243.0%20361.5%2C244.0%20361.0%2C244.5%20360.5%2C245.0%20360.5%2C246.0%20360.0%2C246.5%20359.5%2C247.0%20359.0%2C247.5%20358.5%2C248.0%20358.5%2C249.0%20358.0%2C249.5%20357.5%2C250.0%20357.5%2C251.0%20357.0%2C251.5%20356.5%2C252.0%20356.0%2C252.5%20355.5%2C253.0%20355.5%2C254.0%20355.0%2C254.5%20354.5%2C255.0%20354.0%2C255.5%20353.5%2C256.0%20353.5%2C257.0%20353.0%2C257.5%20352.5%2C258.0%20352.5%2C259.0%20352.0%2C259.5%20351.5%2C260.0%20351.0%2C260.5%20350.5%2C261.0%20350.5%2C262.0%20350.0%2C262.5%20349.5%2C263.0%20349.5%2C264.0%20349.0%2C264.5%20348.5%2C265.0%20348.0%2C265.5%20347.5%2C266.0%20347.5%2C267.0%20347.0%2C267.5%20346.5%2C268.0%20346.5%2C269.0%20346.0%2C269.5%20345.5%2C270.0%20345.5%2C271.0%20345.0%2C271.5%20344.5%2C272.0%20344.0%2C272.5%20343.5%2C273.0%20343.5%2C274.0%20343.0%2C274.5%20342.5%2C275.0%20342.0%2C275.5%20341.5%2C276.0%20341.5%2C277.0%20341.0%2C277.5%20340.5%2C278.0%20340.5%2C279.0%20340.0%2C279.5%20339.5%2C280.0%20339.0%2C280.5%20338.5%2C281.0%20338.5%2C282.0%20338.0%2C282.5%20337.5%2C283.0%20337.5%2C284.0%20337.0%2C284.5%20336.5%2C285.0%20336.5%2C286.0%20336.0%2C286.5%20335.5%2C287.0%20335.0%2C287.5%20334.5%2C288.0%20334.5%2C289.0%20334.0%2C289.5%20333.5%2C290.0%20333.5%2C291.0%20333.0%2C291.5%20332.5%2C292.0%20332.5%2C293.0%20332.0%2C293.5%20331.5%2C294.0%20331.0%2C294.5%20330.5%2C295.0%20330.5%2C296.0%20330.0%2C296.5%20329.5%2C297.0%20329.5%2C298.0%20329.0%2C298.5%20328.5%2C299.0%20328.5%2C300.0%20328.0%2C300.5%20327.5%2C301.0%20327.0%2C301.5%20326.5%2C302.0%20326.5%2C303.0%20326.0%2C303.5%20325.5%2C304.0%20325.5%2C305.0%20325.0%2C305.5%20324.5%2C306.0%20324.0%2C306.5%20323.5%2C307.0%20323.5%2C308.0%20323.0%2C308.5%20322.5%2C309.0%20322.5%2C310.0%20322.0%2C310.5%20321.5%2C311.0%20321.0%2C311.5%20320.5%2C312.0%20320.5%2C313.0%20320.0%2C313.5%20319.5%2C314.0%20319.0%2C314.5%20318.5%2C315.0%20318.5%2C316.0%20318.0%2C316.5%20317.5%2C317.0%20317.5%2C318.0%20317.0%2C318.5%20316.5%2C319.0%20316.5%2C320.0%20316.0%2C320.5%20315.5%2C321.0%20315.0%2C321.5%20314.5%2C322.0%20314.5%2C323.0%20314.0%2C323.5%20313.5%2C324.0%20313.5%2C325.0%20313.0%2C325.5%20312.5%2C326.0%20312.5%2C327.0%20312.0%2C327.5%20311.5%2C328.0%20311.0%2C328.5%20310.5%2C329.0%20310.5%2C330.0%20310.0%2C330.5%20309.5%2C331.0%20309.5%2C332.0%20309.0%2C332.5%20308.5%2C333.0%20308.0%2C333.5%20307.5%2C334.0%20307.5%2C335.0%20307.0%2C335.5%20306.5%2C336.0%20306.0%2C336.5%20305.5%2C337.0%20305.5%2C338.0%20305.0%2C338.5%20304.5%2C339.0%20304.5%2C340.0%20304.0%2C340.5%20303.5%2C341.0%20303.0%2C341.5%20302.5%2C342.0%20302.5%2C343.0%20302.0%2C343.5%20301.5%2C344.0%20301.0%2C344.5%20300.5%2C345.0%20300.5%2C346.0%20300.0%2C346.5%20299.5%2C347.0%20299.5%2C348.0%20299.0%2C348.5%20298.5%2C349.0%20298.0%2C349.5%20297.5%2C350.0%20297.5%2C351.0%20297.0%2C351.5%20296.5%2C352.0%20296.0%2C352.5%20295.5%2C353.0%20295.5%2C354.0%20295.0%2C354.5%20294.5%2C355.0%20294.5%2C356.0%20294.0%2C356.5%20293.5%2C357.0%20293.5%2C358.0%20293.0%2C358.5%20292.5%2C359.0%20292.0%2C359.5%20291.5%2C360.0%20291.5%2C361.0%20291.0%2C361.5%20290.5%2C362.0%20290.5%2C363.0%20290.0%2C363.5%20289.5%2C364.0%20289.0%2C364.5%20288.5%2C365.0%20288.5%2C366.0%20288.0%2C366.5%20287.5%2C367.0%20287.5%2C368.0%20287.0%2C368.5%20286.5%2C369.0%20286.0%2C369.5%20285.5%2C370.0%20285.5%2C371.0%20285.0%2C371.5%20284.5%2C372.0%20284.5%2C373.0%20284.0%2C373.5%20283.5%2C374.0%20283.0%2C374.5%20282.5%2C375.0%20282.5%2C376.0%20282.0%2C376.5%20281.5%2C377.0%20281.5%2C378.0%20281.0%2C378.5%20280.5%2C379.0%20280.0%2C379.5%20279.5%2C380.0%20279.5%2C381.0%20279.0%2C381.5%20278.5%2C382.0%20278.5%2C383.0%20278.0%2C383.5%20277.5%2C384.0%20277.5%2C385.0%20277.0%2C385.5%20276.5%2C386.0%20276.0%2C386.5%20275.5%2C387.0%20275.5%2C388.0%20275.0%2C388.5%20274.5%2C389.0%20274.5%2C390.0%20274.0%2C390.5%20273.5%2C391.0%20273.5%2C392.0%20273.0%2C392.5%20272.5%2C393.0%20272.0%2C393.5%20271.5%2C394.0%20271.5%2C395.0%20271.0%2C395.5%20270.5%2C396.0%20270.0%2C396.5%20269.5%2C397.0%20269.5%2C398.0%20269.0%2C398.5%20268.5%2C399.0%20268.0%2C399.5%20267.5%2C400.0%20267.5%2C401.0%20267.0%2C401.5%20266.5%2C402.0%20266.5%2C403.0%20266.0%2C403.5%20265.5%2C404.0%20265.0%2C404.5%20264.5%2C405.0%20264.5%2C406.0%20264.0%2C406.5%20263.5%2C407.0%20263.5%2C408.0%20263.0%2C408.5%20262.5%2C409.0%20262.0%2C409.5%20261.5%2C410.0%20261.5%2C411.0%20261.0%2C411.5%20260.5%2C412.0%20260.5%2C413.0%20260.0%2C413.5%20259.5%2C414.0%20259.0%2C414.5%20258.5%2C415.0%20258.5%2C416.0%20258.0%2C416.5%20257.5%2C417.0%20257.5%2C418.0%20257.0%2C418.5%20256.5%2C419.0%20256.0%2C419.5%20255.5%2C420.0%20255.5%2C421.0%20255.0%2C421.5%20254.5%2C422.0%20254.5%2C423.0%20254.0%2C423.5%20253.5%2C424.0%20253.5%2C425.0%20253.0%2C425.5%20252.5%2C426.0%20252.0%2C426.5%20251.5%2C427.0%20251.5%2C428.0%20251.0%2C428.5%20250.5%2C429.0%20250.5%2C430.0%20250.0%2C430.5%20249.5%2C431.0%20249.5%2C432.0%20249.0%2C432.5%20248.5%2C433.0%20248.0%2C433.5%20247.5%2C434.0%20247.5%2C435.0%20247.0%2C435.5%20246.5%2C436.0%20246.0%2C436.5%20245.5%2C437.0%20245.5%2C438.0%20245.0%2C438.5%20244.5%2C439.0%20244.5%2C440.0%20244.0%2C440.5%20243.5%2C441.0%20243.0%2C441.5%20242.5%2C442.0%20242.5%2C443.0%20242.0%2C443.5%20241.5%2C444.0%20241.5%2C445.0%20241.0%2C445.5%20240.5%2C446.0%20240.5%2C447.0%20240.0%2C447.5%20239.5%2C448.0%20239.0%2C448.5%20238.5%2C449.0%20238.5%2C450.0%20238.0%2C450.5%20237.5%2C451.0%20237.0%2C451.5%20236.5%2C452.0%20236.5%2C453.0%20236.0%2C453.5%20235.5%2C454.0%20235.5%2C455.0%20235.0%2C455.5%20234.5%2C456.0%20234.0%2C456.5%20233.5%2C457.0%20233.5%2C458.0%20233.0%2C458.5%20232.5%2C459.0%20232.5%2C460.0%20232.0%2C460.5%20231.5%2C461.0%20231.5%2C462.0%20231.0%2C462.5%20230.5%2C463.0%20230.5%2C464.0%20230.0%2C464.5%20229.5%2C465.0%20229.0%2C465.5%20228.5%2C466.0%20228.5%2C467.0%20228.0%2C467.5%20227.5%2C468.0%20227.0%2C468.5%20226.5%2C469.0%20226.5%2C470.0%20226.0%2C470.5%20225.5%2C471.0%20225.5%2C472.0%20225.0%2C472.5%20224.5%2C473.0%20224.0%2C473.5%20223.5%2C474.0%20223.5%2C475.0%20223.0%2C475.5%20222.5%2C476.0%20222.5%2C477.0%20222.0%2C477.5%20221.5%2C478.0%20221.0%2C478.5%20220.5%2C479.0%20220.5%2C480.0%20220.0%2C480.5%20219.5%2C481.0%20219.5%2C482.0%20219.0%2C482.5%20218.5%2C483.0%20218.0%2C483.5%20217.5%2C484.0%20217.5%2C485.0%20217.0%2C485.5%20216.5%2C486.0%20216.5%2C487.0%20216.0%2C487.5%20215.5%2C488.0%20215.0%2C488.5%20214.5%2C489.0%20214.5%2C490.0%20214.0%2C490.5%20213.5%2C491.0%20213.5%2C492.0%20213.0%2C492.5%20212.5%2C493.0%20212.0%2C493.5%20211.5%2C494.0%20211.5%2C495.0%20211.0%2C495.5%20210.5%2C496.0%20210.5%2C497.0%20210.0%2C497.5%20209.5%2C498.0%20209.0%2C498.5%20208.5%2C499.0%20208.5%2C500.0%20208.0%2C500.5%20207.5%2C501.0%20207.5%2C502.0%20207.0%2C502.5%20206.5%2C503.0%20206.0%2C503.5%20205.5%2C504.0%20205.5%2C505.0%20205.0%2C505.5%20204.5%2C506.0%20204.5%2C507.0%20204.0%2C507.5%20203.5%2C508.0%20203.0%2C508.5%20202.5%2C509.0%20202.5%2C510.0%20202.5%2C511.0%20202.5%2C512.0%20202.5%2C513.0%20203.0%2C513.5%20203.5%2C514.0%20203.5%2C515.0%20204.0%2C515.5%20204.5%2C516.0%20205.0%2C516.5%20205.5%2C517.0%20205.5%2C518.0%20206.0%2C518.5%20206.5%2C519.0%20206.5%2C520.0%20207.0%2C520.5%20207.5%2C521.0%20208.0%2C521.5%20208.5%2C522.0%20208.5%2C523.0%20209.0%2C523.5%20209.5%2C524.0%20209.5%2C525.0%20210.0%2C525.5%20210.5%2C526.0%20211.0%2C526.5%20211.5%2C527.0%20211.5%2C528.0%20212.0%2C528.5%20212.5%2C529.0%20212.5%2C530.0%20213.0%2C530.5%20213.5%2C531.0%20213.5%2C532.0%20214.0%2C532.5%20214.5%2C533.0%20215.0%2C533.5%20215.5%2C534.0%20215.5%2C535.0%20216.0%2C535.5%20216.5%2C536.0%20216.5%2C537.0%20217.0%2C537.5%20217.5%2C538.0%20218.0%2C538.5%20218.5%2C539.0%20218.5%2C540.0%20219.0%2C540.5%20219.5%2C541.0%20219.5%2C542.0%20220.0%2C542.5%20220.5%2C543.0%20220.5%2C544.0%20221.0%2C544.5%20221.5%2C545.0%20222.0%2C545.5%20222.5%2C546.0%20222.5%2C547.0%20223.0%2C547.5%20223.5%2C548.0%20223.5%2C549.0%20224.0%2C549.5%20224.5%2C550.0%20225.0%2C550.5%20225.5%2C551.0%20225.5%2C552.0%20226.0%2C552.5%20226.5%2C553.0%20226.5%2C554.0%20227.0%2C554.5%20227.5%2C555.0%20227.5%2C556.0%20228.0%2C556.5%20228.5%2C557.0%20229.0%2C557.5%20229.5%2C558.0%20229.5%2C559.0%20230.0%2C559.5%20230.5%2C560.0%20231.0%2C560.5%20231.5%2C561.0%20231.5%2C562.0%20232.0%2C562.5%20232.5%2C563.0%20232.5%2C564.0%20233.0%2C564.5%20233.5%2C565.0%20234.0%2C565.5%20234.5%2C566.0%20234.5%2C567.0%20235.0%2C567.5%20235.5%2C568.0%20236.0%2C568.5%20236.5%2C569.0%20236.5%2C570.0%20237.0%2C570.5%20237.5%2C571.0%20237.5%2C572.0%20238.0%2C572.5%20238.5%2C573.0%20239.0%2C573.5%20239.5%2C574.0%20239.5%2C575.0%20240.0%2C575.5%20240.5%2C576.0%20240.5%2C577.0%20241.0%2C577.5%20241.5%2C578.0%20241.5%2C579.0%20242.0%2C579.5%20242.5%2C580.0%20242.5%2C581.0%20243.0%2C581.5%20243.5%2C582.0%20244.0%2C582.5%20244.5%2C583.0%20244.5%2C584.0%20245.0%2C584.5%20245.5%2C585.0%20245.5%2C586.0%20246.0%2C586.5%20246.5%2C587.0%20247.0%2C587.5%20247.5%2C588.0%20247.5%2C589.0%20248.0%2C589.5%20248.5%2C590.0%20248.5%2C591.0%20249.0%2C591.5%20249.5%2C592.0%20250.0%2C592.5%20250.5%2C593.0%20250.5%2C594.0%20251.0%2C594.5%20251.5%2C595.0%20251.5%2C596.0%20252.0%2C596.5%20252.5%2C597.0%20252.5%2C598.0%20253.0%2C598.5%20253.5%2C599.0%20254.0%2C599.5%20254.5%2C600.0%20254.5%2C601.0%20255.0%2C601.5%20255.5%2C602.0%20255.5%2C603.0%20256.0%2C603.5%20256.5%2C604.0%20257.0%2C604.5%20257.5%2C605.0%20257.5%2C606.0%20258.0%2C606.5%20258.5%2C607.0%20258.5%2C608.0%20259.0%2C608.5%20259.5%2C609.0%20260.0%2C609.5%20260.5%2C610.0%20260.5%2C611.0%20261.0%2C611.5%20261.5%2C612.0%20261.5%2C613.0%20262.0%2C613.5%20262.5%2C614.0%20263.0%2C614.5%20263.5%2C615.0%20263.5%2C616.0%20264.0%2C616.5%20264.5%2C617.0%20264.5%2C618.0%20265.0%2C618.5%20265.5%2C619.0%20266.0%2C619.5%20266.5%2C620.0%20266.5%2C621.0%20267.0%2C621.5%20267.5%2C622.0%20267.5%2C623.0%20268.0%2C623.5%20268.5%2C624.0%20269.0%2C624.5%20269.5%2C625.0%20269.5%2C626.0%20270.0%2C626.5%20270.5%2C627.0%20270.5%2C628.0%20271.0%2C628.5%20271.5%2C629.0%20272.0%2C629.5%20272.5%2C630.0%20272.5%2C631.0%20273.0%2C631.5%20273.5%2C632.0%20273.5%2C633.0%20274.0%2C633.5%20274.5%2C634.0%20275.0%2C634.5%20275.5%2C635.0%20275.5%2C636.0%20276.0%2C636.5%20276.5%2C637.0%20276.5%2C638.0%20277.0%2C638.5%20277.5%2C639.0%20277.5%2C640.0%20278.0%2C640.5%20278.5%2C641.0%20279.0%2C641.5%20279.5%2C642.0%20279.5%2C643.0%20280.0%2C643.5%20280.5%2C644.0%20281.0%2C644.5%20281.5%2C645.0%20281.5%2C646.0%20282.0%2C646.5%20282.5%2C647.0%20282.5%2C648.0%20283.0%2C648.5%20283.5%2C649.0%20283.5%2C650.0%20284.0%2C650.5%20284.5%2C651.0%20285.0%2C651.5%20285.5%2C652.0%20285.5%2C653.0%20286.0%2C653.5%20286.5%2C654.0%20286.5%2C655.0%20287.0%2C655.5%20287.5%2C656.0%20288.0%2C656.5%20288.5%2C657.0%20288.5%2C658.0%20289.0%2C658.5%20289.5%2C659.0%20289.5%2C660.0%20290.0%2C660.5%20290.5%2C661.0%20291.0%2C661.5%20291.5%2C662.0%20291.5%2C663.0%20292.0%2C663.5%20292.5%2C664.0%20292.5%2C665.0%20293.0%2C665.5%20293.5%2C666.0%20294.0%2C666.5%20294.5%2C667.0%20294.5%2C668.0%20295.0%2C668.5%20295.5%2C669.0%20296.0%2C669.5%20296.5%2C670.0%20296.5%2C671.0%20297.0%2C671.5%20297.5%2C672.0%20297.5%2C673.0%20298.0%2C673.5%20298.5%2C674.0%20299.0%2C674.5%20299.5%2C675.0%20299.5%2C676.0%20300.0%2C676.5%20300.5%2C677.0%20300.5%2C678.0%20301.0%2C678.5%20301.5%2C679.0%20302.0%2C679.5%20302.5%2C680.0%20302.5%2C681.0%20303.0%2C681.5%20303.5%2C682.0%20303.5%2C683.0%20304.0%2C683.5%20304.5%2C684.0%20304.5%2C685.0%20305.0%2C685.5%20305.5%2C686.0%20306.0%2C686.5%20306.5%2C687.0%20306.5%2C688.0%20307.0%2C688.5%20307.5%2C689.0%20307.5%2C690.0%20308.0%2C690.5%20308.5%2C691.0%20309.0%2C691.5%20309.5%2C692.0%20309.5%2C693.0%20310.0%2C693.5%20310.5%2C694.0%20310.5%2C695.0%20311.0%2C695.5%20311.5%2C696.0%20312.0%2C696.5%20312.5%2C697.0%20312.5%2C698.0%20313.0%2C698.5%20313.5%2C699.0%20313.5%2C700.0%20314.0%2C700.5%20314.5%2C701.0%20314.5%2C702.0%20315.0%2C702.5%20315.5%2C703.0%20316.0%2C703.5%20316.5%2C704.0%20316.5%2C705.0%20317.0%2C705.5%20317.5%2C706.0%20317.5%2C707.0%20318.0%2C707.5%20318.5%2C708.0%20319.0%2C708.5%20319.5%2C709.0%20319.5%2C710.0%20320.0%2C710.5%20320.5%2C711.0%20320.5%2C712.0%20321.0%2C712.5%20321.5%2C713.0%20322.0%2C713.5%20322.5%2C714.0%20322.5%2C715.0%20323.0%2C715.5%20323.5%2C716.0%20323.5%2C717.0%20324.0%2C717.5%20324.5%2C718.0%20325.0%2C718.5%20325.5%2C719.0%20325.5%2C720.0%20326.0%2C720.5%20326.5%2C721.0%20327.0%2C721.5%20327.5%2C722.0%20327.5%2C723.0%20328.0%2C723.5%20328.5%2C724.0%20328.5%2C725.0%20329.0%2C725.5%20329.5%2C726.0%20330.0%2C726.5%20330.5%2C727.0%20330.5%2C728.0%20331.0%2C728.5%20331.5%2C729.0%20331.5%2C730.0%20332.0%2C730.5%20332.5%2C731.0%20333.0%2C731.5%20333.5%2C732.0%20333.5%2C733.0%20334.0%2C733.5%20334.5%2C734.0%20334.5%2C735.0%20335.0%2C735.5%20335.5%2C736.0%20335.5%2C737.0%20336.0%2C737.5%20336.5%2C738.0%20336.5%2C739.0%20337.0%2C739.5%20337.5%2C740.0%20337.5%2C741.0%20338.0%2C741.5%20338.5%2C742.0%20339.0%2C742.5%20339.5%2C743.0%20339.5%2C744.0%20340.0%2C744.5%20340.5%2C745.0%20341.0%2C745.5%20341.5%2C746.0%20341.5%2C747.0%20342.0%2C747.5%20342.5%2C748.0%20342.5%2C749.0%20343.0%2C749.5%20343.5%2C750.0%20344.0%2C750.5%20344.5%2C751.0%20344.5%2C752.0%20345.0%2C752.5%20345.5%2C753.0%20345.5%2C754.0%20346.0%2C754.5%20346.5%2C755.0%20346.5%2C756.0%20347.0%2C756.5%20347.5%2C757.0%20348.0%2C757.5%20348.5%2C758.0%20348.5%2C759.0%20349.0%2C759.5%20349.5%2C760.0%20350.0%2C760.5%20350.5%2C761.0%20350.5%2C762.0%20351.0%2C762.5%20351.5%2C763.0%20351.5%2C764.0%20352.0%2C764.5%20352.5%2C765.0%20353.0%2C765.5%20353.5%2C766.0%20353.5%2C767.0%20354.0%2C767.5%20354.5%2C768.0%20354.5%2C769.0%20355.0%2C769.5%20355.5%2C770.0%20356.0%2C770.5%20356.5%2C771.0%20356.5%2C772.0%20357.0%2C772.5%20357.5%2C773.0%20357.5%2C774.0%20358.0%2C774.5%20358.5%2C775.0%20359.0%2C775.5%20359.5%2C776.0%20359.5%2C777.0%20360.0%2C777.5%20360.5%2C778.0%20361.0%2C778.5%20361.5%2C779.0%20361.5%2C780.0%20362.0%2C780.5%20362.5%2C781.0%20362.5%2C782.0%20363.0%2C782.5%20364.0%2C782.5%20365.0%2C782.5%20366.0%2C782.5%20367.0%2C782.5%20368.0%2C782.5%20369.0%2C782.5%20370.0%2C782.5%20371.0%2C782.5%20372.0%2C782.5%20373.0%2C782.5%20374.0%2C782.5%20375.0%2C782.5%20376.0%2C782.5%20377.0%2C782.5%20378.0%2C782.5%20379.0%2C782.5%20380.0%2C782.5%20381.0%2C782.5%20382.0%2C782.5%20383.0%2C782.5%20384.0%2C782.5%20385.0%2C782.5%20386.0%2C782.5%20387.0%2C782.5%20388.0%2C782.5%20389.0%2C782.5%20390.0%2C782.5%20391.0%2C782.5%20392.0%2C782.5%20393.0%2C782.5%20394.0%2C782.5%20395.0%2C782.5%20396.0%2C782.5%20397.0%2C782.5%20398.0%2C782.5%20399.0%2C782.5%20400.0%2C782.5%20401.0%2C782.5%20402.0%2C782.5%20403.0%2C782.5%20404.0%2C782.5%20405.0%2C782.5%20406.0%2C782.5%20407.0%2C782.5%20408.0%2C782.5%20409.0%2C782.5%20410.0%2C782.5%20411.0%2C782.5%20412.0%2C782.5%20413.0%2C782.5%20414.0%2C782.5%20415.0%2C782.5%20416.0%2C782.5%20417.0%2C782.5%20418.0%2C782.5%20419.0%2C782.5%20420.0%2C782.5%20421.0%2C782.5%20422.0%2C782.5%20423.0%2C782.5%20424.0%2C782.5%20425.0%2C782.5%20426.0%2C782.5%20427.0%2C782.5%20428.0%2C782.5%20429.0%2C782.5%20430.0%2C782.5%20431.0%2C782.5%20432.0%2C782.5%20433.0%2C782.5%20434.0%2C782.5%20435.0%2C782.5%20436.0%2C782.5%20437.0%2C782.5%20438.0%2C782.5%20439.0%2C782.5%20440.0%2C782.5%20441.0%2C782.5%20442.0%2C782.5%20443.0%2C782.5%20444.0%2C782.5%20445.0%2C782.5%20446.0%2C782.5%20447.0%2C782.5%20448.0%2C782.5%20449.0%2C782.5%20450.0%2C782.5%20451.0%2C782.5%20452.0%2C782.5%20453.0%2C782.5%20454.0%2C782.5%20455.0%2C782.5%20456.0%2C782.5%20457.0%2C782.5%20458.0%2C782.5%20459.0%2C782.5%20460.0%2C782.5%20461.0%2C782.5%20462.0%2C782.5%20463.0%2C782.5%20464.0%2C782.5%20465.0%2C782.5%20466.0%2C782.5%20467.0%2C782.5%20468.0%2C782.5%20469.0%2C782.5%20470.0%2C782.5%20471.0%2C782.5%20472.0%2C782.5%20473.0%2C782.5%20474.0%2C782.5%20475.0%2C782.5%20476.0%2C782.5%20477.0%2C782.5%20478.0%2C782.5%20479.0%2C782.5%20480.0%2C782.5%20481.0%2C782.5%20482.0%2C782.5%20483.0%2C782.5%20484.0%2C782.5%20485.0%2C782.5%20486.0%2C782.5%20487.0%2C782.5%20488.0%2C782.5%20489.0%2C782.5%20490.0%2C782.5%20491.0%2C782.5%20492.0%2C782.5%20493.0%2C782.5%20494.0%2C782.5%20495.0%2C782.5%20496.0%2C782.5%20497.0%2C782.5%20498.0%2C782.5%20499.0%2C782.5%20500.0%2C782.5%20501.0%2C782.5%20502.0%2C782.5%20503.0%2C782.5%20504.0%2C782.5%20505.0%2C782.5%20506.0%2C782.5%20507.0%2C782.5%20508.0%2C782.5%20509.0%2C782.5%20510.0%2C782.5%20511.0%2C782.5%20512.0%2C782.5%20513.0%2C782.5%20514.0%2C782.5%20515.0%2C782.5%20516.0%2C782.5%20517.0%2C782.5%20518.0%2C782.5%20519.0%2C782.5%20520.0%2C782.5%20521.0%2C782.5%20522.0%2C782.5%20523.0%2C782.5%20524.0%2C782.5%20525.0%2C782.5%20526.0%2C782.5%20527.0%2C782.5%20528.0%2C782.5%20529.0%2C782.5%20530.0%2C782.5%20531.0%2C782.5%20532.0%2C782.5%20533.0%2C782.5%20534.0%2C782.5%20535.0%2C782.5%20536.0%2C782.5%20537.0%2C782.5%20538.0%2C782.5%20539.0%2C782.5%20540.0%2C782.5%20541.0%2C782.5%20542.0%2C782.5%20543.0%2C782.5%20544.0%2C782.5%20545.0%2C782.5%20546.0%2C782.5%20547.0%2C782.5%20548.0%2C782.5%20549.0%2C782.5%20550.0%2C782.5%20551.0%2C782.5%20552.0%2C782.5%20553.0%2C782.5%20554.0%2C782.5%20555.0%2C782.5%20556.0%2C782.5%20557.0%2C782.5%20558.0%2C782.5%20559.0%2C782.5%20560.0%2C782.5%20561.0%2C782.5%20562.0%2C782.5%20563.0%2C782.5%20564.0%2C782.5%20565.0%2C782.5%20566.0%2C782.5%20567.0%2C782.5%20568.0%2C782.5%20569.0%2C782.5%20570.0%2C782.5%20571.0%2C782.5%20572.0%2C782.5%20573.0%2C782.5%20574.0%2C782.5%20575.0%2C782.5%20576.0%2C782.5%20577.0%2C782.5%20578.0%2C782.5%20579.0%2C782.5%20580.0%2C782.5%20581.0%2C782.5%20582.0%2C782.5%20583.0%2C782.5%20584.0%2C782.5%20585.0%2C782.5%20586.0%2C782.5%20587.0%2C782.5%20588.0%2C782.5%20589.0%2C782.5%20590.0%2C782.5%20591.0%2C782.5%20592.0%2C782.5%20593.0%2C782.5%20594.0%2C782.5%20595.0%2C782.5%20596.0%2C782.5%20597.0%2C782.5%20598.0%2C782.5%20599.0%2C782.5%20600.0%2C782.5%20601.0%2C782.5%20602.0%2C782.5%20603.0%2C782.5%20604.0%2C782.5%20605.0%2C782.5%20606.0%2C782.5%20607.0%2C782.5%20608.0%2C782.5%20609.0%2C782.5%20610.0%2C782.5%20611.0%2C782.5%20612.0%2C782.5%20613.0%2C782.5%20614.0%2C782.5%20615.0%2C782.5%20616.0%2C782.5%20617.0%2C782.5%20618.0%2C782.5%20619.0%2C782.5%20620.0%2C782.5%20621.0%2C782.5%20622.0%2C782.5%20623.0%2C782.5%20624.0%2C782.5%20625.0%2C782.5%20626.0%2C782.5%20627.0%2C782.5%20628.0%2C782.5%20629.0%2C782.5%20630.0%2C782.5%20631.0%2C782.5%20632.0%2C782.5%20633.0%2C782.5%20634.0%2C782.5%20635.0%2C782.5%20636.0%2C782.5%20637.0%2C782.5%20638.0%2C782.5%20639.0%2C782.5%20640.0%2C782.5%20641.0%2C782.5%20642.0%2C782.5%20643.0%2C782.5%20644.0%2C782.5%20645.0%2C782.5%20646.0%2C782.5%20647.0%2C782.5%20648.0%2C782.5%20649.0%2C782.5%20650.0%2C782.5%20651.0%2C782.5%20652.0%2C782.5%20653.0%2C782.5%20654.0%2C782.5%20655.0%2C782.5%20656.0%2C782.5%20657.0%2C782.5%20658.0%2C782.5%20659.0%2C782.5%20660.0%2C782.5%20661.0%2C782.5%20662.0%2C782.5%20663.0%2C782.5%20664.0%2C782.5%20665.0%2C782.5%20665.5%2C782.0%22%20%2F%3E%3C%2Fsvg%3E');

  --image-url-telegram-premium: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M47.3065%2075.4791L27.7285%2087.4727C26.0852%2088.4794%2023.9369%2087.9633%2022.9303%2086.32C22.4386%2085.5175%2022.292%2084.5503%2022.5238%2083.638L25.5544%2071.7092C26.5877%2067.6424%2029.3706%2064.2428%2033.1533%2062.4267L54.512%2052.172C55.9226%2051.4947%2056.5171%2049.8021%2055.8398%2048.3915C55.2914%2047.2491%2054.051%2046.6098%2052.8023%2046.826L29.0274%2050.942C24.4362%2051.7369%2019.7279%2050.4691%2016.1566%2047.4762L8.6459%2041.182C7.16885%2039.9442%206.97491%2037.7434%208.21272%2036.2664C8.81474%2035.548%209.68047%2035.102%2010.6149%2035.0289L33.5623%2033.233C35.496%2033.0817%2037.1812%2031.8579%2037.9235%2030.066L46.7762%208.69618C47.5137%206.91577%2049.5549%206.07037%2051.3354%206.80793C52.1903%207.16207%2052.8695%207.84129%2053.2236%208.69618L62.0763%2030.066C62.8186%2031.8579%2064.5038%2033.0817%2066.4375%2033.233L89.511%2035.0387C91.4322%2035.1891%2092.8678%2036.8685%2092.7175%2038.7897C92.6451%2039.714%2092.208%2040.5714%2091.5025%2041.1729L73.9053%2056.1749C72.4277%2057.4345%2071.7831%2059.4175%2072.2375%2061.3053L77.6474%2083.7792C78.0984%2085.6528%2076.9452%2087.5373%2075.0716%2087.9883C74.1713%2088.205%2073.2218%2088.055%2072.4322%2087.5713L52.6933%2075.4791C51.0404%2074.4666%2048.9594%2074.4666%2047.3065%2075.4791Z%22%20fill%3D%22url(%23paint0_linear_124_4926)%22%2F%3E%3Cg%20opacity%3D%220.6%22%3E%3Cpath%20d%3D%22M74.1958%2025.9339C74.1162%2026.1962%2074.0513%2026.4925%2073.9933%2026.8247C73.9318%2026.4938%2073.8645%2026.1997%2073.7836%2025.9402C73.6432%2025.4904%2073.4523%2025.1117%2073.1497%2024.81C72.8465%2024.5076%2072.4699%2024.3211%2072.026%2024.1879C71.7934%2024.1181%2071.5335%2024.0605%2071.245%2024.0089C72.0724%2023.8756%2072.7113%2023.6695%2073.1663%2023.2123C73.4708%2022.9063%2073.6622%2022.5214%2073.8003%2022.066C73.8792%2021.806%2073.9437%2021.5126%2074.0013%2021.1838C74.0613%2021.5123%2074.1276%2021.805%2074.2077%2022.0641C74.3478%2022.517%2074.5394%2022.8994%2074.8429%2023.2038C75.2893%2023.6514%2075.9123%2023.8586%2076.7194%2023.9966C75.9076%2024.1302%2075.2795%2024.3367%2074.8304%2024.7875C74.5256%2025.0935%2074.3341%2025.4785%2074.1958%2025.9339Z%22%20fill%3D%22url(%23paint20_linear_124_4926)%22%2F%3E%3Cpath%20d%3D%22M74.1958%2025.9339C74.1162%2026.1962%2074.0513%2026.4925%2073.9933%2026.8247C73.9318%2026.4938%2073.8645%2026.1997%2073.7836%2025.9402C73.6432%2025.4904%2073.4523%2025.1117%2073.1497%2024.81C72.8465%2024.5076%2072.4699%2024.3211%2072.026%2024.1879C71.7934%2024.1181%2071.5335%2024.0605%2071.245%2024.0089C72.0724%2023.8756%2072.7113%2023.6695%2073.1663%2023.2123C73.4708%2022.9063%2073.6622%2022.5214%2073.8003%2022.066C73.8792%2021.806%2073.9437%2021.5126%2074.0013%2021.1838C74.0613%2021.5123%2074.1276%2021.805%2074.2077%2022.0641C74.3478%2022.517%2074.5394%2022.8994%2074.8429%2023.2038C75.2893%2023.6514%2075.9123%2023.8586%2076.7194%2023.9966C75.9076%2024.1302%2075.2795%2024.3367%2074.8304%2024.7875C74.5256%2025.0935%2074.3341%2025.4785%2074.1958%2025.9339Z%22%20stroke%3D%22url(%23paint21_linear_124_4926)%22%20style%3D%22mix-blend-mode%3Asoft-light%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_124_4926%22%20x1%3D%229%22%20y1%3D%2268.5%22%20x2%3D%2290.1475%22%20y2%3D%223.67735%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%236B93FF%22%2F%3E%3Cstop%20offset%3D%220.439058%22%20stop-color%3D%22%23976FFF%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23E46ACE%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%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-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-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-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-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');
}
