/*! nouislider - 14.7.0 - 4/6/2021 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

@font-face{font-family:"Roboto";src:url(/21440b368fcd6565651f.woff2) format("woff2"),url(/6e46090e1e0b10cb5740.woff) format("woff");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url(/b21da07c934a28b2fef3.woff2) format("woff2"),url(/9fa4a8113c081e9b3138.woff) format("woff");font-weight:bold;font-style:normal;font-display:swap}@font-face{font-family:"Roboto";src:url(/0f3bda99e16bc93d65a9.woff2) format("woff2"),url(/2443f369889d465ace96.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}*{padding:0;margin:0;box-sizing:border-box}html{overflow-x:hidden;-webkit-text-size-adjust:100%}button,input[type=submit]{appearance:none;-webkit-appearance:none}button,input,textarea{font-family:inherit}button:focus{box-shadow:none !important}*:focus{outline:none}body{font:400 18px "Roboto",sans-serif;color:#4a4a4a;overflow-x:hidden;width:100%;max-width:100vw}a{display:inline-block;font:inherit;color:inherit;text-decoration:none;transition:300ms}a:hover{text-decoration:none}img{max-width:100%;max-height:100%}a img{border:none;outline:none}ul{margin:0;padding:0;list-style:none}.layout{padding-top:100px}@media only screen and (max-width: 1200px){.layout{padding-top:75px}}.layout--with-search{padding-top:200px}@media only screen and (max-width: 991px){.layout--with-search{padding-top:75px}}.layout--loading{height:100vh;overflow:hidden}pre{font:inherit;white-space:break-spaces}.container{padding:0 40px;width:100%;max-width:100%}@media only screen and (max-width: 767px){.container{padding:0 16px;padding-left:max(16px,env(safe-area-inset-left));padding-right:max(16px,env(safe-area-inset-right))}}.field{display:block}.field.readonly input{border-color:#c7d5e5;background-color:#e4ebf3;color:#b3b3b3}.field__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:3px;min-height:14px}.field__label{color:#0041a2;display:block;font-size:12px;margin-bottom:1px}@media only screen and (max-width: 767px){.field__label{margin-bottom:2px}}.field__error{font-size:12px;color:#fc3c6a}.field__input{display:flex;align-items:center;width:100%;position:relative}.field__input input,.field__input textarea{border:1px solid rgba(0,0,0,0);border-radius:5px;width:100%;height:48px;padding:0 16px;transition:300ms;color:#4a4a4a;font-size:14px;background-color:#eff6ff;border-radius:10px}.field__input input::-webkit-input-placeholder,.field__input textarea::-webkit-input-placeholder{color:#b0c1d6}.field__input input:-moz-placeholder,.field__input textarea:-moz-placeholder{color:#b0c1d6}.field__input input::-moz-placeholder,.field__input textarea::-moz-placeholder{color:#b0c1d6}.field__input input:-ms-input-placeholder,.field__input textarea:-ms-input-placeholder{color:#b0c1d6}.field__input input:focus:not(:read-only),.field__input textarea:focus:not(:read-only){border-color:rgba(0,0,0,0);background-color:#cfe2fb}.field__input input.datepicker-here,.field__input textarea.datepicker-here{background:url(/3c8126c9e94360ec26ab.svg) no-repeat right 10px center}.field__input textarea{height:152px;padding:10px 16px;resize:none}.field__input--icon{position:relative}.field__input--icon img{position:absolute;left:12px;top:50%;transform:translateY(-50%);z-index:5}.field__input--icon input{padding-left:43px}.field__input--icon .select2-selection__rendered{padding-left:43px !important}.field__input--remove{position:relative}.field__input--remove input{padding-right:25px}.field__input--remove .remove{width:14px;height:14px;position:absolute;right:13px;top:50%;transform:translateY(-50%);background:url(/eace4fe28aec24c48c9c.svg) 50% no-repeat;cursor:pointer;opacity:0;visibility:hidden;transition:300ms}.field__input--remove .remove.active{opacity:1;visibility:visible}.field__show-password{position:absolute;right:13px;top:50%;transform:translateY(-50%);cursor:pointer;display:flex;align-items:flex-start}.icon svg{width:auto;height:auto}.icon{width:100%}.MuiInputBase-root{width:100%;font-size:14px !important;background:none;border:1px solid #c7d5e5;border-radius:5px;height:48px}.MuiInputBase-root .MuiSelect-select{height:100%;display:flex;align-items:center;padding-left:10px;font-size:14px}.MuiInputBase-root .MuiSelect-select:focus{background:none}.MuiInputBase-root .MuiSelect-icon{background:url(/82ff93f74984b1df7b7e.svg) 50% no-repeat;margin-right:5px}.MuiInputBase-root .MuiSelect-icon path{display:none !important}.MuiPaper-root{background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1) !important;border-radius:none !important;padding:10px 14px}.MuiPaper-root .MuiMenuItem-root{height:auto;line-height:1;padding:0;background:none !important;margin-bottom:10px;font-size:14px;transition:300ms}.MuiPaper-root .MuiMenuItem-root.Mui-selected{color:#8e5000}.MuiPaper-root .MuiMenuItem-root:last-child{margin-bottom:0}.MuiPaper-root .MuiList-root{padding:0}.material-select{position:relative;background:#fff;display:block;border-radius:5px}.material-select__placeholder{position:absolute;left:12px;top:50%;transform:translateY(-50%);color:#b3b3b3;font-size:14px}.select2.select2-container--open .select2-selection__arrow{transform:rotate(180deg)}.select2 .select2-selection--single{height:48px;border:1px solid #c7d5e5;border-radius:5px !important}.select2 .select2-selection--single .select2-selection__rendered{padding-left:10px;color:#4a4a4a;line-height:1;height:100%;display:flex;align-items:center;font-size:14px;padding-right:38px}.select2 .select2-selection--single .select2-selection__arrow{width:20px;right:12px;height:100%;background:url(/82ff93f74984b1df7b7e.svg) no-repeat 50%;transition:300ms}.select2 .select2-selection--single .select2-selection__arrow b{display:none}.select2--simple .select2 .select2-selection--single{border:none;background:none}.select2--simple .select2 .select2-selection__rendered{font-size:18px;color:#3660cd}@media only screen and (max-width: 767px){.select2--simple .select2 .select2-selection__rendered{font-size:16px}}.select2-dropdown{margin-top:9px;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:5px !important;border:none;min-width:200px}.select2-dropdown .select2-search{display:none}.select2-dropdown .select2-results__option{padding:10px;font-size:14px;background:none !important;color:#4a4a4a}.select2-dropdown .select2-results__option.select2-results__option--highlighted{color:#8e5000}.ReactModal__Overlay{background:rgba(0,0,0,.4) !important;z-index:9999;width:100%;overflow:auto;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;padding:max(12px,env(safe-area-inset-top)) 12px max(12px,env(safe-area-inset-bottom));-webkit-overflow-scrolling:touch}.ReactModal__Content{width:auto !important;height:auto !important;padding:15px 0 !important;position:static !important;background:none !important;border:none !important;overflow:visible !important;margin:auto;max-width:min(100%,100vw - 24px)}body.ReactModal__Body--open{overflow:hidden;touch-action:none}.btn{width:160px;min-height:44px;height:48px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:400;border:1px solid #0041a2;cursor:pointer;transition:300ms;touch-action:manipulation;-webkit-tap-highlight-color:rgba(0,0,0,0)}@media only screen and (max-width: 991px){.btn{font-size:14px;min-height:44px}}.btn.btn-primary{background:#0041a2;color:#fff;font-weight:400}.btn.btn-primary:hover{background-color:#001c71;border-color:#001c71}.btn.btn-secondary{border-color:#c7d5e5;background:none;color:#0041a2}.btn.btn-secondary:hover{background:#0041a2;color:#fff;border-color:#0041a2}.btn[disabled]{background:#c7d5e5;border-color:#c7d5e5;cursor:default;color:#fff;font-weight:500}.btn[disabled]:hover{background:#c7d5e5;border-color:#c7d5e5}.btn.btn-brown{background:#c37c33;border-color:#c37c33;color:#fff;font-weight:500}.btn.btn-brown:hover{background:#8e5000;border-color:#8e5000}.btn.btn-pink{background:#fc3c6a;border-color:#fc3c6a;color:#fff}.btn.btn-light{background:#3660cd;border-color:#3660cd;color:#fff}.btn.btn-light:hover{background-color:#001c71;border-color:#001c71}.btn:hover{background:#e2375f;border-color:#e2375f}.checkbox{cursor:pointer}.checkbox__inner{vertical-align:middle}.checkbox__inner input{display:none}.checkbox__inner input:checked+span{border-color:#0041a2;background:url(/adcbc7b572d6c6782448.svg) no-repeat 50%}.checkbox__inner span{border:1px solid #c7d5e5;border-radius:5px;width:16px;height:16px;display:inline-block;margin-right:15px;transition:300ms;background-position:50%}.checkbox__text{font-size:12px;transform:translateY(-1px);display:inline-block}.radio{cursor:pointer}.radio__inner{vertical-align:middle}.radio__inner input{display:none}.radio__inner input:checked+span{border-color:#0041a2;border-width:5px}.radio__inner span{border:1px solid #c7d5e5;border-radius:5px;width:16px;height:16px;display:inline-block;margin-right:15px;transition:300ms;border-radius:50px}.radio__text{font-size:12px;transform:translateY(-1px);display:inline-block}.green-color{color:#28dfa8}.blue-color{color:#118dff}.orange-color{color:#ff8311}.green-bg{background-image:#28dfa8}.blue-bg{background-image:#118dff}.orange-bg{background-image:#ff8311}.nouislider{border-radius:10px;height:4px;background:#b0c1d6;border:none}.nouislider .noUi-connect{background:#fff}.nouislider .noUi-handle{width:12px;height:12px;border-radius:50%;background:#0041a2;border:none;box-shadow:none;right:-6px;top:-4px;cursor:pointer}.nouislider .noUi-handle:before,.nouislider .noUi-handle:after{display:none}.tooltip{position:relative}.tooltip:hover .tooltip__text{opacity:1;visibility:visible}.tooltip__text{position:absolute;background:#eff6ff;left:100%;bottom:100%;margin-left:3px;margin-bottom:3px;padding:6px 7px;font-size:11px;border-radius:5px;white-space:nowrap;z-index:3;opacity:0;visibility:hidden;transition:300ms}.scrollbar-track{opacity:1 !important}.scrollbar-track.scrollbar-track-y{background:#eff6ff;border-radius:20px;width:9px}.scrollbar-track .scrollbar-thumb{border-radius:20px;background:#3660cd}.toggler{width:48px;height:24px;cursor:pointer;display:block;flex-shrink:0}.toggler input{display:none}.toggler input:checked+span{background:#28dfa8}.toggler input:checked+span:before{left:4px;margin-left:0}.toggler span{width:100%;height:100%;display:flex;background:#b0c1d6;border-radius:24px;position:relative;transition:200ms}.toggler span:before{content:"";display:block;width:16px;height:16px;border-radius:50%;background:#fff;position:absolute;left:100%;margin-left:-20px;top:4px;transition:200ms}.steps__items{display:inline-flex;position:relative;padding:0 22px;margin-bottom:15px}.steps__items:before{content:"";display:block;position:absolute;left:0;right:0;background:#b0c1d6;height:2px;top:50%;margin-top:-1px}.steps__item{position:relative;z-index:3;width:24px;height:24px;border:1px solid #b0c1d6;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#fff;font-weight:500;font-size:14px;color:#c7d5e5;margin-right:66px}.steps__item:last-child{margin-right:0}.steps__item.steps__item--current{background:#3660cd;border-color:#3660cd;color:#fff}.steps__item.steps__item--completed{background:#28dfa8 url(/c08929553bef8891ade3.svg) no-repeat 50%;font-size:0;border-color:#28dfa8}.steps__status{color:#b0c1d6;font-weight:500;font-size:14px;text-transform:uppercase}@media only screen and (max-width: 767px){.steps__item{margin-right:42px}}.datepicker{background:#eff6ff;border:none;font-size:12px;color:#4a4a4a;font-family:inherit;width:343px;max-width:90vw}.datepicker .datepicker--nav-title{font-size:15px}.datepicker .datepicker--nav-title i{color:inherit}.datepicker .datepicker--days-names{margin-bottom:0;padding-bottom:15px;border-bottom:1px solid #c7d5e5;margin-top:0}.datepicker .datepicker--nav{border-bottom:none}.datepicker .datepicker--day-name{color:#4a4a4a;font-weight:500;text-transform:none}.datepicker .datepicker--cell{height:40px;transition:200ms}.datepicker .datepicker--cell.-selected-{background:#0041a2}.datepicker .datepicker--cell:hover{background:#3660cd;color:#fff}.datepicker .datepicker--nav-action,.datepicker .datepicker--nav-title{transition:300ms}.datepicker .datepicker--nav-action:hover,.datepicker .datepicker--nav-title:hover{color:#fff;background:#3660cd}.datepicker .datepicker--nav-action:hover path,.datepicker .datepicker--nav-title:hover path{stroke:#fff}.datepicker .datepicker--cell.-current-{color:#3660cd}.datepicker .datepicker--cell-day.-other-month-,.datepicker .datepicker--cell-year.-other-decade-{color:#b0c1d6}.datepicker--pointer{background:#eff6ff;border-color:#eff6ff}.iti{width:100%}.iti--allow-dropdown .iti__flag-container{width:70px}.iti--allow-dropdown input{padding-left:74px !important}.iti__flag.iti__al{box-shadow:2px 4px 8px rgba(0,0,0,.25)}.iti__arrow{background:url(/78f762044b4adde38e22.svg) no-repeat 50%;border:none;width:20px;height:20px;margin-left:10px}.fade{opacity:0;transition:opacity .3s;pointer-events:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.5333333333);display:flex;align-items:center;justify-content:center}.fade .modal{background:#fff}.fade.active{opacity:1;pointer-events:all}.fancybox-close-small{display:none}.modal-success{width:600px;max-width:100%;text-align:center;padding:30px;border-radius:10px;background:#fff}.modal-success__buttons{display:flex;align-items:center;justify-content:center}.modal-success__img{margin-bottom:30px}.modal-success__title{font-weight:500;font-size:28px;margin-bottom:20px}.modal-success__description{font-size:18px;max-width:400px;margin:0 auto 45px}.modal-success__btn{display:inline-flex;margin-right:20px}.modal-success__btn:last-child{margin-right:0}.modal{width:600px;max-width:100%;text-align:center;padding:30px;border-radius:10px;background:#fff;position:relative}@media only screen and (max-width: 767px){.modal{width:100%;padding:20px 16px max(20px,env(safe-area-inset-bottom))}}.modal-search{position:relative !important}.modal__img{margin-bottom:30px}.modal__close{cursor:pointer;min-width:44px;min-height:44px;display:inline-flex;align-items:center;justify-content:center;touch-action:manipulation}.modal__title{font-weight:500;font-size:28px;margin-bottom:20px}@media only screen and (max-width: 767px){.modal__title{font-size:20px;margin-bottom:14px;padding-right:28px}}.modal__description{font-size:18px;max-width:400px;margin:0 auto 45px}@media only screen and (max-width: 767px){.modal__description{font-size:15px;margin-bottom:24px}}.modal__btn{display:inline-flex;margin-right:20px}.modal__btn:last-child{margin-right:0}.modal__buttons{display:flex;justify-content:center;flex-wrap:wrap;gap:12px}.modal__buttons a{margin-right:19px}.modal__buttons a:last-child{margin-right:0}@media only screen and (max-width: 575px){.modal__buttons{flex-direction:column;width:100%}.modal__buttons a,.modal__buttons .btn{margin-right:0;width:100%}}.modal__notification{margin-top:10px;font-size:14px}.modal-added{max-width:600px;width:100%;padding:30px 40px 60px}@media only screen and (max-width: 767px){.modal-added{padding:20px}}.modal-added .modal__close{text-align:right;position:absolute;top:20px;right:20px}.modal-added__title{font-size:28px;font-weight:500;margin-bottom:23px}@media only screen and (max-width: 767px){.modal-added__title{font-size:20px}}.modal-added__text{font-size:18px;margin-bottom:20px}@media only screen and (max-width: 767px){.modal-added__text{font-size:16px}}.modal-added__code{display:flex;align-items:center;justify-content:center;margin-bottom:25px}.modal-added__address{font-size:18px;color:#b0c1d6}@media only screen and (max-width: 767px){.modal-added__address{font-size:14px}}.amount__field{margin-bottom:43px;display:block}.amount__asset{display:flex;align-items:center;justify-content:space-between;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;padding:20px;margin-bottom:26px}.amount__asset-label{font-size:18px;margin-bottom:8px}.amount__asset-amount{font-weight:500;font-size:28px;color:#0041a2}.amount__asset-icon{width:60px;height:60px;border-radius:10px;overflow:hidden}.amount__asset-icon img{object-fit:cover;width:100%;height:100%}.amount__label{font-size:12px;color:#0041a2;display:block;margin-bottom:1px}.amount__form{border-radius:5px;border:1px solid #c7d5e5;display:flex;align-items:center;justify-content:space-between;padding:8px 7px}.amount__btn{width:32px;height:32px;border-radius:5px;border:none;position:relative;cursor:pointer;transition:300ms}.amount__btn:before,.amount__btn:after{content:"";display:block;background:#fff;border-radius:2px;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.amount__btn:before{width:16px;height:2px}.amount__btn:after{height:16px;width:2px}.amount__minus{background:#fc3c6a}.amount__minus:hover{background:#e2365e}.amount__minus:after{display:none}.amount__plus{background:#28dfa8}.amount__plus:hover{background:#23c595}.amount__input{border:none;font-size:14px;text-align:center}.dropdown{position:relative}.dropdown__current{background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;display:flex;align-items:center;height:60px;padding:0 14px;font-size:18px;cursor:pointer}.dropdown__items{position:absolute;top:100%;margin-top:5px;left:0;right:0;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;opacity:0;visibility:hidden;transition:300ms;z-index:3}.dropdown__items.active{opacity:1;visibility:visible}.dropdown__item{padding:0 14px;height:60px;display:flex;align-items:center;cursor:pointer;transition:300ms}.dropdown__item:hover{background:#eff6ff}.fg1{flex-grow:1}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.react-slidedown{overflow-x:visible}.react-slidedown.transitioning{overflow-x:hidden}.wrapper{display:flex;flex-direction:column;min-height:100vh}.main{flex-grow:10}.ticker{background-color:#c37c33;padding:5px 7px;line-height:12px;align-self:center;font-size:12px;color:#fff;border-radius:100px;margin-left:10px;min-width:22px;text-align:center}.tax{display:flex;width:442px;height:70px;align-items:center;justify-content:space-between;border-radius:10px;background:#eff6ff;margin-bottom:54px;padding:25px 30px;font-size:18px;max-width:100%}@media only screen and (max-width: 767px){.tax{font-size:16px;width:100%;max-width:440px}}.tax__value{color:#0041a2}.buy-brtr{background:#fff;text-align:center;width:815px;padding:40px 46px 50px;max-width:100%}@media only screen and (max-width: 991px){.buy-brtr{width:360px;padding-right:30px;padding-left:30px;position:relative}}.buy-brtr__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:30px}.buy-brtr__title{font-size:28px;font-weight:500;color:#0041a2}.buy-brtr__close{display:flex;align-items:flex-start}@media only screen and (max-width: 991px){.buy-brtr__close{position:absolute;top:27px;right:20px}}.buy-brtr__image{max-width:100%;background:#eff6ff;border-radius:10px;height:102px;display:flex;align-items:center;justify-content:center}.buy-brtr__images{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:17px}@media only screen and (max-width: 991px){.buy-brtr__images{grid-template-columns:1fr}}.buy-brtr__cancel{margin:0 auto}.loader{display:flex;align-items:center;color:#28dfa8}@media only screen and (max-width: 767px){.loader{font-size:14px}}.loader img{flex-shrink:0;margin-right:10px}.modal-connect{max-width:1230px;width:100%;padding:30px 60px 60px 65px;margin:0 auto;margin-top:100px;margin-bottom:170px;text-align:left}@media only screen and (max-width: 991px){.modal-connect{padding:25px 20px;margin:40px 0}}.modal-connect__info{display:flex;align-items:center}@media only screen and (max-width: 767px){.modal-connect__info{flex-direction:column;align-items:stretch}}.modal-connect__img{display:flex;align-items:flex-start;margin-right:78px}@media only screen and (max-width: 767px){.modal-connect__img{margin-right:0;justify-content:center;align-items:center;margin-bottom:24px}.modal-connect__img img{max-width:180px;width:100%;height:auto}}.modal-connect__content{max-width:442px;flex-grow:10}@media only screen and (max-width: 767px){.modal-connect__content{max-width:100%;width:100%}}.modal-connect__title{font-weight:500;font-size:28px;margin-bottom:30px}@media only screen and (max-width: 767px){.modal-connect__title{font-size:22px;margin-bottom:16px;text-align:center}}.modal-connect__description{margin-bottom:30px;font-size:14px}@media only screen and (max-width: 767px){.modal-connect__description{margin-bottom:20px;line-height:1.45}}.modal-connect__account{background:#eff6ff;border-radius:10px;padding:17px 18px;color:#b0c1d6;font-size:14px;margin-bottom:26px}@media only screen and (max-width: 767px){.modal-connect__account{font-size:12px;word-break:break-all}}.modal-connect__actions{display:flex;flex-wrap:wrap;align-items:stretch;gap:12px;margin-bottom:35px}@media only screen and (max-width: 767px){.modal-connect__actions{flex-direction:column;width:100%;gap:10px;margin-bottom:28px}}.modal-connect__connect{width:auto;min-width:170px;max-width:100%;display:inline-flex;align-items:center;justify-content:center;margin-bottom:0;padding-left:16px;padding-right:16px;white-space:normal;text-align:center;line-height:1.3;height:auto;min-height:44px}@media only screen and (max-width: 767px){.modal-connect__connect{width:100%;min-width:0}}.modal-connect .select-wrapper{margin-bottom:26px}.modal-connect__choose{width:170px;display:inline-flex}.modal-connect__chain-form .btn{display:inline-flex;width:170px}@media only screen and (max-width: 767px){.modal-connect__chain-form .btn{width:100%}}.modal-connect__addresses{background:#eff6ff;border-radius:10px;padding:20px 18px}.modal-connect__address{color:#b0c1d6;font-size:14px;margin-bottom:23px;word-break:break-all}@media only screen and (max-width: 767px){.modal-connect__address{font-size:12px}}.modal-connect__address:last-child{margin-bottom:0}.notification .ReactModal__Overlay{z-index:99999}.confirm-modal-portal .ReactModal__Overlay{z-index:99999}.lk-content{display:flex;align-items:flex-start;width:100%;max-width:100%;min-width:0}@media only screen and (max-width: 1200px){.lk-content{flex-direction:column;align-items:stretch}}.lk-info{flex-grow:10}.lk-info__balance{display:grid;grid-template-columns:38% 1fr;grid-gap:30px;margin-bottom:50px}@media only screen and (max-width: 1400px){.lk-info__balance{grid-template-columns:1fr;grid-gap:30px}}@media only screen and (max-width: 1200px){.lk-info__balance{grid-template-columns:38% 1fr}}@media only screen and (max-width: 991px){.lk-info__balance{grid-template-columns:1fr;grid-gap:20px;margin-bottom:30px}}.lk-info__content{display:grid;grid-template-columns:38% 1fr;grid-gap:30px}@media only screen and (max-width: 1400px){.lk-info__content{grid-template-columns:1fr;grid-gap:30px}}.skeleton{background:#fff}.skeleton__item{background:#cfe2fb}.skeleton__item:before{content:"";width:100%;height:100%;display:block;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%),#cfe2fb;background-repeat:repeat-y;background-size:60px 100%;background-position:0 0;animation:shine 1s infinite}@keyframes shine{from{background-position:-40% 0}to{background-position:140% 0}}.load-more-loader{display:flex;justify-content:center;padding:20px 0 0}body.ReactModal__Body--open,body.ReactModal__Body--open .header{padding-right:var(--scrollbarWidth)}.lk-nav{background:#fff;border-radius:10px;width:287px;flex-shrink:0;padding-bottom:15px;padding-top:20px;margin-right:29px;max-width:100%}@media only screen and (max-width: 1200px){.lk-nav{width:100%;margin-right:0;margin-bottom:16px;padding:12px 0 8px;border-radius:10px}}.lk-nav__items{display:grid;grid-template-columns:1fr}@media only screen and (max-width: 1200px){.lk-nav__items{display:flex;flex-direction:row;flex-wrap:nowrap;gap:4px;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding:0 12px 4px;justify-content:flex-start}.lk-nav__items::-webkit-scrollbar{display:none}}.lk-nav__item{height:63px;width:100%;text-align:center;position:relative;cursor:pointer;color:#4a4a4a;transition:300ms;font-size:16px;display:flex;align-items:center;white-space:nowrap;padding-left:33px;touch-action:manipulation;-webkit-tap-highlight-color:rgba(0,0,0,0)}.lk-nav__item svg{width:16px;height:16px;margin-right:37px;fill:#4a4a4a;flex-shrink:0}.lk-nav__item span{display:flex}.lk-nav__item.active,.lk-nav__item.react-tabs__tab--selected{color:#3660cd;background:#eff6ff}.lk-nav__item.active svg,.lk-nav__item.react-tabs__tab--selected svg{fill:#3660cd}.lk-nav__item.active:after,.lk-nav__item.react-tabs__tab--selected:after{opacity:1;visibility:visible}.lk-nav__item:after{content:"";display:block;position:absolute;right:0;height:100%;width:7px;background:#3660cd;opacity:0;visibility:hidden}.lk-nav__item:hover{color:#3660cd}@media only screen and (max-width: 1200px){.lk-nav__item{height:auto;min-height:44px;width:auto;flex-shrink:0;font-size:14px;padding:10px 14px;border-radius:8px;background:#f5f8fc}.lk-nav__item svg{margin-right:8px;width:14px;height:14px}.lk-nav__item:after{display:none}.lk-nav__item.active,.lk-nav__item.react-tabs__tab--selected{background:#eff6ff}}@media only screen and (max-width: 1200px){.lk-nav__inner{overflow:visible}.lk-nav__top{display:none}}@media only screen and (max-width: 991px){.lk-nav__item{font-size:13px;padding:10px 12px}}@media only screen and (max-width: 767px){.lk-nav__inner{overflow-x:auto;margin-right:0;padding-bottom:0}.lk-nav__inner::-webkit-scrollbar{display:none}}.lk-nav__information{display:flex;align-items:center}.lk-nav__btn{margin-top:25px;width:131px;min-height:44px;height:40px;font-size:14px;text-transform:initial}@media only screen and (max-width: 1200px){.lk-nav__btn{height:44px}}.lk-nav__top{padding-left:30px;padding-right:22px;margin-bottom:23px}.lk-nav__top--avatar{width:48px;height:48px;border-radius:50%;margin-right:16px;flex-shrink:0}.lk-nav__top--avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}.lk-nav__top--content{font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#b0c1d6}.lk-nav__top--name{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.lk-nav__top--username{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500;color:#4a4a4a;margin-bottom:5px}.lk-chat__inner{max-width:915px;margin:0 auto 43px}.lk-chat__header{width:100%;height:70px;display:flex;align-items:center;justify-content:space-between;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;padding:0 17px 0 24px;margin-bottom:30px}.lk-chat__items{height:400px;overflow-y:auto;margin-bottom:25px}.lk-chat__items .scroll-content{transform:translate3d(0, 0, 0);padding-right:15px;padding-bottom:15px;min-height:100%}.lk-chat__back{display:flex;align-items:center;font-size:18px;color:#b0c1d6;transition:300ms;cursor:pointer}.lk-chat__back span{margin-right:10px}.lk-chat__back:hover{color:#3660cd}.lk-chat__back:before{content:"";display:inline-block;width:20px;height:20px;border-top:3px solid #b0c1d6;border-right:3px solid #b0c1d6;transform:rotate(-133deg);margin-right:16px;transition:300ms}.lk-chat__back:hover:before{border-top:3px solid #3660cd;border-right:3px solid #3660cd}.lk-chat__name{display:flex;align-items:center;text-align:center;font-weight:bold;font-size:20px;color:#4a4a4a;min-width:0;flex-shrink:1;overflow:hidden;padding-right:10px}.lk-chat__name-logo{width:50px;height:50px;border-radius:50px;margin-right:25px}.lk-chat__name-info{align-items:center;max-width:100%;flex-shrink:1;overflow:hidden;text-overflow:ellipsis}.lk-chat__name span{display:block;font-size:16px;color:#28dfa8}.lk-chat__logo{display:flex;align-items:center;border-radius:50px;flex-shrink:0}.lk-chat__logo span{margin-right:15px}.lk-chat__item{display:flex;align-items:center;margin-bottom:20px}.lk-chat__item.lk-chat__item--right{display:flex;justify-content:flex-end}.lk-chat__item.lk-chat__item--right .lk-chat__date{margin-right:20px;margin-left:0}.lk-chat__item.lk-chat__item--right .lk-chat__assets{display:flex;align-items:center;width:503px;height:90px;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;overflow:hidden;margin-right:0}.lk-chat__item.lk-chat__item--right .lk-chat__pictures{max-width:688px;margin-left:auto}.lk-chat__item.lk-chat__item--right .lk-chat__pictures .lk-chat__date{margin-left:0}.lk-chat__item .lk-chat__assets{display:flex;align-items:center;width:503px;height:90px;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;overflow:hidden;margin-right:20px}.lk-chat__item .lk-chat__assets .lk-chat__picture{margin:0;width:90px;height:90px;flex-shrink:0}.lk-chat__item .lk-chat__assets .lk-chat__picture img{width:100%;height:100%;object-fit:cover}.lk-chat__item .lk-chat__pictures{display:flex;max-width:523px}.lk-chat__item .lk-chat__pictures .lk-chat__date{margin-left:19px}.lk-chat__item.lk-chat__item--close .lk-chat__assets{position:relative}.lk-chat__item.lk-chat__item--close .lk-chat__closes{position:absolute;top:10px;right:10px;width:24px;height:24px;background:url(/93c49d47127a1765b7a6.svg);cursor:pointer}.lk-chat__item.lk-chat__item--blue{display:flex;align-items:center;justify-content:flex-end;margin-bottom:30px}.lk-chat__item.lk-chat__item--blue .lk-chat__date{margin-right:19px}.lk-chat__item.lk-chat__item--blue .lk-chat__text{display:flex;align-items:center;max-width:656px;width:100%;padding:11px 10px 10px 19px;margin-right:0;background:#3660cd;color:#fff}.lk-chat__item.lk-chat__item--blue{display:flex;flex-direction:row-reverse;align-items:center;justify-content:flex-start;margin-bottom:20px}.lk-chat__item.lk-chat__item--blue .lk-chat__date{margin-right:19px}.lk-chat__item.lk-chat__item--blue .lk-chat__text{display:flex;align-items:center;max-width:656px;width:100%;padding:11px 19px 10px 19px;margin-right:0;background:#3660cd;color:#fff}.lk-chat__item:last-child{margin-bottom:0}.lk-chat__container{width:100%;display:flex;justify-content:space-between;padding:0 46px 0 26px}.lk-chat__image{width:50px;height:50px;border-radius:50px;flex-shrink:0;margin-right:21px}.lk-chat__type{font-size:11px;color:#b0c1d6;margin-bottom:5px}.lk-chat__title{font-weight:bold;font-size:16px;color:#0041a2}.lk-chat__location{font-size:11px;color:#b0c1d6;margin-bottom:5px}.lk-chat__place{font-size:16px;color:#3660cd}.lk-chat__text{font-size:18px;color:#4a4a4a;padding:11px 10px 9px 15px;background:#eff6ff;border-radius:10px;margin-right:21px;white-space:pre-line;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-ms-word-break:break-all;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;overflow-x:hidden}.lk-chat__date{font-size:18px;color:#b0c1d6;flex-shrink:0}.lk-chat__date-top{align-self:flex-start}.lk-chat__footer{display:flex;align-items:center;padding:20px 0 25px;border-top:1px solid #c7d5e5}.lk-chat__toolbar{display:flex;align-items:center}.lk-chat__note{fill:#b0c1d6;margin-right:17px}.lk-chat__note:hover{fill:#3660cd}.lk-chat__foto{fill:#b0c1d6;margin-right:25px;transition:300ms}.lk-chat__foto:hover{fill:#3660cd}.lk-chat__input{position:relative;width:100%}.lk-chat__input button{position:absolute;top:3px;bottom:0;right:20px;fill:#b0c1d6;transition:300ms;border:none;background:none}.lk-chat__input button:hover{cursor:pointer;fill:#3660cd}.lk-chat__input textarea{width:100%;padding:14.5px 10px;font-size:14px;border:1px solid #c7d5e5;box-sizing:border-box;border-radius:5px;resize:none;transition:300ms}.lk-chat__input textarea::-webkit-input-placeholder{color:#b3b3b3}.lk-chat__input textarea:-moz-placeholder{color:#b3b3b3}.lk-chat__input textarea::-moz-placeholder{color:#b3b3b3}.lk-chat__input textarea:-ms-input-placeholder{color:#b3b3b3}.lk-chat__input textarea:focus{border-color:#0041a2}.lk-chat__images{display:flex;flex-wrap:wrap}.lk-chat__img{position:relative;width:196px;flex-shrink:0;margin:0 20px 20px 0}.lk-chat__remove{position:absolute;top:4px;right:4px;width:24px;height:24px;background:url(/93c49d47127a1765b7a6.svg) 50%/cover;cursor:pointer}@media only screen and (max-width: 1200px){.lk-chat .tooltip__text{display:none}}@media only screen and (max-width: 991px){.lk-chat--right .lk-chat__pictures{max-width:400px}.lk-chat__logo span{display:none}.lk-chat__text{font-size:16px}.lk-chat__date{font-size:16px}.lk-chat__images{grid-template-columns:repeat(3, 1fr)}.lk-chat__remove{top:5px;right:5px}}@media only screen and (max-width: 767px){.lk-chat__name-logo{display:none}.lk-chat .lk-chat__item .lk-chat__pictures{display:flex;flex-direction:column}.lk-chat .lk-chat__item .lk-chat__pictures .lk-chat__date{margin-left:0;margin-bottom:10px;order:-1}.lk-chat .lk-chat__assets .lk-chat__container{padding:0 10px 0 10px}.lk-chat .lk-chat__assets .lk-chat__title{font-size:11px}.lk-chat .lk-chat__assets .lk-chat__place{font-size:11px}.lk-chat__header{height:60px}.lk-chat__items{padding-right:15px}.lk-chat__logo{width:40px;height:40px}.lk-chat__back span{display:none}.lk-chat__name{font-size:16px}.lk-chat__name span{font-size:13px}.lk-chat__picture{display:none}.lk-chat__image{display:none}.lk-chat__text{font-size:14px;margin-right:10px}.lk-chat__date{font-size:13px}.lk-chat__img{width:140px}.lk-chat .lk-chat__item--close .lk-chat__assets{padding:0 35px}}.bonuses{margin-bottom:31px}.bonuses__inner{display:grid;grid-template-columns:1fr 1fr;grid-gap:30px}.bonuses__earned{height:120px;display:flex;align-items:center;justify-content:space-between;font-size:18px;background:#eff6ff;border-radius:10px;padding:0 35px;margin-bottom:30px}.bonuses__earned span{font-weight:500;font-size:28px;color:#28dfa8}.bonuses__code{margin-bottom:20px}.bonuses__code-label{font-size:18px;margin-bottom:18px}.bonuses__code-value{display:flex;align-items:center;justify-content:space-between;background:#eff6ff;border-radius:10px;height:70px;padding:0 20px;color:#0041a2}.bonuses__text div{color:#b0c1d6;margin-bottom:10px}.bonuses__text a{color:#3660cd;text-decoration:underline}.bonuses__text a:hover{text-decoration:none}.bonuses__info-title{font-size:18px;margin-bottom:16px}.bonuses__items{height:520px;overflow-y:scroll;margin-top:-10px;margin-left:-25px}.bonuses__items .scrollbar-track-y{top:25px;height:auto;bottom:25px;overflow:hidden}.bonuses__item{display:grid;align-items:center;grid-template-columns:155px 1fr 270px;height:70px;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;padding:0 24px;margin-bottom:20px}.bonuses__item:last-child{margin-bottom:0}.bonuses__item-cash{font-weight:bold;font-size:20px;color:#28dfa8}.bonuses__item-date{font-size:18px;text-align:center}.bonuses__item-deal{color:#0041a2;text-decoration:underline;font-size:18px;text-align:right}.bonuses__wrapper{padding-right:39px;padding-top:25px;padding-left:25px;padding-bottom:25px}@media only screen and (max-width: 1200px){.bonuses__inner{display:block}.bonuses__content{width:100%;margin-bottom:30px}.bonuses__info{width:100%}.bonuses__earned{height:80px;font-size:16px}.bonuses__earned span{font-size:23px}.bonuses__code-label{font-size:16px}.bonuses__code-value{height:60px;font-size:16px}.bonuses__text{font-size:16px}.bonuses__text a{font-size:16px}.bonuses__info-title{font-size:18px}.bonuses__item-cash{font-size:20px}.bonuses__item-date{font-size:18px}.bonuses__item-deal{font-size:18px}}@media only screen and (max-width: 991px){.bonuses__earned{height:120px;font-size:18px}.bonuses__earned span{font-size:28px}.bonuses__content-subtitle{font-size:18px}.bonuses__code-value{height:70px}.bonuses__code a{font-size:14px}.bonuses__text div{font-size:14px}.bonuses__text a{font-size:14px}.bonuses__info-title{font-size:16px}.bonuses__item-cash{font-size:16px}.bonuses__item-date{font-size:14px}.bonuses__item-deal{font-size:16px}}@media only screen and (max-width: 767px){.bonuses__earned{height:60px;font-size:14px}.bonuses__earned span{font-size:16px}.bonuses__code-value{height:60px}.bonuses__info-title{font-size:16px}.bonuses__item{height:65px;grid-template-columns:repeat(3, 1fr);padding:15px 10px}.bonuses__item-cash{font-size:11px}.bonuses__item-date{font-size:11px}.bonuses__item-deal{font-size:12px}.bonuses__wrapper{padding-right:25px}}.lk-advertiser{margin-bottom:62px}.lk-advertiser__inner{max-width:1230px;margin:0 auto}.lk-advertiser__title{font-weight:500;font-size:28px;margin-bottom:20px}.lk-advertiser__description{font-size:18px;margin-bottom:30px}.lk-advertiser .steps{margin-bottom:33px}.lk-advertiser__item{margin-bottom:30px;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;overflow:hidden}.lk-advertiser__item:last-child{margin-bottom:0}.lk-advertiser__header{height:60px;display:flex;align-items:center;background:#eff6ff;padding-left:22px;font-size:18px}.lk-advertiser__body{padding:20px 22px}.lk-advertiser__table{width:100%;border-collapse:collapse;color:#b0c1d6}.lk-advertiser__table td{padding:20px 0}.lk-advertiser__table td:first-child{width:40px}.lk-advertiser__table td:nth-child(2){width:30%}.lk-advertiser__table td:nth-child(3){width:17%}.lk-advertiser__table td:last-child{text-align:right}.lk-advertiser__table tr:first-child td{padding-top:0}.lk-advertiser__table tr:last-child td{padding-bottom:0}.lk-advertiser__table tr{border-bottom:1px solid #c7d5e5}.lk-advertiser__table tr:last-child{border-bottom:none}.lk-advertiser__info span{font-weight:bold;color:#4a4a4a;display:block;margin-bottom:2px}.lk-advertiser__price span{font-weight:bold;color:#28dfa8;display:block;margin-bottom:2px}.lk-advertiser__views{display:flex;align-items:center}.lk-advertiser__views .select2{width:199px !important}.lk-advertiser__views-label{margin-left:12px}.lk-advertiser__total{font-size:22px;color:#4a4a4a;white-space:nowrap;padding-left:10px}.lk-advertiser__check{width:247px}.lk-advertiser__dates{display:grid;grid-template-columns:1fr 1fr;grid-gap:30px;margin-bottom:30px}.lk-advertiser__uploading .field{margin-bottom:15px}.lk-advertiser__label{color:#ff8311;margin-bottom:26px}.lk-advertiser__label img{flex-shrink:0;margin-right:15px;transform:translateY(5px)}.lk-advertiser__upload{display:flex;align-items:center;margin-top:26px}.lk-advertiser__upload-label{color:#b0c1d6;margin-left:30px}.lk-advertiser__confirm{display:flex;justify-content:center}.lk-advertiser__confirm a{width:379px;max-width:100%;height:70px}.lk-advertiser__cost{margin-bottom:40px;background:#eff6ff;border-radius:10px;max-width:600px;padding:17px 28px;font-size:18px;display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width: 767px){.lk-advertiser__cost{padding:15px}}.lk-advertiser__cost-price{font-weight:bold;font-size:20px;color:#28dfa8}@media only screen and (max-width: 767px){.lk-advertiser__cost-price{font-size:18px;white-space:nowrap;margin-left:5px}}.lk-advertiser__nav{display:flex;margin-bottom:26px}.lk-advertiser__nav-item{display:flex;width:157px;justify-content:center;padding-bottom:11px;color:#b0c1d6;border-bottom:1px solid #b0c1d6;cursor:pointer;transition:300ms}.lk-advertiser__nav-item:hover{color:#3660cd}.lk-advertiser__nav-item.active{position:relative;color:#0041a2}.lk-advertiser__nav-item.active:before{content:"";display:block;position:absolute;bottom:-2px;height:3px;left:0;right:0;background:#3660cd}.lk-advertiser__currency-label{color:#3660cd;margin-bottom:21px}.lk-advertiser__currency-items{display:flex;flex-wrap:wrap}.lk-advertiser__currency-item{margin:0 25px 25px 0;width:60px;height:60px;cursor:pointer}.lk-advertiser__currency-item.brown span{background:#edd8c2}.lk-advertiser__currency-item input{display:none}.lk-advertiser__currency-item input:checked+span{fill:#fff;background:#3660cd}.lk-advertiser__currency-item span{width:100%;height:100%;background:#eff6ff;border-radius:5px;display:flex;align-items:center;justify-content:center;fill:#c37c33;transition:300ms}.lk-advertiser__currency-item span svg{fill:inherit}.lk-advertiser__balance{background:#eff6ff;padding:20px 24px;max-width:600px;margin-bottom:20px;border-radius:10px}.lk-advertiser__balance.lk-advertiser__balance--my{background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1)}.lk-advertiser__balance-label{margin-bottom:10px;font-size:18px}.lk-advertiser__balance-sum{font-weight:500;font-size:28px;color:#0041a2}.lk-advertiser__tabs{margin-bottom:40px}.lk-advertiser__links{display:flex;align-items:center}.lk-advertiser__links a{margin-right:35px}.lk-advertiser__links a:last-child{margin-right:0}.lk-advertiser__card{margin-bottom:88px}.lk-advertiser__card-label{font-size:18px;margin-bottom:20px}.lk-advertiser__card-container{display:flex;align-items:flex-start}.lk-advertiser__card .field{width:128px}.lk-advertiser__dropdown{width:753px;max-width:100%;margin-right:30px;margin-top:11px}.lk-advertiser__dropdown-img{margin-right:14px;flex-shrink:0}.lk-advertiser__dropdown-number{color:#001c71;width:240px}.lk-advertiser__dropdown-name{width:200px}.lk-advertiser__dropdown-date{flex-grow:10}.lk-advertiser__dropdown-arrow{flex-shrink:0}.lk-advertiser__tab{display:none}.lk-advertiser__tab.active{display:block}@media only screen and (max-width: 991px){.lk-advertiser__card-container{display:block}.lk-advertiser__dropdown{margin-top:0;margin-bottom:10px}}@media only screen and (max-width: 767px){.lk-advertiser__table tr,.lk-advertiser__table td{display:block;text-align:center !important;width:100% !important}.lk-advertiser__info{justify-content:center}.lk-advertiser__price{justify-content:center}.lk-advertiser__views{justify-content:center}.lk-advertiser__views .select2{width:150px !important}.lk-advertiser__dates{grid-template-columns:1fr}.lk-advertiser__upload{display:block}.lk-advertiser__upload-label{margin-left:0;margin-top:15px}.lk-advertiser__label{font-size:14px}.lk-advertiser__dropdown-name{display:none}.lk-advertiser__dropdown-date{display:none}.lk-advertiser__dropdown-number{flex-grow:10}.lk-advertiser__currency-items{margin-bottom:15px}.lk-advertiser__currency-item{width:50px;height:50px;margin:0 10px 10px 0}.lk-advertiser__currency-item svg{max-width:65%;max-height:65%}.lk-advertiser__balance-label{font-size:16px}.lk-advertiser__balance-sum{font-size:20px}.lk-advertiser__card-label{font-size:16px}}.verification__inner{max-width:1072px;margin:0 auto 70px}.verification__inner .steps{margin-bottom:43px}.verification__title{font-weight:500;font-size:28px;margin-bottom:30px}.verification__subtitle{font-size:22px;font-weight:400;margin-bottom:20px}.verification__grid{display:grid;grid-template-columns:1fr 1fr;grid-gap:26px 36px;margin-bottom:66px}.verification__grid.verification__grid--single{grid-template-columns:1fr}.verification__grid .field__input--icon input{padding-left:55px}.verification__crypto{grid-column:2 span;max-width:600px;display:flex;align-items:center;justify-content:space-between}.verification__crypto-label{font-size:18px}.verification__info{grid-column:2 span;font-size:18px}.verification__info--margin{margin-bottom:120px;margin-top:50px}.verification__info a{color:#0041a2}.verification__info a:hover{text-decoration:underline}.verification__links{display:flex;align-items:center}.verification__links a{margin-right:31px}.verification__links a:last-child{margin-right:0}.verification__toggler{display:flex;align-items:center;justify-content:space-between;padding-top:10px}.verification__toggler-label{font-size:18px}.verification__upload .file-input{width:100%;height:130px;justify-content:start;padding-left:55px}.verification__subgrid{display:grid;grid-template-columns:1fr 1fr;grid-gap:18px}.verification__add{grid-column:span 2;color:#28dfa8;font-size:18px;display:flex;align-items:center}.verification__add:hover img{transform:rotate(90deg)}.verification__add img{margin-right:15px;flex-shrink:0;transition:300ms}.verification__quiz{grid-column:span 2}.verification__quiz-item{padding:20px 0;border-bottom:1px solid #c7d5e5;display:flex;align-items:center;justify-content:space-between}.verification__quiz-question{margin-right:10px;font-size:18px}.verification__quiz-answer{flex-shrink:0;display:flex}.verification__quiz-answer .radio{margin-right:40px}.verification__quiz-answer .radio:last-child{margin-right:0}.verification__quiz-answer .radio__text{font-size:18px;transform:translateY(1px)}@media only screen and (max-width: 767px){.verification__subtitle{font-size:18px}.verification__crypto{grid-column:span 1}.verification__crypto-label{font-size:14px;margin-right:10px}.verification__grid{grid-template-columns:1fr}.verification__info{font-size:14px}.verification__quiz{grid-column:span 1}.verification__quiz-item{display:block}.verification__quiz-question{font-size:14px;margin-bottom:20px;margin-right:0}.verification__quiz-answer .radio__text{font-size:14px;transform:none}.verification__upload .file-input{padding-left:30px;height:100px}.verification__toggler-label{font-size:14px}}.viewing{max-width:1550px;margin:0 auto}.viewing__wrap{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:0 30px;margin-bottom:60px}.viewing__title{font-weight:500;font-size:28px;color:#4a4a4a;margin-bottom:20px}.viewing__header{height:20px;display:flex;align-items:center;font-size:18px;color:#b0c1d6;margin-bottom:30px}.viewing__header span{margin-right:60px}.viewing__header a{display:flex}.viewing__header a img{width:20px;height:20px;margin-right:10px}.viewing__header a:hover{color:#3660cd}.viewing__date{display:flex;align-items:center;font-size:18px;padding:8px 0 8px 9px;color:#3660cd;background:#eff6ff;border-radius:10px;margin-bottom:20px}.viewing__date img{width:25px;margin-right:13px}.viewing__deal{margin-bottom:20px;display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:30px 0}.viewing__item-top{font-size:18px;color:#4a4a4a;margin-bottom:20px}.viewing__item-price{display:flex;align-items:center}.viewing__item-price img{width:40px;height:40px;margin-right:14px}.viewing__item-info{display:flex;align-items:center}.viewing__item-info img{margin-right:14px}.viewing__item-label{width:173px;height:49px;display:flex;align-items:center;justify-content:center;color:#fff;background:#28dfa8;border-radius:5px;text-transform:uppercase;font-weight:normal;font-size:16px}.viewing__item-label.selling{background:#ff8311}.viewing__item-label.auction{background:#118dff}.viewing__item-tags{display:flex;align-items:center}.viewing__item-tag{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.2);border-radius:10px;margin-right:14px}.viewing__description{margin-bottom:40px}.viewing__description-title{font-size:18px;color:#0041a2;margin-bottom:10px}.viewing__description-text{max-width:692px;font-size:18px;color:#4a4a4a;white-space:pre-wrap}.viewing__gallery{display:flex;align-items:flex-start}.viewing__gallery-main{margin-right:30px;max-width:600px;display:flex}.viewing__gallery-main img{width:100%;height:100%;object-fit:cover}.viewing__gallery-mini{display:flex;flex-direction:column}.viewing__gallery-item{margin-bottom:21px;display:flex;width:127px;position:relative}.viewing__gallery-item img{max-width:100%;height:100%;object-fit:cover}.viewing__gallery-item:last-child{position:relative;display:flex;margin-bottom:0}.viewing__gallery-overlay{position:absolute;display:flex;align-items:center;justify-content:center;top:0;right:0;bottom:0;left:0;font-size:22px;color:#fff;background:rgba(54,96,205,.7)}@media only screen and (max-width: 991px){.viewing__gallery-overlay{font-size:18px}}@media only screen and (max-width: 767px){.viewing__gallery-overlay{font-size:14px}}.viewing__items{max-width:692px;margin-bottom:50px;border-top:1px solid #b0c1d6;border-bottom:1px solid #b0c1d6}.viewing__item{border-bottom:1px solid #b0c1d6}.viewing__item:last-child{border:none}.viewing__item-header{display:flex;align-items:center;justify-content:space-between;padding:20px 25px 20px 0;cursor:pointer}.viewing__item-header.active .viewing__item-arrow{transform:rotate(180deg)}.viewing__item-arrow{transition:300ms}.viewing__item-text{font-size:22px;color:#4a4a4a}.viewing__item-body{padding-top:15px;font-size:16px;line-height:1.5;color:#4a4a4a;padding-bottom:20px;display:none}.viewing__button .btn{width:172px}@media only screen and (max-width: 1550px){.viewing__gallery{display:block}.viewing__gallery-main{max-width:500px;margin-right:0;margin-bottom:30px}.viewing__gallery-mini{flex-direction:inherit}.viewing__gallery-item{margin-right:60px}.viewing__gallery-item:last-child{margin-right:0;margin-bottom:25px}.viewing__deal{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 1300px){.viewing__title{font-size:20px}.viewing__header{font-size:16px}.viewing__header span{margin-right:40px}.viewing__item-tags{flex-wrap:wrap}.viewing__item-tag{margin-bottom:15px}.viewing__date{font-size:13px}.viewing__date img{width:20px}.viewing__item-top{font-size:16px}.viewing__description-title{font-size:16px}.viewing__description-text{font-size:15px}.viewing__item-text{font-size:18px}}@media only screen and (max-width: 991px){.viewing__wrap{grid-template-columns:repeat(1, 1fr)}.viewing__deal{grid-template-columns:repeat(3, 1fr)}.viewing__description-text{max-width:100%}.viewing__items{max-width:100%}.viewing__gallery{margin-bottom:30px}.viewing__gallery-item{margin-right:25px;margin-bottom:0}.viewing__gallery-item:last-child{margin-bottom:0}.viewing__gallery-item img{height:auto;max-width:100px}.viewing__gallery-main{max-width:100%}.viewing__button{display:flex;align-items:center;justify-content:center}}@media only screen and (max-width: 767px){.viewing__date{font-size:11px}.viewing__deal{grid-template-columns:repeat(2, 1fr)}.viewing__gallery-item{width:auto}}.deal__inner{max-width:1540px;margin:0 auto 60px}.deal__title{font-size:28px;font-weight:500;margin-bottom:20px}.deal__description{font-size:18px;margin-bottom:40px;max-width:1400px}.deal__items{max-width:1157px}.deal__item{display:flex;border:1px solid rgba(0,0,0,0);align-items:center;justify-content:space-between;padding:20px 38px 20px 28px;background:#fff;border-radius:10px;margin-bottom:10px;cursor:pointer}.deal__item input{display:none}.deal__item.active{border-color:#c37c33}.deal__groups{margin-bottom:50px}.deal__group{max-width:1230px;background:#eff6ff;border-radius:10px;padding:20px 39px 30px 34px;margin-bottom:40px}.deal__label{font-size:18px;color:#4a4a4a;margin-bottom:20px}.deal__label span{font-size:20px;font-weight:700;color:#3660cd}.deal__type{display:flex;align-items:center;justify-content:center;text-align:center;width:200px;font-size:20px;font-weight:bold;color:#4a4a4a;margin-right:45px;flex-shrink:0}.deal__info{flex-grow:10;margin-right:68px}.deal__info span{color:#ff8311}.deal__info a{color:#3660cd;text-decoration:underline}.deal__info a:hover{text-decoration:none}.deal__price{width:130px;display:flex;align-items:center;justify-content:flex-start;font-size:18px;color:#3660cd;flex-shrink:0}.deal__price--free{font-size:20px;font-weight:bold;color:#28dfa8}.deal__currency{width:40px;height:40px;border-radius:5px;background:url(/56ffc932df4af256ee37.svg) no-repeat 50%;background-size:40px;margin-right:14px}.deal__footer{display:flex}.deal__footer .btn{width:168px;margin-right:22px}.deal__company{margin-right:64px;display:flex;justify-content:flex-start;max-width:200px;width:100%}.deal__currency-header{font-size:18px;color:#0041a2;margin-bottom:20px}.deal__currency-radios{display:flex;margin-bottom:28px}.deal .brown span{background:#edd8c2}.deal__balance-cards{margin-bottom:36px}.deal__balance-card{max-width:600px;background:#eff6ff;border-radius:10px;padding:20px 24px;margin-bottom:20px}.deal__balance-card--white{background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px}.deal__balance-label{font-size:18px;color:#4a4a4a;margin-bottom:8px}.deal__balance-price{display:flex;align-items:center;font-weight:500;font-size:28px;color:#0041a2}.deal__balance-price img{margin-right:10px}.deal__balance-price svg{width:14px;height:16px;fill:#8e5000;margin-right:10px}.deal__content{max-width:1545px;margin:0 auto 70px;display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:30px 30px}.deal__content .deal__footer{margin-top:30px}.deal__content .deal__btn{width:247px}.deal__content-page{position:relative;display:flex;flex-direction:column;border:1px solid #b0c1d6;padding:35px 35px 101px}.deal__content-page--requisites{padding:35px 35px 20px}.deal__content-page p{text-align:justify;color:#4a4a4a;margin-bottom:20px}.deal__content-page a{color:#3660cd;text-decoration:underline}.deal__content-page a:hover{text-decoration:none}.deal__content-page .blue{color:#3660cd}.deal__content-page .bold{font-weight:bold}.deal__content-title{text-transform:uppercase;font-weight:bold;font-size:20px;color:#4a4a4a;text-align:center;margin-bottom:20px}.deal__content-header{display:flex;align-items:center;justify-content:space-between;color:#4a4a4a;margin-bottom:25px}.deal__content-number{position:absolute;bottom:35px;right:35px;color:#b0c1d6}.deal__content-items{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:0 11px;margin-bottom:20px;flex-grow:10;align-items:flex-start}.deal__content-items--info{margin-bottom:183px}.deal__content-item{padding:20px 20px;background:#eff6ff;border-radius:5px}.deal__content-item span{display:inline-block;margin-bottom:10px}.deal__content-item span:last-child{margin-bottom:0}.deal__item-label{font-size:18px;margin-bottom:5px}.deal__item-label a{font-size:16px}.deal__participants{display:flex;align-items:center;justify-content:space-between;font-size:18px;color:#4a4a4a;margin-bottom:27px}.deal__status{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}.deal__status-waiting{display:flex;align-items:center;font-size:18px;color:#c37c33}.deal__status-waiting div{background:url(/4ba34c0c8e70616ce7b0.svg) no-repeat 50%;width:24px;height:24px;flex-shrink:0;border-color:#c37c33;border-radius:50%;margin-right:15px}.deal__status-completed{display:flex;align-items:center;font-size:18px;color:#28dfa8}.deal__status-completed div{background:#28dfa8 url(/c08929553bef8891ade3.svg) no-repeat 50%;background-size:12px;width:24px;height:24px;flex-shrink:0;border-color:#28dfa8;border-radius:50%;margin-right:15px}.deal__card-label{font-size:18px;color:#4a4a4a;margin-bottom:20px}.deal__dropdown{width:757px;max-width:100%;margin-bottom:54px}.deal__dropdown-name{width:420px;font-size:18px;color:#4a4a4a}.deal__dropdown-number{font-size:18px;color:#001c71;flex-grow:10;margin-right:10px}.deal__dropdown-arrow{flex-shrink:0}.deal__payment-price{display:flex;margin-bottom:40px}.deal__price-item{display:flex;align-items:center;justify-content:space-between;width:600px;height:60px;background:#eff6ff;border-radius:10px;margin-right:30px;padding:0 30px}.deal__payment-label{font-size:18px;color:#4a4a4a}.deal__payment-amount{font-weight:bold;font-size:20px;color:#28dfa8}.deal__payment-links{display:flex;align-items:center}.deal__payment-links .btn{margin-right:35px}.deal__payment-links .btn:last-child{margin-right:0}@media only screen and (max-width: 1300px){.deal__content{grid-template-columns:1fr}}@media only screen and (max-width: 991px){.deal__description{font-size:16px}.deal__item{display:block}.deal__type{width:100%;margin-bottom:20px}.deal__info{width:100%;text-align:center;margin-bottom:20px}.deal__payment-price{display:block}.deal__price-item{width:100%;margin-right:0;margin-bottom:15px}.deal__price{width:100%;justify-content:center;text-align:center}.deal__company{max-width:100%;justify-content:center;margin-bottom:20px}}@media only screen and (max-width: 767px){.deal__description{font-size:14px;margin-bottom:30px}.deal__group{padding:20px 20px}.deal__content-items{grid-template-columns:1fr}.deal__content-page{padding:15px 20px 101px}.deal__content-item{margin-bottom:20px}.deal__item{padding:20px 20px}.deal__payment-label{font-size:13px}.deal__payment-amount{font-size:14px}.deal__currency-radios{flex-wrap:wrap}.deal__footer{flex-direction:column;align-items:center}.deal__footer .btn{margin-right:0;margin-bottom:15px}}@media only screen and (max-width: 500px){.deal__dropdown-name{display:none}}.dealings__header{display:flex;height:100px;align-items:center;justify-content:space-between;background:#eff6ff;padding:0 58px 0 28px}.dealings__title{font-size:18px;margin-bottom:37px}.dealings__barter{display:inline-block;font-size:20px;font-weight:bold;color:#28dfa8;margin-bottom:9px}.dealings__barter--sale{color:#ff8311}.dealings__barter--auction{color:#118dff}.dealings__number{display:block;font-size:18px;color:#4a4a4a;position:relative}.dealings__number img{width:14px;height:14px;position:absolute;top:-8px;left:105px}.dealings__label{text-align:left}.dealings__label a{color:#3660cd;text-decoration:underline}.dealings__label a:hover{text-decoration:none}.dealings .lk-requests__table--main th{background:#eff6ff}.dealings .lk-requests__item{margin-bottom:70px}.dealings .lk-requests__item:last-child{margin-bottom:0}.dealings .lk-requests__value--white{background:#fff url(/f3297cf49b44ef166ec1.svg) no-repeat 50%}.dealings .lk-requests__value--cripta{background:#fff url(/0ab690f8992173a8dc7b.svg) no-repeat 50%;background-size:12px}.dealings .lk-requests__info--value img{width:40px;height:40px}.dealings .lk-requests__info-rate{font-weight:bold;font-size:20px}.dealings .lk-requests__info-rate--last{color:#b0c1d6}.dealings .lk-requests__info-rate span{font-size:22px;color:#3660cd}.dealings .lk-requests__insurance{justify-content:center}.dealings .lk-requests__price{display:flex;justify-content:flex-end}.dealings .lk-requests__price-icon{background:#fff}.dealings .lk-requests__price .btn{width:201px;margin-right:20px}.dealings .lk-requests__price .btn:last-child{margin-right:0}.dealings .lk-requests__price--modal .btn{width:258px;font-weight:500}.dealings__state{font-size:18px;color:#28dfa8}.dealings__state--orange{color:#ff8311}.dealings__state--pink{color:#fc3c6a}.dealings__completed{background:#28dfa8 url(/c08929553bef8891ade3.svg) no-repeat 50%;background-size:12px;width:24px;height:24px;flex-shrink:0;border-color:#28dfa8;border-radius:50%;margin-left:15px}.dealings__waiting{background:#ff8311 url(/89c04576f71e988b49ef.svg) no-repeat 50%;background-size:20px;width:24px;height:24px;flex-shrink:0;border-color:#ff8311;border-radius:50%;margin-left:15px}.dealings__delivered{background:url(/621dcec072e2e0cd4815.svg) no-repeat 50%;background-size:20px;width:24px;height:24px;flex-shrink:0;border-color:#ff8311;border-radius:50%;margin-left:15px}.dealings__transfer{background:url(/f6092f0e6f9300faa4f3.svg) no-repeat 50%;background-size:20px;width:24px;height:24px;flex-shrink:0;border-color:#fc3c6a;border-radius:50%;margin-left:15px}.dealings__documents{display:flex;justify-content:center}.dealings__documents .btn{width:226px}.dealings__documents span{font-size:18px;color:#b0c1d6}.dealings__documents a{color:#3660cd;text-decoration:underline}.dealings__documents a:hover{text-decoration:none}.dealings__owner{font-size:18px;text-align:center}.dealings__owner span{color:#b0c1d6}.dealings__owner a{color:#3660cd;text-decoration:underline}.dealings__owner a:hover{text-decoration:none}.dealings__status{display:flex;justify-content:flex-end;align-items:center;font-size:18px}.dealings__status span{margin-right:18px}.dealings__status:after{content:"";display:block;width:24px;height:24px;border-radius:50px}.dealings__status.completed{color:#28dfa8}.dealings__status.completed:after{background:#28dfa8 url(/c08929553bef8891ade3.svg) 50%/12px no-repeat}.dealings__status.waiting{color:#ff8311}.dealings__status.waiting:after{background:#ff8311 url(/89c04576f71e988b49ef.svg) 50%/20px no-repeat}.dealings__status.cancel{color:#fc3c6a}.dealings__status.cancel:after{background:#fc3c6a url(/78a72af7d8a3a3307d9f.svg) 50%/12px no-repeat}.dealings__status.transferred{color:#fc3c6a}.dealings__status.transferred:after{background:url(/f6092f0e6f9300faa4f3.svg) 50% no-repeat}.dealings__status.delivery{color:#ff8311}.dealings__status.delivery:after{background:url(/621dcec072e2e0cd4815.svg) 50% no-repeat}@media only screen and (max-width: 1300px){.dealings__text{font-size:13px}}@media only screen and (max-width: 1200px){.dealings .lk-requests__price .btn{width:150px;margin-right:20px}.dealings .lk-requests__price--modal .btn{width:200px;font-size:11px}}@media only screen and (max-width: 991px){.dealings__title{margin-bottom:20px}.dealings__text{font-size:13px}.dealings .lk-requests__info-rate{font-size:14px}.dealings .lk-requests__info-rate span{font-size:16px}.dealings .lk-requests__price .btn{width:120px;height:40px;font-size:11px;margin-right:20px}.dealings .lk-requests__price--modal .btn{width:170px}.dealings .lk-requests__price__state{font-size:14px}.dealings .dealings__documents .btn{width:200px;height:40px;font-size:11px}.dealings__status{font-size:14px;justify-content:flex-start;margin-left:0;width:100%;max-width:100%;flex-wrap:wrap;align-items:flex-start;gap:8px;line-height:1.35}.dealings__status.waiting::after{background:#ff8311 url(/89c04576f71e988b49ef.svg) 50% no-repeat;margin-left:8px}.dealings__status.completed::after{margin-left:8px}.dealings__status:after{width:25px;height:25px;flex-shrink:0}.dealings__status span{margin-right:5px;white-space:normal;word-break:break-word}}@media only screen and (max-width: 767px){.dealings__documents .btn{font-size:11px;width:165px;height:40px}.dealings__state{font-size:14px}.dealings__barter{font-size:16px}.dealings__number{font-size:16px}.dealings .lk-requests__table th:nth-child(2){height:67px;display:flex;align-items:center}.dealings .lk-requests__table th{display:table-cell}.dealings .lk-requests__table th:first-child{grid-column:none;flex-grow:10}.dealings .lk-requests__table thead tr{display:flex}}.rate__inner{max-width:1500px;margin:0 auto 50px}.rate__form{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:0 30px}.rate__card{margin-bottom:30px}.rate__card .incoming__dropdown{width:auto}.rate__card-label{font-size:18px;color:#4a4a4a;margin-bottom:20px}.rate__balance-card{box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;background:#fff;margin-bottom:20px;height:100px;padding:20px 24px}.rate__balance-label{font-size:18px;margin-bottom:8px}.rate__balance-price{display:flex;align-items:center;font-weight:500;font-size:28px;color:#0041a2}.rate__balance-price img{margin-right:8px;width:14px;height:14px}.rate__price-percent{display:flex;justify-content:flex-end;flex-grow:10;color:#28dfa8}.rate__balance-items{display:flex;align-items:center;margin-bottom:30px}.rate__balance-item{width:371px;height:100px;background:#eff6ff;border-radius:10px;padding:20px 24px;margin-right:16px}.rate__balance-item:last-child{margin-right:0}.rate__purchase-label{font-size:16px;color:#b0c1d6;margin-bottom:20px}.rate__purchse-title{font-weight:500;font-size:28px;color:#0041a2;margin-bottom:20px}.rate__purchase-text{font-size:18px;margin-bottom:20px}.rate__purchase-asset{display:flex;align-items:center;height:90px;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;overflow:hidden;margin-bottom:10px}.rate__purchase-asset:last-child{margin-bottom:0}.rate__asset-picture{width:90px;height:90px;flex-shrink:0;margin-right:24px}.rate__asset-picture img{width:100%;height:100%;object-fit:cover}.rate__asset-container{display:flex;align-items:center}.rate__asset-info{margin-right:53px}.rate__asset-info:last-child{margin-right:0}.rate__asset-type{font-size:11px;color:#b0c1d6;margin-bottom:8px}.rate__asset-name{font-size:16px;color:#3660cd}.rate__asset-name--bold{color:#0041a2;font-weight:bold}.rate__private-toggler{display:flex;align-items:center;justify-content:space-between;max-width:492px;height:90px;background:#eff6ff;border-radius:10px;padding:0 20px;margin-bottom:30px}.rate__toogler-label span{color:#b0c1d6}.rate__toogler-text{font-size:18px;color:#4a4a4a;margin-bottom:8px}.rate__toggler-block{display:flex;align-items:center}.rate__toggler-percent{font-weight:bold;font-size:16px;margin-right:20px;color:#ff8311;flex-shrink:0}.rate__status{display:flex;align-items:flex-start;margin-bottom:50px}.rate__status.success .rate__icon{background:#28dfa8 url(/c08929553bef8891ade3.svg) no-repeat 50%}.rate__status.success .rate__description{color:#28dfa8}.rate__icon{background-size:20px;width:24px;height:24px;flex-shrink:0;border-color:#ff8311;border-radius:50%;margin-right:15px}.rate__description{color:#ff8311}.rate__buttons{display:flex;align-items:center}.rate__buttons .btn{margin-right:20px}.rate__buttons .btn:last-child{margin-right:0}.rate__buttons .btn-primary{width:201px}.rate__add{height:90px;background:#eff6ff;border-radius:10px;position:relative;display:flex;align-items:center;justify-content:center;font-weight:500;font-size:14px;color:#b0c1d6;text-transform:uppercase}.rate__add:hover .rate__add-hover{opacity:1;visibility:visible}.rate__add-hover{position:absolute;left:0;top:0;right:0;bottom:0;z-index:34;transition:300ms;background:#3660cd;border-radius:10px;display:flex;align-items:center;justify-content:space-between;padding:20px;opacity:0;visibility:hidden;margin-bottom:10px}.rate__add-hover:last-child{margin-bottom:0}.rate__add-hover a.btn{width:292px;margin-right:10px}.rate__add-hover a.btn:last-child{margin-right:0}.rate__add-hover a.btn:hover{background:#8e5000;border-color:#8e5000}.rate__surcharge{margin-top:-30px}.rate__surcharge .checkbox__text{font-size:18px;transform:none}@media only screen and (max-width: 767px){.rate__surcharge .checkbox__text{font-size:14px}}@media only screen and (max-width: 1220px){.rate__form{grid-template-columns:1fr}.rate__balance-item{width:100%}.rate__purchase-asset{margin-bottom:20px}.rate__info-status{margin-bottom:30px}}@media only screen and (max-width: 991px){.rate__balance-items{flex-wrap:wrap}.rate__balance-item{margin-bottom:20px;margin-right:0}.rate__balance-item:last-child{margin-bottom:0}}@media only screen and (max-width: 767px){.rate__inner{margin:0 auto 30px}.rate__status{margin-bottom:30px}.rate__asset-container{display:block}.rate__asset-picture{display:none}.rate__asset-info{margin-right:0;margin-bottom:20px}.rate__asset-info:last-child{margin-bottom:0}.rate__purchase-asset{height:auto;padding:20px 20px}.rate__balance-price{font-size:20px}.rate__private-toggler{display:block;height:auto;padding:20px 20px}.rate__toogler-label{margin-bottom:10px}.rate__buttons{justify-content:center;flex-direction:column}.rate__buttons .btn{margin-right:0;margin-bottom:20px}.rate__add{height:150px}.rate__add-hover{display:grid;grid-gap:15px;justify-content:center}.rate__add-hover a.btn{margin-right:0}}.ad-asset__inner{margin-bottom:50px}.ad-asset__mobile-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}.ad-asset__mobile-title{font-size:24px}.ad-asset__header{display:flex;justify-content:space-between;margin-bottom:30px}@media only screen and (max-width: 991px){.ad-asset__header{display:block;margin-bottom:36px;padding-top:10px}}.ad-asset .create-advert__title{margin-bottom:17px}.ad-asset .lk-balances__items{margin-top:16px;display:grid;grid-template-columns:repeat(4, 1fr);grid-template-rows:minmax(100px, auto);grid-auto-rows:minmax(100px, auto)}@media screen and (max-width: 1919px){.ad-asset .lk-balances__items{grid-template-columns:repeat(3, 1fr)}}@media screen and (max-width: 1439px){.ad-asset .lk-balances__items{grid-template-columns:repeat(2, 1fr)}}@media screen and (max-width: 767px){.ad-asset .lk-balances__items{grid-template-columns:1fr}}.ad-asset .lk-balances__item{cursor:pointer}.ad-asset .lk-nav__items{margin-bottom:20px;display:inline-flex;border-bottom:1px solid #c7d5e5}.ad-asset .lk-balances__aside{width:100%;justify-content:space-between}.ad-asset .lk-balances__price{text-align:right}.ad-asset .lk-nav__item{padding:10px 40px 11px;font-size:18px;width:auto;color:#b0c1d6}@media only screen and (max-width: 767px){.ad-asset .lk-nav__item{justify-content:center;display:flex;align-items:center}}.ad-asset .lk-nav__item.active{background:none;color:#0041a2}.ad-asset .lk-nav__item:after{height:3px;bottom:-2px;width:100%}.ad-asset .lk-assets__filter{margin-bottom:10px}.ad-asset .products__currency--etherium{background-image:url(/a69cd56aadceea982ae4.svg);background-size:90%}@media only screen and (max-width: 991px){.ad-asset .asset-card__img{height:100%;margin-bottom:0}.ad-asset .asset-card__img img{aspect-ratio:1}}@media only screen and (max-width: 991px){.ad-asset .asset-card__number{width:30px;height:30px;font-size:14px;right:15px;top:15px;left:auto}}.ad-asset .products__item{cursor:pointer}@media only screen and (max-width: 767px){.ad-asset .create-advert__title{font-size:20px}.ad-asset .lk-nav__items{display:flex}.ad-asset .lk-nav__item{padding-left:0;padding-right:0;width:100%}}.lot{margin-bottom:165px}@media only screen and (max-width: 991px){.lot{margin-bottom:100px}}@media only screen and (max-width: 767px){.lot{margin-bottom:70px}}.lot__inner{display:grid;grid-template-columns:1fr 1fr;grid-gap:27px;max-width:1477px;margin:0 auto}@media only screen and (max-width: 1200px){.lot__inner{grid-template-columns:1fr}}.lot__name{font-weight:500;font-size:28px;margin-bottom:20px}@media only screen and (max-width: 767px){.lot__name{font-size:20px}}.lot__header{display:flex;align-items:center;flex-wrap:wrap;color:#b0c1d6;margin-bottom:30px}@media only screen and (max-width: 767px){.lot__header{margin-bottom:10px}}.lot__author{font-size:18px;margin-right:33px}@media only screen and (max-width: 767px){.lot__author{font-size:14px}}.lot__author a{color:#3660cd;text-decoration:underline}.lot__author a:hover{text-decoration:none}.lot__to-favorite{display:flex;align-items:center;font-size:11px}@media only screen and (max-width: 767px){.lot__to-favorite{margin:10px 0}}.lot__to-favorite:hover{color:#0041a2}.lot__to-favorite img{flex-shrink:0;margin-right:10px}.lot__to-favorite span{transform:translateY(2px)}.lot__expire{padding:7px 9px;background:#eff6ff;display:flex;align-items:flex-start;border-radius:10px;margin-bottom:50px;font-size:18px}@media only screen and (max-width: 767px){.lot__expire{font-size:14px;margin-bottom:30px}}.lot__expire img{flex-shrink:0;margin-right:13px}.lot__expire span{transform:translateY(1px);color:#3660cd}.lot .viewing__gallery{display:grid;grid-template-columns:1fr 127px;grid-gap:30px;align-items:stretch;margin-bottom:37px}@media only screen and (max-width: 767px){.lot .viewing__gallery{grid-template-columns:1fr}}.lot .viewing__gallery-mini{flex-direction:column}@media only screen and (max-width: 767px){.lot .viewing__gallery-mini{flex-direction:row}}.lot .viewing__gallery-main{max-width:100%;margin-bottom:0;margin-right:0}.lot .viewing__gallery-item:last-child{margin-bottom:0}@media only screen and (max-width: 991px){.lot .viewing__gallery-item{margin-bottom:20px;margin-right:0}}@media only screen and (max-width: 767px){.lot .viewing__gallery-item{margin-bottom:0;margin-right:20px}}.lot .viewing__deal{grid-template-columns:repeat(3, 1fr);margin-bottom:40px}@media only screen and (max-width: 1500px){.lot .viewing__deal{grid-template-columns:repeat(2, 1fr)}}.lot__assets{margin-bottom:20px}.lot__assets input{display:none}.lot__assets-title{font-size:18px;margin-bottom:20px}@media only screen and (max-width: 767px){.lot__assets-title{font-size:14px}}.lot__assets-elem{box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;margin-bottom:10px;display:grid;grid-template-columns:90px 1fr;overflow:hidden;align-items:center;height:90px;cursor:pointer;border:1px solid rgba(0,0,0,0)}@media only screen and (max-width: 767px){.lot__assets-elem{grid-template-columns:1fr}}.lot__assets-elem.active{border:1px solid #8e5000}.lot__assets-elem:last-child{margin-bottom:0}.lot__assets-img{width:90px;height:90px}@media only screen and (max-width: 767px){.lot__assets-img{display:none}}.lot__assets-img img{width:100%;height:100%;object-fit:cover}.lot__assets-content{display:flex;padding:0 24px;max-width:580px}.lot__assets-item span{color:#b0c1d6;font-size:11px;margin-bottom:6px}.lot__assets-name{font-weight:bold;font-size:16px;color:#0041a2}.lot__assets-info{color:#3660cd}.lot__earn{color:#b0c1d6;font-size:18px;display:flex;align-items:center;margin-bottom:51px;margin-top:8px}@media only screen and (max-width: 767px){.lot__earn{font-size:14px}}.lot__earn a{color:#0041a2;text-decoration:underline;margin-right:5px}.lot__earn a:hover{text-decoration:none}.lot__earn span{width:25px;height:25px;border-radius:50%;background:#fff;border:3px solid #c37c33;flex-shrink:0;margin-right:14px;position:relative;display:flex;align-items:center;justify-content:center}.lot__earn span:before{content:"";display:block;position:absolute;background:#c37c33;width:15px;height:15px;border-radius:50%}.lot__buttons{display:flex;margin-bottom:50px}@media only screen and (max-width: 767px){.lot__buttons{flex-wrap:wrap;margin-bottom:30px}}.lot__buttons a,.lot__buttons button{width:285px;height:60px;margin-right:30px;max-width:45%}@media only screen and (max-width: 767px){.lot__buttons a,.lot__buttons button{margin-bottom:20px;max-width:100%}}.lot__buttons a.btn-primary,.lot__buttons button.btn-primary{background:#3660cd}.lot__buttons a:last-child,.lot__buttons button:last-child{margin-right:0}.lot__params{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px 14px}@media only screen and (max-width: 767px){.lot__params{grid-template-columns:1fr}}.lot__params-item{background:#eff6ff;padding:10px 16px;border-radius:10px}.lot__params-item--large{grid-column:span 2}@media only screen and (max-width: 767px){.lot__params-item--large{grid-column:span 1}}.lot__params-item--large .lot__params-elems{grid-template-columns:repeat(4, 1fr)}@media only screen and (max-width: 767px){.lot__params-item--large .lot__params-elems{grid-template-columns:repeat(2, 1fr)}}.lot__params-label{margin-bottom:10px;color:#0041a2;font-size:11px}.lot__params-text{font-size:18px}.lot__params-elems{margin-top:10px;display:grid;grid-template-columns:1fr 1fr;grid-gap:10px}.lot__params-elem{display:flex;align-items:center;font-size:11px}.lot__params-elem:before{content:"";display:block;width:20px;height:20px;border-radius:50%;flex-shrink:0;margin-right:9px}.lot__params-elem.true{color:#28dfa8}.lot__params-elem.true:before{background:#28dfa8 url(/c08929553bef8891ade3.svg) no-repeat 50%}.lot__params-elem.false{color:#fc3c6a}.lot__params-elem.false:before{background:#fc3c6a url(/78a72af7d8a3a3307d9f.svg) no-repeat 50%/8px}.lot__chart{margin-bottom:50px;display:flex;align-items:center;justify-content:center}@media only screen and (max-width: 767px){.lot__chart{margin-bottom:30px}}.lot__chart-items{margin-left:100px;display:grid;grid-template-columns:1fr;grid-gap:37px}@media only screen and (max-width: 767px){.lot__chart-items{margin-left:25px}}.lot__chart-item{display:flex;align-items:center;font-size:18px}.lot__chart-item.blue-light:before{background:#43bbc3}.lot__chart-item.blue:before{background:#5691ea}.lot__chart-item.green:before{background:#6cd86a}.lot__chart-item.fiol:before{background:#ad7fb7}.lot__chart-item:before{content:"";display:block;width:12px;height:12px;flex-shrink:0;border-radius:50%;margin-right:7px}.lot__parts{display:grid;grid-gap:20px}.lot__part{box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;padding:25px;display:grid;grid-template-columns:1fr 100px 1fr;align-items:center}@media only screen and (max-width: 767px){.lot__part{padding:15px}}.lot__part-currency{display:flex;align-items:center;font-weight:bold;color:#0041a2}@media only screen and (max-width: 767px){.lot__part-currency{font-size:14px}}.lot__part-currency img,.lot__part-currency svg{width:40px;flex-shrink:0;margin-right:20px}@media only screen and (max-width: 767px){.lot__part-currency img,.lot__part-currency svg{width:35px}}.lot__part-percent{text-align:center;font-size:18px}@media only screen and (max-width: 991px){.lot__part-percent{font-size:16px}}@media only screen and (max-width: 767px){.lot__part-percent{font-size:14px}}.lot__part-value{color:#0041a2;text-align:right;font-size:18px}@media only screen and (max-width: 991px){.lot__part-value{font-size:16px}}@media only screen and (max-width: 767px){.lot__part-value{font-size:14px}}.lot__crypto{display:flex;align-items:center;margin-bottom:20px}.lot__crypto img,.lot__crypto svg{width:120px;margin-right:37px;flex-shrink:0}@media only screen and (max-width: 767px){.lot__crypto img,.lot__crypto svg{width:100px;margin-right:20px}}.lot__crypto-value{color:#3660cd;font-weight:500;font-size:48px;margin-bottom:1px}@media only screen and (max-width: 767px){.lot__crypto-value{font-size:28px;margin-bottom:15px}}.lot__crypto-description{font-size:18px;color:#b0c1d6}@media only screen and (max-width: 767px){.lot__crypto-description{font-size:14px}}.request{margin-top:60px;margin-bottom:100px}@media only screen and (max-width: 991px){.request{margin-bottom:70px}}@media only screen and (max-width: 767px){.request{margin-bottom:50px;margin-top:50px}}.request__inner{max-width:1540px;margin:0 auto}.request__header{margin-bottom:44px}@media only screen and (max-width: 767px){.request__header{margin-bottom:30px}}.request__title{font-weight:500;font-size:28px;margin-bottom:28px}@media only screen and (max-width: 991px){.request__title{font-size:24px}}@media only screen and (max-width: 767px){.request__title{font-size:20px}}.request__description{font-size:18px}.request__container{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:30px}@media only screen and (max-width: 1200px){.request__container{grid-template-columns:1fr}}.request__balances{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:16px;margin-bottom:10px}@media only screen and (max-width: 767px){.request__balances{grid-template-columns:1fr;grid-gap:10px}}.request__dropdown-info{color:#0041a2;flex-grow:10;font-size:18px}@media only screen and (max-width: 991px){.request__dropdown-info{font-size:16px}}@media only screen and (max-width: 767px){.request__dropdown-info{font-size:14px}}.request__dropdown-add{display:flex;align-items:center}.request__dropdown-add button{border:none;background:none;cursor:pointer;flex-shrink:0;margin-right:20px}.request__dropdown-add .field__input input{border:none;background:rgba(0,0,0,0)}.request__dropdown-arrow{flex-shrink:0;margin-left:10px}.request__delivery{margin-bottom:30px}.request__delivery-label{font-size:18px;margin-bottom:20px}@media only screen and (max-width: 991px){.request__delivery-label{font-size:16px}}@media only screen and (max-width: 767px){.request__delivery-label{font-size:14px}}.request__buttons{display:flex;flex-wrap:wrap;margin-bottom:40px;margin-top:41px}.request__buttons a,.request__buttons button{margin-right:20px;margin-bottom:20px;height:60px}.request__buttons a.btn-brown,.request__buttons a.btn-primary,.request__buttons button.btn-brown,.request__buttons button.btn-primary{width:201px}.request__assets{display:grid;grid-template-columns:1fr 1fr;grid-gap:29px}@media only screen and (max-width: 1200px){.request__assets{grid-template-columns:1fr}}.crypto-barter__inner{max-width:1470px;margin:0 auto 80px}.crypto-barter__header{font-weight:500;font-size:28px;margin-bottom:30px}.crypto-barter__title{font-size:22px;margin-bottom:20px}.crypto-barter__currency-item{display:flex;flex-wrap:wrap;margin-bottom:40px}.crypto-barter__currency-form{position:relative;margin-right:30px;max-width:442px;width:100%}.crypto-barter__currency-form:hover .crypto-barter__currency-hover{opacity:1;visibility:visible;cursor:pointer}.crypto-barter__currency-hover{position:absolute;display:flex;align-items:center;justify-content:center;position:absolute;left:0;right:0;bottom:0;top:0;background:#3660cd;opacity:0;visibility:hidden;transition:300ms;border-radius:10px}.crypto-barter__currency-buttons{display:flex}.crypto-barter__currency-buttons .btn{margin-right:60px}.crypto-barter__currency-buttons .btn:last-child{margin-right:0}.crypto-barter__currency-buttons .btn:hover{border:#c37c33;background:#c37c33}.crypto-barter .lk-balances__item{max-width:442px;width:100%;margin-right:30px}.crypto-barter .lk-balances__item--margin{margin-bottom:20px}.crypto-barter .file-input{height:100px;width:100%;max-width:442px;margin-right:30px}.crypto-barter__options-advert{max-width:1086px;display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:0 54px;margin-bottom:34px}.crypto-barter .field--description{margin-top:42px}.crypto-barter__options-deal{display:grid;grid-template-columns:2fr 1fr;grid-gap:0 30px}.crypto-barter .rate__private-toggler{margin-bottom:0}.crypto-barter .rate__toggler-label span{color:#b0c1d6}.crypto-barter .rate__toggler-text{font-size:18px;margin-bottom:6px}.crypto-barter .create-advert__category{margin-bottom:0}.crypto-barter .create-advert__bargain-radio--orange input:checked+span{fill:#fff;background:#ff8311}.crypto-barter .incoming__surcharge-currency{margin-bottom:58px}.crypto-barter .incoming__currency-header{margin-bottom:8px}.crypto-barter .incoming__surcharge-radios{display:flex;flex-wrap:wrap}.crypto-barter .incoming__surcharge-radio{margin:0 25px 11px 0}.crypto-barter .incoming__surcharge-radio input:checked+span{border:1px solid #c37c33;background:#eff6ff;fill:#c37c33}.crypto-barter .incoming__surcharge-radio.brown span{background:#edd8c2}.crypto-barter .incoming__surcharge-radio.brown input:checked+span{background:#edd8c2}@media only screen and (max-width: 1400px){.crypto-barter__options-deal{grid-template-columns:1fr}.crypto-barter .create-advert__deal-togglers{grid-template-columns:1fr;margin-bottom:0}.crypto-barter .rate__private-toggler{margin-bottom:20px}.crypto-barter .incoming__surcharge-radios{margin-bottom:20px}.crypto-barter .create-advert__term-radios{margin-bottom:50px}}@media only screen and (max-width: 1010px){.crypto-barter .crypto-barter__currency-item{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:0 30px}}@media only screen and (max-width: 991px){.crypto-barter__currency-item{display:block}.crypto-barter__currency-form{margin-right:0;margin-bottom:20px}.crypto-barter__options-advert{grid-template-columns:1fr}.crypto-barter__currency-buttons .btn{width:140px;margin-right:30px;font-size:12px}.crypto-barter .file-input{height:90px}.crypto-barter .field--description{margin-top:32px;margin-bottom:32px}.crypto-barter .rate__toggler-percent{order:1;margin-right:0;margin-left:20px}.crypto-barter .rate__toggler-label{margin-bottom:10px}}@media only screen and (max-width: 767px){.crypto-barter .crypto-barter__currency-item{grid-template-columns:1fr}.crypto-barter .lk-balances__item{max-width:100%}}.account__inner{margin-bottom:50px}.account__header{display:flex;justify-content:space-between;margin-bottom:30px}.account__title{font-weight:500;font-size:28px}.account .create-advert__title{margin-bottom:17px}.account .lk-balances__items{margin-top:20px}.account .lk-nav__items{margin-bottom:10px;display:inline-flex}.account .lk-nav__item{padding:10px 40px 11px;font-size:18px;width:auto}.account .lk-nav__item:after{height:3px}.account .lk-assets__filter{margin-bottom:10px}.account .products__currency--etherium{background-image:url(/a69cd56aadceea982ae4.svg);background-size:90%}@media only screen and (max-width: 767px){.account .create-advert__title{font-size:20px}.account .lk-nav__items{display:flex}.account .lk-nav__item{padding-left:0;padding-right:0;width:100%}}.not-wallet{padding:107px 0 137px;text-align:center}@media screen and (max-width: 767px){.not-wallet{padding:50px 0}}.not-wallet__img{margin-bottom:42px}.not-wallet__title{font-size:28px;font-weight:500;margin-bottom:13px}.not-wallet__text{font-size:18px;margin-bottom:60px}.not-wallet__text a{color:#0041a2;text-decoration:underline}.not-wallet__text a:hover{text-decoration:none}.not-wallet__btn{display:inline-flex;width:224px}
.loader{background:#fff;position:fixed;z-index:99999;display:flex;align-items:center;justify-content:center;left:0;top:0;right:0;bottom:0}.loader-component{display:flex}.loader-component.small svg{width:26px}.loader-component.small .loader-component__left{transform:translateX(-5px);animation:left_part_amimation_small 2.5s infinite}.loader-component.small .loader-component__right{transform:translateX(5px);animation:right_part_amimation_small 2.5s infinite}.loader-component.medium svg{width:46px}.loader-component.medium .loader-component__left{transform:translateX(-5px);animation:left_part_amimation_medium 2.5s infinite}.loader-component.medium .loader-component__right{transform:translateX(5px);animation:right_part_amimation_medium 2.5s infinite}.loader-component div{display:flex;align-items:flex-start}.loader-component svg{width:70px}.loader-component svg .logo-arrow{animation:arrow_hiding 2.5s infinite}.loader-component__left{transform:translateX(-15px);animation:left_part_amimation 2.5s infinite}.loader-component__right{transform:translateX(15px);animation:right_part_amimation 2.5s infinite}.loader-component__right svg{transform:rotate(180deg)}@keyframes left_part_amimation{0%,100%{transform:translateX(-15px)}45%,55%{transform:translateX(35px)}}@keyframes left_part_amimation_small{0%,100%{transform:translateX(-5px)}45%,55%{transform:translateX(14px)}}@keyframes left_part_amimation_medium{0%,100%{transform:translateX(-5px)}45%,55%{transform:translateX(24px)}}@keyframes arrow_hiding{0%,100%{opacity:1}45%,55%{opacity:0}}@keyframes right_part_amimation{0%,100%{transform:translateX(15px)}45%,55%{transform:translateX(-35px)}}@keyframes right_part_amimation_small{0%,100%{transform:translateX(5px)}45%,55%{transform:translateX(-14px)}}@keyframes right_part_amimation_medium{0%,100%{transform:translateX(5px)}45%,55%{transform:translateX(-24px)}}

.cookies{position:fixed;z-index:1;right:0;bottom:0;left:0;padding:30px 20px 34px;background-color:#fff;box-shadow:2px -16px 24px -20px rgba(0,23,106,.2)}@media only screen and (max-width: 575px){.cookies{padding:20px}}.cookies__container{max-width:1540px;margin:0 auto}.cookies__inner{display:flex;align-items:center}.cookies__icon{flex-shrink:0;width:46px;height:46px;margin-right:35px;fill:#0041a1}@media only screen and (max-width: 575px){.cookies__icon{margin-right:22px}}.cookies__icon img{width:100%;height:100%;object-fit:cover}.cookies__content{display:flex;align-items:center;justify-content:space-between;flex-grow:1;color:#0041a1}@media only screen and (max-width: 575px){.cookies__content{flex-direction:column;align-items:flex-start}}.cookies__title{margin-bottom:5px;font-weight:700;font-size:22px}.cookies__text{font-weight:500;font-size:14px}.cookies__btn{flex-shrink:0;margin-left:20px}@media only screen and (max-width: 575px){.cookies__btn{margin-top:10px;margin-left:0}}
.footer__inner{display:flex;align-items:center;justify-content:space-between;position:relative;padding:27px 40px 27px 0}@media screen and (max-width: 1300px){.footer__inner{flex-direction:column}}.footer__left{display:flex;align-items:center}@media screen and (max-width: 1300px){.footer__left{width:100%}}@media screen and (max-width: 767px){.footer__left{flex-direction:column;align-items:flex-start}}@media screen and (max-width: 1300px){.footer__right{width:100%;display:flex;align-items:center;justify-content:space-between;margin-top:30px}}@media screen and (max-width: 767px){.footer__right{flex-direction:column;align-items:flex-start}}.footer__description{margin-left:60px;max-width:450px;font-weight:400;font-size:12px;line-height:14px;color:#4a4a4a}@media screen and (max-width: 1300px){.footer__description{margin-left:40px;font-size:16px;line-height:18px;max-width:initial}}@media screen and (max-width: 767px){.footer__description{margin-left:0;font-weight:400;font-size:12px;line-height:14px;margin-top:17px}}@media screen and (max-width: 767px){.footer .footer__links{margin-top:0px}}.footer .footer__links ul{display:flex;align-items:center}.footer .footer__links ul li{font-weight:400;font-size:11px;line-height:13px;color:#4a4a4a;padding:5px 0}.footer .footer__links ul li:nth-child(1){padding-right:10px;border-right:1px solid #3660cd}.footer .footer__links ul li:nth-child(2){padding:0 10px}.footer .footer__links ul li:nth-child(3){padding-left:10px;border-left:1px solid #3660cd}.footer__copyright{font-weight:400;font-size:11px;line-height:13px;color:#0041a2;text-align:right;margin-top:10px}@media screen and (max-width: 767px){.footer__copyright{margin-top:20px}}
.avatar__photo{display:flex;align-items:flex-start}
.select-wrapper{text-align:left;position:relative}.select-wrapper.has-value .select__single-value{color:#4a4a4a}.select__reset{position:absolute;right:48px;top:46%;transform:translateY(-50%);width:14px;height:14px;cursor:pointer}.select__reset .icon{fill:#4a4a4a}.select__label{color:#0041a2;font-size:12px}.select .select__control{cursor:pointer;height:48px;background:#eff6ff;border-radius:10px;box-shadow:none;border:none}.select .select__control:hover{background:#cfe2fb;box-shadow:none}.select .select__control--menu-is-open{background:#cfe2fb;border:none !important}.select .select__single-value{color:#b0c1d6;font-size:14px}.select .select__value-container{padding-left:16px}.select .select__indicator-separator{display:none}.select .select__dropdown-indicator{background:url(/82ff93f74984b1df7b7e.svg) no-repeat center;margin-right:14px}.select .select__dropdown-indicator svg{display:none}.select .select__menu{background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;z-index:9999}.select .select__option{padding:8px 14px;font-size:14px;cursor:pointer;transition:300ms}.select .select__option--is-focused,.select .select__option--is-selected{color:#3660cd;background:none}.select__tags{display:flex;flex-wrap:wrap;margin-left:-9px}.select__tag{display:inline-flex;align-items:center;margin-top:9px;margin-left:9px;padding:3px 7px;border-radius:5px;background-color:#3660cd;color:#fff}.select__tag-btn{display:flex;align-items:center;width:14px;height:14px;margin-left:8px;cursor:pointer}.select-alt{display:flex;align-items:center}.select-alt .select__control{height:auto;border:none;min-height:0}.select-alt .select__label{color:#4a4a4a;font-size:18px;margin-right:6px}.select-alt .select__value-container{padding:0;overflow:visible}.select-alt .select__single-value{position:static;max-width:100%;overflow:visible;transform:none;color:#3660cd;font-size:18px}.select-alt .select__menu{width:auto;min-width:100%}
.search{padding-bottom:30px;padding-top:13px}@media only screen and (max-width: 991px){.search{display:none;border-radius:0 0 15px 15px;padding:26px 0;position:relative;background:#fff}}.search.search__mob{display:none}@media only screen and (max-width: 767px){.search.search__mob{display:block}}.search__form{display:grid;grid-template-columns:3fr 4fr 3fr 2fr;grid-gap:30px;align-items:flex-end}@media only screen and (max-width: 991px){.search__form{display:flex;align-items:center;grid-gap:15px}.search__form .search__category{display:none}.search__form .field{width:100%}.search__form .select-wrapper{display:none}}.search__btn{width:100%}.search__options .checkbox{margin-right:35px}.search__category{position:relative}.search__category--enable-sections .search__dropdown-list li:hover .search__dropdown-sublist{opacity:1;visibility:visible}.search__category .field__input{position:relative;cursor:pointer}.search__category .field__input input{cursor:pointer}.search__category .field__input::after{position:absolute;display:block;content:"";background:url(/82ff93f74984b1df7b7e.svg) no-repeat;width:12px;height:8px;right:14px;top:50%;transform:translateY(-50%)}.search__dropdown{position:absolute;top:100%;margin-top:8px;left:0;right:0;box-shadow:2px 2px 20px rgba(0,23,106,.1);background:#fff;border-radius:10px;padding:21px 0 21px 21px;z-index:100;opacity:0;visibility:hidden;transition:300ms;pointer-events:none}.search__dropdown.active{opacity:1;visibility:visible;pointer-events:all}.search__dropdown-title{display:flex;align-items:center;justify-content:space-between;color:#3660cd;font-size:18px;cursor:pointer;margin-bottom:18px;padding-right:21px}.search__dropdown-title.active:after{transform:rotate(0)}.search__dropdown-title:after{display:flex;align-items:flex-start;content:"";width:20px;height:12px;background:url(/82ff93f74984b1df7b7e.svg) no-repeat 50%;transform:rotate(180deg);transition:300ms}.search__dropdown-group--show .search__dropdown-title:after{transform:rotate(0)}.search__dropdown-group:last-child .search__dropdown-title{color:#0041a2}.search__dropdown-group:last-child .search__dropdown-title:after{background-image:url(/82ff93f74984b1df7b7e.svg)}.search__dropdown-list{padding-left:14px;padding-bottom:18px}.search__dropdown-group--show .search__dropdown-list{display:none}.search__dropdown-list li{margin-bottom:18px}.search__dropdown-list li:last-child{margin-bottom:0}.search__dropdown-list>li{position:relative;cursor:pointer}.search__dropdown-sublist{position:absolute;left:100%;top:0;width:210px;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);padding:20px;border-radius:10px;margin-left:10px;transition:300ms;opacity:0;visibility:hidden}.search__dropdown-sublist.open{opacity:1;visibility:visible}.search__dropdown-sublist:before{content:"";display:block;position:absolute;left:-10px;top:0;bottom:0;width:10px}.search__dropdown-item:hover{color:#0041a2}.search__confirm{display:flex;align-items:center}@media only screen and (max-width: 991px){.search__confirm{width:125px;flex-shrink:0}}.search__link{flex-shrink:0;margin-left:25px;display:flex;align-items:flex-start}@media only screen and (max-width: 767px){.search{position:absolute;top:50px;left:0;right:0;background:#fff;transition:300ms;z-index:100}.search.active{opacity:1;visibility:visible}.search__dropdown-sublist{display:none;position:static;box-shadow:none;visibility:visible;opacity:1}.search__dropdown-sublist.open{display:block}.search__link{order:-3;margin-left:0;margin-right:23px}.search__inner{position:relative}}
.header-with-search{box-shadow:2px 2px 20px rgba(0,23,106,.1)}@media only screen and (max-width: 1200px){.header-with-search{box-shadow:none}}.header{margin-bottom:30px;position:fixed;top:0;right:0;left:0;background:#fff;z-index:999}.header.active .search{display:block}.header.active::before{position:absolute;width:100%;height:100%;background:#000;opacity:.25;display:block;content:"";height:200vh;width:100%;bottom:0;top:0;left:0;right:0;z-index:-1}.header__container{background:#fff;position:relative;z-index:1000}.header__to-search{display:none;align-items:center;justify-content:center;min-width:44px;min-height:44px;touch-action:manipulation}@media only screen and (max-width: 991px){.header__to-search{margin-left:8px;display:flex}}.header__to-search svg{width:18px;height:18px;fill:#0041a2}.header__link{cursor:pointer;margin-right:43px}@media only screen and (max-width: 1550px){.header__link{margin-right:20px}}@media only screen and (max-width: 1500px){.header__link{font-size:16px}}@media only screen and (max-width: 1300px){.header__link{font-size:14px;margin-right:10px}}@media only screen and (max-width: 1200px){.header__link{margin-bottom:16px;font-size:16px;margin-right:0}}.header__link:hover{color:#0041a2}.header__chains{display:flex;align-items:center;cursor:pointer;padding:0 20px 0 0;margin-right:20px;border-right:1px solid #c7d5e5;height:100%;position:relative}@media only screen and (max-width: 1400px){.header__chains{padding-right:10px;margin-right:10px}}@media only screen and (max-width: 1200px){.header__chains{margin-right:0}}.header__chains-wrapper{flex-shrink:0;height:49px}@media only screen and (max-width: 1200px){.header__chains-wrapper{height:22px}}.header__chains-current{display:flex;align-items:center;white-space:nowrap;font-size:18px}@media only screen and (max-width: 1500px){.header__chains-current span{font-size:16px}}@media only screen and (max-width: 1300px){.header__chains-current span{font-size:14px}}@media only screen and (max-width: 1200px){.header__chains-current span{font-size:16px}}@media only screen and (max-width: 1350px){.header__chains-current{font-size:16px}}@media only screen and (max-width: 1200px){.header__chains-current{font-size:14px}}.header__chains-current svg{width:24px;fill:#0041a2;margin-right:10px;flex-shrink:0}@media only screen and (max-width: 1200px){.header__chains-current svg{width:20px}}.header__chains-dropdown{transition:300ms;position:absolute;top:100%;left:-20px;width:225px;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);z-index:100;border-radius:10px;padding:25px 30px;font-size:18px;opacity:0;visibility:hidden;transform:translateY(15px)}@media only screen and (max-width: 1200px){.header__chains-dropdown{width:170px;padding:15px 20px;margin-top:10px}}.header__chains-dropdown.active{opacity:1;visibility:visible;transform:translateY(0)}.header__chains-elem{display:flex;align-items:center;margin-bottom:10px;font-size:18px}@media only screen and (max-width: 1200px){.header__chains-elem{font-size:14px}}.header__chains-elem:hover{color:#0041a2}.header__chains-elem:last-child{margin-bottom:0}.header__chains-elem svg{width:24px;fill:#0041a2;margin-right:10px}@media only screen and (max-width: 1200px){.header__chains-elem svg{width:20px}}.header__inner{display:flex;align-items:center;justify-content:space-between;padding:15px 0}.header__content{display:flex;align-items:center;font-size:18px}.header__logo a{display:flex;align-items:flex-start}.header__logo img{width:180px;height:38px}@media only screen and (max-width: 1200px){.header__logo img{width:112px;height:23px}}.header__rate{padding-right:30px;border-right:1px solid #c7d5e5;color:#b3b3b3}.header__links{display:flex;align-items:center;padding:0 20px;border-right:1px solid #c7d5e5}.header__links li{margin-right:20px;position:relative}.header__links li:last-child{margin-right:0}@media only screen and (max-width: 1350px){.header__links li>a{font-size:16px}}.header__links li>a:hover{color:#0041a2}.header__with-arrow{display:flex;align-items:center}@media only screen and (max-width: 1500px){.header__with-arrow{font-size:16px}}@media only screen and (max-width: 1300px){.header__with-arrow span{font-size:14px}}@media only screen and (max-width: 1200px){.header__with-arrow span{font-size:16px}}.header__with-arrow .icon{width:12px;margin-left:7px;flex-shrink:0}.header__submenu{background:#fff;position:absolute;top:38px;left:50%;margin-left:-94px;width:188px;border-radius:10px;box-shadow:2px 2px 20px rgba(0,23,106,.1);opacity:0;visibility:hidden;transform:translateY(15px);transition:300ms;padding:10px 0}@media only screen and (max-width: 1200px){.header__submenu{position:relative;margin-left:0;box-shadow:none;left:0;top:0;width:100%;display:none;margin-top:10px;padding:0}}.header__submenu.active{opacity:1;visibility:visible;transform:translateY(0)}@media only screen and (max-width: 1200px){.header__submenu.active{display:block}}.header__submenu-list{padding:15px 35px;cursor:pointer}@media only screen and (max-width: 1200px){.header__submenu-list{padding:8px 20px}}.header__submenu-list:hover{background:#eff6ff}.header__create-nft{list-style:none;margin-left:24px;display:flex;align-items:center}@media only screen and (max-width: 1580px){.header__create-nft{margin-left:12px}}@media only screen and (max-width: 1400px){.header__create-nft{margin-left:10px}}@media only screen and (max-width: 1200px){.header__create-nft{display:none}}.header__create-nft-btn{width:auto;min-width:0;min-height:44px;height:48px;padding:0 18px;white-space:nowrap;font-weight:500;display:inline-flex;align-items:center;justify-content:center}@media only screen and (max-width: 1580px){.header__create-nft-btn{font-size:14px;padding:0 12px;height:44px}}@media only screen and (max-width: 1360px){.header__create-nft-btn{font-size:13px;padding:0 10px}}.header__create-nft-btn:hover{color:#fff}.header__create-advert{margin-left:12px}@media only screen and (max-width: 1580px){.header__create-advert{font-size:16px;margin-left:10px}}@media only screen and (max-width: 1400px){.header__create-advert{margin-left:8px}}@media only screen and (max-width: 1200px){.header__create-advert{margin-left:0;list-style:none}}.header__create-advert .btn{width:auto;padding:0 20px;padding-top:2px;line-height:inherit}@media only screen and (max-width: 1580px){.header__create-advert .btn{font-size:16px;padding:0 10px;font-size:14px}}@media only screen and (max-width: 1360px){.header__create-advert .btn{font-size:12px;line-height:20px;padding:0 5px}}@media only screen and (max-width: 1200px){.header__create-advert .btn{width:217px;height:36px;font-size:14px;text-transform:initial}}.header__create-advert .btn:hover{color:#fff}.header__auth{margin-right:20px;padding:0 20px;border-right:1px solid #c7d5e5;height:49px;display:flex;align-items:center;position:relative}@media only screen and (max-width: 1450px){.header__auth{padding:0 10px;margin-right:10px}}@media only screen and (max-width: 1580px){.header__auth-name{font-size:16px}}@media only screen and (max-width: 1300px){.header__auth-name{font-size:14px}}.header__auth-current{display:flex;align-items:center;cursor:pointer}.header__auth-exit{color:#fc3c6a}.header__auth-exit a:hover{color:#fc3c6a !important}.header__auth-avatar{display:flex;align-items:center;margin-right:18px;flex-shrink:0;width:27px;height:27px;border-radius:50%}.header__auth-avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}.header__auth-arrow{margin-left:15px;display:flex;align-items:center}.header__auth-dropdown{transition:300ms;position:absolute;top:100%;left:0;width:225px;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);z-index:100;border-radius:10px;padding:25px 30px;font-size:18px;opacity:0;visibility:hidden;transform:translateY(15px)}.header__auth-dropdown.active{opacity:1;visibility:visible;transform:translateY(0)}.header__auth-dropdown ul li{margin-bottom:18px;display:flex;align-items:center}.header__auth-dropdown ul li:last-child{margin-bottom:0}.header__auth-dropdown ul li a:hover{color:#0041a2}.header__auth-dropdown ul li a{display:flex}.header__signin:hover{color:#0041a2}@media only screen and (max-width: 1200px){.header__signin{margin-left:0 !important;padding-right:16px;border-right:1px solid #b0c1d6}}.header__language{position:relative;display:flex;align-items:center;text-transform:uppercase;height:47px;border-radius:3px}@media only screen and (max-width: 1200px){.header__language{height:auto}}.header__language-current{cursor:pointer;transition:300ms;display:flex;align-items:center}@media only screen and (max-width: 1350px){.header__language-current span{font-size:16px}}@media only screen and (max-width: 1200px){.header__language-current{padding-left:16px;padding-right:16px;border-right:1px solid #c7d5e5;height:22px}}.header__language-current:hover{color:#0041a2}.header__language img{box-shadow:2px 4px 8px rgba(0,0,0,.25);margin-left:7px;width:18px;height:18px;border-radius:3px}@media only screen and (max-width: 1200px){.header__language img{margin-left:0}}.header__language-dropdown{background:#fff;position:absolute;top:100%;left:-15px;right:-15px;padding:15px;border-radius:10px;box-shadow:2px 2px 20px rgba(0,23,106,.1);opacity:0;visibility:hidden;transform:translateY(15px);transition:300ms}@media only screen and (max-width: 1200px){.header__language-dropdown{width:50px;left:2px}}.header__language-dropdown.active{opacity:1;visibility:visible;transform:translateY(0)}.header__language-dropdown li{display:flex;align-items:center;margin-bottom:10px;cursor:pointer;transition:300ms}.header__language-dropdown li span{min-width:45px}.header__language-dropdown li img{border-radius:3px}.header__language-dropdown li:hover{color:#0041a2}.header__language-dropdown li:last-child{margin-bottom:0}.header__language-arrow{margin-left:7px;transform:translateY(-1px)}.header__mobile{display:none}.header__mobile-bell{position:relative;display:flex;align-items:center;padding-right:15px;border-right:1px solid #b0c1d6;display:none}.header__mobile-bell svg{width:20px;height:20px;fill:#0041a2}.header__mobile-number{position:absolute;right:10px;top:-5px;font-weight:400;font-size:11px;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;background:#28dfa8;width:11px;height:11px;border-radius:50%}.header__to-mobile-menu{position:relative;z-index:99999;min-width:44px;min-height:44px;display:inline-flex;align-items:center;justify-content:center;touch-action:manipulation}@media only screen and (max-width: 991px){.header__to-mobile-menu{border-left:1px solid #b0c1d6;padding-left:12px;margin-left:4px}}.header__to-mobile-menu svg{width:20px;height:20px;fill:#0041a2;transition:300ms}@media only screen and (max-width: 1200px){.header{margin-bottom:20px}.header__language-dropdown{margin-top:5px}.header__content{display:none}.header__mobile{display:flex;align-items:center}.header__mobile a{margin-left:20px;display:flex;align-items:flex-start}}@media only screen and (max-width: 1200px)and (max-width: 1200px){.header__mobile a{margin-left:16px}}.mobile-menu{display:none}@media only screen and (max-width: 1200px){.mobile-menu{width:min(286px,88vw);display:block;height:100%;max-height:100dvh;box-shadow:2px 2px 20px rgba(0,23,106,.1);position:fixed;overflow-y:auto;-webkit-overflow-scrolling:touch;top:0;right:0;z-index:155;background:#fff;padding:28px 24px max(28px,env(safe-area-inset-bottom));padding-top:max(28px,env(safe-area-inset-top));opacity:0;visibility:hidden;overscroll-behavior:contain}.mobile-menu.active{z-index:1000;opacity:1;visibility:visible}.mobile-menu__exit{position:absolute;right:16px;top:max(28px,env(safe-area-inset-top));cursor:pointer;display:flex;align-items:center;justify-content:center;min-width:44px;min-height:44px;touch-action:manipulation}.mobile-menu__exit svg{width:25px;height:25px;fill:#fc3c6a}.mobile-menu__actions{display:flex;flex-direction:column;align-items:stretch;gap:16px;width:100%;margin:12px 0 0}.mobile-menu__action-btn.btn,.mobile-menu a.mobile-menu__action-btn{display:flex !important;align-items:center;justify-content:center;width:100%;max-width:100%;min-height:48px;height:48px;margin:0;padding:0 16px;font-size:16px;font-weight:500;line-height:1.2;text-align:center;text-transform:none;white-space:normal;box-sizing:border-box;border-radius:10px;touch-action:manipulation}.mobile-menu__network{margin-top:20px;margin-bottom:8px;width:100%;display:flex;justify-content:center}.mobile-menu__bottom{margin-top:28px}.mobile-menu__bottom .header__link{margin-bottom:8px}.mobile-menu__bottom .header__link a{min-height:44px;display:inline-flex;align-items:center;justify-content:flex-start;font-size:16px}.mobile-menu__bottom ul{margin-bottom:20px}.mobile-menu__bottom ul li a{font-size:16px}.mobile-menu__bottom ul:last-child{margin-bottom:0}.mobile-menu__close svg{fill:#0041a2}.mobile-menu__name{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mobile-menu__to-mobile-menu{margin-left:25px}.mobile-menu__to-mobile-menu svg{width:20px;height:20px;fill:#c7d5e5}.mobile-menu__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:30px}.mobile-menu .header__language{height:auto}.mobile-menu__login{width:100%;margin-bottom:22px}.mobile-menu__menu{margin:0 -24px;padding:0 24px;border-bottom:1px solid #eff6ff;margin-top:31px}.mobile-menu__menu--item{display:flex;align-items:center;min-height:52px;height:auto;margin:0 -24px;padding:12px 24px;position:relative;touch-action:manipulation}.mobile-menu__menu--item .ticker{font-size:12px;color:#fff !important}.mobile-menu__menu--item span{display:block;margin-left:20px;font-size:16px;color:#4a4a4a}.mobile-menu__menu--item.active{background:#eff6ff}.mobile-menu__menu--item.active::before{position:absolute;display:block;content:"";left:0;top:0;right:0;bottom:0;background:#3660cd;height:100%;width:7px}.mobile-menu__menu--item.active svg{fill:#3660cd}.mobile-menu__menu--item.active span{color:#3660cd}.mobile-menu__menu--item svg{display:flex;align-items:center;width:20px;height:20px;fill:#4a4a4a}.mobile-menu__menu li{margin-bottom:20px;display:flex;align-items:center}.mobile-menu__menu li:last-child{margin-bottom:0}.mobile-menu__menu li a{font-size:16px;display:flex}.mobile-menu__menu li a:hover{color:#0041a2}.mobile-menu__user{display:flex;align-items:center;padding-bottom:15px;max-width:85%}.mobile-menu__user--content{text-overflow:ellipsis;display:block;overflow:hidden;font-size:14px;margin-top:3px;color:#b0c1d6}.mobile-menu__user__name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500;color:#4a4a4a}.mobile-menu__avatar{flex-shrink:0;width:48px;height:48px;margin-right:12px;border-radius:50%}.mobile-menu__avatar img{width:100%;height:100%;border-radius:50%}}.mobile-menu__chain{display:flex;align-items:center;justify-content:space-between;border-top:1px solid #eff6ff;border-bottom:1px solid #eff6ff;margin:15px -33px 25px;padding:18px 33px;font-size:16px}.mobile-menu__chain .header__chains{border-right:none;padding-right:0}
.network-badge{--network-accent: #8247e5;display:inline-flex;align-items:center;gap:8px;height:36px;padding:0 12px;margin-right:12px;border:1px solid #c7d5e5;border-radius:8px;background:#fff;color:#001c71;font-size:14px;font-weight:500;letter-spacing:.01em;cursor:pointer;transition:border-color 200ms,background 200ms,color 200ms;white-space:nowrap;flex-shrink:0}.network-badge:disabled{cursor:default}.network-badge:not(:disabled):hover{border-color:var(--network-accent);color:var(--network-accent)}.network-badge__dot{width:8px;height:8px;border-radius:50%;background:#b3b3b3;flex-shrink:0}.network-badge__label{line-height:1}.network-badge__hint{font-size:11px;font-weight:400;color:#fc3c6a;max-width:120px;overflow:hidden;text-overflow:ellipsis}.network-badge--ok .network-badge__dot{background:#28dfa8}.network-badge--wrong{border-color:rgba(252,60,106,.55);background:#fff5f7}.network-badge--wrong .network-badge__dot{background:#fc3c6a}.network-badge--unknown .network-badge__dot{background:#ff8311}@media only screen and (max-width: 1350px){.network-badge{margin-right:8px;padding:0 10px;font-size:13px}.network-badge__hint{display:none}}@media only screen and (max-width: 1200px){.network-badge{margin-right:0;height:32px}}.mobile-menu .network-badge{width:100%;margin:0;justify-content:center;min-height:40px;height:40px}
.not-foundpage{position:relative}.not-foundpage__inner{padding:200px 0}@media only screen and (max-width: 767px){.not-foundpage__inner{padding-bottom:50px;padding-top:0}}.not-foundpage__img{position:absolute;left:0;top:0}@media only screen and (max-width: 767px){.not-foundpage__img{position:relative}}.not-foundpage__content{margin:0 auto;max-width:665px}.not-foundpage__logo{display:flex;align-items:flex-start;margin-bottom:50px}@media only screen and (max-width: 767px){.not-foundpage__logo{max-width:70%;margin:0 auto;margin-bottom:30px}}.not-foundpage__text{text-align:center;font-size:24px;margin-bottom:48px}@media only screen and (max-width: 767px){.not-foundpage__text{font-size:18px;margin-bottom:30px}}.not-foundpage__btn{background:#0041a2;border-radius:10px;cursor:pointer;color:#fff;width:185px;height:48px;margin:0 auto;display:flex;align-items:center;justify-content:center}.not-foundpage__btn:hover{background:#3660cd}
.chart{height:100%;display:grid}.chart--vertical{display:flex;align-items:center}.chart--vertical .chart__canvas{width:127px;height:127px}.chart--vertical .chart__legends{flex-direction:column;align-items:flex-start;gap:11px;margin-top:6px;margin-left:33px}.chart__canvas canvas{max-width:100%;max-height:100%;width:auto !important;height:auto !important}.chart__legends{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:15px}.chart__item{display:flex;align-items:center;cursor:pointer}.chart__color{flex-shrink:0;width:12px;height:12px;margin-right:7px;border-radius:50%}
.watermarked-image{position:relative;display:block;width:100%;height:100%;overflow:hidden;background:#e8eef5}.watermarked-image__skeleton{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg, #e8eef5 0%, #f4f7fb 45%, #e8eef5 100%);background-size:200% 100%;animation:watermarked-shimmer 1.2s ease-in-out infinite;pointer-events:none}.watermarked-image__media{display:block;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .25s ease}.watermarked-image.is-loaded .watermarked-image__media{opacity:1}.watermarked-image::after{content:"";position:absolute;top:50%;left:50%;z-index:2;width:55%;max-width:220px;height:45%;max-height:120px;pointer-events:none;user-select:none;-webkit-user-select:none;opacity:0;transform:translate(-50%, -50%);background-image:var(--watermark-url);background-repeat:no-repeat;background-position:center;background-size:contain;transition:opacity .25s ease}.watermarked-image.is-loaded::after{opacity:.18}.watermarked-image--clean::after{display:none}@keyframes watermarked-shimmer{0%{background-position:100% 0}100%{background-position:-100% 0}}
.advert-item{cursor:pointer;transition:box-shadow 300ms;display:flex;flex-direction:column;width:285px;height:394px;position:relative;min-width:0}@media only screen and (max-width: 1200px){.advert-item{max-width:100%}}@media only screen and (max-width: 991px){.advert-item{width:100%;max-width:none;height:auto;justify-self:stretch}}.advert-item--loading .advert-item__content,.advert-item--loading .advert-item__img>*:not(.watermarked-image){visibility:hidden}.advert-item__skeleton-overlay{position:absolute;inset:0;z-index:5;pointer-events:none}.advert-item.hide{visibility:hidden}.advert-item--list{display:grid;grid-template-columns:11.6% 18.58% 58.3% 11.52%;grid-template-rows:100px;align-items:center;padding:0}@media only screen and (max-width: 1500px){.advert-item--list{grid-template-columns:16% 24% 44% 16%}}@media only screen and (max-width: 767px){.advert-item--list{grid-template-columns:72px 1fr auto;grid-template-rows:auto;gap:10px;height:auto;padding:8px 0}}.advert-item .chart{display:flex;align-items:center;justify-content:center}@media only screen and (max-width: 767px){.advert-item .chart{width:100%;height:auto;aspect-ratio:1}}.advert-item .chart__legends{display:none}.advert-item .chart__canvas{display:flex;align-items:center;justify-content:center}.advert-item__img{display:flex;align-items:center;justify-content:center;position:relative;height:285px;width:285px;margin-bottom:13px;object-fit:cover}@media only screen and (max-width: 767px){.advert-item__img{width:100%;height:auto;aspect-ratio:1;margin-bottom:8px}}.advert-item--list .advert-item__img{height:100%}@media only screen and (max-width: 767px){.advert-item--list .advert-item__img{width:72px;height:72px;aspect-ratio:1;margin-bottom:0}}.advert-item__img img{aspect-ratio:1;width:100%;height:100%;border-radius:15px;object-fit:cover}@media only screen and (max-width: 767px){.advert-item__img img{border-radius:10px}}.advert-item--list .advert-item__img img{border-radius:10px 0 0 10px}@media only screen and (max-width: 767px){.advert-item--list .advert-item__img img{border-radius:8px}}.advert-item__img .advert-item__action{position:absolute;top:14px;left:14px;width:30px;height:30px;background:#eff6ff;border-radius:50%;border:none}.advert-item__img .advert-item__action-inner{position:relative;width:100%;height:100%;display:flex;justify-content:center}.advert-item__img .advert-item__action-btn{position:absolute;width:100%;height:100%;background:#eff6ff;border-radius:50%;border:none}.advert-item__img .advert-item__action-btn:hover{background:#3660cd}.advert-item__img .advert-item__action-btn:hover svg{fill:#fff}.advert-item__img .advert-item__action-btn svg{fill:#3660cd;width:17px}.advert-item__img .advert-item__hot{position:absolute;right:17px;top:17px;border-radius:50%;width:66.5px;height:66.5px;background:radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, #ffffff 100%, #ffffff 100%);display:flex;align-items:center;justify-content:center}@media screen and (max-width: 767px){.advert-item__img .advert-item__hot{width:40px;height:40px;right:8px;top:8px}.advert-item__img .advert-item__hot img{width:20px;height:26px}}.advert-item__img .advert-item__hot img{width:33.25px;height:42.4px}.advert-item__img .advert-item__exclusive{position:absolute;left:12px;top:12px;z-index:2;padding:6px 10px;border-radius:6px;background:#0b1f3a;color:#fff;font-size:11px;font-weight:700;letter-spacing:.02em;text-transform:none;line-height:1.2;max-width:calc(100% - 90px)}.advert-item__img .advert-item__exclusive--tg{background:#1b3a57}.advert-item__img .advert-item__exclusive--vk{background:#2787f5}@media screen and (max-width: 767px){.advert-item__img .advert-item__exclusive{left:8px;top:8px;font-size:10px;padding:4px 8px}}.advert-item__img .advert-item__asset-ticker{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);z-index:2;padding:6px 14px;border-radius:8px;background:rgba(11,31,58,.82);color:#fff;font-size:20px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;line-height:1}@media screen and (max-width: 767px){.advert-item__img .advert-item__asset-ticker{font-size:16px;padding:5px 10px}}.advert-item__img .advert-item__supply{position:absolute;left:17px;bottom:17px;border-radius:50%;width:40px;height:40px;background-color:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}@media only screen and (max-width: 767px){.advert-item__img .advert-item__supply{left:8px;bottom:8px;width:32px;height:32px}}.advert-item__img .advert-item__supply span{font-weight:400;font-size:12px;color:#fff}.advert-item__currency-block{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;width:100%;height:100%;background:linear-gradient(160deg, #eef5fb 0%, #dfeaf5 100%);border-radius:8px}.advert-item__currency-icon{width:72px;height:72px}.advert-item__currency-icon .icon{width:72px;height:72px}.advert-item__currency-amount{font-size:18px;font-weight:600;color:#0041a2;text-align:center;padding:0 12px}.advert-item__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:13px}@media only screen and (max-width: 767px){.advert-item__header{margin-bottom:8px}}.advert-item__info{display:flex;align-items:center;color:#fff;font-weight:400;font-size:13px;column-gap:5.5px;margin-bottom:16px}@media only screen and (max-width: 767px){.advert-item__info{font-size:11px;margin-bottom:8px;column-gap:4px}}.advert-item__info__type{padding:8px 12px;display:flex;align-items:center;justify-content:center;height:26px;flex:1;min-width:0}@media only screen and (max-width: 767px){.advert-item__info__type{height:22px;padding:4px 6px;font-size:11px}}.advert-item__info__type--green{background-color:#28dfa8}.advert-item__info__type--orange{background-color:#ff8311}.advert-item__info__type--blue{background-color:#118dff}.advert-item__chain{display:flex;align-items:center;height:26px;justify-content:center;color:#fff;background-color:#0041a2;padding:6.5px 12px;flex:1;min-width:0}.advert-item__chain span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media only screen and (max-width: 767px){.advert-item__chain{height:22px;padding:4px 6px;font-size:11px}}.advert-item__chain .icon{width:16px;fill:#fff;margin-right:7px;flex-shrink:0}@media only screen and (max-width: 767px){.advert-item__chain .icon{width:12px;margin-right:4px}}.advert-item__type{position:relative;color:#fff;text-transform:uppercase;font-size:16px}@media only screen and (max-width: 500px){.advert-item__type{font-size:14px}}.advert-item__content{flex-grow:10}@media only screen and (max-width: 767px){.advert-item__content{padding-bottom:4px}}.advert-item__name{color:#0041a2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;font-weight:400;font-size:14px}@media only screen and (max-width: 767px){.advert-item__name{max-width:100%;padding-right:0;font-size:13px;line-height:1.3;white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}}.advert-item__price{display:flex;align-items:center;flex-direction:row;white-space:nowrap}@media only screen and (max-width: 767px){.advert-item__price{flex-direction:column;align-items:flex-start;gap:2px}.advert-item__price .advert__in-my-currency{margin-top:0;font-size:11px;margin-left:0}}.advert-item__price-container{display:flex;align-items:center}.advert-item__price-currency{display:flex;align-items:flex-start;width:26px;height:26px;padding:7px;background:#eff6ff;fill:#0041a2;border-radius:6px;margin-right:13px}@media only screen and (max-width: 767px){.advert-item__price-currency{width:20px;height:20px;padding:4px;margin-right:8px}}.advert-item__price-currency-icon{width:50%;height:50%;display:flex;align-items:center;justify-content:center}.advert-item__price-currency-icon .icon{width:100%;height:100%;fill:#fff}.advert-item__price-value{font-weight:400;font-size:20px;color:#0041a2}@media only screen and (max-width: 767px){.advert-item__price-value{font-size:14px}}.advert-item .briefcase-item__chart{height:285px;width:285px}@media only screen and (max-width: 767px){.advert-item .briefcase-item__chart{width:100%;height:auto;aspect-ratio:1;display:flex;align-items:center;justify-content:center;margin-bottom:8px;padding:12px}}@media only screen and (max-width: 991px){.advert-item .briefcase-item__chart .chart__canvas{height:100%}}@media only screen and (max-width: 991px){.advert-item .briefcase-item__chart .chart__legends{display:none}}.briefcase-item{border-radius:10px;background-color:#fff}.briefcase-item__chart{padding:20px 10px;border-radius:10px 10px 0 0;background-color:#cfe2fb;margin-bottom:12px;aspect-ratio:1}@media only screen and (max-width: 767px){.briefcase-item__chart{aspect-ratio:1;height:auto;display:flex;align-items:center;justify-content:center;margin-bottom:8px;padding:12px}}.briefcase-item__chart .chart__canvas{width:100%;height:90%;margin:0 auto}.briefcase-item__content{padding:23px 11px 15px 16px}@media only screen and (max-width: 767px){.briefcase-item__content{padding:8px 4px 6px}}.briefcase-item__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px}@media only screen and (max-width: 767px){.briefcase-item__header{margin-bottom:10px}}.briefcase-item__title{overflow:hidden;padding-right:10px;color:#0041a1;font-size:14px;white-space:nowrap;text-overflow:ellipsis}.briefcase-item__price{display:flex;align-items:center;flex-shrink:0;color:#3660cd;text-transform:uppercase}.briefcase-item__currency{display:flex;align-items:flex-start;width:26px;height:26px;margin-left:7px}.briefcase-item__chain{display:flex;align-items:center;font-size:14px}.briefcase-item__chain .icon{width:16px;margin-right:13px;fill:#fff}
.advert-card-skeleton{border-radius:10px 10px 0 0;background-color:rgba(0,0,0,0);overflow:hidden;width:285px;height:100%}@media screen and (max-width: 767px){.advert-card-skeleton{width:176px}}.advert-card-skeleton .skeleton__item{border-radius:10px}.advert-card-skeleton .skeleton__item:before{border-radius:10px}.advert-card-skeleton__photo{width:100%;height:285px;border-radius:15px}.advert-card-skeleton__content{margin-top:12px}.advert-card-skeleton__title{width:100%;height:17px;border-radius:15px}.advert-card-skeleton__description{width:100%;height:29px;margin-top:12px;border-radius:15px}.advert-card-skeleton-footer{margin-top:13px;width:100%;height:26px;display:flex}.advert-card-skeleton-footer-left{width:26px;height:26px;margin-right:10px}.advert-card-skeleton-footer-right{width:200px;height:26px}@media screen and (max-width: 767px){.advert-card-skeleton .skeleton__item{border-radius:10px}.advert-card-skeleton .skeleton__item:before{border-radius:10px}.advert-card-skeleton__photo{width:100%;height:176px;border-radius:15px}.advert-card-skeleton__content{margin-top:7px}.advert-card-skeleton__title{width:100%;height:10px;border-radius:15px}.advert-card-skeleton__description{width:100%;height:19px;margin-top:12px;border-radius:15px}.advert-card-skeleton-footer{margin-top:12px;width:100%;height:25px;display:flex}.advert-card-skeleton-footer-left{width:25px;height:25px;margin-right:10px}.advert-card-skeleton-footer-right{width:100px;height:26px}}
.not-found{padding:15px 0 20px}.not-found__body{display:flex;align-items:center;max-width:1100px;margin:0 auto}@media only screen and (max-width: 767px){.not-found__body{flex-direction:column}}.not-found__img{display:flex;align-items:center;flex-shrink:0;margin-right:85px}@media only screen and (max-width: 991px){.not-found__img{max-width:270px;margin-right:40px}}@media only screen and (max-width: 767px){.not-found__img{margin-right:0;margin-bottom:30px}}.not-found__content{padding-top:32px;min-width:0;flex:1 1 auto;max-width:520px}@media only screen and (max-width: 767px){.not-found__content{padding-top:0;text-align:center;max-width:100%}}.not-found__title{margin-bottom:28px;font-weight:500;font-size:28px;line-height:1.25;white-space:normal}@media only screen and (max-width: 767px){.not-found__title{margin-bottom:20px;font-size:24px}}.not-found__text{color:#3c4858;font-size:18px;line-height:1.2}
.seller{padding-top:15px}@media only screen and (max-width: 991px){.seller{padding-top:0}}.seller__top{margin-bottom:42px;display:flex;align-items:center}@media only screen and (max-width: 991px){.seller__top{display:block;margin-bottom:20px}}.seller__human{max-width:45%;width:100%;display:flex;align-items:center;background:#fff;border-radius:10px;height:150px;padding:0 43px 0 32px;margin-right:30px}@media only screen and (max-width: 1500px){.seller__human{padding:0 20px;margin-right:20px;max-width:500px}}@media only screen and (max-width: 1400px){.seller__human{max-width:392px;height:171px}}@media only screen and (max-width: 991px){.seller__human{max-width:100%;margin-bottom:10px;height:150px}}.seller__logo{display:flex;align-items:center;width:91px;height:91px;margin-right:38px;flex-shrink:0}@media only screen and (max-width: 1500px){.seller__logo{margin-right:15px}}@media only screen and (max-width: 1400px){.seller__logo{margin-right:37px}}@media only screen and (max-width: 767px){.seller__logo{width:71px;height:71px;margin-right:34px}}.seller__logo img{width:100%;height:100%;object-fit:cover;border-radius:50%}.seller__content{display:flex;align-items:center;justify-content:space-between;width:100%}@media only screen and (max-width: 1400px){.seller__content{display:block}}.seller__nickname{font-weight:500;font-size:22px;color:#3660cd;margin-bottom:4px;display:block}@media only screen and (max-width: 767px){.seller__nickname{font-size:18px}}.seller__name{display:block;font-size:14px;color:#4a4a4a}.seller__name span:first-child{margin-right:5px}.seller__btn{width:217px}@media only screen and (max-width: 1500px){.seller__btn{width:150px;font-size:16px}}@media only screen and (max-width: 1400px){.seller__btn{width:207px;margin-top:18px}}@media only screen and (max-width: 991px){.seller__btn{height:42px;font-size:16px;width:205px}}.seller__items{background:#fff;border-radius:10px;height:150px;width:100%;display:flex;align-items:center;padding:0 38px;justify-content:space-evenly}@media only screen and (max-width: 1400px){.seller__items{padding:0 20px;height:171px}}@media only screen and (max-width: 1200px){.seller__items{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px 78px;padding:29px 38px}}@media only screen and (max-width: 991px){.seller__items{height:72px;padding:12px;grid-gap:0}}.seller__item{display:flex;flex-direction:column;justify-content:center;position:relative;padding:0 35px}@media only screen and (max-width: 1600px){.seller__item{padding:0 20px}}@media only screen and (max-width: 1200px){.seller__item{padding:0}}.seller__item:first-child{padding-left:0}.seller__item:first-child::after{display:none}.seller__item:last-child{padding-right:0;padding-left:50px}@media only screen and (max-width: 1200px){.seller__item:last-child{padding-left:0}}@media only screen and (max-width: 991px){.seller__item:last-child{padding-left:20px}}@media only screen and (max-width: 1200px){.seller__item:nth-child(2):after{display:none}}@media only screen and (max-width: 991px){.seller__item:nth-child(2)::after{display:block}}.seller__item:after{content:"";display:block;position:absolute;left:0;top:0;bottom:0;height:100%;width:2px;background:#c7d5e5}@media only screen and (max-width: 1200px){.seller__item:after{width:100%;height:1px;top:-10px}}@media only screen and (max-width: 991px){.seller__item:after{width:1px;height:100%;top:0}}.seller__label{font-size:18px;color:#0041a2;display:block;margin-bottom:7px}@media only screen and (max-width: 1700px){.seller__label{font-size:16px}}@media only screen and (max-width: 767px){.seller__label{font-size:14px}}.seller__text{color:#3660cd;display:flex;align-items:center}.seller__text svg{fill:#28dfa8;width:16px;height:16px;margin-right:5px}@media only screen and (max-width: 1700px){.seller__text{font-size:16px}}.seller__text--sell{color:#ff8311;font-weight:700}.seller__text--barter{color:#28dfa8;font-weight:700}.seller__text--auction{color:#28dfa8;font-weight:700}.seller-search{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:43px}@media only screen and (max-width: 1200px){.seller-search{display:block;margin-bottom:50px}}@media only screen and (max-width: 991px){.seller-search{display:flex;align-items:center;margin-bottom:40px}}.seller-search .assets__nav{margin-bottom:0}.seller-search .assets__nav li{font-size:18px;height:48px}@media only screen and (max-width: 991px){.seller-search .assets__nav li{width:163px;height:52px;font-size:14px}}.seller-search .lk-assets__fields--adverts{width:100%;margin-right:0}.seller-search__fields{width:100%;max-width:1100px;margin-left:30px}@media only screen and (max-width: 1200px){.seller-search__fields{margin-left:0;margin-top:40px}}@media only screen and (max-width: 991px){.seller-search__fields{margin-top:0;margin-left:20px}}.seller-search .lk-assets__mobile{justify-content:flex-end}.seller-search .lk-assets__filter--mobile{justify-content:flex-end}.seller-search .lk-assets__filter--mobile svg{fill:#b0c1d6}.modal-user{background:#fff !important;border-radius:10px;max-width:374px;width:100% !important;position:relative !important;padding:30px !important}.modal-user__title{margin-bottom:30px;font-size:20px;font-weight:600}.modal-user__btn{margin:0 auto;margin-top:30px;font-size:18px}.modal-user .lk-assets__fields{position:relative;display:block;top:0;left:0;bottom:0;right:0;background:#fff;padding:0;display:grid;grid-template-columns:1fr;grid-gap:20px}.modal-user .lk-assets__fields .select .select__control{background:#f5f7f9;border-radius:10px}.modal-user .search-page__close{z-index:10}
.activity{margin-bottom:30px}.activity__title{font-weight:500;font-size:28px;margin-bottom:10px}.activity__description{margin-bottom:40px;font-size:18px}.activity__sort{display:flex;align-items:center;font-size:18px;margin-bottom:15px}.activity__items{display:grid;grid-template-columns:1fr;grid-gap:20px}.activity__item{box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;overflow:hidden}.activity__header{background:#eff6ff;padding:22px 28px;display:flex;align-items:center;justify-content:space-between}.activity__type{margin-bottom:10px;font-size:20px;font-weight:bold}.activity__id{font-size:18px}.activity__price{display:flex;align-items:center;font-size:18px;color:#0041a2}.activity__price .currency{width:40px;height:40px;border-radius:5px;background:#fff url(/e6e2602659f6a928846b.svg) no-repeat 50%;margin-right:25px}.activity__body{padding:20px 28px;display:flex;align-items:center;justify-content:space-between}.activity__elems{display:flex;align-items:center;margin-bottom:30px}.activity__elem{margin-right:120px;display:flex;align-items:center;font-size:20px;font-weight:bold}.activity__elem:last-child{margin-right:0}.activity__img{width:70px;height:70px;flex-shrink:0;margin-right:30px}.activity__log{color:#b0c1d6;font-size:18px}.activity__log a{color:#3660cd;text-decoration:underline}.activity__log a:hover{text-decoration:none}.activity__transaction .btn{width:244px}@media only screen and (max-width: 1200px){.activity__elems{display:grid;grid-template-columns:1fr;grid-gap:25px}}@media only screen and (max-width: 767px){.activity__title{font-size:20px;margin-bottom:11px}.activity__description{font-size:16px;margin-bottom:22px}.activity__sort{font-size:16px;margin-bottom:10px}.activity__sort .select-alt .select__label{font-size:16px}.activity__sort .select-alt .select__single-value{font-size:16px}.activity__sort .select .select__dropdown-indicator{padding:6px}.activity__header{padding:20px 19px}.activity__type{font-size:16px;margin-bottom:5px}.activity__id{font-size:12px}.activity__price{font-size:16px}.activity__price .currency{width:30px;height:30px;border-radius:4px;background-size:8px;margin-right:11px}.activity__body{padding:20px 19px}.activity__elems{grid-gap:20px}.activity__elem{font-size:16px}.activity__img{width:50px;height:50px;margin-right:19px}.activity__transaction{display:none}.activity__log{font-size:12px}}
.announcement-card{position:relative;z-index:1;display:grid;grid-template-columns:62px 1fr;height:auto;min-height:70px;border-radius:10px;padding:8px;background:#eff6ff;cursor:pointer}.announcement-card__img{display:flex;justify-content:center;align-items:center;overflow:hidden;border-radius:10px}.announcement-card__img img{width:100%;height:100%;object-fit:cover}.announcement-card__content{display:flex;align-items:center;justify-content:space-between;padding:10px 22px;gap:8px;min-width:0}.announcement-card__meta{display:flex;flex-direction:column;gap:2px;min-width:0;flex:1}.announcement-card__royalty{color:#667085;font-size:12px;font-weight:600}.announcement-card__copies{display:flex;align-items:center;justify-content:center;flex-shrink:0;background:#b0c1d6;border-radius:50%;margin-left:10px;height:28px;width:28px;color:#fff;font-size:14px}.announcement-card__name{color:#0041a2;font-weight:600;font-size:18px}.announcement-card__icon{width:64px;height:64px;display:flex;align-items:center;justify-content:center;border-radius:15px;background:#eff6ff}.announcement-card__icon .icon{width:100%;max-width:30px;max-height:30px;fill:#3660cd}.announcement-card__description{color:#b0c1d6;font-size:11px;margin-bottom:6px}.announcement-card__hover{position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:space-between;width:100%;height:100%;padding:21px 19px;border-radius:inherit;border-color:#3660cd;background-color:#3660cd;opacity:0;transition:opacity 300ms}.announcement-card:hover .announcement-card__hover{opacity:1;z-index:2}.announcement-card__button.btn{background-color:#0041a2;border-color:#0041a2}.announcement-card__button.btn:hover{border-color:#c37c33;background-color:#c37c33}.announcement-card__delete{position:absolute;z-index:5;top:7px;right:7px;display:flex;align-items:center;justify-content:center;width:24px;height:24px;padding:7px;border:0;border-radius:50%;background-color:rgba(0,0,0,.7);fill:#fff;cursor:pointer}
.wallet-flow-steps{margin:16px 0 20px;padding:14px 16px;background:#eef4ff;border-radius:10px;border:1px solid #c7d7f5;position:sticky;bottom:max(12px,env(safe-area-inset-bottom));z-index:5;box-shadow:0 8px 24px rgba(15,23,42,.08)}@media only screen and (max-width: 767px){.wallet-flow-steps{margin:12px 0 8px;padding:12px 14px}}.wallet-flow-steps__title{font-weight:700;font-size:15px;color:#0f172a;margin-bottom:6px}.wallet-flow-steps__fee{font-size:13px;color:#3660cd;margin-bottom:10px}.wallet-flow-steps__list{margin:0;padding-left:18px;display:grid;gap:4px}.wallet-flow-steps__list li{font-size:13px;color:#94a3b8;line-height:1.4}.wallet-flow-steps__list li.is-done{color:#16a34a;text-decoration:line-through}.wallet-flow-steps__list li.is-active{color:#0f172a;font-weight:700}.wallet-flow-steps__hint{margin-top:10px;font-size:13px;color:#334155;line-height:1.4}.wallet-flow-steps__action{margin-top:10px;padding:12px 14px;border-radius:8px;background:#0f172a;color:#fff;font-size:14px;font-weight:600;text-align:center;min-height:44px;display:flex;align-items:center;justify-content:center}
.lk-balance__card{position:relative;height:119px;padding:20px 32px;border-radius:10px;background:#3660cd;border-radius:10px;width:100%;display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width: 991px){.lk-balance__card{height:73px;padding:17px 19px}}.lk-balance__label{margin-bottom:8px;font-size:18px;color:#fff}@media only screen and (max-width: 991px){.lk-balance__label{font-size:14px;margin-bottom:5px}}.lk-balance__img{display:flex;align-items:center;margin-right:31px}@media only screen and (max-width: 1200px){.lk-balance__img{margin-right:15px}}@media only screen and (max-width: 991px){.lk-balance__img{margin-right:18px}}.lk-balance__img svg{width:41px;height:41px;fill:#fff}@media only screen and (max-width: 991px){.lk-balance__img svg{width:28px;height:28px}}.lk-balance__price{display:flex;align-items:center;color:#fff;font-weight:500;font-size:18px}@media only screen and (max-width: 991px){.lk-balance__price{font-size:14px}}.lk-balance__price svg{flex-shrink:0;width:16px;margin-right:8px;fill:#28dfa8}.lk-balance__connect.btn{margin:0;padding:8px 14px;min-height:0;height:auto;font-size:14px;font-weight:500;border:1px solid #fff;background:rgba(0,0,0,0);color:#fff}@media only screen and (max-width: 991px){.lk-balance__connect.btn{padding:6px 10px;font-size:12px}}.lk-balance__connect.btn:hover,.lk-balance__connect.btn:focus{background:rgba(255,255,255,.15);color:#fff}.lk-balance__to-settings{position:absolute;top:20px;right:20px;width:20px;height:20px;fill:#c37c33;cursor:pointer;transition:fill 300ms}.lk-balance__to-settings:hover{fill:#8e5000}.lk-balance__info{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-radius:10px;background-color:#0041a2;color:#fff;opacity:0;visibility:hidden;transition:300ms}.lk-balance__info.show{opacity:1;visibility:visible}.lk-balance__current{color:#c7d5e5;font-size:18px}@media only screen and (max-width: 767px){.lk-balance__current{font-size:13px}}.lk-balance__current span{display:block;margin-top:5px;color:#fff;font-weight:500;font-size:28px}@media only screen and (max-width: 767px){.lk-balance__current span{font-size:18px}}.lk-balance__to-change{display:flex;align-items:center;justify-content:center;width:160px;height:48px;border:0;border-radius:10px;background-color:#c37c33;color:#fff;font-weight:500;font-size:14px;text-transform:uppercase;cursor:pointer;transition:300ms}@media only screen and (max-width: 767px){.lk-balance__to-change{width:140px;height:40px}}.lk-balance__to-change:hover{background-color:#8e5000}.lk-balance__current--name{font-size:18px;text-transform:uppercase;margin-right:20px;color:#fff}@media only screen and (max-width: 991px){.lk-balance__current--name{font-size:14px;margin-right:15px}}.lk-balance__currencies{position:absolute;align-items:center;background:#001c71;border-radius:0 0 10px 10px;width:100%;left:0;opacity:0;visibility:hidden;top:37px;z-index:2;padding:10px 0}.lk-balance__dropdown{position:relative;width:113px;padding-left:24px;background:rgba(255,255,255,.2);border-radius:10px;height:48px;display:flex;align-items:center;cursor:pointer}@media only screen and (max-width: 991px){.lk-balance__dropdown{height:39px;width:87px;padding-left:20px}}.lk-balance__dropdown.open{background:#001c71;border-radius:10px 10px 0 0}.lk-balance__dropdown.open .lk-balance__currencies{opacity:1;visibility:visible}.lk-balance__dropdown.open svg{transform:rotate(180deg)}.lk-balance__dropdown svg{transition:300ms;width:12px;height:12px;fill:#fff}@media only screen and (max-width: 991px){.lk-balance__dropdown svg{width:10px;height:10px}}.lk-balance__currency{color:#fff;font-size:18px;cursor:pointer;transition:300ms;text-transform:uppercase;padding-left:24px;margin-bottom:14px}@media only screen and (max-width: 991px){.lk-balance__currency{font-size:14px;padding-left:20px}}.lk-balance__currency:last-child{margin-bottom:0}.lk-balance__information{display:flex;align-items:center}.lk-balances__icons{height:100%;margin-left:20px;display:flex;flex-direction:column;justify-content:space-between}.lk-balances__exit{display:flex;align-items:center;cursor:pointer;transition:300ms}.lk-balances__exit:hover svg{fill:#fc3c6a}.lk-balances__exit svg{width:19px;height:18px;fill:#4a4a4a;transition:300ms}.lk-balances__change{display:flex;align-items:flex-start;cursor:pointer;transition:300ms}.lk-balances__change:hover svg{fill:#3660cd}.lk-balances__change svg{width:21px;height:21px;fill:#4a4a4a;transition:300ms}.lk-balances__items{display:grid;grid-template-columns:1fr;grid-gap:20px}@media only screen and (max-width: 1200px){.lk-balances__items{grid-template-columns:1fr 1fr;grid-gap:20px}}@media only screen and (max-width: 767px){.lk-balances__items{grid-template-columns:1fr;grid-gap:20px}}.lk-balances__aside{display:flex;align-items:center}.lk-balances__item{height:119px;background:#fff;border-radius:10px;position:relative;padding:20px;display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.lk-balances__item{height:92px}}.lk-balances__item-collection:hover{background:#3660cd}.lk-balances__item-collection:hover *{color:#fff}.lk-balances__info{display:flex;align-items:center;margin-right:53px;width:160px}@media only screen and (max-width: 1510px){.lk-balances__info{margin-right:13px}}@media only screen and (max-width: 1200px){.lk-balances__info{margin-right:40px}}@media only screen and (max-width: 991px){.lk-balances__info{margin-right:20px;width:130px}}@media only screen and (max-width: 767px){.lk-balances__info{width:149px}}.lk-balances__icon{width:60px;height:60px;flex-shrink:0;margin-right:18px;background:#eff6ff;display:flex;align-items:center;justify-content:center;border-radius:10px}@media only screen and (max-width: 991px){.lk-balances__icon{width:50px;height:50px}}.lk-balances__icon svg{width:100%;height:auto;fill:#3660cd;max-width:50%;max-height:50%}.lk-balances__abbr{font-weight:500;font-size:24px;color:#001c71;margin-bottom:5px}@media only screen and (max-width: 991px){.lk-balances__abbr{font-size:18px}}.lk-balances__name{font-size:14px;color:#b3b3b3}@media only screen and (max-width: 991px){.lk-balances__name{font-size:14px}}.lk-balances__price{font-size:20px;color:#3660cd;margin-bottom:9px}@media only screen and (max-width: 991px){.lk-balances__price{font-size:18px;margin-bottom:2px}}.lk-balances__in-rub{color:#b3b3b3;text-align:right;font-size:16px}@media only screen and (max-width: 1450px){.lk-balances__in-rub{font-size:12px}}@media only screen and (max-width: 991px){.lk-balances__in-rub{font-size:12px}}.lk-balances__to-creating{position:absolute;z-index:3;top:55px;left:50%;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;width:191px;height:60px;border:0;border-radius:10px;background-color:#3660cd;color:#fff;font-weight:500;font-size:14px;text-align:center;cursor:pointer;opacity:0;visibility:hidden;transition:300ms}@media only screen and (max-width: 1400px){.lk-balances__to-creating{right:-20px;left:auto;transform:translateX(0)}}@media only screen and (max-width: 991px){.lk-balances__to-creating{width:191px;height:60px}}.lk-balances__hover{position:absolute;top:55px;left:50%;transform:translateX(-50%);align-items:center;justify-content:space-between;width:191px;padding:20px;border-radius:10px !important;border-radius:inherit;background-color:#3660cd;opacity:0;visibility:hidden;transition:opacity 300ms;z-index:3}.lk-balances__button.btn{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);height:100%;font-size:14px;margin-bottom:15px;margin-right:0;width:100%}.lk-balances__button.btn:last-child{margin-bottom:0}.lk-balances__button.btn:hover{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}.lk-balances__dots{display:flex;align-items:center;border-radius:50%;background:#eff6ff;width:47px;height:47px;justify-content:center;position:relative;cursor:pointer;transition:300ms}@media only screen and (max-width: 1200px){.lk-balances__dots{width:36px;height:36px}}.lk-balances__dots.active{background:#3660cd}.lk-balances__dots.active svg{fill:#fff}.lk-balances__dots.active .lk-balances__hover,.lk-balances__dots.active .lk-balances__to-creating{opacity:1;visibility:visible}.lk-balances__dots:hover{background:#3660cd}.lk-balances__dots:hover svg{fill:#fff}.lk-balances__dots svg{width:23px;height:23px;fill:#0041a2;transition:300ms}@media only screen and (max-width: 1200px){.lk-balances__dots svg{width:17px;height:17px}}.lk-network{background:#fff;border-radius:10px;padding:0 20px}@media only screen and (max-width: 1400px){.lk-network{height:119px}}@media only screen and (max-width: 991px){.lk-network{background:none;border-radius:none;padding:0}}.lk-network__items{display:flex;align-items:center;height:100%}@media only screen and (max-width: 991px){.lk-network__items{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:9px}}.lk-network__item{display:flex;flex-direction:column;align-items:center;justify-content:center;border-right:1px solid #c7d5e5;width:33.33%}@media only screen and (max-width: 991px){.lk-network__item{width:100%}}.lk-network__item:last-child{border-right:none}@media only screen and (max-width: 991px){.lk-network__item{padding:0;background:#fff;border-radius:10px;border-right:none;text-align:center;justify-content:center;align-items:center;height:99px;padding:0 9px}}.lk-network__label{display:block;color:#0041a2;margin-bottom:7px}@media only screen and (max-width: 1200px){.lk-network__label{font-size:16px}}@media only screen and (max-width: 991px){.lk-network__label{font-size:12px;margin-bottom:17px;max-width:64%}}.lk-network__content{display:flex;align-items:center}.lk-network__content svg{width:19px;height:19px;fill:#28dfa8;margin-right:12px}.lk-network__sum{font-weight:500;color:#3660cd}@media only screen and (max-width: 991px){.lk-network__sum{font-size:12px}}.lk-network__connect{border:none;background:none;padding:0;font-weight:500;font-size:14px;color:#118dff;cursor:pointer;text-decoration:underline}@media only screen and (max-width: 991px){.lk-network__connect{font-size:12px}}.lk-network__connect:disabled{opacity:.6;cursor:default}.lk-chart{background:#fff;border-radius:10px;padding:76px;padding-right:0}@media only screen and (max-width: 1600px){.lk-chart{padding:50px;padding-right:0}}@media only screen and (max-width: 767px){.lk-chart{padding:30px 20px 40px}}@media only screen and (max-width: 767px){.lk-chart .chart--vertical{display:block}}.lk-chart .chart__canvas{width:375px;height:375px}@media only screen and (max-width: 1600px){.lk-chart .chart__canvas{width:300px;height:300px}}@media only screen and (max-width: 767px){.lk-chart .chart__canvas{width:275px;height:275px;margin:0 auto}}@media only screen and (max-width: 767px){.lk-chart .chart__text{font-size:14px}}@media only screen and (max-width: 767px){.lk-chart .chart__color{width:15px;height:15px;margin-right:10px}}.lk-chart .chart__legends{gap:25px}@media only screen and (max-width: 767px){.lk-chart .chart__legends{margin-left:0;margin-top:37px;display:flex;align-items:center;flex-wrap:wrap;flex-direction:inherit;justify-content:flex-start}}.react-tabs__tab-list{display:flex;align-items:center;margin-bottom:35px;padding-bottom:15px;border-bottom:1px solid #cfe2fb}.react-tabs__tab{font-size:14px;width:50%;position:relative;text-align:center;color:#cfe2fb}.react-tabs__tab--selected{color:#0041a2;position:relative}.react-tabs__tab--selected::after{position:absolute;bottom:-17px;display:block;content:"";width:100%;height:3px;background:#0041a2;left:0;right:0}
.modal-amount{display:flex;flex-direction:column;max-width:90%;width:600px;padding:30px 52px 33px;border-radius:15px;background-color:#fff;text-align:left}@media only screen and (max-width: 767px){.modal-amount{padding:25px;max-width:100%}}.modal-amount__title{margin-bottom:23px;font-weight:500;font-size:28px;text-align:center}@media only screen and (max-width: 767px){.modal-amount__title{font-size:18px}}.modal-amount__description{margin-bottom:30px;text-align:center}@media only screen and (max-width: 767px){.modal-amount__description{font-size:14px}}.modal-amount__balance{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px;padding:20px;border-radius:10px;box-shadow:2px 2px 20px rgba(0,23,106,.1);font-size:18px}.modal-amount__balance span{display:block;margin-top:4px;color:#0041a2;font-weight:500;font-size:28px}.modal-amount__balance .lk-balances__icon{margin-right:0}.modal-amount__buttons{display:flex;justify-content:center}.modal-amount__button{margin-right:22px}.modal-amount__button:last-child{margin-right:0}
.advert{margin-bottom:100px}@media only screen and (max-width: 991px){.advert{padding-top:70px;margin-bottom:50px}}.advert__info{background:#fff;border-radius:10px;overflow:hidden;margin-bottom:20px}@media only screen and (max-width: 1400px){.advert__info-container{display:flex;align-items:center;justify-content:space-between;margin-bottom:30px}}@media only screen and (max-width: 991px){.advert__info-container{display:block;margin-bottom:0}}.advert__info-wrapper{padding:30px 40px 40px}@media only screen and (max-width: 991px){.advert__info-wrapper{padding:32px 26px}}.advert__info-line{display:flex;align-items:center;margin-bottom:15px}@media only screen and (max-width: 1400px){.advert__info-line{margin-bottom:0;width:41%;justify-content:space-between}}@media only screen and (max-width: 991px){.advert__info-line{width:100%;margin-bottom:6px;display:block}}.advert__assets{background:#fff;border-radius:10px;padding:30px 40px 40px}@media only screen and (max-width: 991px){.advert__assets{padding:32px 26px}}.advert__title{font-weight:700;font-size:24px;color:#4a4a4a;margin-bottom:16px}@media only screen and (max-width: 1400px){.advert__title{margin-bottom:0}}@media only screen and (max-width: 991px){.advert__title{margin-bottom:16px}}.advert__category{color:#b0c1d6;font-size:16px;margin-bottom:21px}@media only screen and (max-width: 991px){.advert__category{margin-bottom:11px}}.advert__header{display:grid;grid-template-columns:32% 20% 48%;height:70px;position:relative}@media only screen and (max-width: 991px){.advert__header{height:53px;grid-template-columns:31% 22% 47%}}@media only screen and (max-width: 767px){.advert__header{position:relative;grid-template-columns:32% 68%}}.advert__exclusive-badge{position:absolute;left:12px;bottom:-22px;z-index:2;padding:4px 10px;border-radius:6px;background:#0b1f3a;color:#fff;font-size:11px;font-weight:700;letter-spacing:.01em;white-space:nowrap}.advert__exclusive-badge--tg{background:#1b3a57}.advert__exclusive-badge--vk{background:#2787f5}.advert__info--exclusive .advert__info-wrapper{padding-top:42px}.advert__gallery-wrap{position:relative}.advert__asset-ticker{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);z-index:3;padding:8px 20px;border-radius:10px;background:rgba(11,31,58,.85);color:#fff;font-size:30px;font-weight:900;letter-spacing:.1em;text-transform:uppercase;line-height:1;pointer-events:none}@media screen and (max-width: 767px){.advert__asset-ticker{font-size:22px;padding:6px 14px}}.advert__owner-wallet{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;letter-spacing:.02em}.advert__inner{display:grid;grid-template-columns:1.5fr 1.09fr;column-gap:51px;max-width:1536px;margin:0 auto}@media only screen and (max-width: 1400px){.advert__inner{grid-template-columns:1fr;grid-gap:94px}}@media only screen and (max-width: 991px){.advert__inner{grid-gap:45px}}.advert__body{min-width:1px;border-radius:15px}.advert__gallery{margin-bottom:73px}.advert__gallery .gallery__main{overflow:hidden}@media only screen and (max-width: 991px){.advert__gallery .gallery__main{height:470px}}@media only screen and (max-width: 767px){.advert__gallery .gallery__main{height:350px}}@media only screen and (max-width: 767px){.advert__gallery .gallery__main .gallery__next,.advert__gallery .gallery__main .gallery__prev{width:45px;height:45px}}@media only screen and (max-width: 991px){.advert__gallery .gallery__thumbs{width:100%;grid-template-columns:repeat(5, 1fr);grid-template-rows:70px}}@media only screen and (max-width: 991px){.advert__gallery{margin-bottom:40px}}.advert__delivery{font-weight:400;font-size:12px;color:#0041a2;margin-bottom:25px}@media only screen and (max-width: 1400px){.advert__delivery{margin-bottom:0}}@media only screen and (max-width: 991px){.advert__delivery{margin-bottom:35px}}.advert__description{margin-bottom:36px;font-size:16px;color:#4a4a4a;word-break:break-word}@media only screen and (max-width: 991px){.advert__description{margin-top:22px}}.advert__description pre{margin:0;font:inherit;white-space:pre-wrap;word-break:break-word}.advert__description--compact{margin-bottom:20px}.advert__description-title{margin-bottom:10px;color:#0041a2;font-size:18px}.advert__description-text{font-size:18px;line-height:1.25;overflow:hidden}.advert__subtitle{font-size:20px;position:relative;padding-right:25px}.advert__subtitle::after{position:absolute;display:block;content:"";width:8px;height:8px;border:solid #4a4a4a;border-width:2px 2px 0 0;top:50%;right:0;transform:translateY(-70%) rotate(-225deg);transition:300ms}.advert__head{margin-bottom:30px;font-weight:500;font-size:28px;line-height:1}.advert__name{margin-bottom:30px;font-weight:500;font-size:28px;line-height:1}@media only screen and (max-width: 767px){.advert__name{font-size:20px;margin-bottom:21px}}.advert__owner{display:flex;align-items:center;padding:0 20px;background:#3660cd}@media only screen and (max-width: 991px){.advert__owner{padding:0 14px}}@media only screen and (max-width: 1400px){.advert__owner-content{display:flex;align-items:center}}@media only screen and (max-width: 991px){.advert__owner-content{display:block}}.advert__owner-avatar{width:40px;height:40px;flex-shrink:0;margin-right:20px}@media only screen and (max-width: 1400px){.advert__owner-avatar{margin-right:46px}}@media only screen and (max-width: 991px){.advert__owner-avatar{width:29px;height:29px;margin-right:12px}}.advert__owner-avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}.advert__owner-label{color:#b0c1d6;font-size:14px;margin-bottom:3px}@media only screen and (max-width: 1400px){.advert__owner-label{margin-bottom:0;margin-right:35px}}@media only screen and (max-width: 991px){.advert__owner-label{font-size:12px;margin-right:0;margin-bottom:3px}}.advert__owner-login{color:#fff;font-size:18px;text-decoration:underline}@media only screen and (max-width: 991px){.advert__owner-login{font-size:12px}}.advert__region{display:flex;align-items:center;margin-left:15px}@media only screen and (max-width: 991px){.advert__region{margin-left:0;margin-top:16px}}.advert__region svg{width:18px;height:18px;fill:#0041a2;margin-right:10px}.advert__region span{font-weight:500;font-size:18px;color:#3660cd}.advert__price{display:flex;align-items:center}@media only screen and (max-width: 767px){.advert__price{margin-bottom:0}}.advert__price-label{font-size:14px;color:#4a4a4a}.advert__currency{display:flex;align-items:center;flex-shrink:0;width:40px;height:40px;margin-right:14px;background:#eff6ff;padding:7px;border-radius:10px}.advert__currency .icon{fill:#3660cd}.advert__currency-info{display:flex;align-items:center;flex-direction:column;justify-content:center;height:640px;background:#cfe2fb;border-radius:15px}@media only screen and (max-width: 991px){.advert__currency-info{height:340px}}.advert__currency-val{display:flex;align-items:center}.advert__in-my-currency{color:#4a4a4a;font-weight:400;font-size:14px;margin-left:8px}.advert__value{color:#3660cd;font-size:18px;line-height:1.16;text-transform:uppercase;font-weight:500;margin-left:9px}@media only screen and (max-width: 767px){.advert__value{font-size:18px}}.advert__buttons{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:30px}.advert__buttons--exclusive{grid-template-columns:1fr;grid-gap:12px;margin-top:4px}@media only screen and (max-width: 1400px){.advert__buttons{display:flex;align-items:center;grid-gap:0}}@media only screen and (max-width: 991px){.advert__buttons{position:fixed;top:53px;background:#fff;right:0;left:0;width:100%;min-height:72px;height:auto;z-index:3;padding:10px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px;box-shadow:0 2px 10px rgba(17,48,104,.08);box-sizing:border-box}}@media only screen and (max-width: 1400px){.advert__buttons--exclusive{display:grid;grid-template-columns:1fr;max-width:420px}}@media only screen and (max-width: 991px){.advert__buttons--exclusive{display:flex;justify-content:center;max-width:none}.advert__buttons--exclusive .advert__btn{flex:1 1 auto;max-width:none;width:100%}}@media only screen and (max-width: 991px){.advert__auction-status{flex:1 1 auto;min-width:0;max-width:calc(100% - 160px);font-size:13px;line-height:1.3;justify-content:flex-start;align-items:center;flex-wrap:nowrap;margin:0;overflow:visible}.advert__auction-status span{margin-right:8px;white-space:normal;overflow-wrap:anywhere;word-break:break-word}.advert__auction-status:after{flex-shrink:0;width:22px;height:22px;margin-left:0}}.advert__auction-timer{margin-top:12px;font-weight:600;color:#0041a2;font-size:15px;line-height:1.35}.advert__auction-timer--ended{color:#6b7280;font-weight:500}.advert__btn{width:100%;background:none;text-transform:inherit;display:inline-flex;align-items:center;justify-content:center;text-align:center;height:auto;min-height:48px;padding:10px 16px;line-height:1.25;white-space:normal;box-sizing:border-box}.advert__btn.btn{display:inline-flex;height:auto;text-align:center;justify-content:center;align-items:center;white-space:normal;line-height:1.25;padding:10px 16px}@media only screen and (max-width: 1400px){.advert__btn{width:259px;margin-right:20px}.advert__btn:last-child{margin-right:0}}@media only screen and (max-width: 991px){.advert__btn{width:auto;flex:0 0 auto;min-width:148px;max-width:55%;height:auto;min-height:36px;font-size:14px;margin-right:0 !important;padding:8px 12px}}.advert__btn.btn-blue{color:#0041a2}.advert__btn.btn-blue:hover{background:#0041a2;color:#fff;border:1px solid #0041a2}.advert__buttons--exclusive .advert__btn,.advert__buttons--exclusive a.advert__btn.btn{width:100%;max-width:100%;margin-right:0;display:inline-flex !important;align-items:center;justify-content:center;text-align:center;height:auto !important;min-height:48px;padding:12px 18px;line-height:1.3;white-space:normal;box-sizing:border-box}@media only screen and (max-width: 1400px){.advert__buttons--exclusive .advert__btn,.advert__buttons--exclusive a.advert__btn.btn{width:100%;margin-right:0}}@media only screen and (max-width: 991px){.advert__buttons--exclusive .advert__btn,.advert__buttons--exclusive a.advert__btn.btn{max-width:none;min-width:0;flex:1 1 auto}}.advert__exclusive-hint{margin:0 0 16px;padding:10px 12px;border-radius:8px;background:#f3f6fb;color:#4a5d7a;font-size:13px;line-height:1.35}.advert__info--exclusive .advert__title{margin-bottom:10px}.advert__info--exclusive .advert__category{margin-bottom:10px}.advert__info--exclusive .advert__info-line{margin-bottom:8px}.advert__info--exclusive .advert__description{margin-top:4px;margin-bottom:14px}.advert__row{display:flex;margin-bottom:40px}@media only screen and (max-width: 991px){.advert__row{margin-bottom:30px;flex-direction:column}}@media only screen and (max-width: 767px){.advert__row{flex-direction:initial;margin-bottom:28px}}.advert__col{margin-right:67px}@media only screen and (max-width: 1200px){.advert__col{margin-right:30px}}@media only screen and (max-width: 991px){.advert__col{margin-right:0;margin-bottom:15px}}@media only screen and (max-width: 767px){.advert__col{margin-bottom:0;margin-right:25px}}.advert__col:last-child{margin-right:0}.advert__label{margin-bottom:5px;font-size:14px;line-height:16px;color:#4a4a4a}@media only screen and (max-width: 991px){.advert__label{margin-bottom:10px}}.advert__type{background-color:#28dfa8;color:#fff;font-size:18px;text-align:center;display:flex;align-items:center;justify-content:center}@media only screen and (max-width: 991px){.advert__type{font-size:14px}}.advert__type--orange{background-color:#ff8311}.advert__type--blue{background-color:#118dff}.advert__conditions{display:flex;align-items:center;flex-wrap:wrap;margin-bottom:36px;margin-top:-10px;margin-left:-10px}@media only screen and (max-width: 991px){.advert__conditions{margin-bottom:0}}.advert__condition{display:flex;align-items:center;justify-content:center;margin-top:10px;margin-left:10px;border-radius:5px;padding:0 16px 0 7px;font-size:14px;height:26px;background-color:#3660cd;fill:#0041a2;box-shadow:2px 2px 20px rgba(0,23,106,.2);color:#fff}.advert__condition svg{width:16px;height:16px;fill:#fff;margin-right:7px}.advert__collection.active .advert__collection-list{display:block}.advert__collection.active .advert__subtitle::after{transform:translateY(-6%) rotate(-45deg);transition:300ms}.advert__collection-header{display:flex;align-items:center;justify-content:space-between;cursor:pointer}.advert__collection-number{font-size:14px;width:28px;height:28px;background:#3660cd;border-radius:50%;color:#fff;display:flex;align-items:center;justify-content:center}.advert__collection-list{display:grid;grid-template-columns:1fr;grid-gap:10px;display:none;margin-top:20px}.advert__collection-list.scroll{overflow-y:scroll;padding-right:40px;height:150px}.advert__collection-list.scroll::-webkit-scrollbar{width:8px;background:#eff6ff;border-radius:10px}.advert__collection-list.scroll::-webkit-scrollbar-thumb{background:#0041a2;border-radius:10px}.advert__line{display:flex;align-items:flex-start;margin-bottom:30px}@media only screen and (max-width: 1300px){.advert__line{display:block}}@media only screen and (max-width: 767px){.advert__line{margin-bottom:23px}}.advert__chain{display:flex;align-items:center;justify-content:center;background:#cfe2fb;font-size:18px;color:#0041a2}@media only screen and (max-width: 991px){.advert__chain{font-size:14px}}@media only screen and (max-width: 767px){.advert__chain{position:absolute;right:0;top:50%;transform:translateY(-50%);right:14px;background:rgba(0,0,0,0)}}.advert__chain span{margin-right:8px;color:#b0c1d6}@media only screen and (max-width: 767px){.advert__chain span{display:none;margin-right:0}}.advert__chain .icon{flex-shrink:0;width:16px;fill:#0041a1;margin-right:9px;flex-shrink:0}@media only screen and (max-width: 767px){.advert__chain .icon{margin-right:5px;margin-left:5px;fill:#fff;width:22px;height:22px;margin-right:0}}.advert__currency-block{display:flex;align-items:center;margin-bottom:100px}.advert__currency-icon{width:197px;height:197px;background:#3660cd;display:flex;align-items:center;justify-content:center;border-radius:50%;margin-bottom:60px;position:relative}@media only screen and (max-width: 991px){.advert__currency-icon{width:140px;height:140px}}.advert__currency-icon::after{position:absolute;display:block;content:"";width:100%;height:100%;border:25px solid #3660cd;border-radius:50%;top:50%;left:50%;transform:translate(-50%, -50%);padding:7px}.advert__currency-icon .icon{width:100%;max-width:108px;max-height:108px;fill:#fff}@media only screen and (max-width: 991px){.advert__currency-icon .icon{max-width:90px;max-height:90px}}.advert__currency-title{font-weight:700;font-size:36px;color:#3660cd}@media only screen and (max-width: 991px){.advert__currency-title{font-size:24px}}.advert__withdrawn{display:flex;align-items:center;margin-bottom:40px;padding:7px 9px;border-radius:10px;background-color:#eff6ff;color:#3660cd;font-size:18px}@media only screen and (max-width: 767px){.advert__withdrawn{font-size:16px}}.advert__withdrawn svg{flex-shrink:0;width:25px;height:25px;margin-right:13px;fill:#3660cd}.advert__chart{display:flex;justify-content:center;background:#cfe2fb;height:640px;border-radius:15px}@media only screen and (max-width: 991px){.advert__chart{height:500px}}@media only screen and (max-width: 991px){.advert__chart .chart{flex-direction:column;justify-content:center;align-items:center}}.advert__chart .chart__canvas{width:385px;height:385px}@media only screen and (max-width: 767px){.advert__chart .chart__canvas{width:271px;height:271px}}.advert__chart .chart__legends{gap:0;margin-top:0;margin-left:5vw}@media only screen and (max-width: 991px){.advert__chart .chart__legends{flex-direction:row;margin-top:25px;margin-left:0}}.advert__chart .chart__item{margin-bottom:37px}@media only screen and (max-width: 991px){.advert__chart .chart__item{margin-bottom:0;margin-right:14px}}.advert__chart .chart__item:last-child{margin-bottom:0}@media only screen and (max-width: 991px){.advert__chart .chart__item:last-child{margin-right:0}}.advert__chart .chart__color{margin-top:-2px}.advert__chart .chart__text{line-height:1}.advert__currencies{display:grid;row-gap:20px;margin-bottom:30px}.modal-advert-buy{text-align:left;max-width:550px;padding:36px 50px 45px}@media only screen and (max-width: 767px){.modal-advert-buy{padding:25px;width:100%}}.modal-advert-buy__title{font-weight:700;font-size:36px;color:#4a4a4a;margin-bottom:18px}.modal-advert-buy__description{font-size:18px;margin-bottom:38px}@media only screen and (max-width: 767px){.modal-advert-buy__description{font-size:14px}}.modal-advert-buy__text{font-size:18px;color:rgba(74,74,74,.5);font-weight:600;margin-bottom:35px}.modal-advert-buy__text a{color:#0041a2;margin-left:5px}.modal-advert-buy__items{display:grid;grid-template-columns:1fr;grid-gap:10px}.modal-advert-buy__item{display:flex;align-items:center;justify-content:space-between;font-weight:600}.modal-advert-buy__item span{color:#4a4a4a;opacity:.5}.modal-advert-buy__found{display:flex;align-items:center;margin-top:30px;font-weight:600;font-size:14px;color:#ff8311}.modal-advert-buy__found img{margin-right:10px}.modal-advert-buy__buttons{margin-top:30px;display:flex;align-items:center}.modal-advert-buy__cancel{width:100%;margin-right:11px}.modal-advert-buy__buy{width:100%}.advert__bid-wrap{width:100%;margin-bottom:12px}.advert__bid-input{width:100%;height:48px;padding:0 16px;border:1px solid #d0d5dd;border-radius:8px;font-size:16px}.advert__bid-input--disabled,.advert__bid-input:disabled{opacity:.55;cursor:not-allowed;background:#f5f5f5}.advert__bid-hint{margin-top:6px;font-size:13px;color:#667085}.advert__bid-hint--error{color:#d92d20}.advert__auction-results{margin:20px 0 8px;padding:16px 18px;background:#f3f7fd;border:1px solid #d6e4f7;border-radius:12px}.advert__auction-results-title{font-weight:700;font-size:18px;color:#0041a2;margin-bottom:12px}.advert__auction-results-grid{display:grid;gap:10px}.advert__auction-results-row{display:flex;align-items:baseline;justify-content:space-between;gap:12px;font-size:14px;color:#4a4a4a}.advert__auction-results-row strong{text-align:right;color:#1f2937}.advert__auction-results-empty{font-size:14px;color:#667085;line-height:1.45}.advert__bids{margin:24px 0 8px;padding-top:18px;border-top:1px solid #eef0f3}.advert__bids-title{font-weight:700;font-size:18px;color:#4a4a4a;margin-bottom:14px}.advert__bids-list{display:grid;gap:10px}.advert__bids-item{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;background:#f7f8fa;border-radius:8px}.advert__bids-main{display:flex;flex-direction:column;gap:4px}.advert__bids-amount{font-weight:700;color:#1f2937}.advert__bids-user{font-size:13px;color:#667085}.advert__bids-date{font-size:12px;color:#98a2b3;white-space:nowrap}.advert__bids-empty{font-size:14px;color:#667085}.modal-advert-buy__bid{margin-bottom:20px}.modal-advert-buy__bid-label{display:block;margin-bottom:8px;font-weight:600;color:#4a4a4a}.advert__btn:disabled{opacity:.5;cursor:not-allowed}
.currency-item{display:grid;grid-template-columns:repeat(3, 1fr);align-items:center;padding:15px 23px 15px 15px;border-radius:10px;background:#eff6ff;margin-bottom:10px}.currency-item:last-child{margin-bottom:0}@media only screen and (max-width: 767px){.currency-item{grid-template-columns:repeat(2, 1fr)}}.currency-item__block{display:flex;align-items:center}.currency-item__icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:40px;height:40px;margin-right:18px;border-radius:10px;background-color:#3660cd}.currency-item__icon svg{max-height:50%;fill:#fff}.currency-item__name{font-weight:600;color:#0041a2}.currency-item__name:first-letter{text-transform:uppercase}.currency-item__percent{font-size:14px;text-align:center;max-width:100px;width:100%;margin:0 auto}.currency-item__percent span{display:block;margin-bottom:3px}.currency-item__percent div{height:4px}@media only screen and (max-width: 767px){.currency-item__percent{display:none}}.currency-item__value{text-align:right}.currency-item__value--new{color:#3660cd;font-size:18px}.currency-item__value--old{font-size:14px;color:#b0c1d6}.currency-item__line{background:#fff;border-radius:90px;height:4px;width:100%}
@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:"";flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}
.gallery-slider{position:relative;margin-top:30px}.gallery-slider--hide{display:none}.gallery-slider .swiper{margin:0 75px;text-align:center}@media only screen and (max-width: 767px){.gallery-slider .swiper{margin:0 30px}}.gallery-slider .swiper-slide{aspect-ratio:1;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:15px;overflow:hidden}.gallery-slider .swiper-slide.active{position:relative;display:flex;align-items:center;justify-content:center;z-index:10}.gallery-slider .swiper-slide.active::before{position:absolute;content:"";display:block;width:100%;height:100%;background:#0041a2;opacity:.4}.gallery-slider .swiper-button-disabled{cursor:initial}.gallery-slider .swiper-button-disabled:hover svg{fill:#b0c1d6}.gallery-slider .swiper-button-disabled svg{fill:#b0c1d6}.gallery-slider__prev,.gallery-slider__next{position:absolute;top:50%;left:10px;bottom:0;transform:translateY(-50%);display:flex;align-items:center;cursor:pointer;transition:400ms}@media only screen and (max-width: 767px){.gallery-slider__prev,.gallery-slider__next{left:0}}.gallery-slider__prev svg,.gallery-slider__next svg{width:29px;fill:#c7d5e5;transition:300ms}.gallery-slider__prev svg:hover,.gallery-slider__next svg:hover{fill:#0041a2}@media only screen and (max-width: 767px){.gallery-slider__prev svg,.gallery-slider__next svg{width:24px}}.gallery-slider__next{right:0;left:auto;transform:translateY(-50%) rotate(180deg)}.gallery__main{position:relative;display:flex;align-items:center;justify-content:center;height:640px;background:#cfe2fb;border-radius:15px;overflow:hidden}@media only screen and (max-width: 1300px){.gallery__main{height:500px}}@media only screen and (max-width: 991px){.gallery__main{height:400px}}.gallery__main .gallery__image,.gallery__main .watermarked-image{width:100%;height:100%}.gallery__video{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.gallery__video-control{max-width:100%;max-height:100%}.gallery__video-play{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex;align-items:center;justify-content:center;width:85px;height:85px;padding-left:4px;border-radius:50%;background-color:#eff6ff;cursor:pointer;transition:background-color 300ms}.gallery__video-play:hover{background-color:#c7d5e5}.gallery__video-play:hover svg{fill:#eff6ff}.gallery__video-play svg{width:30px;height:30px;fill:#c7d5e5;transition:fill 300ms}.gallery__img{width:100%;height:100%;object-fit:cover}.gallery__img .watermarked-image{width:100%;height:100%}.gallery__image{width:100%;height:100%}.gallery__image .watermarked-image__media,.gallery__image-media{width:100%;height:100%;object-fit:contain}.gallery__next,.gallery__prev{position:absolute;top:50%;transform:translateY(-50%);width:85px;height:85px;cursor:pointer}.gallery__next{right:15px}.gallery__prev{left:15px}.gallery__thumbs{display:grid;grid-template-columns:repeat(6, 1fr);grid-template-rows:125px;grid-gap:23px;margin-top:28px}.gallery__thumb{position:relative;display:flex;align-items:flex-start;cursor:pointer}.gallery__thumb img{width:100%;height:100%;object-fit:cover}.gallery__more{background:rgba(54,97,205,.7);position:absolute;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:22px;color:#fff}
.asset .container{max-width:1590px;margin:0 auto}.asset__img{width:100%;max-width:720px;margin:0 auto;height:min(560px,100vh - 240px);max-height:560px;display:flex;align-items:center;justify-content:center}@media only screen and (max-width: 1400px){.asset__img{max-width:100%;height:min(480px,100vh - 220px);max-height:480px}}@media only screen and (max-width: 1200px){.asset__img{height:min(520px,100vh - 200px);max-height:520px}}@media only screen and (max-width: 991px){.asset__img{height:auto;max-height:none;min-height:240px;max-width:100%}.asset__img img,.asset__img .watermarked-image,.asset__img .watermarked-image__media{width:100% !important;max-width:100% !important;margin:0 auto;height:auto !important;object-fit:contain !important}}.asset__img .watermarked-image{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.asset__img .watermarked-image__media,.asset__img img{width:100% !important;height:100% !important;max-width:100%;max-height:100%;object-fit:contain !important;object-position:center}@media only screen and (max-width: 1200px){.asset__aside{display:flex;align-items:flex-end;justify-content:space-between;width:100%;margin-bottom:40px}}@media only screen and (max-width: 991px){.asset__aside{display:flex;flex-direction:column;align-items:stretch;max-width:100%;margin-bottom:24px;gap:12px}}@media only screen and (max-width: 767px){.asset__aside{margin-bottom:20px}}.asset__download-original{margin-top:16px;padding:10px 18px;min-height:44px;border:1px solid #0041a2;border-radius:10px;background:#fff;color:#0041a2;font-size:14px;font-weight:600;cursor:pointer;transition:background .2s ease,color .2s ease;touch-action:manipulation}@media only screen and (max-width: 767px){.asset__download-original{width:100%;display:flex;align-items:center;justify-content:center}}.asset__download-original:hover:not(:disabled){background:#0041a2;color:#fff}.asset__download-original:disabled{opacity:.6;cursor:wait}.asset__token{display:flex;align-items:center;flex-wrap:wrap;gap:6px;min-width:0}.asset__token a{color:#3660cd;font-weight:500;margin-left:10px;transform:translateY(-1px);text-decoration:underline;text-underline-offset:2px;word-break:break-all}@media only screen and (max-width: 767px){.asset__token a{margin-left:0;margin-top:4px;font-size:14px}}.asset__inner{display:grid;grid-template-columns:minmax(0, 1.1fr) minmax(320px, 1fr);align-items:start;column-gap:40px;padding-bottom:50px}@media only screen and (max-width: 1200px){.asset__inner{grid-template-columns:1fr;grid-gap:40px}}@media only screen and (max-width: 991px){.asset__inner{grid-gap:16px;padding-bottom:32px}}@media only screen and (max-width: 767px){.asset__inner{grid-template-columns:1fr;grid-gap:14px;padding-bottom:24px}}.asset__content{background:#fff;padding:40px 50px;border-radius:10px;height:auto;min-height:min(560px,100vh - 240px);max-height:none;display:flex;flex-direction:column;justify-content:space-between;min-width:0}@media only screen and (max-width: 1400px){.asset__content{min-height:min(480px,100vh - 220px)}}@media only screen and (max-width: 1200px){.asset__content{position:relative;flex-direction:initial;padding-top:90px;height:auto;min-height:0;align-items:flex-end;display:block}}@media only screen and (max-width: 991px){.asset__content{flex-direction:column;align-items:flex-start;padding:24px 20px;border-radius:12px}}@media only screen and (max-width: 575px){.asset__content{padding:18px 14px}}.asset__address{font-size:16px;display:flex;color:#3660cd;margin-left:8px;min-width:0}@media only screen and (max-width: 767px){.asset__address{font-size:14px;margin-left:0}}.asset__body{display:flex;align-items:center;justify-content:center;background:#cfe2fb;border-radius:15px;overflow:hidden;min-width:0;width:100%;max-height:min(560px,100vh - 240px);padding:16px;box-sizing:border-box}@media only screen and (max-width: 1400px){.asset__body{max-height:min(480px,100vh - 220px)}}@media only screen and (max-width: 1200px){.asset__body{max-height:min(520px,100vh - 200px)}}@media only screen and (max-width: 991px){.asset__body{max-height:none;padding:12px}}@media only screen and (max-width: 767px){.asset__body{margin:0;border-radius:12px;padding:8px}}.asset__description{margin-bottom:63px}@media only screen and (max-width: 991px){.asset__description{margin-bottom:24px}}.asset__label{font-size:14px;color:#4a4a4a;flex-shrink:0}.asset__text{font-size:18px;line-height:1.2}@media only screen and (max-width: 767px){.asset__text{font-size:15px;line-height:1.4}}.asset__value{display:flex;align-items:center;flex-wrap:wrap;color:#3660cd;font-weight:500;font-size:18px;margin-right:38px;gap:4px;min-width:0;word-break:break-word}@media only screen and (max-width: 767px){.asset__value{margin-right:0;margin-bottom:10px;font-size:15px;width:100%;align-items:flex-start}.asset__value:last-child{margin-bottom:0}}.asset__value:last-child{margin-right:0}.asset__value span{font-weight:400;color:#4a4a4a;display:inline;font-size:14px;margin-right:8px}.asset__value span.asset__amount{color:#b0c1d6;font-size:12px;margin-left:8px;transform:translateY(1px)}.asset__name{margin-bottom:20px;font-weight:700;font-size:36px;line-height:1.15;word-break:break-word}.asset__name pre{white-space:pre-wrap;word-break:break-word;font:inherit;margin:0}@media only screen and (max-width: 1200px){.asset__name{position:absolute;top:36px;left:50px;right:50px}}@media only screen and (max-width: 991px){.asset__name{position:static;top:auto;left:auto;right:auto;font-size:24px;margin-bottom:12px}}@media only screen and (max-width: 575px){.asset__name{font-size:20px}}.asset__owner{display:flex;align-items:center;margin-bottom:26px;min-width:0}@media only screen and (max-width: 1200px){.asset__owner{margin-bottom:0}}@media only screen and (max-width: 991px){.asset__owner{margin-bottom:8px}}.asset__owner-content{min-width:0;display:flex;flex-wrap:wrap;align-items:center;gap:4px}.asset__owner-avatar{width:40px;height:40px;margin-right:16px;flex-shrink:0}@media only screen and (max-width: 575px){.asset__owner-avatar{width:36px;height:36px;margin-right:12px}}.asset__owner-avatar img{width:100%;height:100%;border-radius:50%}.asset__owner-label{margin-right:6px;color:#b0c1d6;font-size:14px;display:inline}.asset__owner-name{color:#4a4a4a;font-size:18px;text-decoration:underline;word-break:break-word}@media only screen and (max-width: 575px){.asset__owner-name{font-size:16px}}.asset__owner-name:hover{text-decoration:none}.asset__owner-verify{transform:translateY(1px);width:14px;height:14px;margin-left:12px;fill:#28dfa8}.asset__price{display:flex;flex-direction:column;align-items:flex-start;gap:10px;color:#3660cd;font-size:18px;line-height:1.35;width:100%}@media only screen and (max-width: 767px){.asset__price{gap:8px;font-size:15px}}.asset__params{margin-top:8px;padding-top:14px;border-top:1px solid #e8eef5;width:100%}@media only screen and (max-width: 991px){.asset__params{margin-top:4px}}.asset__params-title{font-size:14px;font-weight:700;color:#4a4a4a;margin-bottom:12px}.asset__value{font-size:16px;color:#1f2937}.asset__value span:first-child{color:#667085;font-weight:500;margin-right:6px}.asset__value--download{font-size:15px}.asset__download-link{appearance:none;border:0;background:none;padding:0;color:#0041a2;font-weight:700;text-decoration:underline;cursor:pointer;min-height:44px;display:inline-flex;align-items:center;touch-action:manipulation}.asset__download-link:disabled{opacity:.6;cursor:wait}.asset__download-link:hover:not(:disabled){text-decoration:none}.asset__download-locked{color:#98a2b3;font-size:14px}.asset__history{margin-top:16px;width:100%}@media only screen and (max-width: 991px){.asset__history{margin-top:12px}}.asset__history-title{font-size:14px;font-weight:700;color:#4a4a4a;margin-bottom:10px}.asset__history-list{list-style:none;margin:0;padding:0;display:grid;gap:8px}.asset__history-item{background:#f7f8fa;border-radius:8px;padding:10px 12px}.asset__history-main{display:flex;align-items:baseline;justify-content:space-between;gap:10px;font-size:14px;flex-wrap:wrap}.asset__history-main strong{color:#118dff}.asset__history-main span{color:#667085;text-transform:capitalize}.asset__history-meta{margin-top:4px;font-size:12px;color:#98a2b3;word-break:break-word}.asset__history-meta a{color:#0041a2;font-weight:600}.asset__currency{width:40px;height:40px;margin-right:14px;flex-shrink:0}
.attach-ad{padding:30px 0}.attach-ad__header{display:flex;justify-content:space-between;margin-bottom:35px}.attach-ad__title{margin-bottom:20px;font-weight:500;font-size:28px;line-height:1}.attach-ad__text{font-size:18px}.attach-ad__grid{display:grid;grid-template-columns:repeat(6, minmax(0, 1fr));grid-gap:30px}@media only screen and (max-width: 1500px){.attach-ad__grid{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media only screen and (max-width: 1200px){.attach-ad__grid{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media only screen and (max-width: 767px){.attach-ad__grid{grid-template-columns:repeat(1, minmax(0, 1fr));grid-gap:20px}}@media only screen and (max-width: 400px){.attach-ad__grid{grid-template-columns:1fr}}.attach-ad__footer{display:flex;justify-content:center;margin-top:30px}
.notice{display:flex;align-items:center}@media only screen and (max-width: 767px){.notice{font-size:12px}}.notice--warning{color:#ff8311}.notice--success{color:#28dfa8}.notice--error{color:#fc3c6a}.notice__icon{display:flex;align-items:flex-start;flex-shrink:0;width:24px;height:24px;margin-right:15px}.notice__icon img{width:100%;height:100%}
.bd-advert{padding:30px 0}.bd-advert__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:11px}@media only screen and (max-width: 767px){.bd-advert__header{margin-bottom:16px}}.bd-advert__header span{color:#0041a1}.bd-advert__cancel{border:0;background-color:rgba(0,0,0,0);flex-shrink:0;cursor:pointer;display:flex;align-items:flex-start}.bd-advert__title{font-weight:500;font-size:28px}.bd-advert__notice{margin-bottom:21px}@media only screen and (max-width: 767px){.bd-advert__notice{margin-bottom:17px}}.bd-advert__items{display:grid;grid-template-columns:repeat(6, 1fr);grid-gap:30px}.bd-advert__empty{display:flex;flex-direction:column;align-items:center;gap:24px}.bd-advert__empty-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}.bd-advert__empty-actions .btn{min-width:160px}
.lk-assets .products__grid{display:grid;width:100%;grid-template-columns:repeat(5, minmax(0, 1fr));gap:28px;align-items:stretch}@media only screen and (max-width: 1580px){.lk-assets .products__grid{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media only screen and (max-width: 1400px){.lk-assets .products__grid{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media only screen and (max-width: 1100px){.lk-assets .products__grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:20px}}@media only screen and (max-width: 575px){.lk-assets .products__grid{grid-template-columns:1fr;gap:12px}}.lk-assets .products__grid>.advert-item,.lk-assets .products__grid>.advert-item.hide{width:100%;min-width:0;max-width:none;height:auto}@media only screen and (max-width: 767px){.lk-assets .products__grid>.advert-item .advert-item__img,.lk-assets .products__grid>.advert-item .briefcase-item__chart,.lk-assets .products__grid>.advert-item.hide .advert-item__img,.lk-assets .products__grid>.advert-item.hide .briefcase-item__chart{width:100%;height:auto;aspect-ratio:1;margin-bottom:8px}.lk-assets .products__grid>.advert-item .advert-item__content,.lk-assets .products__grid>.advert-item.hide .advert-item__content{padding-bottom:4px}.lk-assets .products__grid>.advert-item .advert-item__header,.lk-assets .products__grid>.advert-item.hide .advert-item__header{margin-bottom:8px}.lk-assets .products__grid>.advert-item .advert-item__name,.lk-assets .products__grid>.advert-item.hide .advert-item__name{font-size:13px;line-height:1.3;white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.lk-assets .products__grid>.advert-item .advert-item__info,.lk-assets .products__grid>.advert-item.hide .advert-item__info{margin-bottom:8px;column-gap:4px;flex-wrap:nowrap}.lk-assets .products__grid>.advert-item .advert-item__info__type,.lk-assets .products__grid>.advert-item .advert-item__chain,.lk-assets .products__grid>.advert-item.hide .advert-item__info__type,.lk-assets .products__grid>.advert-item.hide .advert-item__chain{height:22px;padding:4px 6px;font-size:11px;min-width:0}.lk-assets .products__grid>.advert-item .advert-item__chain .icon,.lk-assets .products__grid>.advert-item.hide .advert-item__chain .icon{width:12px;margin-right:4px;flex-shrink:0}.lk-assets .products__grid>.advert-item .advert-item__chain span,.lk-assets .products__grid>.advert-item.hide .advert-item__chain span{overflow:hidden;text-overflow:ellipsis}.lk-assets .products__grid>.advert-item .advert-item__price,.lk-assets .products__grid>.advert-item.hide .advert-item__price{flex-direction:column;align-items:flex-start;gap:2px}.lk-assets .products__grid>.advert-item .advert-item__price-currency,.lk-assets .products__grid>.advert-item.hide .advert-item__price-currency{width:20px;height:20px;padding:4px;margin-right:8px}.lk-assets .products__grid>.advert-item .advert-item__price-value,.lk-assets .products__grid>.advert-item.hide .advert-item__price-value{font-size:14px}.lk-assets .products__grid>.advert-item .advert__in-my-currency,.lk-assets .products__grid>.advert-item.hide .advert__in-my-currency{margin-left:0 !important;font-size:11px}}@media only screen and (max-width: 767px){.lk-assets__filter{flex-wrap:wrap;gap:10px;margin-bottom:20px;align-items:stretch}}@media only screen and (max-width: 767px){.lk-assets__buttons{width:100%}.lk-assets__buttons .btn{flex:1;width:auto;min-width:0;margin-right:0}}
.asset-card{position:relative;display:flex;flex-direction:column;overflow:hidden;border-radius:10px;box-shadow:2px 2px 20px rgba(0,23,106,.1);background-color:#fff}.asset-card.hide{visibility:hidden}.asset-card__hover{position:absolute;z-index:10;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:12px 8px;border-radius:10px;box-shadow:2px 2px 20px rgba(0,23,106,.1);background-color:#3660cd;opacity:0;visibility:hidden;transition:300ms;overflow:auto}.asset-card:hover .asset-card__hover{opacity:1;visibility:visible}.asset-card_fromCollection{cursor:pointer}.asset-card_fromCollection:hover .asset-card__hover{opacity:0;visibility:hidden}.asset-card__link{display:flex;align-items:center;justify-content:center;width:160px;min-height:44px;height:44px;margin-bottom:8px;border-radius:10px;background-color:#0041a2;color:#fff;font-weight:400;font-size:16px;cursor:pointer;touch-action:manipulation}@media only screen and (max-width: 991px){.asset-card__link{font-size:14px;width:min(160px,100%)}}.asset-card__link:last-child{margin-bottom:0}.asset-card__link:hover{background-color:#c37c33}.asset-card__button{margin-bottom:8px;min-height:44px}.asset-card__button:last-child{margin-bottom:0}.asset-card__button--burn{min-width:160px}.asset-card__img{position:relative;display:flex;align-items:center;justify-content:center;width:100%;background-color:#d3d3d3}@media only screen and (max-width: 767px){.asset-card__img{margin-bottom:11px;height:auto}}.asset-card__img img{aspect-ratio:1;width:100%;height:100%;border-radius:10px 10px 0 0;object-fit:cover}.asset-card__number{position:absolute;top:20px;left:20px;display:flex;align-items:center;justify-content:center;width:65px;height:65px;border-radius:50%;background-color:rgba(0,0,0,.5);color:#fff;font-size:22px}.asset-card__content{padding:23px 13px 24px 20px}.asset-card__header{display:flex;align-items:center;justify-content:space-between}.asset-card__name{color:#0041a2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}@media only screen and (max-width: 767px){.asset-card__name{max-width:100%;padding-right:0}}.asset-card__price{display:flex;align-items:center;white-space:nowrap}.asset-card__currency{display:flex;align-items:flex-start;width:26px;height:26px;margin-left:14px}.asset-card__value{color:#3660cd;font-size:18px;line-height:1.16;text-transform:uppercase}.asset-card__footer{position:relative;z-index:1;display:flex;justify-content:flex-end;align-items:center;padding:10px 17px;background-color:#b0c1d6}.asset-card__chain{display:flex;align-items:center;color:#fff;font-size:16px}.asset-card__chain .icon{flex-shrink:0;width:16px;margin-right:13px;fill:#fff}
.amount-field{display:block}.amount-field__label{display:block;margin-bottom:1px;color:#0041a2;font-size:12px}.amount-field__form{display:flex;align-items:center;justify-content:space-between;padding:8px 7px;border:1px solid #c7d5e5;border-radius:5px}.amount-field__minus,.amount-field__plus{position:relative;width:32px;height:32px;border-radius:5px;border:none;cursor:pointer;transition:300ms}.amount-field__minus:before,.amount-field__minus:after,.amount-field__plus:before,.amount-field__plus:after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);display:block;border-radius:2px;background-color:#fff}.amount-field__minus:before,.amount-field__plus:before{width:16px;height:2px}.amount-field__minus:after,.amount-field__plus:after{height:16px;width:2px}.amount-field__minus{background-color:#fc3c6a}.amount-field__minus:hover{background-color:#e2365e}.amount-field__minus:after{display:none}.amount-field__plus{background-color:#28dfa8}.amount-field__plus:hover{background-color:#23c595}.amount-field__input{border:none;font-size:14px;text-align:center}
.modal-send-nft{display:flex;flex-direction:column;max-width:90%;width:600px;padding:30px 52px 33px;border-radius:15px;background-color:#fff;text-align:left;box-sizing:border-box}@media only screen and (max-width: 767px){.modal-send-nft{padding:20px 16px max(20px,env(safe-area-inset-bottom));max-width:100%;width:100%;border-radius:12px}}.modal-send-nft__title{margin-bottom:23px;font-weight:500;font-size:28px;text-align:center}@media only screen and (max-width: 767px){.modal-send-nft__title{font-size:18px;margin-bottom:14px;padding-right:28px}}.modal-send-nft__text{margin-bottom:30px;text-align:center}@media only screen and (max-width: 767px){.modal-send-nft__text{font-size:14px;margin-bottom:18px;line-height:1.45}}.modal-send-nft__input{margin-bottom:20px}.modal-send-nft__buttons{display:flex;justify-content:center;flex-wrap:wrap;gap:12px;margin-top:40px}@media only screen and (max-width: 575px){.modal-send-nft__buttons{flex-direction:column;width:100%;margin-top:24px}}.modal-send-nft__status{margin-top:16px;padding:12px 14px;border-radius:10px;background:#eef5ff;color:#1f4b99;font-size:14px;line-height:1.4;text-align:center}.modal-send-nft__balance{margin:0 0 10px;padding:10px 12px;border-radius:10px;background:#f3f6fb;color:#344054;font-size:14px;font-weight:600;text-align:center}.modal-send-nft__button{margin-right:0;min-height:44px}@media only screen and (max-width: 575px){.modal-send-nft__button{width:100%}}
.asset-card-skeleton{border-radius:10px;overflow:hidden}.asset-card-skeleton__photo{width:100%;aspect-ratio:1}@media only screen and (max-width: 767px){.asset-card-skeleton__photo{margin-bottom:11px}}.asset-card-skeleton__container{display:flex;align-items:center;justify-content:space-between}.asset-card-skeleton__content{padding:23px 13px 24px 20px}.asset-card-skeleton__title{height:20px;flex-grow:1;border-radius:10px;overflow:hidden}.asset-card-skeleton__currency{width:26px;height:26px;border-radius:10px;margin-left:10px;flex-shrink:0;overflow:hidden}.asset-card-skeleton__footer{height:39px}
.modal-add-assets{width:600px;max-width:100%;text-align:center;padding:30px 50px 50px;border-radius:10px}.modal-add-assets__title{font-weight:500;font-size:28px;margin-bottom:20px}.modal-add-assets__description{font-size:18px;max-width:410px;margin:0 auto 43px}.modal-add-assets__form{text-align:left}.modal-add-assets__form .field{margin-bottom:43px}.modal-add-assets__buttons{display:flex;align-items:center;justify-content:center}.modal-add-assets__buttons .btn{margin-right:19px}.modal-add-assets__buttons .btn:last-child{margin-right:0}@media only screen and (max-width: 767px){.modal-add-assets{padding:25px}.modal-add-assets__title{font-size:20px}.modal-add-assets__description{font-size:14px}}
.lk-assets{margin-bottom:54px;width:100%}@media only screen and (max-width: 991px){.lk-assets__inner{position:relative}}.lk-assets__filter{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:37px}@media only screen and (max-width: 991px){.lk-assets__filter{align-items:center}}.lk-assets__filter-item{font-size:18px;display:flex;align-items:center;margin-right:20px}.lk-assets__footer-buttons{display:flex;justify-content:center;margin-top:30px}.lk-assets__buttons{display:flex}.lk-assets__buttons .btn{margin-right:23px;width:197px}@media only screen and (max-width: 1400px){.lk-assets__buttons .btn{width:160px;margin-right:15px}}@media only screen and (max-width: 767px){.lk-assets__buttons .btn{width:136px;height:36px;font-size:14px;text-transform:initial}}.lk-assets__buttons .btn:last-child{margin-right:0}.lk-assets__fields{display:grid;flex-grow:10;grid-template-columns:1fr 1fr 1fr;grid-gap:30px;max-width:915px;margin-right:25px}.lk-assets__fields--adverts{grid-template-columns:repeat(4, 1fr);max-width:100%;margin-right:58px}@media only screen and (max-width: 1400px){.lk-assets__fields{margin-right:20px;grid-gap:15px}}@media only screen and (max-width: 991px){.lk-assets__fields{display:none;position:absolute;left:0;right:0;top:50px;margin-right:0;padding:20px;background:#eff6ff;border-radius:10px;z-index:4}}.lk-assets__fields .select .select__control{background:#fff}.lk-assets__loader{display:flex;justify-content:center;padding:200px 0}.lk-assets__types{display:flex;align-items:flex-end;margin-bottom:30px;justify-content:space-between}@media only screen and (max-width: 991px){.lk-assets__types{align-items:center;justify-content:start}}.lk-assets__type{background:#eff6ff;border-radius:10px;padding:20px 24px}.lk-assets__type--large{position:relative;grid-column:span 2;background:#0041a2;color:#eff6ff}.lk-assets__type--large .lk-assets__label{color:#c7d5e5}.lk-assets__type--large .lk-assets__number{color:#eff6ff}.lk-assets__filter--mobile{display:none}@media only screen and (max-width: 991px){.lk-assets__filter--mobile{display:flex;align-items:flex-start}.lk-assets__filter--mobile svg{width:25px;height:25px;fill:#0041a2}}.lk-assets__mobile{display:flex;align-items:center}.lk-assets__mobile.active .lk-assets__fields{display:grid;grid-template-columns:1fr;grid-gap:20px}.lk-assets__mobile--btn{margin:0 auto;height:45px;margin-top:10px}.lk-assets__btn{display:flex;align-items:center;justify-content:center;width:259px;height:48px;flex-shrink:0;text-align:center;background:#0041a2;border-radius:10px;font-size:18px;font-weight:500;color:#fff}@media only screen and (max-width: 1400px){.lk-assets__btn{width:200px;font-size:16px}}@media only screen and (max-width: 767px){.lk-assets__btn{width:100%;flex:1;height:40px;font-size:14px}}.lk-assets__btn:hover{background:#3660cd}.lk-assets__label{font-size:18px;margin-bottom:8px;color:#4a4a4a}.lk-assets__number{color:#0041a2;font-weight:500;font-size:28px}.lk-assets__products{display:grid;grid-template-columns:repeat(5, 1fr);grid-gap:29px}.lk-assets__products--assets .products__img{margin-bottom:17px}@media only screen and (max-width: 1500px){.lk-assets__products{grid-template-columns:repeat(3, 1fr);grid-gap:20px 30px}}@media only screen and (max-width: 1200px){.lk-assets__types{grid-template-columns:repeat(3, 1fr);grid-gap:20px 30px}.lk-assets__products{grid-template-columns:repeat(4, 1fr);grid-gap:22px}}@media only screen and (max-width: 991px){.lk-assets__types{grid-template-columns:repeat(2, 1fr)}.lk-assets__products{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 991px)and (max-width: 991px){.lk-assets__products--gallery{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:5px}}@media only screen and (max-width: 767px){.lk-assets__filter-item{font-size:16px}.lk-assets__filter-btn{margin-left:0;margin-top:8px}.lk-assets__types{grid-gap:10px}.lk-assets__products{grid-gap:10px;grid-template-columns:1fr}}@media only screen and (max-width: 767px)and (max-width: 991px){.lk-assets__products--gallery{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:5px}}@media only screen and (max-width: 767px){.lk-assets__type{padding:15px}.lk-assets__label{font-size:14px}.lk-assets__number{font-size:17px}}.lk-assets__footer{display:flex;justify-content:center;margin-top:49px}
.message{display:flex;align-items:flex-start;margin-bottom:15px;font-size:18px}@media only screen and (max-width: 767px){.message{align-items:flex-start}}.message--out{justify-content:flex-end}.message__icon{flex-shrink:0;overflow:hidden;width:50px;height:50px;margin-right:21px;border-radius:50%}@media only screen and (max-width: 767px){.message__icon{width:40px;height:40px;margin-top:3px;margin-right:16px}}.message__icon img{width:100%;height:100%;object-fit:cover}.message__content{display:flex}@media only screen and (max-width: 1470px){.message__content{display:block}}@media only screen and (max-width: 1200px){.message__content{display:flex;width:100%;justify-content:space-between}}@media only screen and (max-width: 991px){.message__content{display:block}}@media only screen and (max-width: 1470px){.message--out .message__content{display:flex;flex-direction:column-reverse;align-items:flex-end}}@media only screen and (max-width: 1200px){.message--out .message__content{flex-direction:initial;align-items:flex-start;justify-content:space-between;width:100%}}@media only screen and (max-width: 991px){.message--out .message__content{flex-direction:column-reverse;align-items:flex-end}}.message__container{max-width:692px}@media only screen and (max-width: 1650px){.message__container{max-width:350px}}@media only screen and (max-width: 991px){.message__container{max-width:82%}}.message--out .message__container{margin-right:0;margin-left:20px;text-align:right}@media only screen and (max-width: 1200px){.message--out .message__container{text-align:left;display:flex;flex-direction:column;align-items:flex-end}}.message--in .message__container{margin-right:20px;margin-left:0}.message__images img{margin-bottom:10px}.message__advert{min-width:270px}@media only screen and (max-width: 991px){.message--out .message__advert{margin-right:15px}}.message__advert .lk-requests__icon{border-radius:50%;background-color:#fff}.message__text{display:inline-block;padding:15px;border-radius:10px;background-color:#eff6ff;word-break:break-word}@media only screen and (max-width: 1200px){.message__text{font-size:16px}}@media only screen and (max-width: 991px){.message__text{margin-right:0;padding:8px 10px;background:#fff;font-size:14px}}.message--out .message__text{background-color:#3660cd;color:#fff}@media only screen and (max-width: 767px){.message--out .message__text{margin-left:0}}.message__date{flex-shrink:0;color:#b0c1d6;margin-top:15px}@media only screen and (max-width: 1200px){.message__date{font-size:16px}}@media only screen and (max-width: 767px){.message__date{margin-bottom:10px;font-size:12px}}@media only screen and (max-width: 767px){.message--in .message__date{order:-1}}
.messages{margin-right:35px;background:#fff;border-radius:15px;width:61%;flex-shrink:0}@media only screen and (max-width: 1470px){.messages{margin-right:15px;width:55%}}@media only screen and (max-width: 991px){.messages{margin-right:0;width:100%;background:rgba(0,0,0,0)}}.messages__header{display:flex;align-items:center;justify-content:space-between;min-height:110px;padding:0 37px;border-radius:10px;background-color:#fff;border-bottom:1px solid #eff6ff}@media only screen and (max-width: 1470px){.messages__header{padding:0 15px}}@media only screen and (max-width: 991px){.messages__header{min-height:70px;padding-right:10px;padding-left:14px;justify-content:initial;position:relative}}.messages__loader{display:flex;justify-content:center;padding:200px 0}.messages__advert{margin-top:10px}.messages .announcement-card{width:100%;max-width:300px;margin-right:15px;margin-bottom:10px;text-align:left;height:100%;align-items:center}@media only screen and (max-width: 1200px){.messages .announcement-card{width:100%}}@media only screen and (max-width: 767px){.messages .announcement-card{width:100%}}.messages .announcement-card__img{height:63px}.messages__back{display:flex;align-items:center;border:0;background-color:rgba(0,0,0,0);color:#b0c1d6;fill:#b0c1d6;font-size:18px;cursor:pointer;transition:color 300ms}.messages__back:hover{color:#3660cd}.messages__back:hover svg{fill:#3660cd}.messages__back svg{width:32px;margin-right:21px;transition:fill 300ms}@media only screen and (max-width: 991){.messages__back svg{width:29px;margin-right:0}}@media only screen and (max-width: 991px){.messages__back span{display:none}}.messages__user{display:flex;align-items:center}@media only screen and (max-width: 767px){.messages__user{align-items:flex-start}}.messages__user-avatar{display:flex;align-items:flex-start;flex-shrink:0;overflow:hidden;width:50px;height:50px;margin-right:22px;border-radius:50%}@media only screen and (max-width: 991px){.messages__user-avatar{display:none}}.messages__user-avatar img{width:100%;height:100%;object-fit:cover}.messages__user-content{text-align:center}.messages__user-name{font-weight:700;font-size:18px}@media only screen and (max-width: 1470px){.messages__user-name{font-size:16px}}.messages__user-status{color:#28dfa8}@media only screen and (max-width: 767px){.messages__user-status{font-size:12px}}.messages__info{display:flex;align-items:center}@media only screen and (max-width: 991px){.messages__category{display:none}}.messages__image{display:flex;align-items:flex-start;flex-shrink:0;overflow:hidden;width:50px;height:50px;margin-left:15px;border-radius:50%}@media only screen and (max-width: 991px){.messages__image{width:34px;height:34px;margin-left:0;position:absolute;right:17px;top:50%;transform:translateY(-50%)}}.messages__image img{width:100%;height:100%;object-fit:cover}.messages__body{overflow-y:auto;height:583px;padding-right:24px;padding-left:37px;background:#fff;margin:27px 24px 28px 0}@media only screen and (max-width: 1470px){.messages__body{padding-left:20px;padding-right:15px;margin-right:15px}}@media only screen and (max-width: 991px){.messages__body{padding-right:0;margin-right:0;padding-left:0;background:rgba(0,0,0,0);height:calc(100vh - 260px);margin-bottom:0}}.messages__body::-webkit-scrollbar{width:9px;background:#eff6ff;border-radius:20px}@media only screen and (max-width: 991px){.messages__body::-webkit-scrollbar{display:none}}.messages__body::-webkit-scrollbar-thumb{background:#0041a2;border-radius:20px}@media only screen and (max-width: 991px){.messages__body::-webkit-scrollbar-thumb{display:none}}.messages__form{padding-top:20px;border-top:1px solid #eff6ff;padding-bottom:30px;padding-left:37px;padding-right:37px}@media only screen and (max-width: 1470px){.messages__form{padding:20px 15px}}@media only screen and (max-width: 991px){.messages__form{background:#fff;border-radius:10px;border-top:none;padding:12px}}.messages__block{display:flex;align-items:center}.messages__field{position:relative;width:100%;height:47px}.messages__field::-webkit-scrollbar{display:none}.messages__textarea{resize:none;width:100%;padding:14px 40px 14px 10px;border-radius:5px;border:none;color:#4a4a4a;font-size:14px;background:#eff6ff;border-radius:10px;transition:400ms}.messages__textarea::-webkit-scrollbar{display:none}.messages__textarea.active{background:#cfe2fb}.messages__textarea::placeholder{color:#b3b3b3}.messages__button{display:flex;align-items:center;justify-content:center;width:25px;height:25px;margin-right:17px;border:0;background-color:rgba(0,0,0,0);fill:#b0c1d6;cursor:pointer;position:relative}.messages__button:hover .messages__button--text{opacity:1;visibility:visible}.messages__button:hover .messages__button--camera{opacity:1;visibility:visible}.messages__button:hover .messages__button--docs{opacity:1;visibility:visible}.messages__button--text{position:absolute;left:20px;top:20px;background:#b0c1d6;border-radius:5px;font-weight:400;font-size:11px;color:#4a4a4a;padding:6px 8px;opacity:0;visibility:hidden;transition:300ms}@media only screen and (max-width: 991px){.messages__button--text{left:-13px;top:30px}}.messages__button--camera{position:absolute;left:28px;top:20px;background:#b0c1d6;border-radius:5px;font-weight:400;font-size:11px;color:#4a4a4a;padding:6px 8px;opacity:0;visibility:hidden;white-space:nowrap;z-index:2;transition:300ms}.messages__button--docs{position:absolute;left:5px;top:-40px;background:#b0c1d6;border-radius:5px;font-weight:400;font-size:11px;color:#4a4a4a;padding:6px 8px;opacity:0;visibility:hidden;white-space:nowrap;z-index:2;transition:300ms}@media only screen and (max-width: 767px){.messages__button{margin-right:15px}}.messages__button:hover svg{fill:#3660cd}.messages__button svg{transition:fill 300ms}.messages__button--submit{position:absolute;top:50%;right:10px;transform:translateY(-50%);margin:0}.messages__thumbs{display:grid;grid-template-columns:repeat(auto-fit, minmax(auto, 196px));grid-template-rows:131px;grid-auto-rows:131px;grid-gap:15px;margin-top:20px}.messages__thumb{position:relative;display:flex;align-items:center;justify-content:center}.messages__thumb button{position:absolute;top:7px;right:7px;display:flex;align-items:center;justify-content:center;width:24px;height:24px;padding:7px;border:0;border-radius:50%;background-color:rgba(0,0,0,.7);fill:#fff;cursor:pointer}.messages__thumb img{width:100%;height:100%;object-fit:cover}.messages__files{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:15px;margin-top:25px}
.chats{display:flex;align-items:flex-start;flex-grow:10}@media only screen and (max-width: 991px){.chats{display:block}}.chats__container{flex-grow:10}.chats__inner{width:100%}@media only screen and (max-width: 991px){.chats__inner{padding-bottom:0}}.chats__list{display:grid;grid-template-rows:minmax(94px, 94px);grid-auto-rows:minmax(94px, 94px);row-gap:10px;height:846px;overflow:scroll}@media only screen and (max-width: 1200px){.chats__list{height:836px}}.chats__list::-webkit-scrollbar{display:none}@media only screen and (max-width: 991px){.chats__list{row-gap:25px;height:100%}}
.chat{position:relative;display:flex;align-items:center;border-radius:10px;background-color:#fff;cursor:pointer;padding:15px}.chat--active{background:#3660cd}@media only screen and (max-width: 991px){.chat--active{background:#fff}}.chat--active .chat__category{color:#fff}@media only screen and (max-width: 991px){.chat--active .chat__category{color:inherit}}.chat--active .chat__name{color:#fff}@media only screen and (max-width: 991px){.chat--active .chat__name{color:inherit}}@media only screen and (max-width: 991px){.chat{overflow:hidden;height:94px;padding:0 15px}}.chat::before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;pointer-events:none;transition:border-color 300ms}.chat.chat--has-unread:before{border-color:#28dfa8}.chat--support{align-items:center;padding:24px 30px 24px 22px}@media only screen and (max-width: 767px){.chat--support{align-items:flex-start;padding:20px}}.chat__img{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:50px;height:50px;border-radius:50%;margin-right:28px}.chat__img .lk-requests__icon{margin-right:0}@media only screen and (max-width: 1470px){.chat__img{margin-right:10px}}@media only screen and (max-width: 767px){.chat__img{width:50px;height:50px;margin-right:15px;border-radius:50%}}.chat__img img{aspect-ratio:21/20;width:100%;height:100%;object-fit:cover;border-radius:50%}@media only screen and (max-width: 767px){.chat__img img{border-radius:inherit}}.chat--support .chat__img{width:50px;height:50px;margin-right:18px}@media only screen and (max-width: 767px){.chat--support .chat__img{margin-right:15px}}.chat__category{font-size:16px;padding-top:5px}@media only screen and (max-width: 1200px){.chat__category{font-size:14px}}.chat__body{display:flex;align-items:center;flex-grow:1}@media only screen and (max-width: 991px){.chat__body{overflow:hidden}}@media only screen and (max-width: 767px){.chat__body{padding:0}}.chat--support .chat__body{padding:0}.chat__aside{display:flex;align-items:center}.chat__avatar{display:flex;align-items:flex-start;flex-shrink:0;overflow:hidden;width:20px;height:20px;border-radius:50%;margin-right:8px}.chat__avatar img{width:100%;height:100%;object-fit:cover}.chat__content{width:100%}.chat__head{display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width: 767px){.chat__head{margin-bottom:5px}}.chat__date{color:#b0c1d6;font-size:14px}@media only screen and (max-width: 767px){.chat__date{font-size:12px}}.chat__info{position:relative;display:flex;align-items:center;flex-wrap:wrap;margin-bottom:2px}@media only screen and (max-width: 767px){.chat__info{margin-bottom:10px}}.chat__name{font-weight:700;font-size:20px;line-height:1.2}@media only screen and (max-width: 1200px){.chat__name{font-size:16px}}@media only screen and (max-width: 767px){.chat__name{font-size:16px}}@media only screen and (max-width: 767px){.chat--support .chat__name{font-size:20px}}.chat__unread{position:absolute;top:15px;right:0;display:flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:50%;background-color:#28dfa8;color:#fff}@media only screen and (max-width: 767px){.chat__unread{position:static;width:20px;height:20px;margin-left:auto;font-size:11px}}.chat__description{height:35px;display:flex;align-items:center}.chat__description--wrapper{color:#b0c1d6;font-size:14px;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:35px;display:-webkit-box;overflow:hidden}@media only screen and (max-width: 1200px){.chat__description--wrapper{font-size:12px;height:29px}}@media only screen and (max-width: 991px){.chat__description--wrapper{font-size:12px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;height:auto}}
.dealings{flex-grow:10}.dealings__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:28px;gap:16px}@media only screen and (max-width: 991px){.dealings__top{display:block;margin-bottom:18px}}.dealings__top .select .select__control{width:285px;background:#fff}@media only screen and (max-width: 991px){.dealings__top .select .select__control{width:100%}}.dealings__tabs{display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap}@media only screen and (max-width: 991px){.dealings__tabs{display:flex;width:100%;margin-bottom:18px}}.dealings__tab{appearance:none;border:1px solid #d0d5dd;background:#fff;color:#4a4a4a;font-size:16px;font-weight:600;line-height:1;height:44px;padding:0 20px;border-radius:8px;cursor:pointer;transition:background .15s ease,color .15s ease,border-color .15s ease}@media only screen and (max-width: 991px){.dealings__tab{flex:1}}.dealings__tab:hover{border-color:#118dff;color:#118dff}.dealings__tab--active{background:#118dff;border-color:#118dff;color:#fff}.dealings__tab--active:hover{background:#0f7de6;border-color:#0f7de6;color:#fff}.dealings__items{display:grid;grid-template-columns:1fr;grid-gap:20px}.dealings__item{overflow:hidden;border-radius:15px;background:#fff}.dealings__head{display:flex;align-items:center;justify-content:space-between;background:#cfe2fb;border-radius:15px 15px 0 0;position:relative}.dealings__head--content{display:flex;align-items:center;padding-right:20px}.dealings__type{width:158px;height:45px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;border-radius:15px 0 0 0;text-transform:capitalize}@media only screen and (max-width: 991px){.dealings__type{width:110px;height:30px}}.dealings__type--barter{background:#28dfa8}.dealings__type--sell{background:#ff8311}.dealings__type--auction{background:#118dff}.dealings__number{font-size:14px;color:#4a4a4a;margin-right:13px}@media only screen and (max-width: 991px){.dealings__number{font-size:12px}}.dealings__data{font-size:14px;color:#4a4a4a;opacity:.5}@media only screen and (max-width: 991px){.dealings__data{font-size:12px}}.dealings__data--muted{margin-left:12px}.dealings__bid-row{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;padding:14px 28px;border-top:1px solid #eef0f3;border-bottom:1px solid #e8eef6}@media only screen and (max-width: 991px){.dealings__bid-row{padding:12px 16px}}.dealings__bid-main{display:flex;align-items:center;gap:12px;min-width:200px}.dealings__bid-icon{width:40px;height:40px;border-radius:50%;background:#e8f3ff;color:#118dff;display:flex;align-items:center;justify-content:center;flex-shrink:0}.dealings__bid-icon .icon,.dealings__bid-icon svg{width:22px;height:22px;fill:#118dff}.dealings__bid-icon--sell{background:#fff3e8;color:#ff8311}.dealings__bid-icon--sell .icon,.dealings__bid-icon--sell svg{fill:#ff8311}.dealings__bid-label{font-size:14px;color:#4a4a4a}.dealings__bid-amount{font-size:22px;font-weight:700;color:#118dff;line-height:1.2}.dealings__bid-amount--sell{color:#ff8311}.dealings__btn--raise{min-width:180px}.dealings__role{font-size:13px;font-weight:600;color:#0041a2;background:#eff6ff;border-radius:8px;padding:6px 12px;white-space:nowrap}.dealings__content{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;padding:20px 28px 24px}@media only screen and (max-width: 991px){.dealings__content{flex-direction:column;align-items:stretch;gap:16px;padding:16px;height:auto;position:static}}.dealings__info{display:flex;align-items:center;flex:1 1 auto;min-width:0}@media only screen and (max-width: 1200px){.dealings__info{justify-content:flex-start}}@media only screen and (max-width: 991px){.dealings__info{display:grid;grid-template-columns:68px 1fr;grid-gap:0 16px;align-items:flex-start}.dealings__info .lk-requests__images{grid-row:span 2;height:auto}}.dealings__information,.dealings__actions{flex:0 0 auto;width:100%;max-width:280px;display:flex;flex-direction:column;align-items:stretch;gap:10px;position:relative;z-index:1;min-width:0}@media only screen and (max-width: 991px){.dealings__information,.dealings__actions{position:static;left:auto;bottom:auto;max-width:none;width:100%;gap:12px;margin-top:4px}}.dealings__actions-btns{display:flex;flex-direction:column;gap:10px;width:100%}.dealings__actions-btns .btn,.dealings__actions-btns .dealings__btn{width:100%;min-height:44px;height:auto;padding:12px 16px;white-space:normal;line-height:1.25;text-align:center}.dealings__escrow-meta{display:flex;align-items:center;width:100%;flex-wrap:wrap;gap:8px}.dealings__escrow-timer{display:inline-flex;align-items:center;justify-content:flex-start;width:100%;box-sizing:border-box;font-size:13px;font-weight:600;line-height:1.35;color:#b54708;background:#fff6eb;border:1px solid #ffd6a8;border-radius:8px;padding:10px 12px;min-height:44px;white-space:normal;word-break:break-word}.dealings__hint{margin:0;font-size:12px;line-height:1.4;color:#667085;width:100%}.dealings__status{position:static !important;margin-left:0 !important;width:100%;max-width:100%;display:flex;align-items:flex-start;flex-wrap:wrap;gap:8px;line-height:1.35;word-break:break-word}.dealings__status span{flex:1 1 auto;min-width:0;white-space:normal}.dealings__status.outbid{color:#d92d20}.dealings__status.outbid span{color:#d92d20}@media only screen and (max-width: 991px){.dealings__status{margin-left:0 !important;justify-content:flex-start}}.dealings__active-price{font-size:12px;color:#ff8311;margin-top:0;text-align:left;display:block}@media only screen and (max-width: 991px){.dealings__active-price{text-align:left;max-width:none;width:100%}}.dealings__text{font-size:16px;color:#4a4a4a;margin-left:24px;max-width:450px;width:100%}.dealings__text span{padding:0 3px}@media only screen and (max-width: 1650px){.dealings__text{max-width:375px;margin-right:10px;margin-left:20px}}@media only screen and (max-width: 1475px){.dealings__text{font-size:14px;max-width:220px;margin-left:16px}}@media only screen and (max-width: 1200px){.dealings__text{font-size:16px;max-width:260px}}@media only screen and (max-width: 991px){.dealings__text{max-width:100%;font-size:14px;padding-top:0;margin-left:0;margin-right:0}}.dealings__text a{text-decoration-line:underline;color:#3660cd}.dealings__btn{width:100%;margin-left:0;min-height:44px}@media only screen and (max-width: 1475px){.dealings__btn{font-size:14px}}@media only screen and (max-width: 991px){.dealings__btn{width:100%;font-size:14px;height:44px;margin-left:0}}.dealings__price{display:flex;align-items:center;margin-top:10px}.dealings__price p{font-size:14px}@media only screen and (max-width: 991px){.dealings__price p{display:none}}.dealings__price span{margin-left:4px;font-weight:700;font-size:18px;color:#0041a2}@media only screen and (max-width: 991px){.dealings__price span{margin-left:0}}.dealings__chains{display:flex;align-items:center;position:absolute;left:174px}@media only screen and (max-width: 991px){.dealings__chains{left:124px}}.dealings__chains svg{width:14px;height:14px;fill:#0041a2}.dealings__chains span{font-size:14px;color:#0041a2;margin-left:15px}@media only screen and (max-width: 991px){.dealings__chains span{display:none}}.dealings__buyer{font-size:16px;line-height:19px;color:#b0c1d6}@media only screen and (max-width: 1475px){.dealings__buyer{font-size:14px}}@media only screen and (max-width: 1200px){.dealings__buyer{max-width:145px;font-size:16px}}@media only screen and (max-width: 991px){.dealings__buyer{font-size:14px;max-width:100%;margin-top:10px}}.dealings__buyer a{color:#3660cd;text-decoration:underline}.dealings__aside{display:flex;align-items:center;font-size:16px;color:#ff8311}@media only screen and (max-width: 1200px){.dealings__aside{width:224px;justify-content:flex-end}}@media only screen and (max-width: 991px){.dealings__aside{position:static;left:auto;bottom:auto;font-size:14px;width:100%;justify-content:flex-start;margin-top:8px}}.dealings__buying{display:flex;align-items:center;color:#28dfa8;font-size:16px}@media only screen and (max-width: 1200px){.dealings__buying{width:224px;justify-content:flex-end}}@media only screen and (max-width: 991px){.dealings__buying{position:static;width:100%;left:auto;bottom:auto;font-size:14px;justify-content:flex-start;margin-top:8px}}
.marketplace-deals{padding:28px 0 64px}@media only screen and (max-width: 991px){.marketplace-deals{padding:16px 0 48px}}.marketplace-deals__header{display:flex;flex-direction:column;align-items:flex-start;gap:16px;margin-bottom:20px}@media only screen and (max-width: 991px){.marketplace-deals__header{gap:14px;margin-bottom:16px}}.marketplace-deals__heading{min-width:0;width:100%}.marketplace-deals__title{margin:0 0 8px;font-size:32px;font-weight:700;color:#1f2937;line-height:1.2}@media only screen and (max-width: 991px){.marketplace-deals__title{font-size:24px}}.marketplace-deals__subtitle{margin:0;color:#667085;font-size:15px;max-width:720px;line-height:1.45}@media only screen and (max-width: 991px){.marketplace-deals__subtitle{font-size:14px;max-width:100%}}.marketplace-deals__my-link{flex-shrink:0;text-decoration:none;white-space:nowrap;width:auto;min-width:160px;min-height:44px;display:inline-flex;align-items:center;justify-content:center;align-self:flex-start}@media only screen and (max-width: 991px){.marketplace-deals__my-link{width:100%;min-width:0}}.marketplace-deals__toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start;gap:12px 16px;margin-bottom:20px}@media only screen and (max-width: 991px){.marketplace-deals__toolbar{flex-direction:column;align-items:stretch;gap:12px;margin-bottom:16px}}.marketplace-deals__tabs{display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap}@media only screen and (max-width: 991px){.marketplace-deals__tabs{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));width:100%;gap:8px}}.marketplace-deals__tab{appearance:none;border:1px solid #c7d5e5;background:#fff;color:#4a4a4a;font-size:15px;font-weight:600;line-height:1;height:44px;min-height:44px;padding:0 18px;border-radius:10px;cursor:pointer;transition:background .15s ease,color .15s ease,border-color .15s ease;touch-action:manipulation}@media only screen and (max-width: 991px){.marketplace-deals__tab{width:100%;padding:0 6px;font-size:13px}}.marketplace-deals__tab:hover{border-color:#0041a2;color:#0041a2}.marketplace-deals__tab--active{background:#0041a2;border-color:#0041a2;color:#fff}.marketplace-deals__tab--active:hover{background:#001c71;border-color:#001c71;color:#fff}.marketplace-deals__filter,.marketplace-deals__filters{min-width:220px;max-width:280px;flex:0 0 auto}@media only screen and (max-width: 991px){.marketplace-deals__filter,.marketplace-deals__filters{width:100%;min-width:0;max-width:none}.marketplace-deals__filter .select .select__control,.marketplace-deals__filter .select-wrapper,.marketplace-deals__filter .select,.marketplace-deals__filters .select .select__control,.marketplace-deals__filters .select-wrapper,.marketplace-deals__filters .select{width:100%}}.marketplace-deals__filter .select__control,.marketplace-deals__filters .select__control{min-height:44px;border-radius:10px;border-color:#c7d5e5}.marketplace-deals__list{display:grid;grid-template-columns:1fr;gap:16px}.marketplace-deals__empty{width:100%;padding:12px 0 8px}.marketplace-deals__more{margin-top:24px;display:flex;justify-content:flex-start}@media only screen and (max-width: 991px){.marketplace-deals__more{justify-content:stretch}.marketplace-deals__more .btn{width:100%}}.marketplace-deal{overflow:hidden;border-radius:15px;background:#fff;box-shadow:0 1px 2px rgba(16,24,40,.04)}.marketplace-deal__head{display:flex;align-items:center;gap:12px;flex-wrap:wrap;background:#cfe2fb;padding-right:16px;min-height:45px}@media only screen and (max-width: 991px){.marketplace-deal__head{padding:0 12px 12px 0;gap:8px}}.marketplace-deal__type{width:140px;min-height:45px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;border-radius:15px 0 0 0;text-transform:capitalize;flex-shrink:0}@media only screen and (max-width: 991px){.marketplace-deal__type{width:108px;min-height:34px;font-size:12px}}.marketplace-deal__type--barter{background:#28dfa8}.marketplace-deal__type--sell{background:#ff8311}.marketplace-deal__type--auction{background:#118dff}.marketplace-deal__type--transfer{background:#6b7280}.marketplace-deal__meta{display:flex;align-items:center;gap:12px;margin-left:auto;margin-right:8px;font-size:13px;color:#4a4a4a}.marketplace-deal__meta span:last-child{opacity:.55}@media only screen and (max-width: 991px){.marketplace-deal__meta{margin-left:0;margin-right:0;width:calc(100% - 120px);justify-content:flex-end;font-size:12px;gap:8px;order:2}}.marketplace-deal__badge{font-size:12px;font-weight:700;border-radius:999px;padding:6px 10px;white-space:nowrap}@media only screen and (max-width: 991px){.marketplace-deal__badge{order:3;margin-left:12px}}.marketplace-deal__badge--active{color:#0041a2;background:#eff6ff}.marketplace-deal__badge--done{color:#027a48;background:#ecfdf3}.marketplace-deal__badge--dispute{color:#b42318;background:#fef3f2}.marketplace-deal__badge--resolved{color:#6941c6;background:#f4ebff}.marketplace-deal__body{display:grid;grid-template-columns:120px minmax(0, 1fr);gap:20px;padding:20px 24px 22px}@media only screen and (max-width: 991px){.marketplace-deal__body{grid-template-columns:1fr;gap:14px;padding:14px}}.marketplace-deal__images{display:flex;align-items:center;justify-content:center}.marketplace-deal__images--barter{gap:8px}@media only screen and (max-width: 991px){.marketplace-deal__images--barter{justify-content:flex-start}}.marketplace-deal__img{width:96px;height:96px;border-radius:12px;overflow:hidden;background:#f7f8fa;flex-shrink:0}.marketplace-deal__img img,.marketplace-deal__img .render-advert-image,.marketplace-deal__img .advert-image,.marketplace-deal__img>*{width:100%;height:100%;object-fit:cover}@media only screen and (max-width: 991px){.marketplace-deal__img{width:72px;height:72px}}.marketplace-deal__swap{width:28px;height:28px;display:flex;align-items:center;justify-content:center;color:#667085;flex-shrink:0}.marketplace-deal__info{min-width:0;display:flex;flex-direction:column;gap:10px}.marketplace-deal__title,.marketplace-deal__titles a{color:#1f2937;font-weight:700;font-size:16px;text-decoration:none;word-break:break-word}.marketplace-deal__title:hover,.marketplace-deal__titles a:hover{color:#0041a2}.marketplace-deal__titles{display:flex;flex-direction:column;gap:4px}.marketplace-deal__exchange{font-size:13px;color:#667085}.marketplace-deal__price-row{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap}.marketplace-deal__price{display:flex;flex-direction:column;gap:2px}.marketplace-deal__price strong{font-size:20px;color:#118dff;line-height:1.2}.marketplace-deal__chain{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:#4a4a4a}.marketplace-deal__chain .icon,.marketplace-deal__chain svg{width:16px;height:16px}.marketplace-deal__parties{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:10px 16px;margin-top:2px}@media only screen and (max-width: 575px){.marketplace-deal__parties{grid-template-columns:1fr}}.marketplace-deal__parties>div{display:flex;flex-direction:column;gap:2px;min-width:0}.marketplace-deal__parties a{color:#0041a2;font-weight:600;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.marketplace-deal__parties a:hover{text-decoration:underline}.marketplace-deal__party-label{font-size:12px;color:#98a2b3;text-transform:none}.marketplace-deal__tx{margin-top:8px;font-size:13px}.marketplace-deal__tx a{color:#0041a2;font-weight:600;text-decoration:none}.marketplace-deal__tx a:hover{text-decoration:underline}
.text-error{margin-top:9px;color:#f8364e;font-size:12px;text-align:left}
.arbitrator{padding:40px 0 72px;min-height:70vh;background:radial-gradient(ellipse 80% 50% at 10% -10%, rgba(17, 141, 255, 0.12), transparent 55%),radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196, 132, 68, 0.1), transparent 50%),#f7f8fa}.arbitrator .container{max-width:960px}.arbitrator__login{max-width:440px;margin:0 auto;background:#fff;border:1px solid #e4e7ec;border-radius:12px;padding:28px 24px 32px}.arbitrator__login h1{margin-bottom:8px}.arbitrator__login .arbitrator__lead{margin-bottom:20px}.arbitrator__login-form{display:flex;flex-direction:column;gap:14px}.arbitrator__login-form .btn{width:100%;margin-top:6px}.arbitrator__eyebrow{margin:0 0 8px;font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:#667085}.arbitrator h1{margin:0 0 10px;font-size:32px;line-height:1.2;color:#101828}.arbitrator__lead{margin:0;max-width:52ch;color:#475467;font-size:16px;line-height:1.5}.arbitrator__header{display:flex;justify-content:space-between;gap:24px;align-items:flex-start;margin-bottom:28px}@media(max-width: 768px){.arbitrator__header{flex-direction:column}}.arbitrator__wallet{background:#fff;border:1px solid #e4e7ec;border-radius:12px;padding:16px;min-width:min(360px,100%)}.arbitrator__meta{display:flex;flex-direction:column;gap:6px;margin-bottom:12px;font-size:14px;color:#344054}.arbitrator__meta b{font-weight:600;color:#101828}.arbitrator__actions{display:flex;flex-wrap:wrap;gap:8px}.arbitrator__hint{margin:10px 0 0;font-size:13px;color:#667085}.arbitrator__loading,.arbitrator__empty{background:#fff;border:1px solid #e4e7ec;border-radius:12px;padding:40px 20px;text-align:center;color:#667085}.arbitrator__list{display:grid;gap:16px}.arbitrator__deal{background:#fff;border:1px solid #e4e7ec;border-radius:12px;padding:20px}.arbitrator__deal-top{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-bottom:16px}.arbitrator__deal-top h2{margin:0 0 6px;font-size:20px;color:#101828}.arbitrator__deal-top p{margin:0;font-size:14px;color:#667085}.arbitrator__parties{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:16px}@media(max-width: 640px){.arbitrator__parties{grid-template-columns:1fr}}.arbitrator__party{display:flex;flex-direction:column;gap:4px;padding:12px;background:#f9fafb;border-radius:10px}.arbitrator__party strong{color:#101828}.arbitrator__party code{font-size:12px;color:#667085}.arbitrator__role{font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:#98a2b3}.arbitrator__link{color:#118dff;font-size:14px;font-weight:600;text-decoration:none}.arbitrator__link:hover{text-decoration:underline}.arbitrator__resolve{display:flex;flex-wrap:wrap;gap:10px}.arbitrator__card{background:#fff;border:1px solid #e4e7ec;border-radius:12px;padding:28px;max-width:560px}.arbitrator__card--warn{border-color:#f9dbaf;background:#fffcf5}.arbitrator__card p{color:#475467;line-height:1.5}.arbitrator__card .arbitrator__actions{margin-top:16px}
.lk-requests{margin-bottom:60px;flex-grow:10}@media only screen and (max-width: 767px){.lk-requests{margin-bottom:30px}}.lk-requests__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:50px;gap:16px;flex-wrap:wrap}@media only screen and (max-width: 991px){.lk-requests__top{display:block;margin-bottom:40px}}.lk-requests__top .select .select__control{width:285px;background:#fff}@media only screen and (max-width: 991px){.lk-requests__top .select .select__control{width:100%}}.lk-requests__dir-tabs{display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap}@media only screen and (max-width: 991px){.lk-requests__dir-tabs{display:flex;width:100%;margin-bottom:18px}}.lk-requests__dir-tab{appearance:none;border:1px solid #d0d5dd;background:#fff;color:#4a4a4a;font-size:16px;font-weight:600;line-height:1;height:44px;padding:0 16px;border-radius:8px;cursor:pointer;transition:background .15s ease,color .15s ease,border-color .15s ease;white-space:nowrap}@media only screen and (max-width: 991px){.lk-requests__dir-tab{flex:1;min-width:0;font-size:14px;padding:0 10px}}.lk-requests__dir-tab:hover{border-color:#118dff;color:#118dff}.lk-requests__dir-tab--active{background:#118dff;border-color:#118dff;color:#fff}.lk-requests__dir-tab--active:hover{background:#0f7de6;border-color:#0f7de6;color:#fff}.lk-requests__item{overflow:hidden;margin-bottom:30px;border-radius:10px;background-color:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);cursor:pointer}.lk-requests__item--deals{cursor:default}@media only screen and (max-width: 767px){.lk-requests__item{margin-bottom:10px}}.lk-requests__table{width:100%;border-collapse:collapse}.lk-requests__table--outgoing th,.lk-requests__table--incoming th{color:#eff6ff;text-align:left}.lk-requests__table--outgoing thead tr{background-color:#3660cd}.lk-requests__table--incoming thead tr{background-color:#c37c33}@media only screen and (max-width: 767px){.lk-requests__table thead tr{display:grid;grid-template-columns:repeat(2, 1fr);align-items:center}}.lk-requests__table tbody tr{border-bottom:1px solid #c7d5e5}.lk-requests__table tbody tr:last-child{border-bottom:none}.lk-requests__table th{padding:24px 28px 27px;font-weight:400}@media only screen and (max-width: 1300px){.lk-requests__table th{padding:15px}}@media only screen and (max-width: 767px){.lk-requests__table th{display:inline-block;padding:0 14px 9px}}.lk-requests__table th:first-child{width:32.5%}@media only screen and (max-width: 1300px){.lk-requests__table th:first-child{width:30%}}@media only screen and (max-width: 767px){.lk-requests__table th:first-child{grid-column:1/-1;width:auto;padding-top:11px}}.lk-requests__table th:nth-child(2){width:19.5%}@media only screen and (max-width: 1300px){.lk-requests__table th:nth-child(2){width:20%}}@media only screen and (max-width: 767px){.lk-requests__table th:nth-child(2){display:flex;justify-content:center;grid-row:2/4;width:auto}}.lk-requests__table th:nth-child(3){width:34.5%}@media only screen and (max-width: 1300px){.lk-requests__table th:nth-child(3){width:30%}}@media only screen and (max-width: 767px){.lk-requests__table th:nth-child(3){width:auto;padding-bottom:0}}.lk-requests__table th:last-child{width:13.5%;text-align:right}@media only screen and (max-width: 1300px){.lk-requests__table th:last-child{width:20%}}@media only screen and (max-width: 767px){.lk-requests__table th:last-child{grid-column:2;width:auto;text-align:left}}.lk-requests__table td{padding:20px 30px}@media only screen and (max-width: 991px){.lk-requests__table td{padding:10px}}@media only screen and (max-width: 767px){.lk-requests__table td{display:block;padding:6px 16px}}@media only screen and (max-width: 767px){.lk-requests__table td:first-child{padding-top:19px}}@media only screen and (max-width: 767px){.lk-requests__table td:last-child{padding-bottom:23px}}.lk-requests__request{display:flex;align-items:center;font-weight:700;font-size:20px}@media only screen and (max-width: 991px){.lk-requests__request{font-size:16px}}.lk-requests__request img{width:40px;height:40px;margin-right:28px}@media only screen and (max-width: 991px){.lk-requests__request img{width:30px;height:30px;margin-right:24px}}.lk-requests__label{display:flex;align-items:center;justify-content:center;width:173px;height:49px;border-radius:5px;text-transform:uppercase}@media only screen and (max-width: 1300px){.lk-requests__label{width:160px;height:40px}}@media only screen and (max-width: 991px){.lk-requests__label{width:136px;height:30px}}.lk-requests__label--barter{background-color:#28dfa8}.lk-requests__label--sale{background-color:#ff8311}.lk-requests__info{display:flex;align-items:center}.lk-requests__info-img{flex-shrink:0;width:70px;height:70px;margin-right:30px}.lk-requests__info-img img{width:100%;height:100%;object-fit:cover;border-radius:50%}@media only screen and (max-width: 1300px){.lk-requests__info-img{width:50px;height:50px;margin-right:20px}}@media only screen and (max-width: 991px){.lk-requests__info-img{display:none}}@media only screen and (max-width: 767px){.lk-requests__info-img{display:block;width:60px;height:60px;margin-right:8px}}.lk-requests__info-name{margin-bottom:10px;color:#4a4a4a;font-weight:700;font-size:20px}@media only screen and (max-width: 1300px){.lk-requests__info-name{font-size:16px}}.lk-requests__info-text{display:inline-flex;flex-wrap:wrap;color:#b0c1d6;font-size:18px}@media only screen and (max-width: 1300px){.lk-requests__info-text{font-size:12px}}.lk-requests__info-text span{margin-right:4px}.lk-requests__info-link{display:inline-block;overflow:hidden;max-width:100%;color:#3660cd;text-decoration:underline;text-overflow:ellipsis;white-space:nowrap}@media only screen and (max-width: 1300px){.lk-requests__info-link{font-size:12px}}@media only screen and (max-width: 767px){.lk-requests__info-link{max-width:150px}}.lk-requests__info-link:hover{text-decoration:none}.lk-requests__delivery,.lk-requests__insurance{display:flex;align-items:center;color:#b0c1d6;font-size:18px}@media only screen and (max-width: 1300px){.lk-requests__delivery,.lk-requests__insurance{font-size:14px}}@media only screen and (max-width: 991px){.lk-requests__delivery,.lk-requests__insurance{font-size:16px}}.lk-requests__delivery img,.lk-requests__insurance img{width:25px;height:25px;margin-right:23px}@media only screen and (max-width: 991px){.lk-requests__delivery img,.lk-requests__insurance img{margin-right:20px}}.lk-requests__delivery a,.lk-requests__insurance a{color:#3660cd;text-decoration:underline}.lk-requests__delivery a:hover,.lk-requests__insurance a:hover{text-decoration:none}@media only screen and (max-width: 991px){.lk-requests__insurance-number{font-size:12px;padding-top:5px}}.lk-requests__price{display:flex;color:#3660cd;font-size:18px}@media only screen and (max-width: 1300px){.lk-requests__price{font-size:14px}}@media only screen and (max-width: 991px){.lk-requests__price{font-size:18px}}.lk-requests__price-icon{width:100%;height:100%;margin-right:25px;border-radius:5px;display:flex;align-items:center;justify-content:center;background:#eff6ff}.lk-requests__price-icon .icon{max-width:60%;max-height:60%;fill:#0041a2}@media only screen and (max-width: 1300px){.lk-requests__price-icon{width:30px;height:30px;margin-right:15px}}@media only screen and (max-width: 991px){.lk-requests__price-icon{width:40px;height:40px;margin-right:25px}}.lk-requests__price-box{padding-top:10px}@media only screen and (max-width: 1300px){.lk-requests__price-box{padding-top:6px}}@media only screen and (max-width: 991px){.lk-requests__price-box{padding-top:10px}}.lk-requests__surcharge{display:flex;align-items:center;margin-top:10px;color:#28dfa8}.lk-requests__icon{width:100%;height:100%;border-radius:15px;background:#eff6ff;display:flex;align-items:center;justify-content:center;max-width:100%;max-height:100%}.lk-requests__icon .icon{width:100%;max-width:30px;max-height:30px;fill:#3660cd}.lk-requests__grids{display:grid;grid-template-columns:1fr;grid-gap:20px}@media only screen and (max-width: 991px){.lk-requests__grids{grid-gap:15px}}.lk-requests__grid{background:#fff;border-radius:15px;display:flex;align-items:center;justify-content:space-between;overflow:hidden;cursor:pointer}.lk-requests__grid--opacity{position:relative;cursor:default}.lk-requests__grid--opacity .lk-requests__images::before{position:absolute;display:block;content:"";width:100%;height:100%;top:0;left:0;right:0;bottom:0;background:#fff;opacity:.6;z-index:2}.lk-requests__grid--opacity .lk-requests__name{color:#b0c1d6}.lk-requests__grid--opacity .lk-requests__price{color:#b0c1d6}@media only screen and (max-width: 991px){.lk-requests__grid{overflow:hidden;display:grid;grid-template-columns:68px minmax(0, 1fr);grid-gap:20px;position:relative;padding:55px 28px 16px 22px;align-items:flex-start}}.lk-requests__images{display:flex;align-items:center;padding:19px 0 19px 22px;position:relative;flex-shrink:0;max-width:180px;width:100%;margin-right:10px}@media only screen and (max-width: 1400px){.lk-requests__images{padding-left:10px;margin-right:0}}@media only screen and (max-width: 991px){.lk-requests__images{display:block;padding:0;max-width:none;width:68px;margin-right:0}}.lk-requests__img{display:flex;align-items:flex-start;border-radius:15px;margin-right:10px;width:75px;height:75px}@media only screen and (max-width: 991px){.lk-requests__img{width:68px;height:68px;margin-right:0;margin-bottom:10px}}.lk-requests__img:last-child{margin-right:0;margin-bottom:0}.lk-requests__img img{width:100%;height:100%;object-fit:cover;border-radius:15px}.lk-requests__change{position:absolute;top:50%;left:55%;transform:translate(-50%, -50%);width:28px;height:28px;display:flex;align-items:center;justify-content:center;background:#3660cd;border-radius:50%}@media only screen and (max-width: 1400px){.lk-requests__change{left:50%}}@media only screen and (max-width: 991px){.lk-requests__change{width:25px;height:25px}}.lk-requests__change svg{width:17px;height:17px;fill:#f5f7f9}@media only screen and (max-width: 991px){.lk-requests__change svg{width:15px;height:15px;transform:rotate(90deg)}}.lk-requests__name{font-size:16px;color:#4a4a4a;max-width:46%;width:100%;overflow-wrap:anywhere}@media only screen and (max-width: 1400px){.lk-requests__name{max-width:200px}}@media only screen and (max-width: 991px){.lk-requests__name{font-size:14px;max-width:100%;margin-bottom:19px;line-height:1.35}}.lk-requests__name a{color:#3660cd;text-decoration:underline}.lk-requests__price{font-weight:500;font-size:18px;text-align:center;color:#0041a2}@media only screen and (max-width: 1400px){.lk-requests__price{font-size:16px}}@media only screen and (max-width: 991px){.lk-requests__price{text-align:left;margin-bottom:8px}}.lk-requests__data{font-size:16px;text-align:center;color:#b0c1d6;max-width:170px;width:100%}@media only screen and (max-width: 1400px){.lk-requests__data{max-width:140px}}@media only screen and (max-width: 991px){.lk-requests__data{text-align:left;position:static;max-width:100%}}.lk-requests__data--auction{color:#4a4a4a;font-size:12px}.lk-requests__data--auction span{display:block;color:#3660cd}.lk-requests__content{display:flex;align-items:center;width:68%;justify-content:space-between;padding:0 10px}@media only screen and (max-width: 991px){.lk-requests__content{width:100%;min-width:0;padding-top:15px;position:relative;height:auto;display:block}}.lk-requests__buttons{max-width:135px;width:100%;height:100%;border-radius:0 15px 15px 0}@media only screen and (max-width: 1400px){.lk-requests__buttons{max-width:100px}}@media only screen and (max-width: 1200px){.lk-requests__buttons{max-width:135px}}@media only screen and (max-width: 991px){.lk-requests__buttons{max-width:100%;position:absolute;top:0;left:0;right:0;height:auto;display:flex;align-items:center;justify-content:space-between;border-radius:15px 15px 0 0;overflow:hidden}}.lk-requests__loader{padding:100px 0;display:flex;justify-content:center}.lk-requests__btn{font-size:14px;text-align:center;height:50%;display:flex;align-items:center;justify-content:center;color:#fff;text-transform:capitalize}@media only screen and (max-width: 991px){.lk-requests__btn{height:39px;width:100%}}.lk-requests__btn--barter{background:#28dfa8}.lk-requests__btn--sell{background:#ff8311}.lk-requests__btn--auction{background:#118dff}.lk-requests__btn--blue{background:#0041a2}.lk-requests__btn--gray{background:#b0c1d6}.modal-requests{text-align:left;width:915px;max-width:100%;padding:43px 45px 50px 50px}@media only screen and (max-width: 767px){.modal-requests{padding:30px}}.modal-requests .modal__close{position:absolute;right:35px;top:35px}.modal-requests .modal-advert-buy__title{font-size:28px;margin-bottom:32px;font-weight:500}@media only screen and (max-width: 767px){.modal-requests .modal-advert-buy__title{font-size:18px;margin-bottom:20px}}.modal-requests .lk-requests__icon{width:100%;height:100%;border-radius:15px 15px 0 0;margin-right:0;background:#3660cd}.modal-requests .lk-requests__icon svg{max-width:50%;max-height:50%;fill:#fff}.modal-requests__items{display:flex;align-items:flex-start;position:relative;justify-content:space-between}.modal-requests__item{max-width:286px;overflow:hidden;width:100%}@media only screen and (max-width: 767px){.modal-requests__item{max-width:45%}}.modal-requests__label{margin-bottom:5px}@media only screen and (max-width: 767px){.modal-requests__label{font-size:12px}}.modal-requests__change{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:130px;height:130px;background:#3660cd;display:flex;align-items:center;justify-content:center;border-radius:50%}@media only screen and (max-width: 767px){.modal-requests__change{width:49px;height:49px}}.modal-requests__change svg{width:80px;height:80px;fill:#fff}@media only screen and (max-width: 767px){.modal-requests__change svg{width:30px;height:30px}}.modal-requests__img{display:flex;align-items:flex-start;height:290px;border-radius:10px 10px 0 0}@media only screen and (max-width: 767px){.modal-requests__img{height:180px}}.modal-requests__img img{width:100%;height:100%;object-fit:cover}.modal-requests__content{padding:25px 16px;background:#eff6ff;border-radius:0 0 10px 10px}@media only screen and (max-width: 767px){.modal-requests__content{padding:10px}}.modal-requests__name{font-weight:400;font-size:14px;line-height:16px;color:#0041a2;margin-bottom:15px}@media only screen and (max-width: 767px){.modal-requests__name{font-size:12px;line-height:inherit;height:28px}}.modal-requests__price{display:flex;align-items:center}.modal-requests__price span{font-weight:400;font-size:24px;color:#3660cd}@media only screen and (max-width: 767px){.modal-requests__price span{font-size:14px}}.modal-requests__icon{background:#fff;width:26px;height:26px;display:flex;align-items:center;justify-content:center;border-radius:5px;margin-right:10px}@media only screen and (max-width: 767px){.modal-requests__icon{width:12px;height:12px;margin-right:6px}}.modal-requests__icon svg{width:14px;height:14px;fill:#0041a2}@media only screen and (max-width: 767px){.modal-requests__icon svg{width:8px;height:8px}}.modal-requests__footer{display:flex;align-items:center;justify-content:space-between;margin-top:40px}@media only screen and (max-width: 767px){.modal-requests__footer{margin-top:30px;display:block}}.modal-requests__footer .modal-advert-buy__found{max-width:300px;margin-top:0}@media only screen and (max-width: 767px){.modal-requests__footer .modal-advert-buy__found{max-width:100%;margin-bottom:27px}}.modal-requests__footer .modal-advert-buy__found span{font-size:16px;font-weight:400}.modal-requests__buttons{display:flex;align-items:center;gap:12px;width:100%;justify-content:flex-end}@media only screen and (max-width: 767px){.modal-requests__buttons{flex-direction:column-reverse;align-items:stretch}}.modal-requests__buttons .modal-advert-buy__cancel{width:177px}.modal-requests__buttons .modal-advert-buy__cancel:last-child{margin-right:0}@media only screen and (max-width: 767px){.modal-requests__buttons .modal-advert-buy__cancel{width:100%}}.modal-requests__buttons .modal-advert-buy__cancel:disabled,.modal-requests__buttons .modal-advert-buy__cancel[disabled]{opacity:.65;cursor:not-allowed}.modal-requests__back{width:225px}@media only screen and (max-width: 767px){.modal-requests__back{width:70%;margin:0 auto}}
.lk-header{margin-bottom:20px;position:relative;width:140px;height:140px;display:flex;align-items:center;justify-content:center;margin:0 auto;margin-bottom:25px}.lk-header img{width:100%;height:100%;object-fit:cover;border-radius:50%}.lk-header:hover .lk-header__avatar-change{opacity:1;visibility:visible}.lk-header__inner{background:#eff6ff;border-radius:10px;padding:40px;display:flex;align-items:center;justify-content:space-between}.lk-header__container{display:flex}@media only screen and (max-width: 767px){.lk-header__container{display:block}}@media only screen and (max-width: 500px){.lk-header__container{font-size:12px}}.lk-header__item{position:relative}.lk-header__item:first-child{margin-right:30px}@media only screen and (max-width: 767px){.lk-header__item:first-child{margin-right:0;margin-bottom:15px}}.lk-header__user{display:flex;align-items:flex-start}.lk-header__avatar{display:flex;align-items:center;width:150px;height:150px;position:relative;border-radius:50%;flex-shrink:0;margin-right:40px}.lk-header__avatar-loader{background:#fff;width:100%;height:100%;border-radius:50%;display:flex;align-items:center;justify-content:center}.lk-header__avatar input{opacity:0;visibility:hidden;position:absolute;width:100%;height:100%}.lk-header__avatar:hover .lk-header__avatar-change{opacity:1;visibility:visible}.lk-header__avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}.lk-header__avatar-change{position:absolute;border-radius:50%;background:#3660cd;display:flex;align-items:center;justify-content:center;padding:0 20px;text-align:center;color:#fff;font-size:18px;opacity:0;visibility:hidden;transition:300ms;cursor:pointer;width:100%;height:100%}.lk-header__user-info{position:relative}.lk-header__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:500;font-size:28px;margin-bottom:15px}.lk-header__code{color:#b0c1d6;font-size:18px;display:flex}.lk-header__code svg{fill:#0041a2;width:13px;flex-shrink:0;margin-left:13px;cursor:pointer}.lk-header__dropdown{background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;position:absolute;top:100%;margin-top:5px;left:0;padding:17px 12px;z-index:9999;opacity:0;min-width:100%;visibility:hidden;transform:translateY(10px);transition:300ms}@media only screen and (max-width: 767px){.lk-header__dropdown{padding:10px 7px}}.lk-header__dropdown.opened{opacity:1;visibility:visible;transform:translateY(0)}.lk-header__dropdown-item{display:flex;align-items:center;cursor:pointer;font-size:16px;color:#b0c1d6;margin-bottom:13px;transition:color 300ms;white-space:nowrap}@media only screen and (max-width: 767px){.lk-header__dropdown-item{font-size:10px}}.lk-header__dropdown-item:hover{color:#0041a2}.lk-header__dropdown-item:last-child{margin-bottom:0}.lk-header__dropdown-item .icon{width:30px;margin-right:15px;flex-shrink:0}@media only screen and (max-width: 767px){.lk-header__dropdown-item .icon{width:15px;margin-right:5px}}.lk-header__info{display:flex;align-items:center}.lk-header__rate{text-align:center;font-size:11px;margin-right:40px}.lk-header__rate span{font-size:96px;color:#28dfa8;line-height:1;display:block}.lk-header__evaluate{display:flex;align-items:center;justify-content:flex-end;margin-bottom:10px;cursor:pointer;font-weight:bold;font-size:20px}.lk-header__evaluate.like{color:#28dfa8}.lk-header__evaluate.dislike{color:#fc3c6a}.lk-header__evaluate img{width:30px;margin-left:16px}.lk-header__what-is-it{color:#b0c1d6;font-size:11px;border-bottom:1px solid #b0c1d6}.lk-header__what-is-it:hover{border-color:rgba(0,0,0,0)}@media only screen and (max-width: 1200px){.lk-header__name{font-size:22px}.lk-header__code{font-size:14px}.lk-header__avatar{margin-right:25px}}@media only screen and (max-width: 991px){.lk-header__inner{display:block}.lk-header__user{justify-content:center;margin-bottom:30px}.lk-header__info{justify-content:center}}@media only screen and (max-width: 767px){.lk-header__user{flex-direction:column;align-items:center}.lk-header__avatar{margin-right:0;margin-bottom:30px}.lk-header__name{text-align:center}.lk-header__code{text-align:center;font-size:10px}.lk-header__rate span{font-size:80px}}.modal-logo{text-align:left;max-width:872px;width:100%;padding:55px 86px 55px 55px;position:relative}.modal-logo__inner{display:flex;align-items:center}.modal-logo .modal__close{position:absolute;right:45px;top:45px;display:flex;align-items:flex-start;cursor:pointer}.modal-logo__title{font-weight:700;font-size:36px;margin-bottom:40px}.modal-logo__text{font-weight:400;font-size:22px;margin-bottom:50px}.modal-logo__buttons{display:flex;align-items:center}.modal-logo__buttons button{width:192px;margin-right:20px}.modal-logo__buttons button:last-child{margin-right:0}.modal-logo__avatar{width:223px;height:223px;border-radius:50%;flex-shrink:0;margin-left:53px}.modal-logo__avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.modal-add-address{width:1063px;padding-right:37px;padding-left:37px}@media screen and (max-width: 1300px){.modal-add-address{width:100%}}@media screen and (max-width: 1023px){.modal-add-address{padding:20px;width:80vw}}.modal-add-address__title{margin-bottom:36px;font-weight:500;font-size:28px;line-height:1;display:flex}@media screen and (max-width: 1023px){.modal-add-address__title{font-size:24px}}.modal-add-address__fields{display:grid;row-gap:22px}.modal-add-address__fields .field__error{display:flex;position:relative}.modal-add-address__top{display:grid;grid-template-columns:initial;grid-gap:27px}@media screen and (max-width: 1023px){.modal-add-address__top{grid-template-columns:initial}}.modal-add-address__bottom{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:27px}@media screen and (max-width: 1023px){.modal-add-address__bottom{grid-template-columns:repeat(1, 1fr)}}.modal-add-address__buttons{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:12px;max-width:400px;margin:48px auto 0}.modal-add-address__btn{width:100%}.modal-add-address .field__label{margin-bottom:2px;text-align:left}
.address-item{position:relative;width:100%;height:100px;border-radius:10px;background-color:#eff6ff;display:flex;align-items:center;justify-content:space-between;padding:0 27px 0 38px}@media screen and (max-width: 1023px){.address-item{flex-direction:column;height:auto;padding:20px}}.address-item__number{font-weight:500;font-size:20px;line-height:23px;color:#4a4a4a}@media screen and (max-width: 1023px){.address-item__number{width:100%;display:flex;margin-bottom:17px}}.address-item__info{display:flex;flex-direction:column;justify-content:space-between;height:45px}@media screen and (max-width: 1023px){.address-item__info{display:flex;flex-direction:row;align-items:center;width:100%;justify-content:space-between;height:31px}}.address-item__info-title{font-weight:400;font-size:14px;line-height:16px;color:#4a4a4a}.address-item__info-text{font-weight:500;font-size:18px;line-height:21px;color:#0041a2;margin-top:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:150px}@media screen and (max-width: 1023px){.address-item__info-text{position:relative;bottom:5px;width:185px}}.address-item__btn{background-color:#fff;border-radius:50%;width:47px;height:47px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:300ms;position:relative}.address-item__btn .btn-points__small{display:none}@media screen and (max-width: 1023px){.address-item__btn{width:34px;height:34px;position:absolute;top:20px;right:20px}.address-item__btn .btn-points__large{display:none}.address-item__btn .btn-points__small{display:block}}.address-item__btn.active{background-color:#3660cd}.address-item__btn.active svg path{fill:#fff}.address-item__btn:hover{background-color:#3660cd}.address-item__btn:hover svg path{fill:#fff}.address-item__btn svg path{fill:#3660cd}.address-item__modal{padding:14px 0;background-color:#3660cd;position:absolute;z-index:1;width:192px;border-radius:10px;top:80px;right:0;transition:300ms}.address-item__modal-item{cursor:pointer;width:100%;height:42px;display:flex;justify-content:center;align-items:center;text-align:center;font-weight:500;font-size:14px;color:#fff;transition:300ms;border-radius:0;background-color:#3660cd !important;outline:none !important;border:none !important}.address-item__modal-item:hover{background-color:#0041a2 !important;outline:none !important;border:none !important}
.lk-settings{flex-grow:10}.lk-settings__content{display:grid;grid-template-columns:1fr 1fr;grid-gap:30px}@media only screen and (max-width: 991px){.lk-settings__content{grid-template-columns:1fr;grid-gap:30px}}.lk-settings__menu{margin-bottom:50px}.lk-settings__menu li{margin-bottom:20px}.lk-settings__menu li:last-child{margin-bottom:0}.lk-settings__menu li a{background:#eff6ff;display:flex;align-items:center;height:90px;border-radius:10px;color:#3660cd;fill:#3660cd;padding-left:25px}.lk-settings__menu li a:hover,.lk-settings__menu li a.active{color:#fff;fill:#fff;background:#3660cd}.lk-settings__menu li a .icon{width:30px;flex-shrink:0;margin-right:48px}.lk-settings .lk-settings__btn-wrapper{width:100%;display:flex;justify-content:space-between;align-items:center;margin-top:44px}@media screen and (max-width: 991px){.lk-settings .lk-settings__btn-wrapper{margin-top:20px;flex-direction:column;align-items:center}}.lk-settings .lk-settings__btn-wrapper .lk-settings__not-delivery{font-weight:400;font-size:20px;line-height:27px;color:#4a4a4a}@media screen and (max-width: 991px){.lk-settings .lk-settings__btn-wrapper .lk-settings__not-delivery{margin-bottom:44px}}.lk-settings__btn{width:239px;margin-top:43px}@media only screen and (max-width: 1300px){.lk-settings__btn{margin-top:19px}}@media only screen and (max-width: 991px){.lk-settings__btn{height:48px;max-width:334px;width:100%;margin:24px auto 0;text-transform:initial}.lk-settings__btn.btn{font-size:18px}}.lk-settings__label{font-size:24px;margin-bottom:36px;font-weight:700}@media only screen and (max-width: 1475px){.lk-settings__label{font-size:20px}}@media only screen and (max-width: 991px){.lk-settings__label{margin-bottom:20px}}.lk-settings__item{background:#fff;padding:42px 45px 50px;border-radius:15px}.lk-settings__item-addresses{grid-column-start:1;grid-column-end:3}@media screen and (max-width: 1023px){.lk-settings__item-addresses{grid-column-start:initial;grid-column-end:initial}}.lk-settings__item-btn{margin:0}@media only screen and (max-width: 1500px){.lk-settings__item{padding:40px}}.lk-settings__item--interface{padding:56px 40px 56px 48px}@media only screen and (max-width: 1500px){.lk-settings__item--interface{padding:40px}}@media only screen and (max-width: 991px){.lk-settings__item--interface{padding:27px 25px}}@media only screen and (max-width: 1470px){.lk-settings__item--avatar{grid-column:span 2}.lk-settings__item--wallet{grid-column:span 2}}@media only screen and (max-width: 991px){.lk-settings__item{padding:27px 25px}.lk-settings__item--avatar{grid-column:initial}.lk-settings__item--wallet{grid-column:initial}}.lk-settings__mail{display:grid;grid-template-columns:2fr 1fr;grid-gap:30px;align-items:flex-end}@media only screen and (max-width: 1500px){.lk-settings__mail{display:grid;grid-template-columns:1fr;align-items:initial}}.lk-settings__fields{display:grid;grid-template-columns:1fr;grid-gap:35px;max-width:320px;margin-right:40px;width:100%}@media only screen and (max-width: 1475px){.lk-settings__fields{max-width:50%}}@media only screen and (max-width: 991px){.lk-settings__fields{max-width:100%}}.lk-settings__fields .field__label{margin-bottom:5px}.lk-settings__aside{display:flex;align-items:flex-start}@media only screen and (max-width: 991px){.lk-settings__aside{display:block}}.lk-settings__aside .lk-header{display:flex;align-items:flex-start}@media only screen and (max-width: 991px){.lk-settings__aside .lk-header{margin-bottom:0}}.lk-settings__aside .lk-header__avatar{width:140px;height:140px;margin:0 auto;justify-content:center}@media only screen and (max-width: 991px){.lk-settings__aside .lk-header__avatar{width:127px;height:127px;margin-right:25px;flex-shrink:0}}.lk-settings__avatar{max-width:208px;margin:0 auto;margin-top:-50px;text-align:center}@media only screen and (max-width: 1475px){.lk-settings__avatar{max-width:330px}}@media only screen and (max-width: 991px){.lk-settings__avatar{max-width:100%;margin-top:57px;display:flex;align-items:center;text-align:left}}.lk-settings__avatar--title{font-weight:700;font-size:24px;color:#4a4a4a;margin-bottom:17px}@media only screen and (max-width: 991px){.lk-settings__avatar--title{margin-bottom:15px;font-size:20px}}.lk-settings__avatar--text{text-align:left;line-height:21px}@media only screen and (max-width: 1475px){.lk-settings__avatar--text{text-align:center}}@media only screen and (max-width: 991px){.lk-settings__avatar--text{text-align:left;font-size:14px;line-height:16px}}.lk-settings__container{display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width: 991px){.lk-settings__container{align-items:flex-end}}.lk-settings__currencies{margin-right:77px}@media only screen and (max-width: 991px){.lk-settings__currencies{width:100%}}.lk-settings__radios{display:flex}.lk-settings__radio{margin-right:17px;width:78px;height:57px;cursor:pointer}.lk-settings__radio:last-child{margin-right:0}.lk-settings__radio span{width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:5px;color:#fff;font-size:18px;background:#c7d5e5;transition:300ms}.lk-settings__radio input{display:none}.lk-settings__radio input:checked+span{background:#3660cd}.lk-settings__theme{display:flex;align-items:center;margin-top:33px;font-size:18px;cursor:pointer}.lk-settings__theme-label{margin-right:15px}.lk-settings__systems{margin-bottom:50px}.lk-settings__system{display:flex;align-items:center;padding:20px 0;border-bottom:1px solid #c7d5e5}.lk-settings__system:first-child{padding-top:0}.lk-settings__system:last-child{padding-bottom:0;border:none}.lk-settings__system-icon{width:40px;height:40px;flex-shrink:0;margin-right:30px}.lk-settings__system-content{flex-grow:10;font-size:18px;padding-right:10px}.lk-settings__system-content div{margin-bottom:3px}.lk-settings__system-content div:last-child{margin-bottom:0}.lk-settings__system-text{color:#b0c1d6;font-size:16px}.lk-settings__table{width:100%;border-collapse:collapse;margin-bottom:29px}.lk-settings__table th,.lk-settings__table td{padding:0 17px;text-align:left}.lk-settings__table th:last-child,.lk-settings__table td:last-child{width:24px}.lk-settings__table th{height:40px;padding-top:10px;padding-bottom:10px;background:#eff6ff;font-weight:normal;font-size:16px;color:#b0c1d6}.lk-settings__table td{padding-top:20px;padding-bottom:20px;font-size:18px}.lk-settings__table td a{color:#0041a2;text-decoration:underline}.lk-settings__table td a:hover{text-decoration:none}.lk-settings__table td .remove{width:24px;height:24px;background:url(/f252b6bb3ff8c902cafb.svg);cursor:pointer;transition:300ms}.lk-settings__table td .remove:hover{transform:rotate(90deg)}.lk-settings__table tbody tr{border-bottom:1px solid #c7d5e5}.lk-settings__levels{display:grid;grid-template-columns:repeat(4, 1fr);grid-gap:20px}.lk-settings__title{font-size:22px;color:#4a4a4a;margin-bottom:40px}.lk-settings__level{padding:30px 30px;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px}.lk-settings__level-header{display:flex;align-items:center;margin-bottom:20px}.lk-settings__level-header img{width:50px;height:50px;border-radius:50px;margin-right:24px}.lk-settings__level-header span{color:#b0c1d6;font-size:18px}.lk-settings__level-title{height:52px;font-weight:bold;font-size:20px;color:#001c71;margin-bottom:20px;overflow:hidden}.lk-settings__level-text{height:60px;overflow:hidden;color:#000;margin-bottom:20px}.lk-settings__level-status{height:50px;display:flex;align-items:center}.lk-settings__level-status img{margin-right:20px}.lk-settings .lk-settings__level-status--completed{color:#28dfa8;font-weight:500;text-transform:uppercase}.lk-settings__level-completed{background:#28dfa8 url(/c08929553bef8891ade3.svg) no-repeat 50%;background-size:12px;width:30px;height:30px;font-size:0;border-color:#28dfa8;border-radius:50%;margin-right:20px}.lk-settings .lk-settings__level-status--moderation{color:#c37c33;text-transform:uppercase;font-weight:500}.lk-settings .lk-settings__level-status--moderation img{width:30px;height:30px}.lk-settings .lk-settings__level-status--disabled{color:#c7d5e5;text-transform:uppercase;font-weight:500}.lk-settings .lk-settings__level-status--disabled img{width:30px;height:30px}.lk-settings__level-btn{width:200px;max-width:100%}.lk-settings__wallets{margin-bottom:41px}@media only screen and (max-width: 991px){.lk-settings__wallets{margin-bottom:20px}}.lk-settings__wallets.active{height:278px;overflow-y:scroll;padding-right:20px}@media only screen and (max-width: 991px){.lk-settings__wallets.active{height:auto;overflow:initial;padding-right:0}}.lk-settings__wallets.active::-webkit-scrollbar{background:#eff6ff;border-radius:20px;width:9px}.lk-settings__wallets.active::-webkit-scrollbar-thumb{background:#3660cd;border-radius:20px}.lk-settings__wallets-item{display:flex;align-items:center;background:#eff6ff;border-radius:10px;min-height:80px;height:auto;padding:12px 24px;margin-bottom:19px}@media only screen and (max-width: 991px){.lk-settings__wallets-item{min-height:56px;height:auto;padding:10px 15px;margin-bottom:20px}}.lk-settings__wallets-item:last-child{margin-bottom:0}.lk-settings__wallets-icon{width:40px;height:40px;flex-shrink:0;margin-right:35px}@media only screen and (max-width: 991px){.lk-settings__wallets-icon{margin-right:24px;width:30px;height:30px}}.lk-settings__wallets-icon img{width:100%;height:100%;object-fit:contain}.lk-settings__wallets-coin{display:block;filter:drop-shadow(0 1px 2px rgba(120, 80, 10, 0.25))}.lk-settings__wallets-number{color:#0041a2}@media only screen and (max-width: 1600px){.lk-settings__wallets-number{font-size:13px}}@media only screen and (max-width: 991px){.lk-settings__wallets-number{font-size:14px}}.lk-settings__wallets-provider{margin-top:4px;font-size:12px;font-weight:600;letter-spacing:.02em;color:#8a6a20}.lk-settings__wallets-mobile{display:flex;flex-direction:column;min-width:0}.lk-settings__wallets-dots{font-size:14px;color:#3660cd}.lk-settings__add-wallet{width:246px}@media only screen and (max-width: 991px){.lk-settings__add-wallet{width:100%;max-width:332px;margin:0 auto}.lk-settings__add-wallet.btn{font-size:18px;text-transform:inherit}}.lk-settings__reset-wallet{margin-top:12px;width:246px}@media only screen and (max-width: 991px){.lk-settings__reset-wallet{width:100%;max-width:332px;margin:12px auto 0}}.lk-settings__address{display:grid;grid-template-columns:repeat(9, 1fr);grid-gap:30px;width:100%}.lk-settings__address .field{grid-column:2 span}.lk-settings__address .field:nth-child(1n+4){grid-column:1 span}@media only screen and (max-width: 1700px){.lk-settings__address{grid-template-columns:repeat(6, 1fr)}.lk-settings__address .field{grid-column:2 span}.lk-settings__address .field:nth-child(1n+4){grid-column:2 span}}@media only screen and (max-width: 1600px){.lk-settings__levels{grid-template-columns:repeat(4, 1fr)}.lk-settings__level-header img{width:40px}.lk-settings__level-title{height:57px;font-size:16px;margin-bottom:0}.lk-settings__level-text{height:68px;font-size:14px}.lk-settings__level-completed{width:22px;height:22px}.lk-settings .lk-settings__level-status--completed span{font-size:14px}.lk-settings__level-btn{width:180px}.lk-settings .lk-settings__level-status--moderation img{width:22px}.lk-settings .lk-settings__level-status--moderation span{font-size:14px}.lk-settings .lk-settings__level-status--disabled img{width:22px}.lk-settings .lk-settings__level-status--disabled span{font-size:14px}}@media only screen and (max-width: 1550px){.lk-settings__inner{grid-template-columns:313px 1fr}}@media only screen and (max-width: 1500px){.lk-settings__inner{grid-template-columns:313px 1fr}.lk-settings__currencies{margin-right:30px}.lk-settings__table td{font-size:16px}}@media only screen and (max-width: 1430px){.lk-settings .lk-settings__levels{grid-template-columns:repeat(2, 1fr)}.lk-settings__level-header{margin-bottom:10px}.lk-settings__level-title{margin-bottom:0}.lk-settings__level-text{margin-bottom:0}}@media only screen and (max-width: 1200px){.lk-settings__inner{display:block}.lk-settings__sidebar{margin-bottom:40px}.lk-settings .lk-settings__levels{grid-template-columns:repeat(4, 1fr)}.lk-settings__menu{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:20px;margin-bottom:25px}.lk-settings__menu li{margin-bottom:0}.lk-settings__menu li a{height:60px}}@media only screen and (max-width: 991px){.lk-settings .lk-settings__levels{grid-template-columns:repeat(2, 1fr)}.lk-settings__level-text{height:auto;margin-bottom:25px}.lk-settings__level-header{margin-bottom:10px}.lk-settings__level-title{height:auto;margin-bottom:20px}.lk-settings__level-status{height:auto}.lk-settings__radio{width:65px;height:50px;margin-right:10px}.lk-settings__table th,.lk-settings__table td{font-size:14px}}@media only screen and (max-width: 767px){.lk-settings .lk-settings__levels{grid-template-columns:1fr}.lk-settings .lk-settings__levels .lk-settings__level{height:auto}.lk-settings__level-text{height:auto;margin-bottom:25px}.lk-settings__level-header{margin-bottom:10px}.lk-settings__level-title{height:auto;margin-bottom:20px}.lk-settings__level-status{height:auto}.lk-settings__menu{display:block}.lk-settings__menu li{margin-bottom:10px}.lk-settings__menu li a{font-size:14px;height:55px}.lk-settings__menu li a .icon{width:20px}.lk-settings__menu li a .icon svg{width:100%}.lk-settings__exit{font-size:14px}.lk-settings__exit img{width:20px}.lk-settings__fields{grid-template-columns:1fr;grid-gap:20px}.lk-settings__label{font-size:16px}.lk-settings__radio{margin-right:0}.lk-settings__radios{max-width:200px;display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:10px}.lk-settings__system{flex-wrap:wrap;align-items:flex-start}.lk-settings__system-icon{margin-right:15px}.lk-settings__system-content{width:calc(100% - 55px)}.lk-settings__system-btn{margin-top:15px}.lk-settings__table-wrap{overflow-x:auto;width:100vw;min-width:375px;margin-left:-20px}.lk-settings__address{grid-template-columns:repeat(1, 1fr)}.lk-settings__address .field{grid-column:1 span}.lk-settings__address .field:nth-child(1n+4){grid-column:1 span}}.lk-settings__addresses{display:grid;row-gap:20px;max-width:913px}.lk-settings__button{width:217px}@media only screen and (max-width: 991px){.lk-settings__button{width:100%;margin:0 auto}}.lk-settings__values{background:#eff6ff;border-radius:10px;position:relative;display:flex;align-items:center;width:326px;justify-content:space-between;height:48px;padding:0 16px;cursor:pointer}@media only screen and (max-width: 1475px){.lk-settings__values{width:225px}}@media only screen and (max-width: 991px){.lk-settings__values{width:100%}}.lk-settings__values.active{border-radius:10px 10px 0 0}.lk-settings__values.active .lk-settings__values-dropdown{display:block}.lk-settings__values svg{width:14px;height:14px;fill:#3660cd}.lk-settings__values-dropdown{position:absolute;width:100%;background:#eff6ff;top:48px;padding:0 16px 16px;left:0;border-radius:0 0 10px 10px;z-index:3;display:none}.lk-settings__values-dropdown span{display:block;font-size:14px;margin-bottom:15px;cursor:pointer}.lk-settings__values-dropdown span:hover{text-decoration:underline}.lk-settings__values-dropdown span:last-child{margin-bottom:0}.lk-settings__values-name{text-transform:uppercase;font-size:14px;color:#4a4a4a}.lk-settings__icon{background:#3660cd;border-radius:15px;width:96px;height:96px;display:flex;align-items:center;justify-content:center;flex-shrink:0}@media only screen and (max-width: 1475px){.lk-settings__icon{width:65px;height:65px}}@media only screen and (max-width: 991px){.lk-settings__icon{width:48px;height:48px}}.lk-settings__icon svg{width:46px;height:46px;fill:#fff}@media only screen and (max-width: 1475px){.lk-settings__icon svg{width:30px;height:30px}}@media only screen and (max-width: 991px){.lk-settings__icon svg{width:21px;height:21px}}

.currency-select .field__input{position:relative}.currency-select .field__input--with-value input{padding-left:45px;transition:0ms}.currency-select .field__input .icon{position:absolute;left:15px;top:50%;transform:translateY(-50%);fill:#001c71;width:22px}
.file-input{fill:#28dfa8;max-width:100%;border-radius:10px;cursor:pointer;font-size:18px;transition:300ms}.file-input--base{padding:30px 10px;background:rgba(239,246,255,.3);border:1px dashed rgba(176,193,214,.3);border-radius:10px;display:block}@media only screen and (max-width: 991px){.file-input--base{padding:30px 28px}}.file-input__list{display:flex;flex-wrap:wrap;gap:13px}.file-input__item{width:100px;height:100px;position:relative}.file-input__item img,.file-input__item video{width:100%;height:100%;object-fit:cover;border-radius:10px}.file-input__item .icon-remove{position:absolute;top:10px;right:10px;width:16px;height:16px;fill:#000;cursor:pointer}.file-input__buttons{flex-shrink:0;opacity:0;visibility:hidden;transition:300ms}.file-input__buttons .icon-remove{width:24px}.file-input__name{flex-grow:10;font-size:18px}@media only screen and (max-width: 767px){.file-input__name{font-size:14px}}.file-input>svg{margin-right:35px;flex-shrink:0;width:27px}.file-input input{display:none}@media only screen and (max-width: 767px){.file-input{font-size:14px}}.file-input__preview{width:100%;height:84px;position:relative;padding-left:10px;display:flex;align-items:flex-start}.file-input__preview img{max-height:100%}.file-input__preview video{height:100%}.file-input__preview-close{position:absolute;width:24px;right:0;top:0}.file-input__more{width:100px;height:100px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:300ms;background:rgba(239,246,255,.3);border:1px dashed rgba(176,193,214,.3);border-radius:10px}.file-input__more .icon{width:29px;fill:#28dfa8}
.create-advert{max-width:1230px;margin:0 auto;padding-bottom:45px}.create-advert__container{background:#fff;border-radius:10px;padding:45px}@media only screen and (max-width: 767px){.create-advert__container{padding:30px}}.create-advert__photo{margin-bottom:35px}.create-advert__photo .field__label{margin-bottom:19px}.create-advert__item{margin-bottom:35px}@media only screen and (max-width: 767px){.create-advert__item{margin-bottom:30px}}.create-advert .tax{margin-bottom:0;background:none;width:auto;padding-left:0}@media only screen and (max-width: 991px){.create-advert .tax{padding:0;width:100%;margin-bottom:51px;margin-top:30px;height:auto}}.create-advert .tax__label{margin-right:20px}@media only screen and (max-width: 767px){.create-advert .tax__label{margin-right:5px}}.create-advert__title{font-weight:700;font-size:36px;margin-bottom:27px}@media only screen and (max-width: 767px){.create-advert__title{font-size:24px}}.create-advert__description{font-size:22px;margin-bottom:53px}@media only screen and (max-width: 767px){.create-advert__description{font-size:18px;margin-bottom:27px}}.create-advert__toolbar{min-height:275px}@media only screen and (max-width: 767px){.create-advert__toolbar{margin-bottom:10px}}.create-advert__toolbar .field__label{margin-bottom:2px}.create-advert__assets{overflow:scroll;margin:0 -20px;padding:0 20px;margin-bottom:30px}.create-advert__assets::-webkit-scrollbar{display:none}.create-advert__assets-header{font-size:22px;margin-bottom:20px}.create-advert__assets-items{display:flex;align-items:center}.create-advert__assets-items--currencies{grid-template-columns:repeat(auto-fit, minmax(auto, 442px));grid-template-rows:minmax(100px, auto);grid-auto-rows:minmax(100px, auto)}.create-advert .add-erc20 img{margin-right:35px}.create-advert__assets-item{position:relative;margin-right:15px;flex-shrink:0}.create-advert__assets-item:last-child{margin-right:0}.create-advert__subtitle{font-size:18px;margin-bottom:30px}.create-advert .lk-balances__item{height:92px;padding:19px 22px}.create-advert .lk-balances__icon{width:45px;height:45px}.create-advert .lk-balances__price{margin-bottom:0}.create-advert .lk-balances__abbr{line-height:24px;margin-bottom:0}.create-advert .lk-balances__aside{margin-right:10px}.create-advert .asset-card{height:100%;box-shadow:none;padding:20px;padding-bottom:10px;position:relative;width:209px;height:209px}.create-advert .asset-card__link{font-weight:400}.create-advert .asset-card__img{width:117px;height:117px;border-radius:50%;margin-bottom:17px}.create-advert .asset-card__img img{width:100%;height:100%;border-radius:50%;object-fit:cover;aspect-ratio:1}.create-advert .asset-card__content{padding:0}.create-advert .asset-card__name{max-width:100%;font-size:14px;white-space:inherit;padding-right:0;height:34px;overflow:hidden;display:inline-grid;align-items:center}.create-advert .asset-card__price{display:none}.create-advert .asset-card__footer{padding:0;position:absolute;right:20px;top:20px;background:none}.create-advert .asset-card__chain span{display:none}.create-advert .asset-card__chain svg{fill:#0041a2;margin-right:0;width:24px;height:24px}.create-advert .products__currency{width:28px;height:28px;font-size:18px;background-size:cover}.create-advert .products__name{margin-bottom:7px}.create-advert .products__img{position:relative;width:206px;height:130px;object-fit:cover;margin-bottom:9px}.create-advert .products__img img{width:100%;height:100%;flex-shrink:0}.create-advert .products__icon{position:absolute;background:url(/89c04576f71e988b49ef.svg);top:10px;left:10px;width:25px;height:25px}.create-advert__assets-form{position:relative;display:flex;align-items:center;justify-content:center;text-align:center;font-weight:500;font-size:14px;color:#b0c1d6;padding:0 19px;background:#cfe2fb;border-radius:10px;text-transform:uppercase;height:209px;width:206px}.create-advert__assets-form:hover .create-advert__assets-hover{opacity:1;visibility:visible;cursor:pointer}.create-advert__assets-hover{display:flex;align-items:center;justify-content:center;position:absolute;left:0;right:0;bottom:0;top:0;background:#3660cd;opacity:0;visibility:hidden;transition:300ms;border-radius:10px}.create-advert__assets-buttons .btn{margin-bottom:15px}.create-advert__assets-buttons .btn:last-child{margin-bottom:0}.create-advert__assets-buttons .btn:hover{border:#c37c33;background:#c37c33}.create-advert__assets-another{display:flex;align-items:center;justify-content:space-between;border-radius:10px;background-color:#fff;cursor:pointer;height:92px;padding:20px;flex-shrink:0;margin-right:20px;max-width:313px;width:100%}.create-advert__assets-another span{font-size:16px}.create-advert__assets-another svg{flex-shrink:0;width:27px;height:27px;margin-right:36px;fill:#28dfa8}.create-advert__wrapper{display:grid;grid-template-columns:2fr 1fr;grid-gap:0 35px;align-items:flex-start;margin-bottom:35px}.create-advert__header{font-size:22px;margin-bottom:38px}.create-advert__grid{display:grid;grid-template-columns:1fr 1fr;grid-gap:26px}@media only screen and (max-width: 767px){.create-advert__grid{grid-template-columns:1fr;grid-gap:0}}.create-advert__delivery-wrapper{display:flex;align-items:flex-start}@media only screen and (max-width: 991px){.create-advert__delivery-wrapper{display:block}}.create-advert__delivery-wrapper .select-wrapper{flex-grow:10}.create-advert__delivery-wrapper .checkbox{width:151px;margin-left:24px;flex-shrink:0;display:flex;align-items:center;margin-top:27px}@media only screen and (max-width: 991px){.create-advert__delivery-wrapper .checkbox{margin-left:0;width:100%;margin-top:10px}}.create-advert__delivery-wrapper .checkbox__text{color:#0041a2;font-size:12px}.create-advert__currency-select{margin-right:16px;width:37%;flex-shrink:0}@media only screen and (max-width: 991px){.create-advert__currency-select{width:100%}}.create-advert__cost-wrapper{display:flex;align-items:flex-end}@media only screen and (max-width: 991px){.create-advert__cost-wrapper{display:grid;grid-template-columns:1fr;grid-gap:20px}}.create-advert__cost-wrapper .field{flex-grow:10}.create-advert__private{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:25px}.create-advert__footer{display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width: 991px){.create-advert__footer{display:block}}.create-advert__fields{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:26px 35px}@media only screen and (max-width: 1400px){.create-advert__fields{margin-bottom:35px}}.create-advert .field--description input{height:136px}.create-advert .field__input textarea{height:136px;font-size:14px}.create-advert__bargain-header{font-size:12px;color:#0041a2;margin-bottom:9px}.create-advert__bargain-radios{display:flex}@media only screen and (max-width: 767px){.create-advert__bargain-radios{display:grid;grid-template-columns:1fr 1fr;grid-gap:14px}}.create-advert__bargain-radio{margin:0 19px 0 0;cursor:pointer}@media only screen and (max-width: 767px){.create-advert__bargain-radio{margin:0}}.create-advert__bargain-radio input{display:none}.create-advert__bargain-radio input:checked+span{fill:#fff}.create-advert__bargain-radio span{width:152px;height:48px;display:flex;align-items:center;justify-content:center;background:#c7d5e5;color:#fff;border-radius:5px;border-radius:10px;font-size:18px;font-weight:500}@media only screen and (max-width: 767px){.create-advert__bargain-radio span{font-size:16px;width:100%}}.create-advert .checkbox{margin-right:0;margin-bottom:16px}.create-advert .checkbox:last-child{margin-bottom:0}.create-advert__field-payment{margin-top:33px}.create-advert .rate__private-toggler{margin-bottom:0}.create-advert .rate__toggler-label span{color:#b0c1d6;font-size:16px}@media only screen and (max-width: 991px){.create-advert .rate__toggler-label span{font-size:12px}}.create-advert .rate__toggler-text{font-size:18px;margin-bottom:6px}@media only screen and (max-width: 991px){.create-advert .rate__toggler-text{font-size:16px}}.create-advert__reward{margin-bottom:19px}.create-advert__reward .field__input{width:calc(50% - 17px)}.create-advert__label{font-size:18px;margin-bottom:11px}.create-advert__reward-text{max-width:1019px;width:100%;font-size:16px;color:#b0c1d6;margin-bottom:19px}.create-advert__category-radios{display:flex;flex-wrap:wrap}.create-advert__category-radio{margin:0 26px 11px 0;width:60px;height:60px;cursor:pointer}.create-advert__category-radio input{display:none}.create-advert__category-radio input:checked+span{border:1px solid #c37c33}.create-advert__category-radio span{width:100%;height:100%;background:#eff6ff;border-radius:5px;display:flex;align-items:center;justify-content:center;fill:#0041a2;transition:300ms;border:1px solid rgba(0,0,0,0)}.create-advert__category-radio span svg{max-width:65%;max-height:65%}.create-advert__category-radio--brown span{background:#edd8c2;fill:#c37c33}.create-advert .incoming__currency-header{margin-bottom:8px}.create-advert .incoming__surcharge-currency{margin-bottom:48px}.create-advert .incoming__surcharge-currency--gup{margin-bottom:77px}.create-advert .incoming__surcharge-radios{flex-wrap:wrap}.create-advert .incoming__surcharge-radio{margin:0 26px 11px 0}.create-advert .incoming__surcharge-radio input:checked+span{fill:#c37c33;background:#eff6ff;border:1px solid #c37c33}.create-advert .lk-advertiser__currency-item.brown input:checked+span{fill:#fff;background:#c37c33}.create-advert .create-advert__bargain-radio--green input:checked+span{fill:#fff;background:#28dfa8}.create-advert .create-advert__bargain-radio--orange input:checked+span{fill:#fff;background:#ff8311}.create-advert .create-advert__bargain-radio--blue input:checked+span{fill:#fff;background:#118dff}.create-advert .tokenization__info{margin-top:-20px;margin-bottom:30px;align-items:flex-end}.create-advert__types{display:flex;align-items:center}.create-advert__type{width:141px;background:#c7d5e5;border-radius:5px;text-align:center;color:#fff;text-transform:uppercase;cursor:pointer;height:44px;display:flex;align-items:center;justify-content:center;margin-right:33px}.create-advert__type input{display:none}.create-advert__term-radios{display:flex;margin-bottom:27px}.create-advert__term-radio{margin:0 33px 0 0;cursor:pointer}.create-advert__term-radio input{display:none}.create-advert__term-radio input:checked+span{fill:#fff;background:#3660cd}.create-advert__term-radio span{width:141px;height:44px;display:flex;align-items:center;justify-content:center;background:#c7d5e5;color:#fff;border-radius:5px}.create-advert .currency{display:flex}.create-advert .currency .lk-balances__item{margin-right:30px;height:100px;width:442px}.create-advert .currency .file-input{height:100px}.create-advert .dropdown__current-img{margin-right:13px}.create-advert__reward-title{font-size:18px;margin-bottom:11px}.create-advert__buttons{display:flex;align-items:center}@media only screen and (max-width: 767px){.create-advert__buttons{flex-direction:column-reverse}}.create-advert__buttons .btn{margin-right:35px;font-size:14px}@media only screen and (max-width: 767px){.create-advert__buttons .btn{margin-right:0;width:100%}}.create-advert__buttons .btn:last-child{margin-right:0;width:231px}@media only screen and (max-width: 767px){.create-advert__buttons .btn:last-child{width:100%}}.create-advert__buttons .btn-primary{width:231px}@media only screen and (max-width: 767px){.create-advert__buttons .btn-primary{width:100%;margin-bottom:20px}}.create-advert .crypto-barter__currency-form{margin-bottom:30px}.create-advert .products__item{display:flex;flex-direction:column}.create-advert .products__item .btn{margin-bottom:10px;cursor:pointer}.create-advert .products__item .btn:last-child{margin-bottom:0}.create-advert .products__item .btn:hover{border:#c37c33;background:#c37c33}@media only screen and (max-width: 1400px){.create-advert__wrapper{grid-template-columns:1fr}.create-advert .tokenization__info{margin-bottom:20px}.create-advert__category{margin-bottom:0}.create-advert .incoming__surcharge-currency{margin-bottom:30px}}@media only screen and (max-width: 991px){.create-advert__deal-togglers{grid-template-columns:1fr}.create-advert__deal-togglers .field{margin-bottom:20px}.create-advert__reward .field__input{width:100%}.create-advert .rate__private-toggler{margin-bottom:15px}.create-advert .rate__private-toggler:last-child{margin-bottom:0}}@media only screen and (max-width: 767px){.create-advert__wrapper{margin-bottom:25px}.create-advert__bargain-radios{flex-wrap:wrap}.create-advert__bargain-radio{margin-right:20px}}@media only screen and (max-width: 767px)and (max-width: 767px){.create-advert__bargain-radio{margin-right:0}}@media only screen and (max-width: 767px){.create-advert__bargain-radio:last-child{margin-bottom:0;margin-right:0}.create-advert .rate__toggler-label{margin-bottom:10px}.create-advert .rate__toggler-percent{order:1;margin-right:0;margin-left:20px}.create-advert__term-radios{flex-wrap:wrap}.create-advert__term-radio{margin:0 20px 20px 0}.create-advert__term-radio:last-child{margin-bottom:0}.create-advert__fields{grid-template-columns:1fr}.create-advert__category-radios{display:grid;grid-template-columns:repeat(5, 1fr);grid-gap:10px;max-width:340px}.create-advert__category-radio{margin:0;width:55px;height:55px}.create-advert .incoming__surcharge-radio{margin:0 20px 11px 0}.create-advert__types{flex-wrap:wrap}.create-advert__type{margin-right:26px;margin-bottom:30px}.create-advert__type:last-child{margin-bottom:0}}.create-advert__approving{margin:16px 0 24px;padding:16px;background:#f8fafc;border-radius:8px}.create-advert__approving-text{margin-top:10px;font-size:14px;color:#475467}.create-advert__skeleton{height:12px;border-radius:6px;background:linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);background-size:200% 100%;animation:createAdvertSkeleton 1.2s ease-in-out infinite;margin-bottom:8px}.create-advert__skeleton--line{width:100%}.create-advert__skeleton--short{width:55%}@keyframes createAdvertSkeleton{0%{background-position:200% 0}100%{background-position:-200% 0}}
.barter-category{position:relative}.barter-category__dropdown{position:absolute;left:0;right:0;top:73px;background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:5px;padding:15px;opacity:0;visibility:hidden;transition:300ms;z-index:100}.barter-category__dropdown--open{opacity:1;visibility:visible}.barter-category__dropdown-item{font-size:14px;margin-bottom:10px;cursor:pointer;transition:300ms;position:relative;display:flex;align-items:center}.barter-category__dropdown-item .icon{fill:#001c71;width:22px;margin-right:10px;flex-shrink:0}.barter-category__dropdown-item:hover{color:#3660cd}.barter-category__dropdown-item:last-child{margin-bottom:0}.barter-category__dropdown-item:after{content:"";display:block;width:15px;height:12px;background:url(/0595a86fbc0acfb07964.svg) no-repeat;position:absolute;right:29px;top:50%;transform:translateY(-50%);opacity:0;visibility:hidden;transition:300ms}.barter-category__dropdown-item--active{color:#3660cd}.barter-category__dropdown-item--active:after{opacity:1;visibility:visible}.barter-category__list{display:flex;flex-wrap:wrap;gap:15px;margin-top:10px}.barter-category__list-item{height:26px;display:flex;align-items:center;padding:0 10px;background:#3660cd;color:#fff;font-size:14px;border-radius:5px}.barter-category__list-item--digital{background:#001c71}.barter-category__list .icon{width:17px;height:17px;fill:#fff}.barter-category__list-remove{width:20px;height:20px;background:url(/78a72af7d8a3a3307d9f.svg) no-repeat 50%;cursor:pointer;margin-left:8px}.barter-category__list-text{margin-left:8px}
.sale-card{cursor:pointer;margin-right:1px;display:flex;width:100%;height:180px;align-items:center;border:1px solid #cfe2fb;border-radius:10px;padding-left:30px;padding-right:10px}@media screen and (max-width: 991px){.sale-card{height:125px}}.sale-card__info{margin-left:34px}.sale-card__logo img{width:120px;height:120px;border-radius:50%;object-fit:cover}@media screen and (max-width: 991px){.sale-card__logo img{width:60px;height:60px}}.sale-card__login{color:#001c71;font-weight:500;font-size:22px;line-height:26px}@media screen and (max-width: 991px){.sale-card__login{font-size:16px}}.sale-card__advertsCount{margin-top:11px;display:flex;align-items:center}.sale-card__advertsCount--adaptive{display:none}@media screen and (max-width: 991px){.sale-card__advertsCount--adaptive{display:flex;align-items:center;margin-top:3px}}.sale-card__advertsCount-name{margin-right:15px;font-weight:500;font-size:14px;line-height:16px;color:#4a4a4a}@media screen and (max-width: 991px){.sale-card__advertsCount-name{font-size:12px;margin-right:5px}}.sale-card__advertsCount-count{margin-right:6px;font-weight:500;font-size:20px;line-height:23px;color:#4a4a4a}@media screen and (max-width: 991px){.sale-card__advertsCount-count{font-size:16px}}.sale-card__advertsCount-symbol{font-weight:500;font-size:20px;line-height:23px;color:#28dfa8}@media screen and (max-width: 991px){.sale-card__advertsCount{display:none}}.sale-card__type{margin-top:14px;font-weight:400;font-size:13px;line-height:15px;color:#fff;background-color:#3660cd;padding:7px 27px;text-align:center}@media screen and (max-width: 991px){.sale-card__type{margin-top:5px;font-size:12px;padding:6px 14px}}
.products-sale{margin-top:40px}@media only screen and (max-width: 991px){.products-sale{margin-top:20px}.products-sale .swiper-slide{width:250px}}@media only screen and (max-width: 991px){.products-sale .swiper{padding-right:30%}}.products-sale__inner{position:relative;padding-bottom:50px;border-bottom:1px solid #cfe2fb}@media only screen and (max-width: 991px){.products-sale__inner{padding-bottom:30px}}.products-sale__title{margin-bottom:30px}.products-sale__prev,.products-sale__next{display:flex;align-items:center;width:40px;height:40px;justify-content:center;background:#0041a2;border-radius:50%;position:absolute;top:150px;z-index:10;transform:translateY(-50%);left:-20px;transition:300ms;cursor:pointer}@media screen and (max-width: 991px){.products-sale__prev,.products-sale__next{display:none}}.products-sale__prev:hover,.products-sale__next:hover{background:#fff}.products-sale__prev:hover svg,.products-sale__next:hover svg{fill:#0041a2}.products-sale__prev svg,.products-sale__next svg{width:16px;height:16px;fill:#fff;transition:300ms}.products-sale__next{transform:rotate(180deg) translateY(50%);left:auto;right:-20px}.products-sale .swiper-button-disabled{display:none}
.home_banners .slick-list{border-radius:15px}.home_banners .banner_item{cursor:pointer}.home_banners .banner_item .banner_img{width:600px;height:auto}.home_banners .slick-list{margin:0 -15px}.home_banners .slick-list .slick-slide>div{padding:0 15px}.home_banners .slick-dots{bottom:-30px}.home_banners .slick-dots li button:before{font-size:17px;line-height:17px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:1;color:#cfe2fb;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.home_banners .slick-dots .slick-active button:before{font-size:17px;line-height:17px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:1;color:#3660cd;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.home_hot-deals{margin-top:78px}@media screen and (max-width: 991px){.home_hot-deals{margin-top:60px}}.home_hot-deals .home_hot-inner{padding-bottom:48px;border-bottom:1px solid #cfe2fb}@media screen and (max-width: 991px){.home_hot-deals .home_hot-inner{padding-bottom:30px}}
.home-header{margin-bottom:30px;font-weight:500;font-size:28px;line-height:27px;display:flex;align-items:center;color:#4a4a4a}@media screen and (max-width: 991px){.home-header{margin-bottom:20px;font-size:22px}}.home-items{display:grid;grid-template-columns:repeat(6, minmax(0, 1fr));gap:28px 20px;width:100%}@media screen and (max-width: 1600px){.home-items{grid-template-columns:repeat(5, minmax(0, 1fr))}}@media screen and (max-width: 1400px){.home-items{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media screen and (max-width: 1200px){.home-items{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media screen and (max-width: 991px){.home-items{grid-template-columns:repeat(2, minmax(0, 1fr));gap:16px 12px}}@media screen and (max-width: 575px){.home-items{grid-template-columns:1fr;gap:12px}}.home-items>.not-found{grid-column:1/-1;width:100%}.home-item{min-width:0;width:100%}.home-item .advert-item,.home-item .advert-item.hide{width:100%;max-width:none;height:auto}
.home_digital{margin-top:40px}@media screen and (max-width: 991px){.home_digital{margin-top:30px}}.home_digital-inner{padding-bottom:40px;border-bottom:1px solid #cfe2fb}@media screen and (max-width: 991px){.home_digital-inner{padding-bottom:30px}}.home_digital-search{display:flex;align-items:center}.home_digital-search form{display:flex}.home_digital-search form .select-wrapper{width:328px;margin-right:10px}.home_digital-search form .select-wrapper:last-child{margin-right:0}@media screen and (max-width: 1600px){.home_digital-search form .select-wrapper{width:190px;margin-right:6px}}@media screen and (max-width: 1024px){.home_digital-search form{width:372px;flex-wrap:wrap}.home_digital-search form .select-wrapper{width:180px;margin-right:6px}.home_digital-search form .select-wrapper .select__value-container{justify-content:center}.home_digital-search form .select-wrapper .select__control--menu-is-open{border-bottom:1px solid #3660cd !important}.home_digital-search form .select-wrapper .select__single-value{font-weight:400;font-size:12px;line-height:14px;color:#3660cd}.home_digital-search form .select-wrapper .select__control{border-radius:0;background-color:rgba(0,0,0,0);border-bottom:1px solid #3660cd}}.home_digital-all{margin-left:65px;cursor:pointer;padding:5px 0;display:flex;font-size:14px;line-height:16px;text-decoration-line:underline;color:#0041a2;align-items:center}@media screen and (max-width: 1600px){.home_digital-all{margin-left:24px}}@media screen and (max-width: 1024px){.home_digital-all{display:none}}.home_digital-all span{white-space:nowrap;margin-right:12px}.home_digital-all--adaptive{display:none;margin-left:0;justify-content:center}.home_digital-all--adaptive span{margin-left:0}@media screen and (max-width: 1024px){.home_digital-all--adaptive{display:flex;margin-top:30px}}.home_digital .home-items{margin-top:30px;width:100%}@media screen and (max-width: 767px){.home_digital .home_digital-search{flex-direction:column;align-items:stretch}.home_digital .home_digital-search form{width:100%;display:grid;grid-template-columns:1fr 1fr;gap:8px}.home_digital .home_digital-search form .select-wrapper{width:100% !important;margin-right:0 !important}}@media screen and (max-width: 575px){.home_digital .home_digital-search form{grid-template-columns:1fr}}
.home__reals{margin-bottom:87px}@media only screen and (max-width: 991px){.home__reals{margin-bottom:30px}}.home__reals .home_digital-inner{padding-bottom:0;border-bottom:none}
.auth-wallet-bot{margin-top:28px;display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center}.auth-wallet-bot__divider{display:flex;align-items:center;gap:12px;width:100%;color:#94a3b8;font-size:12px;text-transform:uppercase;letter-spacing:.08em}.auth-wallet-bot__divider::before,.auth-wallet-bot__divider::after{content:"";flex:1;height:1px;background:#e2e8f0}.auth-wallet-bot__cta{position:relative;overflow:hidden;isolation:isolate;display:inline-flex;align-items:center;justify-content:center;gap:10px;width:100%;max-width:360px;min-height:50px;padding:10px 18px;border-radius:12px;border:1px solid #c9a24a;background:linear-gradient(180deg, #f8e4a0 0%, #e6c05a 48%, #d4a93a 100%);box-shadow:inset 0 1px 0 rgba(255,255,255,.55),0 6px 16px rgba(180,130,30,.22);color:#5a3a08 !important;font-size:15px;font-weight:700;line-height:1.25;text-decoration:none !important;transition:filter .15s ease,box-shadow .15s ease,transform .15s ease;animation:auth-wallet-bot-glow 3.2s ease-in-out infinite}.auth-wallet-bot__cta:hover{filter:brightness(1.04);box-shadow:inset 0 1px 0 rgba(255,255,255,.6),0 8px 22px rgba(180,130,30,.34);transform:translateY(-1px)}.auth-wallet-bot__cta:active{transform:translateY(0);filter:brightness(0.98)}@media screen and (max-width: 767px){.auth-wallet-bot__cta{max-width:none;font-size:14px;min-height:48px;padding:10px 14px;gap:8px}}.auth-wallet-bot__label{position:relative;z-index:2}.auth-wallet-bot__coin{position:relative;z-index:2;width:28px;height:28px;flex-shrink:0;object-fit:contain;filter:drop-shadow(0 1px 1px rgba(90, 58, 8, 0.25));animation:auth-wallet-bot-coin 4s ease-in-out infinite}@media screen and (max-width: 767px){.auth-wallet-bot__coin{width:26px;height:26px}}.auth-wallet-bot__shimmer{position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 248, 210, 0.35) 52%, transparent 65%);transform:translateX(-120%);animation:auth-wallet-bot-shimmer 3.6s ease-in-out infinite}.auth-wallet-bot__sparkles{position:absolute;inset:0;z-index:1;pointer-events:none;overflow:hidden;border-radius:inherit}.auth-wallet-bot__sparkles::before,.auth-wallet-bot__sparkles::after{content:"";position:absolute;width:3px;height:3px;border-radius:50%;background:#fff8dc;box-shadow:18px 12px 0 0 rgba(255,250,220,.95),48px 28px 0 .5px rgba(255,236,170,.85),92px 8px 0 0 rgba(255,255,255,.9),140px 22px 0 1px rgba(255,244,190,.75),210px 14px 0 0 rgba(255,250,220,.9),260px 30px 0 .5px rgba(255,230,150,.8),310px 10px 0 0 rgba(255,255,255,.85),70px 34px 0 0 rgba(255,248,210,.7),175px 36px 0 .5px rgba(255,255,255,.8),235px 6px 0 0 rgba(255,236,170,.75);opacity:0;animation:auth-wallet-bot-dust-a 2.8s ease-in-out infinite}.auth-wallet-bot__sparkles::after{width:2px;height:2px;box-shadow:30px 20px 0 0 rgba(255,255,255,.95),78px 6px 0 .5px rgba(255,244,190,.8),120px 32px 0 0 rgba(255,250,220,.85),168px 12px 0 0 rgba(255,255,255,.75),198px 28px 0 .5px rgba(255,230,150,.85),248px 16px 0 0 rgba(255,248,210,.8),290px 34px 0 0 rgba(255,255,255,.7),55px 4px 0 0 rgba(255,236,170,.75),155px 2px 0 .5px rgba(255,250,220,.85),330px 20px 0 0 rgba(255,255,255,.8);animation:auth-wallet-bot-dust-b 3.4s ease-in-out infinite .6s}.auth-wallet-bot__hint{margin:0;max-width:38ch;color:#64748b;font-size:13px;line-height:1.5}@media screen and (max-width: 767px){.auth-wallet-bot__hint{max-width:none;font-size:12px}}@keyframes auth-wallet-bot-glow{0%,100%{box-shadow:inset 0 1px 0 rgba(255,255,255,.55),0 6px 16px rgba(180,130,30,.22),0 0 0 0 rgba(255,214,110,0)}50%{box-shadow:inset 0 1px 0 rgba(255,255,255,.6),0 8px 20px rgba(180,130,30,.28),0 0 18px 2px rgba(255,214,110,.35)}}@keyframes auth-wallet-bot-shimmer{0%,55%{transform:translateX(-120%)}85%,100%{transform:translateX(120%)}}@keyframes auth-wallet-bot-dust-a{0%,100%{opacity:0;transform:translate3d(0, 6px, 0) scale(0.7)}20%{opacity:1}55%{opacity:.85;transform:translate3d(8px, -10px, 0) scale(1)}80%{opacity:0;transform:translate3d(14px, -18px, 0) scale(0.5)}}@keyframes auth-wallet-bot-dust-b{0%,100%{opacity:0;transform:translate3d(0, 4px, 0) scale(0.6)}25%{opacity:.95}60%{opacity:.7;transform:translate3d(-6px, -12px, 0) scale(1.05)}85%{opacity:0;transform:translate3d(-10px, -20px, 0) scale(0.45)}}@keyframes auth-wallet-bot-coin{0%,100%{transform:rotate(-4deg) scale(1)}50%{transform:rotate(4deg) scale(1.06)}}@media(prefers-reduced-motion: reduce){.auth-wallet-bot__cta,.auth-wallet-bot__coin,.auth-wallet-bot__shimmer,.auth-wallet-bot__sparkles::before,.auth-wallet-bot__sparkles::after{animation:none !important}.auth-wallet-bot__shimmer,.auth-wallet-bot__sparkles{display:none}}
.auth{width:600px;max-width:100%;min-height:720px;margin:0 auto;padding:75px 0 70px}@media only screen and (max-width: 767px){.auth{min-height:auto;padding:40px 0 48px}}.auth__form{width:442px;max-width:100%;margin:0 auto}.auth__title{font-size:28px;font-weight:500;text-align:center;margin-bottom:30px}.auth__inner{padding:40px;border-radius:10px;background:#fff}@media only screen and (max-width: 767px){.auth__inner{padding:40px 20px}}.auth__nav{display:flex;border-bottom:1px solid #c7d5e5;margin-bottom:34px}.auth__nav a{width:50%;padding-bottom:25px;text-align:center;font-size:22px;color:#b0c1d6;position:relative}.auth__nav a:after{content:"";background:#3660cd;border-radius:20px;height:5px;left:0;right:0;bottom:-3px;position:absolute;display:block;opacity:0;visibility:hidden;transition:300ms}.auth__nav a.active{color:#0041a2}.auth__nav a.active:after{opacity:1;visibility:visible}.auth__social{display:flex;align-items:center;justify-content:space-between;margin-bottom:34px}.auth__social-label{font-size:18px}.auth__social-links{display:flex}.auth__social-links a{margin-right:18px}.auth__social-links a:last-child{margin-right:0}.auth .field{margin-bottom:26px}.auth__buttons{display:flex;align-items:center;justify-content:space-between;margin-top:36px}.auth__buttons .btn{width:204px;margin-right:20px}.auth__buttons .btn:last-child{margin-right:0}.auth__buttons .btn:only-child{margin:0 auto}.auth__legal{display:flex;flex-direction:column;gap:12px;margin:8px 0 18px}.auth__legal .checkbox{display:flex;align-items:flex-start;line-height:1.4}.auth__legal .checkbox__inner{flex-shrink:0;margin-top:2px}.auth__legal .checkbox__text{font-size:13px;color:#4a4a4a;white-space:normal;max-width:100%}.auth__legal-link{color:#3660cd;text-decoration:underline;text-underline-offset:2px}.auth__legal-link:hover{text-decoration:none}.auth__confirm{width:253px;margin:0 auto}.auth__btn--center{margin:0 auto}.auth__alt{margin-top:20px;text-align:center}.auth__alt a{color:#2563eb;font-weight:600}
.recover{padding:160px 0}@media only screen and (max-width: 767px){.recover{padding:30px 0 80px}}.recover__inner{display:flex;align-items:center;width:1230px;max-width:100%;margin:0 auto;padding:40px;padding-left:86px;background:#fff;border-radius:10px}.recover__inner--password{padding-left:40px}@media only screen and (max-width: 991px){.recover__inner--password{align-items:center}}@media only screen and (max-width: 1200px){.recover__inner{padding-left:40px}}@media only screen and (max-width: 767px){.recover__inner{padding:40px 20px}}.recover__image{flex-shrink:0;margin-right:140px;display:flex;align-items:flex-start}@media only screen and (max-width: 1200px){.recover__image{margin-right:30px;height:300px}}@media only screen and (max-width: 767px){.recover__image{margin:0 auto 45px;display:flex;align-items:center;justify-content:center;height:auto}}.recover__image--password{margin-right:70px}@media only screen and (max-width: 991px){.recover__image--password{margin-right:30px;height:200px}}.recover__title{font-size:28px;font-weight:500;margin-bottom:24px}@media only screen and (max-width: 767px){.recover__title{font-size:24px;margin-bottom:30px}}.recover__description{margin-bottom:53px}@media only screen and (max-width: 767px){.recover__description{font-size:14px;margin-bottom:27px}}.recover__description span{color:#3660cd}.recover__buttons{margin-top:45px;display:grid;grid-template-columns:1fr 1fr;grid-gap:28px}@media only screen and (max-width: 767px){.recover__buttons{display:flex;flex-direction:column-reverse;width:207px;grid-gap:16px;margin:37px auto 0}}.recover__buttons .btn{width:100%}.recover__notification{font-size:14px;margin-top:10px}.recover__form{flex-grow:10;max-width:442px}@media only screen and (max-width: 767px){.recover__form{max-width:100%}}.recover__input{margin-bottom:20px}.recover__code input{transition:border-color 300ms}.recover__code input:placeholder-shown{padding-top:6px}

.radio-place{height:38px !important;display:block}.radio-place--error .radio-place__box{border:1px solid #fc3c6a}.radio-place__input{display:none}.radio-place__input:checked~.radio-place__box{background-color:#3660cd}.radio-place__input--barter:checked~.radio-place__box{background-color:#28dfa8}.radio-place__input--auction:checked~.radio-place__box{background-color:#118dff}.radio-place__input--sell:checked~.radio-place__box{background-color:#ff8311}.radio-place__box{position:relative;display:flex;align-items:center;justify-content:center;width:100%;height:100%;border-radius:5px;background-color:#c7d5e5;color:#fff;font-size:16px;line-height:1.2;cursor:pointer;transition:background-color 300ms}.radio-place__icon{position:absolute;left:7px}
.range-slider__title{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}.range-slider__caption{color:#3c4858;font-size:18px}.range-slider__clear{border:0;background-color:rgba(0,0,0,0);color:#3660cd;font-size:12px;text-decoration:underline;cursor:pointer}.range-slider__clear:hover{text-decoration:none}.range-slider__fields{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:9px;margin-bottom:17px}.range-slider__label{margin-bottom:2px;color:#0041a2;font-size:12px}.range-slider__input{width:100%;height:48px;padding:0 10px;border-radius:10px;background:#eff6ff;color:#4a4a4a;border:none;font:400 14px "Roboto",sans-serif}.range-slider__slider{height:4px;border-radius:10px;background:#cfe2fb;box-shadow:2px 2px 20px rgba(0,23,106,.1)}.range-slider__track{height:100%;background:#3660cd;border-radius:10px}.range-slider__track-1{background-color:rgba(0,0,0,0)}.range-slider__thumb{top:50%;transform:translateY(-50%);width:15px;height:15px;border-radius:50%;background-color:#3660cd;cursor:pointer;transition:background-color 400ms}


.search-page{margin-bottom:35px}.search-page__inner{display:grid;grid-template-columns:285px 1fr;column-gap:31px}@media only screen and (max-width: 991px){.search-page__inner{display:block}}.search-page__mobile{display:none}.search-page__mobile .field__input input{padding-left:33px;font-size:14px;margin-right:9px}@media only screen and (max-width: 991px){.search-page__mobile{position:relative;display:block;align-items:center;margin-bottom:22px}.search-page__mobile>*{position:relative;z-index:3}.search-page__mobile .field--with-icon{width:100%}}.search-page__title{font-size:18px}.search-page__reset{color:#0041a2;font-size:12px;text-decoration:underline;cursor:pointer}.search-page__reset:hover{text-decoration:none}@media only screen and (max-width: 991px){.search-page__filter-toggle{flex-shrink:0;margin-left:20px}}.search-page__filter{display:flex;flex-direction:column;padding:20px 23px;background:#fff;border-radius:15px}@media only screen and (max-width: 991px){.search-page__filter{margin:0 auto;width:100%}}.search-page__field{position:relative;width:100%}.search-page__field img{position:absolute;left:13px;top:50%;transform:translateY(-50%);z-index:1;width:13px;height:13px}.search-page__close{position:absolute;right:27px;top:33px}.search-page__types{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:7px 9px}.search-page__types .radio-place{height:25px}.search-page__params{display:grid;row-gap:20px}.search-page__item{margin-bottom:32px}.search-page__item .select .select__value-container{font-size:14px}.search-page__item .select__placeholder{color:#b0c1d6}.search-page__item .select__tag-name{font-size:14px}.search-page__item--mob{display:none}@media only screen and (max-width: 991px){.search-page__item--mob{display:block}}.search-page__top{display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width: 991px){.search-page__top{margin:0 -40px;padding:25px 40px;background:#fff;margin-bottom:20px;margin-top:-23px}}@media only screen and (max-width: 767px){.search-page__top{padding:20px;margin-left:-20px;margin-right:-20px}}.search-page__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}.search-page__header--toggle{position:relative}.search-page__header--toggle:after{content:"";display:block;width:20px;height:20px;background-image:url(/82ff93f74984b1df7b7e.svg);background-repeat:no-repeat;background-position:50%}.search-page__conditions .checkbox__text{font-size:14px}@media only screen and (max-width: 991px){.search-page__sort{display:none}}.search-page__toolbar{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:22px}@media only screen and (max-width: 991px){.search-page__toolbar{display:block}}.search-page__toolbar .assets__nav{margin-bottom:0}.search-page__toolbar .assets__nav li{font-size:18px;height:48px}@media only screen and (max-width: 1300px){.search-page__toolbar .assets__nav li{font-size:14px;padding:20px}}@media only screen and (max-width: 991px){.search-page__toolbar .assets__nav li{width:50%;font-size:16px;max-width:250px;padding:0}}.search-page__toolbar .select-alt{display:block}.search-page__toolbar .select-alt .select__control{background:#fff;margin-top:6px;width:225px;height:48px;padding-left:16px;color:#fff}.search-page__toolbar .select-alt .select__label{font-size:12px;color:#0041a2}.search-page__toolbar .select-alt .select__single-value{font-size:14px;color:#4a4a4a}@media only screen and (max-width: 991px){.search-page__toolbar{margin-bottom:10px}}.search-page__mode{display:flex;align-items:center}@media only screen and (max-width: 1200px){.search-page__mode{display:none}}.search-page__content{display:flex;align-items:center;margin-top:27px;justify-content:space-between}.search-page__result{display:block;font-size:24px;font-weight:700}.search-page__view{display:flex;align-items:flex-start;width:25px;height:25px;margin-right:20px;border:0;background-color:rgba(0,0,0,0);fill:#c7d5e5;cursor:pointer;transition:fill 300ms}.search-page__view:last-child{margin-right:0}.search-page__view--active{fill:#3660cd}.search-page__radios{display:grid;row-gap:14px}.search-page__radio{cursor:pointer}.search-page__radio input{display:none}.search-page__radio input:checked~span::before{box-shadow:inset 0 0 0 5px #3660cd}.search-page__radio span{display:inline-flex;align-items:center;color:#3c4858;font-size:14px}.search-page__radio span::before{content:"";flex-shrink:0;width:16px;height:16px;margin-right:20px;border-radius:50%;box-shadow:inset 0 0 0 1px #b0c1d6}.search-page .select__placeholder{color:#b0c1d6;font-size:14px}.search-page__footer{display:grid;grid-template-columns:1fr;grid-gap:15px;margin:0 auto;margin-top:auto;max-width:235px;width:100%}.search-page__button{width:auto}.search-page__products{display:grid;grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));gap:28px 20px}@media screen and (max-width: 991px){.search-page__products{grid-template-columns:repeat(2, minmax(0, 1fr));gap:16px 12px}}@media screen and (max-width: 575px){.search-page__products{grid-template-columns:1fr;gap:12px}}.search-page__products>.advert-item{width:100%;max-width:none;height:auto;justify-self:stretch}.search-page__load-more{display:flex;justify-content:center;margin-top:49px}
.success{width:450px;max-width:100%;margin:0 auto;padding:80px 0 190px;text-align:center}@media only screen and (max-width: 767px){.success{padding:50px 0 80px}}.success__img{margin-bottom:29px}.success__title{font-size:28px;font-weight:500;margin-bottom:20px}.success__text{font-size:18px;margin-bottom:45px}.success__btn{display:inline-flex}
.tokenization .tax{margin-bottom:0;background:none;padding:0;width:325px;height:auto}@media only screen and (max-width: 991px){.tokenization .tax{width:100%}}.tokenization__wallet-hint{margin-top:16px;max-width:420px}.tokenization__wallet-hint p{margin:0 0 12px;font-size:14px;line-height:1.45;color:#5a6570}@media only screen and (max-width: 991px){.tokenization__wallet-hint{max-width:100%}}.tokenization__inner{margin:0 auto 90px}.tokenization__container{display:flex;max-width:1230px;margin:0 auto;margin-top:15px}@media only screen and (max-width: 1200px){.tokenization__container{background:#fff;padding:40px 40px 50px 63px}}@media only screen and (max-width: 991px){.tokenization__container{flex-direction:column-reverse;padding:30px;border-radius:10px}}.tokenization__form{background:#fff;border-radius:10px;padding:50px 30px 34px 51px;flex-grow:10}@media only screen and (max-width: 1200px){.tokenization__form{background:none;padding:0}}@media only screen and (max-width: 991px){.tokenization__form{width:100%}}.tokenization__name{margin-bottom:37px}.tokenization__types{display:flex;align-items:center;margin-bottom:33px}@media only screen and (max-width: 991px){.tokenization__types{display:grid;grid-template-columns:1fr 1fr;grid-gap:10px}}.tokenization__type{background:#cfe2fb;border-radius:10px;transition:300ms;padding:14px 20px 18px 19px;display:flex;align-items:center;margin-right:10px;cursor:pointer;width:218px}@media only screen and (max-width: 991px){.tokenization__type{flex-direction:column;padding:20px 0;justify-content:center;text-align:center;margin-right:0;width:100%}}.tokenization__type.active{background:#3660cd}.tokenization__type.active .tokenization__icon svg{fill:#fff}.tokenization__type.active .tokenization__type-title{color:#fff}.tokenization__type.active .tokenization__type-caption{color:#fff;opacity:.5}.tokenization__type:last-child{margin-right:0}.tokenization__type-title{font-size:16px;font-weight:500;color:#b0c1d6;margin-bottom:4px}.tokenization__type-caption{font-size:12px;color:#b0c1d6}.tokenization__general--label{display:block;font-size:12px;color:#0041a2}.tokenization__general-grid{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px;margin-bottom:30px}.tokenization__general-grid.with-amount{grid-template-columns:2fr 2fr 1fr}@media only screen and (max-width: 1200px){.tokenization__general-grid.with-amount{grid-template-columns:1fr}}@media only screen and (max-width: 1200px){.tokenization__general-grid{grid-template-columns:1fr;grid-gap:30px}}.tokenization__general-grid .field{margin-right:30px;width:100%}@media only screen and (max-width: 767px){.tokenization__general-grid .field{margin-right:15px}}.tokenization__general-grid .field:last-child{margin-right:0}.tokenization__title{font-weight:700;font-size:28px;margin-bottom:20px}@media only screen and (max-width: 991px){.tokenization__title{order:1;margin-bottom:15px}}@media only screen and (max-width: 767px){.tokenization__title{font-size:24px}}.tokenization__icon{width:26px;height:26px;margin-right:16px;flex-shrink:0}@media only screen and (max-width: 991px){.tokenization__icon{margin-right:0;margin-bottom:20px}}.tokenization__icon svg{fill:#b0c1d6;width:26px;height:26px}.tokenization__header{margin-bottom:29px}.tokenization__description{font-size:18px}@media only screen and (max-width: 991px){.tokenization__description{font-size:14px;margin-bottom:25px}}.tokenization__grid{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:16px 30px}.tokenization__info{display:flex;align-items:flex-start;margin-top:14px}.tokenization__info svg{width:24px;height:24px;margin-right:16px;flex-shrink:0}.tokenization__info span{color:#ff8311;font-size:16px}.tokenization .checkbox__text{font-size:16px;color:#4a4a4a}.tokenization__options{margin-top:18px}.tokenization__options .checkbox{display:inline-block;margin-right:14px;margin-bottom:10px}.tokenization__options .checkbox :last-child{margin-bottom:0}.tokenization__options .checkbox__inner{margin-right:10px}.tokenization__options .checkbox__inner span{margin-right:0}.tokenization__params-item{display:flex;flex-direction:column}.tokenization__params-item .checkbox{margin-bottom:16px}.tokenization__params-item .checkbox:last-child{margin-bottom:0}.tokenization__params-item .field,.tokenization__params-item .select-wrapper{margin-bottom:16px}.tokenization__params-title{font-size:18px;color:#0041a2;margin-bottom:10px}.tokenization__params{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:35px 29px;margin-bottom:64px}.tokenization__footer{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:0 29px;max-width:600px;margin-bottom:80px}.tokenization__footer .field{margin-bottom:16px}.tokenization__buttons{display:flex;align-items:center;justify-content:center;margin-top:50px}.tokenization__buttons .btn{margin-right:34px;font-size:14px}@media only screen and (max-width: 991px){.tokenization__buttons .btn{margin-right:10px;width:100%}}.tokenization__buttons .btn:last-child{margin-right:0}.tokenization__buttons .btn-primary{width:160px}@media only screen and (max-width: 991px){.tokenization__buttons .btn-primary{width:100%}}@media only screen and (max-width: 767px){.tokenization__grid{grid-template-columns:1fr}.tokenization__upload .file-input{margin-top:14px;height:100px}.tokenization__info{margin-top:0}.tokenization__params{grid-template-columns:repeat(2, 1fr)}.tokenization__footer{width:100%;grid-template-columns:1fr;margin-bottom:40px}}@media only screen and (max-width: 600px){.tokenization__params{grid-template-columns:1fr}}.tokenization__upload{width:442px;max-width:100%;flex-shrink:0;border-radius:10px;background:#fff;border-radius:10px;padding:24px 20px;margin-left:35px;position:relative}@media only screen and (max-width: 991px){.tokenization__upload{padding:0}}.tokenization__upload img{border-radius:10px}.tokenization__upload .field__error{position:absolute;bottom:15px;left:20px}@media only screen and (max-width: 767px){.tokenization__upload .field__error{left:50%;transform:translateX(-50%)}}@media only screen and (max-width: 1200px){.tokenization__upload{padding:0;width:358px}}@media only screen and (max-width: 991px){.tokenization__upload{margin-left:0;width:100%}}.tokenization__upload-media{display:flex;align-items:center;justify-content:center;position:absolute;left:20px;top:20px;right:20px;bottom:20px;border:1px dashed rgba(176,193,214,.3);border-radius:10px;background:rgba(239,246,255,.3)}@media only screen and (max-width: 991px){.tokenization__upload-media{width:100%;left:0;right:0}}.tokenization__upload-media video{max-width:100%;max-height:100%}.tokenization__upload-play{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);width:74px;height:74px}.tokenization__upload-play.hide{opacity:0;visibility:hidden}@media only screen and (max-width: 767px){.tokenization__upload-play{width:55px;height:55px}}.tokenization__upload-close{width:42px;height:42px;background:rgba(0,0,0,.5);cursor:pointer;top:20px;right:20px;position:absolute;display:flex;align-items:center;justify-content:center;border-radius:50%}.tokenization__upload-close svg{stroke:#fff;width:16px;height:16px}.tokenization__upload .image-previews{width:100%;padding-top:100%;position:relative}.tokenization__upload .image-previews .image-preview{position:absolute;top:0;left:0;bottom:0;right:0;display:flex;justify-content:center;align-items:center}.tokenization__upload .image-previews .image-preview .remove{position:absolute;top:10px;right:10px;background:url(/f1edecf52abc6e62befe.svg);width:27px;height:27px;cursor:pointer;border:0}.tokenization__upload .image-previews .image-preview img{max-width:100%;max-height:100%;border-radius:10px}.tokenization__upload .file-input{width:auto;height:130px;margin-top:24px}.tokenization__upload .file-input__preview{height:110px}.tokenization__upload-inner{background:rgba(239,246,255,.3);border:1px dashed rgba(176,193,214,.3);box-sizing:border-box;border-radius:10px;padding:106px 70px;cursor:pointer}.tokenization__upload-inner.hide{opacity:0;visibility:hidden}@media only screen and (max-width: 1200px){.tokenization__upload-inner{padding:120px 50px}}@media only screen and (max-width: 991px){.tokenization__upload-inner{padding:55px 28px 30px}}.tokenization__upload-icon{width:52px;height:52px;margin:0 auto;margin-bottom:30px;display:flex;align-items:center;fill:#28dfa8}.tokenization__upload-icon img{width:100%;height:100%;object-fit:cover}.tokenization__upload-title{font-weight:500;font-size:20px;text-align:center;color:#4a4a4a;margin-bottom:18px}.tokenization__upload-description{font-size:12px;text-align:center;margin-bottom:38px}.tokenization__upload-btn{width:188px;margin:0 auto}.tokenization__upload__steps{margin-top:16px;padding:12px 14px;border-radius:8px;background:rgba(67,187,195,.08)}.tokenization__upload__steps-title{font-weight:600;margin-bottom:8px}.tokenization__upload__steps-list{margin:0;padding-left:18px}.tokenization__upload__steps-list li{margin:4px 0;opacity:.55}.tokenization__upload__steps-list li.is-active{opacity:1;font-weight:600;color:#1f6f78}.tokenization__upload__steps-list li.is-done{opacity:.9;color:#2f9e44}.tokenization__upload__steps-hint{margin-top:8px;font-size:13px;color:#1f6f78}.tokenization__royalty{margin-top:16px}.tokenization__royalty-hint{margin-top:8px;font-size:13px;line-height:1.4;opacity:.75}
.wallet-not-found{padding:50px 0 150px;text-align:center}.wallet-not-found__image{width:300px;margin:0 auto 53px}.wallet-not-found__title{font-size:28px;font-weight:500;margin-bottom:13px}@media only screen and (max-width: 767px){.wallet-not-found__title{font-size:24px}}.wallet-not-found__text{font-size:18px;margin-bottom:46px}@media only screen and (max-width: 767px){.wallet-not-found__text{font-size:14px}}.wallet-not-found__text a{color:#0041a2;text-decoration:underline}.wallet-not-found__text a:hover{text-decoration:none}.wallet-not-found .btn{margin:0 auto;width:224px;max-width:100%;display:flex;align-items:center;justify-content:center;white-space:normal;text-align:center;line-height:1.3;height:auto;min-height:44px;padding-left:16px;padding-right:16px}@media only screen and (max-width: 767px){.wallet-not-found .btn{width:100%}}.wallet-not-found .btn+.btn{margin-top:12px}.modal-wallet__inner{background:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.1);border-radius:10px;max-width:100%;width:581px;padding:30px 62px}.modal-wallet__title{font-weight:500;font-size:16px;margin-bottom:20px;text-align:center}.modal-wallet__items{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px;margin-bottom:30px}.modal-wallet__item{background:#eff6ff;border-radius:10px;padding:20px;cursor:pointer}.modal-wallet__item.active{background:#3660cd}.modal-wallet__item.active .modal-wallet__subtitle{color:#fff}.modal-wallet__item.active .modal-wallet__text{color:#fff}.modal-wallet__item.active .modal-wallet__img svg{fill:#fff}.modal-wallet__img{display:flex;align-items:flex-start;margin-bottom:16px;height:70px}.modal-wallet__img svg{width:70px;fill:#0041a2;transform:translateX(-10px)}.modal-wallet__subtitle{font-weight:700;font-size:24px;color:#0041a2}.modal-wallet__text{color:#b3b3b3;margin-top:11px;font-size:16px}.modal-wallet__buttons{display:flex;align-items:center;justify-content:center}.modal-wallet__btn{font-size:14px;font-weight:500;margin-right:11px}.modal-wallet__btn:last-child{margin-right:0}
.vk-login{width:100%;min-height:44px;display:flex;flex-direction:column;align-items:center}.vk-login__hint{color:#64748b;font-size:14px;margin-bottom:8px;text-align:center}.vk-login__widget{width:100%;min-height:44px;display:flex;justify-content:center}.vk-login__widget>*{width:100% !important;max-width:320px;margin:0 auto}.vk-login--missing{width:100%;padding:12px 14px;border:1px dashed #cbd5e1;border-radius:10px;color:#64748b;font-size:13px;line-height:1.4;text-align:center}
.wallet-login{min-height:calc(100vh - 180px);display:flex;align-items:center;justify-content:center;padding:48px 16px 72px;background:radial-gradient(ellipse 80% 50% at 50% -10%, rgba(54, 96, 205, 0.08), transparent 55%),linear-gradient(180deg, #f5f8fc 0%, #ffffff 48%, #ffffff 100%)}@media screen and (max-width: 767px){.wallet-login{min-height:calc(100vh - 120px);padding:28px 14px 48px;align-items:flex-start}}.wallet-login__shell{width:100%;max-width:520px;margin:0 auto}.wallet-login__panel{width:100%;padding:40px 36px 36px;border-radius:16px;background:#fff;border:1px solid #e3ebf5;box-shadow:0 12px 40px rgba(15,40,90,.06);text-align:center}@media screen and (max-width: 767px){.wallet-login__panel{padding:28px 18px 24px;border-radius:14px}}.wallet-login__title{font-size:28px;font-weight:700;line-height:1.25;letter-spacing:-0.02em;color:#0f1b33;margin:0 0 12px}@media screen and (max-width: 767px){.wallet-login__title{font-size:22px}}.wallet-login__lead{margin:0 auto 16px;max-width:42ch;color:#64748b;font-size:15px;line-height:1.55}.wallet-login__lead--secondary{margin-bottom:28px;font-size:14px;color:#5b6b82}@media screen and (max-width: 767px){.wallet-login__lead{font-size:14px;max-width:none}.wallet-login__lead--secondary{margin-bottom:24px;font-size:13px}}.wallet-login__auth{display:flex;flex-direction:column;align-items:center;gap:20px}.wallet-login__providers{width:100%;max-width:320px;display:flex;flex-direction:column;align-items:stretch;gap:16px}.wallet-login__provider{display:flex;flex-direction:column;align-items:center;gap:10px;width:100%}.wallet-login__provider-label{font-size:12px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#7b8da8}.wallet-login__provider-control{width:100%;display:flex;justify-content:center;align-items:center;min-height:44px}.wallet-login__provider-control .telegram-login{display:flex;justify-content:center;width:100%}.wallet-login__provider-control .telegram-login iframe{margin:0 auto !important}.wallet-login__divider{display:flex;align-items:center;gap:12px;width:100%;color:#94a3b8;font-size:12px;text-transform:uppercase;letter-spacing:.08em}.wallet-login__divider::before,.wallet-login__divider::after{content:"";flex:1;height:1px;background:#e2e8f0}.wallet-login__hint{color:#64748b;font-size:14px}.wallet-login__error{width:100%;max-width:320px;padding:10px 12px;border-radius:10px;background:#fef2f2;border:1px solid #fecaca;color:#b91c1c;font-size:13px;line-height:1.4;text-align:center}.wallet-login__fallbacks{width:100%;max-width:320px;padding-top:8px;border-top:1px solid #eef2f7;display:flex;flex-direction:column;gap:16px}.wallet-login__create{display:flex;flex-direction:column;align-items:center;gap:12px}.wallet-login__create-label{margin:0;color:#64748b;font-size:14px;line-height:1.45}.wallet-login__create-links{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;width:100%}.wallet-login__create-link{flex:1 1 130px;max-width:150px;display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:8px 14px;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:background .15s ease,border-color .15s ease}.wallet-login__create-link--tg{color:#0b6bcb;background:#eaf4ff;border:1px solid #cfe6ff}.wallet-login__create-link--tg:hover{background:#dcebff;border-color:#9fccff}.wallet-login__create-link--vk{color:#07f;background:#eef5ff;border:1px solid #c9defe}.wallet-login__create-link--vk:hover{background:#e0edff;border-color:#9ec5ff}@media screen and (max-width: 767px){.wallet-login__create-link{flex:1 1 calc(50% - 5px);max-width:none}}.wallet-login__fallback{margin:0;color:#64748b;font-size:14px;line-height:1.45}.wallet-login__fallback a{color:#0041a2;font-weight:600;text-decoration:none}.wallet-login__fallback a:hover{text-decoration:underline}.wallet-login__session{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;padding:16px 20px;border:1px solid #e2e8f0;border-radius:12px;margin-bottom:24px}.wallet-login__session-label{font-size:12px;text-transform:uppercase;letter-spacing:.04em;color:#94a3b8}.wallet-login__session-address{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:18px;font-weight:700}.wallet-login__empty{padding:40px 24px;border:1px dashed #cbd5e1;border-radius:12px;text-align:center}.wallet-login__empty-title{font-size:18px;font-weight:700;margin-bottom:8px}.wallet-login__empty-text{color:#64748b;margin-bottom:20px}.wallet-login__grid{display:grid;grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));gap:20px}.wallet-login__card{display:block;border:1px solid #e2e8f0;border-radius:12px;overflow:hidden;color:inherit;text-decoration:none;transition:box-shadow .15s ease}.wallet-login__card:hover{box-shadow:0 8px 24px rgba(15,23,42,.08)}.wallet-login__card-media{position:relative;aspect-ratio:4/3;background:#f1f5f9}.wallet-login__status{position:absolute;right:10px;top:10px;padding:3px 8px;border-radius:6px;font-size:11px;font-weight:700;text-transform:uppercase;background:#0f172a;color:#fff}.wallet-login__status--active{background:#16a34a}.wallet-login__status--closed{background:#64748b}.wallet-login__status--canceled{background:#b91c1c}.wallet-login__card-body{padding:12px 14px 16px}.wallet-login__card-title{font-weight:700;margin-bottom:8px}.wallet-login__card-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:13px;color:#475569}.wallet-login__card-badge{padding:2px 8px;border-radius:6px;background:#e0f2fe;color:#0369a1;font-weight:600}
.legal{--legal-header-offset: 96px;background:#fff;color:#1c1c1c;min-height:100vh;font-family:"Inter","Helvetica Neue",Helvetica,Arial,"Noto Sans","PingFang SC","Microsoft YaHei",sans-serif;font-feature-settings:"kern" 1,"liga" 1;-webkit-font-smoothing:antialiased;padding-bottom:96px}@media only screen and (max-width: 991px){.legal{padding-bottom:64px}}.legal__masthead{border-bottom:1px solid #0a0a0a;background:#fff}.legal__masthead-inner{max-width:1180px;margin:0 auto;padding:22px 32px;display:flex;align-items:center;justify-content:space-between;gap:20px}@media only screen and (max-width: 767px){.legal__masthead-inner{padding:16px 18px;align-items:flex-start;flex-direction:column;gap:12px}}.legal__brand{font-size:13px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#0a0a0a;text-decoration:none}.legal__brand:hover{text-decoration:underline;text-underline-offset:3px}.legal__masthead-tools{display:flex;align-items:center;gap:22px}@media only screen and (max-width: 767px){.legal__masthead-tools{width:100%;justify-content:space-between;gap:12px}}.legal__revision{font-size:12px;letter-spacing:.03em;color:#6b6b6b;white-space:nowrap}.legal__grid{max-width:1180px;margin:0 auto;padding:0 32px;display:grid;grid-template-columns:264px minmax(0, 1fr);gap:56px;align-items:start}@media only screen and (max-width: 1100px){.legal__grid{grid-template-columns:224px minmax(0, 1fr);gap:36px}}@media only screen and (max-width: 991px){.legal__grid{grid-template-columns:minmax(0, 1fr);gap:0;padding:0 18px}}.legal__aside{position:sticky;top:var(--legal-header-offset);max-height:calc(100vh - var(--legal-header-offset) - 24px);overflow-y:auto;padding:40px 0 24px;border-right:1px solid #d7d7d7;padding-right:24px;scrollbar-width:thin;scrollbar-color:#c9c9c9 rgba(0,0,0,0)}.legal__aside::-webkit-scrollbar{width:6px}.legal__aside::-webkit-scrollbar-thumb{background:#c9c9c9;border-radius:6px}@media only screen and (max-width: 991px){.legal__aside{display:none}}.legal__toc-mobile{display:none}@media only screen and (max-width: 991px){.legal__toc-mobile{display:block;position:sticky;top:0;z-index:4;margin:0 -18px 24px;padding:0 18px;background:#fff;border-bottom:1px solid #0a0a0a}.legal__toc-mobile summary{cursor:pointer;list-style:none;padding:16px 0;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#0a0a0a;display:flex;align-items:center;justify-content:space-between}.legal__toc-mobile summary::-webkit-details-marker{display:none}.legal__toc-mobile summary:after{content:"+";font-size:16px;font-weight:400;line-height:1}.legal__toc-mobile[open] summary:after{content:"–"}.legal__toc-mobile .legal-toc__list{padding-bottom:18px}}.legal__content{padding:40px 0 0;max-width:74ch}@media only screen and (max-width: 991px){.legal__content{padding-top:8px;max-width:100%}}.legal__header{padding-bottom:26px;margin-bottom:34px;border-bottom:2px solid #0a0a0a}.legal__title{margin:0;font-size:38px;line-height:1.18;font-weight:700;letter-spacing:-0.02em;color:#0a0a0a}@media only screen and (max-width: 767px){.legal__title{font-size:27px}}.legal__summary{margin:14px 0 0;font-size:16px;line-height:1.65;color:#6b6b6b}.legal__preamble{margin-bottom:8px}.legal__preamble p{font-size:16.5px}.legal__section{scroll-margin-top:var(--legal-header-offset)}.legal__section-title{display:flex;gap:12px;margin:48px 0 18px;padding-top:22px;border-top:1px solid #d7d7d7;font-size:23px;line-height:1.3;font-weight:700;letter-spacing:-0.01em;color:#0a0a0a;scroll-margin-top:var(--legal-header-offset)}@media only screen and (max-width: 767px){.legal__section-title{font-size:20px;margin-top:38px}}.legal__section-number{flex-shrink:0;font-variant-numeric:tabular-nums}.legal h3{margin:30px 0 12px;font-size:16px;line-height:1.45;font-weight:700;color:#0a0a0a}.legal p{margin:0 0 16px;font-size:16px;line-height:1.75;color:#1c1c1c}.legal ul,.legal ol{margin:0 0 18px;padding-left:24px}.legal li{margin:0 0 10px;font-size:16px;line-height:1.72;color:#1c1c1c}.legal li::marker{color:#6b6b6b}.legal strong{font-weight:700;color:#0a0a0a}.legal code{font-family:"SFMono-Regular",Menlo,Consolas,monospace;font-size:.9em;padding:1px 5px;background:#f5f5f4;border:1px solid #d7d7d7}.legal a{color:#0a0a0a;text-decoration:underline;text-underline-offset:2px}.legal a:hover{text-decoration:none}.legal__callout{margin:24px 0;padding:18px 20px;border-left:3px solid #0a0a0a;background:#f5f5f4}.legal__callout p:last-child{margin-bottom:0}.legal__callout p{font-size:15.5px;line-height:1.7}.legal__footnote{margin-top:64px;padding-top:22px;border-top:2px solid #0a0a0a}.legal__footnote p{font-size:13.5px;line-height:1.65;color:#6b6b6b;margin-bottom:18px}.legal__footnote-actions{display:flex;flex-wrap:wrap;gap:12px}.legal__footnote-actions button{appearance:none;cursor:pointer;padding:9px 18px;font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#0a0a0a;background:rgba(0,0,0,0);border:1px solid #0a0a0a;transition:160ms ease}.legal__footnote-actions button:hover{background:#0a0a0a;color:#fff}.legal__lang .header__language{position:relative;display:flex;align-items:center;height:auto;text-transform:uppercase;color:#0a0a0a}.legal__lang .header__language-current{cursor:pointer;display:flex;align-items:center;gap:7px;font-size:12px;font-weight:600;letter-spacing:.06em}.legal__lang .header__language-current img{width:18px;height:18px}.legal__lang .header__language-dropdown{position:absolute;right:0;top:calc(100% + 8px);z-index:20;display:none;margin:0;padding:5px 0;list-style:none;min-width:104px;background:#fff;border:1px solid #0a0a0a}.legal__lang .header__language-dropdown.active{display:block}.legal__lang .header__language-dropdown li{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:0;padding:9px 13px;font-size:12px;cursor:pointer}.legal__lang .header__language-dropdown li:hover{background:#f5f5f4}.legal__lang .header__language-dropdown li img{width:16px;height:16px}.legal__lang .header__language-arrow{display:flex;align-items:center}.legal__lang .header__language-arrow path{fill:#0a0a0a}.legal-toc__title{margin-bottom:16px;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:#6b6b6b}.legal-toc__list{margin:0;padding:0;list-style:none;counter-reset:none}.legal-toc__item{margin:0}.legal-toc__item a{display:flex;gap:10px;padding:8px 0 8px 12px;border-left:2px solid rgba(0,0,0,0);font-size:13.5px;line-height:1.5;color:#4a4a4a;text-decoration:none;transition:140ms ease}.legal-toc__item a:hover{color:#0a0a0a;border-left-color:#d7d7d7}.legal-toc__item--active a{color:#0a0a0a;font-weight:600;border-left-color:#0a0a0a}.legal-toc__number{flex-shrink:0;font-variant-numeric:tabular-nums;color:#6b6b6b}.legal-toc--active .legal-toc__number,.legal-toc__item--active .legal-toc__number{color:#0a0a0a}.legal-toc__switch{margin-top:36px;padding-top:24px;border-top:1px solid #d7d7d7}.legal-toc__docs{margin:0;padding:0;list-style:none}.legal-toc__docs li{margin:0 0 10px}.legal-toc__docs a{font-size:13.5px;color:#4a4a4a;text-decoration:none}.legal-toc__docs a:hover{color:#0a0a0a;text-decoration:underline;text-underline-offset:2px}@media print{.legal{padding:0}.legal__masthead-tools,.legal__aside,.legal__toc-mobile,.legal__footnote-actions{display:none !important}.legal__grid{display:block;padding:0}.legal__content{max-width:100%;padding:0}.legal__section-title{break-after:avoid}.legal p,.legal li{font-size:11pt;line-height:1.55}}
.confirm-modal{display:flex;flex-direction:column;align-items:center;width:600px;max-width:100%;padding:30px;border-radius:10px;background-color:#fff;box-shadow:2px 2px 20px rgba(0,23,106,.2);box-sizing:border-box}@media only screen and (max-width: 767px){.confirm-modal{width:100%;padding:20px 16px max(20px,env(safe-area-inset-bottom))}}.confirm-modal__title{margin-bottom:46px;font-weight:500;font-size:28px;text-align:center}@media only screen and (max-width: 767px){.confirm-modal__title{font-size:20px;margin-bottom:20px;line-height:1.3}}.confirm-modal__text{margin-bottom:58px;font-size:18px;text-align:center}@media only screen and (max-width: 767px){.confirm-modal__text{font-size:15px;margin-bottom:24px;line-height:1.45}}.confirm-modal__buttons{display:flex;align-items:center;flex-wrap:wrap;justify-content:center;gap:12px;width:100%}@media only screen and (max-width: 575px){.confirm-modal__buttons{flex-direction:column}}.confirm-modal__btn{min-width:160px;width:auto;min-height:44px;padding:0 20px}@media only screen and (max-width: 575px){.confirm-modal__btn{width:100%;min-width:0}}.confirm-modal__btn+.confirm-modal__btn{margin-left:19px}@media only screen and (max-width: 575px){.confirm-modal__btn+.confirm-modal__btn{margin-top:0;margin-left:0}}
.error-boundary{min-height:60vh;display:flex;align-items:center;justify-content:center;padding:24px 16px;background:#f7f8fa}.error-boundary__card{max-width:480px;width:100%;background:#fff;border:1px solid #e6e8ec;border-radius:12px;padding:28px 24px;text-align:center}.error-boundary__title{margin:0 0 12px;font-size:22px;font-weight:700;color:#1a1d26}.error-boundary__text{margin:0 0 16px;font-size:15px;line-height:1.45;color:#5c6370}.error-boundary__message{margin:0 0 20px;padding:10px 12px;background:#f3f4f6;border-radius:8px;font-size:12px;color:#8b3232;text-align:left;overflow:auto;max-height:120px}.error-boundary__actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}.error-boundary__btn{appearance:none;border:1px solid #cfd3dc;background:#fff;color:#1a1d26;border-radius:8px;padding:10px 18px;font-size:14px;font-weight:600;cursor:pointer}.error-boundary__btn--primary{border-color:#0041a2;background:#0041a2;color:#fff}
