.carousel .control-arrow,
.carousel.carousel-slider .control-arrow {
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  opacity: 0.4;
  filter: alpha(opacity=40);
  position: absolute;
  z-index: 2;
  top: 20px;
  background: none;
  border: 0;
  font-size: 32px;
  cursor: pointer;
}
.carousel .control-arrow:focus,
.carousel .control-arrow:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel .control-arrow:before,
.carousel.carousel-slider .control-arrow:before {
  margin: 0 5px;
  display: inline-block;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: "";
}
.carousel .control-disabled.control-arrow {
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: inherit;
  display: none;
}
.carousel .control-prev.control-arrow {
  left: 0;
}
.carousel .control-prev.control-arrow:before {
  border-right: 8px solid #fff;
}
.carousel .control-next.control-arrow {
  right: 0;
}
.carousel .control-next.control-arrow:before {
  border-left: 8px solid #fff;
}
.carousel-root {
  outline: none;
}
.carousel {
  position: relative;
  width: 100%;
}
.carousel * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.carousel img {
  width: 100%;
  display: inline-block;
  pointer-events: none;
}
.carousel .carousel {
  position: relative;
}
.carousel .control-arrow {
  outline: 0;
  border: 0;
  background: none;
  top: 50%;
  margin-top: -13px;
  font-size: 18px;
}
.carousel .thumbs-wrapper {
  margin: 20px;
  overflow: hidden;
}
.carousel .thumbs {
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  position: relative;
  list-style: none;
  white-space: nowrap;
}
.carousel .thumb {
  -webkit-transition: border 0.15s ease-in;
  -moz-transition: border 0.15s ease-in;
  -ms-transition: border 0.15s ease-in;
  -o-transition: border 0.15s ease-in;
  transition: border 0.15s ease-in;
  display: inline-block;
  margin-right: 6px;
  white-space: nowrap;
  overflow: hidden;
  border: 3px solid #fff;
  padding: 2px;
}
.carousel .thumb:focus {
  border: 3px solid #ccc;
  outline: none;
}
.carousel .thumb.selected,
.carousel .thumb:hover {
  border: 3px solid #333;
}
.carousel .thumb img {
  vertical-align: top;
}
.carousel.carousel-slider {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.carousel.carousel-slider .control-arrow {
  top: 0;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  margin-top: 0;
  padding: 5px;
}
.carousel.carousel-slider .control-arrow:hover {
  background: rgba(0, 0, 0, 0.2);
}
.carousel .slider-wrapper {
  overflow: hidden;
  margin: auto;
  width: 100%;
  -webkit-transition: height 0.15s ease-in;
  -moz-transition: height 0.15s ease-in;
  -ms-transition: height 0.15s ease-in;
  -o-transition: height 0.15s ease-in;
  transition: height 0.15s ease-in;
}
.carousel .slider-wrapper.axis-horizontal .slider {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}
.carousel .slider-wrapper.axis-horizontal .slider .slide {
  flex-direction: column;
  flex-flow: column;
}
.carousel .slider-wrapper.axis-vertical {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}
.carousel .slider-wrapper.axis-vertical .slider {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.carousel .slider {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  width: 100%;
}
.carousel .slider.animated {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.carousel .slide {
  min-width: 100%;
  margin: 0;
  position: relative;
  text-align: center;
}
.carousel .slide img {
  width: 100%;
  vertical-align: top;
  border: 0;
}
.carousel .slide iframe {
  display: inline-block;
  width: calc(100% - 80px);
  margin: 0 40px 40px;
  border: 0;
}
.carousel .slide .legend {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -45%;
  width: 90%;
  border-radius: 10px;
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 12px;
  text-align: center;
  opacity: 0.25;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
.carousel .control-dots {
  position: absolute;
  bottom: 0;
  margin: 10px 0;
  padding: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media (min-width: 960px) {
  .carousel .control-dots {
    bottom: 0;
  }
}
.carousel .control-dots .dot {
  -webkit-transition: opacity 0.25s ease-in;
  -moz-transition: opacity 0.25s ease-in;
  -ms-transition: opacity 0.25s ease-in;
  -o-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  opacity: 0.3;
  filter: alpha(opacity=30);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  background: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  cursor: pointer;
  display: inline-block;
  margin: 0 8px;
}
.carousel .control-dots .dot.selected,
.carousel .control-dots .dot:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel .carousel-status {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  font-size: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
  color: #fff;
}
.carousel:hover .slide .legend {
  opacity: 1;
}

.svg-currencies-exchange-sprite--24h {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 0 0;
  width: 50px;
  height: 48px;
}
.svg-currencies-exchange-sprite--24h-volume {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 51.02040816326531% 0;
  width: 48px;
  height: 47px;
}
.svg-currencies-exchange-sprite--7d {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 0 100%;
  width: 48px;
  height: 48px;
}
.svg-currencies-exchange-sprite--coin-supply {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 98.98989898989899% 96%;
  width: 47px;
  height: 46px;
}
.svg-currencies-exchange-sprite--market-cap {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 48.97959183673469% 92.3076923076923%;
  width: 48px;
  height: 44px;
}
.svg-currencies-exchange-sprite--price {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 100% 0;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--24h {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 52.33160621761658% 12.430939226519337%;
  width: 50px;
  height: 48px;
}
.svg-tokens-sprite--7d {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 48.96907216494845% 25.96685082872928%;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--appstore-badge {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 50.68493150684932% 0;
  width: 144px;
  height: 45px;
}
.svg-tokens-sprite--bug {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 71.39364303178485% 67.52577319587628%;
  width: 27px;
  height: 22px;
}
.svg-tokens-sprite--burn {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 76.3157894736842% 67.52577319587628%;
  width: 18px;
  height: 22px;
}
.svg-tokens-sprite--burn-step-0 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 55.6390977443609%;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-1 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 49.31506849315068% 55.6390977443609%;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-2 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 100% 0;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-3 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 0;
  width: 148px;
  height: 148px;
}
.svg-tokens-sprite--burning-logo {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 37.56345177664975% 26.18384401114206%;
  width: 42px;
  height: 51px;
}
.svg-tokens-sprite--circulating-supply {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 61.34020618556701% 25.895316804407713%;
  width: 48px;
  height: 47px;
}
.svg-tokens-sprite--coin-supply {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 74.55012853470437% 80.21978021978022%;
  width: 47px;
  height: 46px;
}
.svg-tokens-sprite--find {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 96.05263157894737% 49.31506849315068%;
  width: 132px;
  height: 118px;
}
.svg-tokens-sprite--fire {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 61.421319796954315% 93.66391184573003%;
  width: 42px;
  height: 47px;
}
.svg-tokens-sprite--list {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 81.40096618357488% 66.49746192893402%;
  width: 22px;
  height: 16px;
}
.svg-tokens-sprite--locked-amount {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 38.7434554973822% 12.465373961218837%;
  width: 54px;
  height: 49px;
}
.svg-tokens-sprite--price {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 62.371134020618555% 80.66298342541437%;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--report {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 100%;
  width: 125px;
  height: 118px;
}
.svg-tokens-sprite--reward {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 39.18495297805643% 99.65870307167235%;
  width: 117px;
  height: 117px;
}
.svg-swap-sprite--atomic {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.53582554517133% 45.91093117408907%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--atomic-blue {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 91.15264797507788% 45.91093117408907%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--ava-coin {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 82.68370607028754% 52.34113712374582%;
  width: 82px;
  height: 81px;
}
.svg-swap-sprite--awc {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 44.75524475524475% 55.59796437659033%;
  width: 503px;
  height: 491px;
}
.svg-swap-sprite--bnb {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 56.901041666666664%;
  width: 512px;
  height: 509px;
}
.svg-swap-sprite--bnb-erc {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 93.0246913580247% 42.62820512820513%;
  width: 27px;
  height: 29px;
}
.svg-swap-sprite--bnb-mainnet {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 91.34199134199135% 42.69662921348315%;
  width: 30px;
  height: 31px;
}
.svg-swap-sprite--guarda {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 68.78868258178603% 0;
  width: 516px;
  height: 380px;
}
.svg-swap-sprite--logo-atomic {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 85.13157894736842% 46.55172413793103%;
  width: 127px;
  height: 59px;
}
.svg-swap-sprite--now {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 100% 0;
  width: 353px;
  height: 353px;
}
.svg-swap-sprite--now-black {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 93.76947040498442% 45.91093117408907%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--now-green {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 96.38629283489097% 45.91093117408907%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 0;
  width: 778px;
  height: 437px;
}
.svg-swap-sprite--travala-dark {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 99.00311526479751% 45.91093117408907%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-left {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.3879781420765% 33.20790216368768%;
  width: 183px;
  height: 214px;
}
.svg-swap-sprite--travala-light {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 85.73208722741433% 50.688259109311744%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-logo {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.34890965732087% 50.688259109311744%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-right {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 98.33555259653795% 32.14936247723133%;
  width: 145px;
  height: 179px;
}
.svg-swap-sprite--usdt {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 100%;
  width: 360px;
  height: 331px;
}
.svg-swap-sprite--usdt-erc20 {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 90.85252022401991% 50.606305578011316%;
  width: 40px;
  height: 40px;
}
.svg-swap-sprite--usdt-omni {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 94.74984558369364% 42.594075260208164%;
  width: 28px;
  height: 28px;
}
.svg-lightning-sprite--cross-blockchains {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 68.61413043478261% 51.854304635761586%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--ellipse {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 48.44384303112314% 0;
  width: 799px;
  height: 813px;
}
.svg-lightning-sprite--ellipse-green {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 100% 0;
  width: 762px;
  height: 783px;
}
.svg-lightning-sprite--ellipse-light {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 0 100%;
  width: 626px;
  height: 659px;
}
.svg-lightning-sprite--group {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 71.73913043478261% 51.854304635761586%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--lightning {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 0 0;
  width: 716px;
  height: 919px;
}
.svg-lightning-sprite--low-cost {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 74.86413043478261% 51.854304635761586%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--nodes {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 77.98913043478261% 51.854304635761586%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--scalability {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 81.11413043478261% 51.854304635761586%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--stopwatch {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 84.23913043478261% 51.854304635761586%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--wallets {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 87.36413043478261% 51.854304635761586%;
  width: 69px;
  height: 68px;
}
.svg-swap-tokens-sprite--arrow {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 51.98438516590761% 84.46601941747574%;
  width: 24px;
  height: 30px;
}
.svg-swap-tokens-sprite--atomic {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 3.7061548643282594% 99.11894273127753%;
  width: 50px;
  height: 49px;
}
.svg-swap-tokens-sprite--bnb {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 100%;
  width: 56px;
  height: 57px;
}
.svg-swap-tokens-sprite--cake {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 11.587407903549899% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--coin {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 70.98886705959397% 87.79697624190065%;
  width: 34px;
  height: 31px;
}
.svg-swap-tokens-sprite--coins {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 6.089309878213802% 92.38636363636364%;
  width: 83px;
  height: 77px;
}
.svg-swap-tokens-sprite--deliver {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 16.141995981245813% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--discuss {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 20.696584058941728% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--ellipse {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 0;
  width: 799px;
  height: 813px;
}
.svg-swap-tokens-sprite--ellipse-green {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 100% 0;
  width: 762px;
  height: 783px;
}
.svg-swap-tokens-sprite--fb {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 12.573673870333987% 97.82608695652173%;
  width: 34px;
  height: 37px;
}
.svg-swap-tokens-sprite--mail {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 25.251172136637642% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--medium {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 14.800261951538966% 97.50812567713976%;
  width: 34px;
  height: 34px;
}
.svg-swap-tokens-sprite--now {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 57.095046854083% 88.85245901639344%;
  width: 67px;
  height: 42px;
}
.svg-swap-tokens-sprite--partners {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 29.805760214333556% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--reddit {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 17.026850032743944% 97.50812567713976%;
  width: 34px;
  height: 34px;
}
.svg-swap-tokens-sprite--team {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 34.36034829202947% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--tel {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 38.91493636972538% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--tg {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 66.00920447074293% 88.08234019501626%;
  width: 40px;
  height: 34px;
}
.svg-swap-tokens-sprite--timer {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 43.4695244474213% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--token {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 73.0718954248366% 87.79697624190065%;
  width: 31px;
  height: 31px;
}
.svg-swap-tokens-sprite--tokens {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 93.44827586206897%;
  width: 90px;
  height: 87px;
}
.svg-swap-tokens-sprite--travala-dark {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 60.566161948650425% 88.85245901639344%;
  width: 42px;
  height: 42px;
}
.svg-swap-tokens-sprite--travala-light {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 63.33113890717577% 88.85245901639344%;
  width: 42px;
  height: 42px;
}
.svg-swap-tokens-sprite--travala-t {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 6.978275181040158% 99.11894273127753%;
  width: 42px;
  height: 49px;
}
.svg-swap-tokens-sprite--tw {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 68.63905325443787% 88.08234019501626%;
  width: 40px;
  height: 34px;
}
.svg-swap-tokens-sprite--usdt {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 9.75609756097561% 98.57612267250822%;
  width: 44px;
  height: 44px;
}
.svg-swap-tokens-sprite--watches {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 48.02411252511721% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--wechat {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 52.57870060281313% 91.45106861642294%;
  width: 68px;
  height: 68px;
}
.svg-sprite--apple-pay {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.79005524861878% 72.78287461773701%;
  width: 30px;
  height: 16px;
}
.svg-sprite--appstore-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.465753424657535% 60.450160771704184%;
  width: 100px;
  height: 32px;
}
.svg-sprite--appstore-big {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.88709677419355% 0;
  width: 144px;
  height: 45px;
}
.svg-sprite--banxa {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 71.42857142857143% 41.904761904761905%;
  width: 28px;
  height: 28px;
}
.svg-sprite--bestchange {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.68211920529801% 48.75776397515528%;
  width: 90px;
  height: 21px;
}
.svg-sprite--checked {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 99.46236559139786% 66.87306501547988%;
  width: 20px;
  height: 20px;
}
.svg-sprite--coinify {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.53846153846154% 59.682539682539684%;
  width: 28px;
  height: 28px;
}
.svg-sprite--exchange-arrows {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 26.975476839237057% 79.6875%;
  width: 25px;
  height: 23px;
}
.svg-sprite--gplay-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.465753424657535% 70.73954983922829%;
  width: 100px;
  height: 32px;
}
.svg-sprite--guardarian {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.23076923076923% 59.682539682539684%;
  width: 28px;
  height: 28px;
}
.svg-sprite--logotype {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.05993690851734% 64.88294314381271%;
  width: 75px;
  height: 44px;
}
.svg-sprite--logotype-sub {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 50.37593984962406% 42.17252396166134%;
  width: 126px;
  height: 30px;
}
.svg-sprite--mail {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 0;
  width: 151px;
  height: 132px;
}
.svg-sprite--ny-logo {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 98.00664451827242% 34.275618374558306%;
  width: 91px;
  height: 60px;
}
.svg-sprite--payment-methods {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.65079365079364% 54.43425076452599%;
  width: 77px;
  height: 16px;
}
.svg-sprite--play-btn {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 0;
  width: 97px;
  height: 97px;
}
.svg-sprite--play-market {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.88709677419355% 15.100671140939598%;
  width: 144px;
  height: 45px;
}
.svg-sprite--play-market-white-border {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 82.25806451612904%;
  width: 99px;
  height: 33px;
}
.svg-sprite--simplex {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.53846153846154% 69.84126984126983%;
  width: 28px;
  height: 28px;
}
.svg-sprite--slider-arrow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 100%;
  width: 32px;
  height: 55px;
}
.svg-sprite--star-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 60.43613707165109%;
  width: 22px;
  height: 22px;
}
.svg-sprite--stars {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 43.97163120567376% 51.71339563862929%;
  width: 110px;
  height: 22px;
}
.svg-sprite--stars-yellow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 88.58858858858859% 76.03833865814697%;
  width: 59px;
  height: 30px;
}
.svg-sprite--transak {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.23076923076923% 69.84126984126983%;
  width: 28px;
  height: 28px;
}
.svg-sprite--trustpilot-fresh {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 65.35433070866142%;
  width: 124px;
  height: 89px;
}
.svg-sprite--trustpilot-full {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 42.71844660194175%;
  width: 134px;
  height: 34px;
}
.svg-sprite--visa-master {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 58.984375% 29.702970297029704%;
  width: 136px;
  height: 40px;
}
.svg-sprite--wordpress-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 79.3010752688172% 82.97213622291022%;
  width: 20px;
  height: 20px;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/d35560f975237042678e.woff) format("woff"),
    url(../fonts/2445189fae179285f7ec.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/53ebab6c7d265306f80d.woff) format("woff"),
    url(../fonts/795493644e3c7a22dfac.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/adc53e86b2f7cb173750.woff) format("woff"),
    url(../fonts/24e7ca4b0acf1a0dac78.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/285509d0eb9b5f31386c.woff) format("woff"),
    url(../fonts/db797e0aed0d44216930.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/94657033fd8e28659819.woff) format("woff"),
    url(../fonts/7ed42f773b172d236bc4.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/7e045f32011f2f549512.woff) format("woff"),
    url(../fonts/25ff2156254ba20a4704.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/0e771f884d5d7b341ac0.woff) format("woff"),
    url(../fonts/3a2c17eec3e71883dd0f.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ceaa06cbe56757d8069.woff) format("woff"),
    url(../fonts/3b59f4fac87f52efe27c.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/ed6a9b4bf546ecff24c6.woff) format("woff"),
    url(../fonts/7623c8b105a0e0b99cbb.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/1ab91631bafc1838cf55.woff) format("woff"),
    url(../fonts/8a2157e7f70d26bbbbaf.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/b01b7927b533ea3e1554.woff) format("woff"),
    url(../fonts/24cfe7008702c8f812ac.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/02f08a63db46edcb42d1.woff) format("woff"),
    url(../fonts/897a05889d4894a27cf2.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/16f3b5c18f8356360098.woff) format("woff"),
    url(../fonts/acf574aebf333444b31c.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ca831153ca66ca187ac.woff) format("woff"),
    url(../fonts/9e7ae88d3f68ed19d64a.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/3044fd8e8933d7f91242.woff) format("woff"),
    url(../fonts/81880694cc8b8f79eed4.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/a12c527ee24dcc6ccb75.woff) format("woff"),
    url(../fonts/746e4b5d434b64a4206f.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryHover: #00a451;
  colorPrimaryActive: #007a34;
  colorPrimaryLight: #16d785;
  colorDisabledDark: #6a6a7f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
@font-face {
  font-family: "icons";
  font-display: swap;
  src: url(../fonts/ce582a188fd8f253a833.eot);
  src: url(../fonts/ce582a188fd8f253a833.eot?#iefix) format("eot"),
    url(../fonts/1755b8cf47b3e6787be6.woff2) format("woff2"),
    url(../fonts/8f8ac1080bff8d4a07f1.woff) format("woff"),
    url(../fonts/42a431091930c9d7b618.ttf) format("truetype"),
    url(49dc41ccc1f9731f9695.svg#icons) format("svg");
}
.icon:before,
.button__arrow:before {
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}
.icon-arrow-big:before {
  content: "\E001";
}
.icon-arrow-down:before {
  content: "\E002";
}
.icon-bitcointalk:before {
  content: "\E003";
}
.icon-button-arrow:before,
.button__arrow:before {
  content: "\E004";
}
.icon-check:before {
  content: "\E005";
}
.icon-coinify:before {
  content: "\E006";
}
.icon-copy:before {
  content: "\E007";
}
.icon-error:before {
  content: "\E008";
}
.icon-exchange:before {
  content: "\E009";
}
.icon-facebook:before {
  content: "\E00A";
}
.icon-guarda:before {
  content: "\E00B";
}
.icon-info:before {
  content: "\E00C";
}
.icon-instagram:before {
  content: "\E00D";
}
.icon-medium:before {
  content: "\E00E";
}
.icon-no:before {
  content: "\E00F";
}
.icon-ok:before {
  content: "\E010";
}
.icon-open:before {
  content: "\E011";
}
.icon-rate-up:before {
  content: "\E012";
}
.icon-reddit:before {
  content: "\E013";
}
.icon-search:before {
  content: "\E014";
}
.icon-simplex:before {
  content: "\E015";
}
.icon-star:before {
  content: "\E016";
}
.icon-success:before {
  content: "\E017";
}
.icon-tg:before {
  content: "\E018";
}
.icon-twitter:before {
  content: "\E019";
}
.icon-youtube:before {
  content: "\E01A";
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
html {
  height: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-style: normal;
  background: #f6f4f8;
}
html.dark-theme,
body.dark-theme {
  background: #2b2b36;
}
body {
  position: relative;
  min-height: 100%;
}
* {
  box-sizing: border-box;
}
a {
  color: #00c26f;
}
a:hover,
a:active {
  text-decoration: none;
  cursor: pointer;
}
a:focus {
  color: #00c26f;
  text-decoration: none;
}
a.active-navigation-link {
  cursor: default;
}
a[disabled] {
  pointer-events: none;
}
#error-help-form {
  display: none;
}
h1 {
  margin-top: 0;
  margin-bottom: 0.2em;
  font-weight: 400;
  font-size: 36px;
  color: #2b2b36;
}
h2 {
  margin-top: 40px;
  font-weight: normal;
  font-size: 24px;
  color: #00c26f;
}
h3 {
  margin-top: 0;
  font-size: 24px;
  color: #5c5780;
}
h4 {
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 18px;
  color: #5c5780;
}
p {
  position: relative;
  font-size: 17px;
  line-height: 27px;
  color: #2b2b36;
  letter-spacing: 0.1px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  p {
    font-size: 15px;
  }
}
input,
textarea {
  margin-bottom: 25px;
  padding: 10px 20px;
  font-size: 20px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: 0.01375em;
  background: white;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
}
@media (max-width: 768px) {
  input,
  textarea {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
textarea {
  resize: vertical;
}
::-webkit-input-placeholder {
  color: #b6c0cb;
}
::-moz-placeholder {
  color: #b6c0cb;
}
:-moz-placeholder {
  color: #b6c0cb;
}
:-ms-input-placeholder {
  color: #b6c0cb;
}
.scroll-lock {
  overflow: hidden;
}
.relative {
  position: relative;
}
.small {
  font-weight: 300;
  font-size: 0.75em;
}
.dark {
  color: #56566e;
}
.title-text {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
#app-root {
  min-height: 700px;
}
body.page_dashboard #app {
  min-height: 70vh;
  box-sizing: border-box;
  padding-bottom: 48px;
  position: relative;
}
.circular-progress {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px auto;
}
.warning-api {
  background-color: #2b2b37;
  padding: 8px 0;
}
.warning-api .container {
  width: 100%;
  padding: 0 16px;
}
.page_exchange .page__warning-api {
  margin-bottom: 40px;
}
body.page_partners-log-in_shown .top-menu-login-link {
  display: inline-block;
  vertical-align: middle;
}
body.page_for-partners .footer,
body.page_multichain-bridge .footer,
body.page_crypto-exchange .footer {
  padding-top: 308px;
}
body.page_warm-wallets .footer {
  padding-top: 365px;
}
.loader-icon {
  display: block;
}
.loader-icon_absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized) {
  display: flex;
  background-color: #49496c;
  border-color: #49496c;
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized):hover {
  background-color: #4f4f79;
  border-color: #4f4f79;
}
.page_authorization-new-theme .authorization-user__buttons {
  display: none;
}
@media screen and (min-width: 992px) {
  .page_exchange .page__warning-api {
    margin-bottom: 90px;
  }
  body.page_for-partners .footer,
  body.page_multichain-bridge .footer,
  body.page_crypto-exchange .footer {
    padding-top: 380px;
  }
  body.page_warm-wallets .footer {
    padding-top: 355px;
  }
}
@media screen and (min-width: 1200px) {
  body.page_partners-log-in_shown .top-menu-login-link {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .warning-api .container {
    padding: 0 40px;
  }
}
.localization-switcher--arrow-menu {
  display: none;
  position: relative;
  gap: 4px;
  align-items: center;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 0.1px;
  white-space: nowrap;
  margin-inline-start: 18px;
  padding: 29px 0 27px;
  cursor: pointer;
}
.localization-switcher--arrow-menu:hover
  .localization-switcher--language-tooltip {
  display: block;
}
.localization-switcher--arrow-menu:hover {
  color: #00c26f;
  text-decoration: none;
}
.localization-switcher--arrow-menu.localization-switcher--arrow-menu_hidden:hover {
  color: #ffffff;
  text-decoration: none;
}
.localization-switcher--arrow-menu:hover svg {
  fill: #00c26f;
  stroke: #00c26f;
}
.localization-switcher--arrow-menu svg {
  fill: #fff;
  stroke: #fff;
}
.localization-switcher--arrow {
  display: flex;
  align-items: center;
  width: 9px;
}
.localization-switcher--arrow_hidden {
  opacity: 0;
  pointer-events: none;
}
.localization-switcher--arrow-menu_hidden:hover
  .localization-switcher-dropdown-list {
  display: none;
}
.localization-switcher--list:hover {
  background: #f7f7f9;
}
.localization-switcher--language-tooltip {
  position: absolute;
  top: 75px;
  right: 0%;
  z-index: 1000;
  display: none;
  overflow: hidden;
  background: #fff;
  border-top: 6px solid #00c26f;
  border-radius: 5px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}
html[dir="rtl"] .localization-switcher--language-tooltip {
  right: unset;
  left: -10%;
}
.localization-switcher--language-tooltip-content {
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.localization-switcher--language-tooltip-content__scrollable::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}
.localization-switcher--language-tooltip-content__scrollable::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.localization-switcher--language-tooltip-content__without-scroll {
  margin-top: 7px;
  margin-bottom: 7px;
  overflow: hidden;
}
.localization-switcher--list {
  color: #2b2b37;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.localization-switcher--list a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 16px;
  transition: none;
}
.localization-switcher--list a .active-navigation-link {
  color: #a4a3aa;
}
.localization-switcher--list a:hover {
  color: inherit;
}
.localization-switcher--tokens-link {
  color: #00c26f;
}
.localization-switcher--language-link {
  position: relative;
  color: #2b2b37;
  margin-inline-start: 26px;
  padding-top: 10px;
  padding-bottom: 9px;
  padding-inline-start: 25px;
  padding-inline-end: 20px;
}
[lang="fil"] .localization-switcher a,
.localization-switcher a[lang="nl"] {
  display: flex;
  align-items: center;
  white-space: normal;
}
[lang="fil"] .localization-switcher--arrow-menu,
[lang="nl"] .localization-switcher--arrow-menu {
  display: flex;
  align-items: center;
}
.flags-position:before {
  position: absolute;
  top: 13px;
  left: -7px;
}
html[dir="rtl"] .flags-position:before {
  left: unset;
  right: -7px;
}
.flag-top-position:before {
  position: relative;
}
.localization-switcher--item_language:before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.localization-switcher--arrow-menu:last-child
  .localization-switcher--list
  a:before {
  content: "";
  width: 14px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-inline-end: 5px;
}
.localization-switcher--flag-language-ar:before,
.localization-switcher--list a[data-lang="ar"]:before {
  background-image: url(7ebb11140b6d98956b5f.svg);
}
.localization-switcher--flag-language-cs:before,
.localization-switcher--list a[data-lang="cs"]:before {
  background-image: url(7d1138bc8f1811368b44.svg);
}
.localization-switcher--flag-language-da:before,
.localization-switcher--list a[data-lang="da"]:before {
  background-image: url(de71511a3717fa2e2d27.svg);
}
.localization-switcher--flag-language-de:before,
.localization-switcher--list a[data-lang="de"]:before {
  background-image: url(961c51210d660a0e9b2a.svg);
}
.localization-switcher--flag-language-el:before,
.localization-switcher--list a[data-lang="el"]:before {
  background-image: url(74bf0c7f6a2cfb2c6c4e.svg);
}
.localization-switcher--flag-language-en:before,
.localization-switcher--list a[data-lang="en"]:before {
  background-image: url(6fc51ae04305a7bb2bfe.svg);
}
.localization-switcher--flag-language-es:before,
.localization-switcher--list a[data-lang="es"]:before {
  background-image: url(0e220fc38a3fa638cef5.svg);
}
.localization-switcher--flag-language-fa:before,
.localization-switcher--list a[data-lang="fa"]:before {
  background-image: url(2515b621cdd3e15777c4.svg);
}
.localization-switcher--flag-language-he:before,
.localization-switcher--list a[data-lang="he"]:before {
  background-image: url(eb01836bb6b12256eb88.svg);
}
.localization-switcher--flag-language-fr:before,
.localization-switcher--list a[data-lang="fr"]:before {
  background-image: url(8000347e09782e23592f.svg);
}
.localization-switcher--flag-language-hi:before,
.localization-switcher--list a[data-lang="hi"]:before {
  background-image: url(34ab61d232e92ed934a3.svg);
}
.localization-switcher--flag-language-hu:before,
.localization-switcher--list a[data-lang="hu"]:before {
  background-image: url(12736512848557260f86.svg);
}
.localization-switcher--flag-language-id:before,
.localization-switcher--list a[data-lang="id"]:before {
  background-image: url(8a32749b75c98fad94c7.svg);
}
.localization-switcher--flag-language-it:before,
.localization-switcher--list a[data-lang="it"]:before {
  background-image: url(f19397719372b4a9aa07.svg);
}
.localization-switcher--flag-language-ja:before,
.localization-switcher--list a[data-lang="ja"]:before {
  background-image: url(6cb58bcf4bf940aad91c.svg);
}
.localization-switcher--flag-language-ko:before,
.localization-switcher--list a[data-lang="ko"]:before {
  background-image: url(42c98db2b177a0fa9636.svg);
}
.localization-switcher--flag-language-ms:before,
.localization-switcher--list a[data-lang="ms"]:before {
  background-image: url(0c2231d0c6bd06f5473c.svg);
}
.localization-switcher--flag-language-nl:before,
.localization-switcher--list a[data-lang="nl"]:before {
  background-image: url(242ae1d220d69526916b.svg);
}
.localization-switcher--flag-language-pl:before,
.localization-switcher--list a[data-lang="pl"]:before {
  background-image: url(fd94cb9f5eb36b596e33.svg);
}
.localization-switcher--flag-language-pt:before,
.localization-switcher--list a[data-lang="pt"]:before {
  background-image: url(09e2f5a1de9117c64029.svg);
}
.localization-switcher--flag-language-ru:before,
.localization-switcher--list a[data-lang="ru"]:before {
  background-image: url(99f1eb9566e9bd0cf8f3.svg);
}
.localization-switcher--flag-language-sv:before,
.localization-switcher--list a[data-lang="sv"]:before {
  background-image: url(837a1813144fdf410a73.svg);
}
.localization-switcher--flag-language-th:before,
.localization-switcher--list a[data-lang="th"]:before {
  background-image: url(9b4747df329342f7468d.svg);
}
.localization-switcher--flag-language-tl:before,
.localization-switcher--list a[data-lang="tl"]:before {
  background-image: url(6189b1ef1910b593dc54.svg);
}
.localization-switcher--flag-language-tr:before,
.localization-switcher--list a[data-lang="tr"]:before {
  background-image: url(d79cb9af31bf161e52af.svg);
}
.localization-switcher--flag-language-uk:before,
.localization-switcher--list a[data-lang="uk"]:before {
  background-image: url(39e0a08cac0f1967c579.svg);
}
.localization-switcher--flag-language-vi:before,
.localization-switcher--list a[data-lang="vi"]:before {
  background-image: url(224110cb9235ecc88815.svg);
}
.localization-switcher--flag-language-zh:before,
.localization-switcher--list a[data-lang="zh"]:before {
  background-image: url(fea93aee759e5ca8abc1.svg);
}
.localization-switcher--arrow-menu:not(:last-child)
  .localization-switcher--list
  a {
  position: relative;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.localization-switcher--list_foreign-link a:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-inline-start: 8px;
  background-image: url(26fa9d8036601fbc4669.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.localization-switcher--list img {
  margin-inline-end: 8px;
}
.localization-switcher__last-accent .localization-switcher--list:last-child {
  padding-top: 6px;
  border-top: 1px solid #dce2ea;
}
.localization-switcher--arrow-menu:nth-child(3) > div {
  cursor: initial;
}
.localization-switcher--arrow-menu:nth-child(3)
  .localization-switcher--language-tooltip-content__without-scroll {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .localization-switcher--arrow {
    margin-inline-start: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .localization-switcher--arrow-menu {
    display: flex;
  }
}
@media screen and (min-width: 1440px) {
  .localization-switcher--arrow-menu {
    margin-inline-start: 32px;
  }
  .localization-switcher--language-tooltip {
    right: -10%;
  }
  html[dir="rtl"] .localization-switcher--language-tooltip {
    right: unset;
  }
}
.custom-link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #00c26f;
  padding-inline-end: 18px;
  cursor: pointer;
}
html[dir="rtl"] .custom-link {
  padding-inline-end: unset;
  padding-inline-start: 18px;
}
.custom-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #00c26f;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  margin: auto;
}
html[dir="rtl"] .custom-link:after {
  right: unset;
  transform: rotate(135deg);
}
.custom-link:hover {
  color: #00c26f;
}
@media screen and (min-width: 992px) {
  .custom-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00c26f;
    transition: width ease 0.2s;
  }
  .custom-link:hover:before {
    width: calc(100% - 18px);
  }
  .custom-link:focus:before {
    width: 0;
  }
}
.dropdown__content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}
.dropdown__content_open {
  opacity: 1;
  max-height: 800px;
}
.dropdown__topic.dropdown__topic-with-icon {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px;
  color: #ffffff;
}
.dropdown__topic-icon {
  width: 32px;
  height: 32px;
}
.dropdown__icon {
  color: #8b86af;
  transition: all 0.3s ease-in-out;
}
.dropdown__icon_open {
  transform: rotateZ(45deg);
}
.header {
  position: relative;
  width: 100%;
  background: #2b2b36;
}
@media screen and (max-width: 767px) {
  .header {
    display: block;
    height: 60px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .header {
    height: 75px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  .header {
    display: flex;
    align-items: center;
    margin-bottom: 90px;
    z-index: 999;
  }
}
.header.header_scrolled {
  position: sticky;
  top: -75px;
  z-index: 999;
  transition: top 0.3s ease-in-out;
}
.header.header_scrolled.header_scroll-up {
  top: 0;
}
@media screen and (max-width: 767px) {
  .header.header_margin_disabled {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .header.header_margin_disabled {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .header.header_margin_disabled {
    margin-bottom: 0;
  }
}
.header-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.header .logotype--main {
  position: relative;
  height: auto;
  transform: scale(0.7);
  transform-origin: left;
  display: flex;
}
html[dir="rtl"] .header .logotype--main {
  transform-origin: right;
}
.header .logotype--sub {
  display: none;
}
.header .logotype--main .logotype-christmas {
  position: relative;
  top: 4px;
  left: 3px;
}
.header .logotype--main .svg-sprite--logotype {
  transform: scale(1.12);
}
@media screen and (min-width: 1440px) {
  .header .logotype--main {
    width: auto;
    transform: none;
  }
  .header .logotype--sub {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header-menu {
    height: 75px;
  }
  .header .container {
    width: 100%;
    padding: 0 16px;
  }
}
@media (min-width: 1440px) {
  .header .container {
    padding: 0 40px;
  }
}
.mobile-qr {
  display: none;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #3d3d4b;
  transition: all 0.3s ease;
  border-radius: 6px;
  background-color: #2b2b37;
  margin: 0;
  cursor: pointer;
}
.mobile-qr:hover {
  border-color: #00c26f;
}
.mobile-qr_active {
  border-color: #00c26f;
}
.mobile-qr__tooltip {
  background-color: #ffffff;
  border-radius: 9px;
  width: 122px;
  height: 122px;
  padding: 12px;
  border: 2px solid #00c26f;
  z-index: 9;
}
.mobile-qr__tooltip::after {
  content: "";
  position: absolute;
  left: calc(50% - 14px);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #00c26f;
}
.mobile-qr__tooltip[data-popper-placement*="top"]::after {
  bottom: -14px;
}
.mobile-qr__tooltip[data-popper-placement*="bottom"]::after {
  top: -14px;
  transform: rotateZ(180deg);
}
.mobile-qr__tooltip::before {
  content: "";
  position: absolute;
  left: calc(50% - 11px);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 12px solid #ffffff;
  z-index: 8;
}
.mobile-qr__tooltip[data-popper-placement*="top"]::before {
  bottom: -11px;
}
.mobile-qr__tooltip[data-popper-placement*="bottom"]::before {
  top: -11px;
  transform: rotateZ(180deg);
}
.mobile-qr__tooltip-content {
  background-color: #ffffff;
  width: 96px;
  height: 96px;
  border-radius: 4px;
}
@media screen and (min-width: 992px) {
  .mobile-qr {
    display: flex;
  }
}
.footer {
  display: block;
  background: #2b2b36;
  padding: 56px 0;
  width: 100%;
  position: relative;
}
.footer__navigation {
  padding: 0 0;
}
.footer__navigation-item {
  padding-inline-end: 30px;
}
.products-navigation-item {
  padding-inline-start: 16px;
}
.footer__navigation-title {
  font-size: 16px;
  color: #8b86af;
  margin: 0 0 24px;
  font-weight: 700;
  white-space: nowrap;
}
.footer__navigation-list {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-weight: 300;
}
.footer__navigation-list-item_link-icon {
  display: flex;
  align-items: center;
}
.footer__navigation-list-item_link-icon .icon-open {
  font-size: 10px;
  color: #a4a3aa;
  margin-inline-start: 4px;
  margin-top: 6px;
}
.footer__navigation-list-item:not(:last-of-type) {
  margin-bottom: 16px;
}
.footer__navigation-list-item a {
  display: block;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  white-space: normal;
}
.footer__navigation-list-item a.active-navigation-link {
  color: #56566e;
}
.footer__navigation-list-item a:hover {
  color: #00c26f;
}
.new-badge__circle {
  position: relative;
  width: fit-content;
}
.new-badge__circle::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c26f;
  animation: blink 1.5s infinite;
}
.new-badge__circle:hover::before {
  animation: none;
}
.new-badge {
  position: relative;
}
.new-badge::before {
  content: "NEW";
  position: absolute;
  top: 0;
  right: -45px;
  width: 38px;
  height: 20px;
  background: #00c26f;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
}
.footer--bottom {
  margin-top: 0;
}
.footer--logotype {
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
  border-bottom: none;
}
.footer .logotype {
  display: none;
}
.footer .logotype--sub {
  display: none;
}
.footer--social-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 0;
  gap: 10px;
  border-top: 1px solid #3d3d4b;
}
.footer--copyright {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}
.footer--copyright .copyright {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  gap: 10px;
}
.social-copyright__mobile {
  margin-top: 28px;
}
.footer--copyright-text,
.footer--copyright-description {
  text-align: start;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #8b86af;
}
.footer--copyright-description {
  line-height: 16px;
}
.footer--copyright-text {
  line-height: 20px;
}
.footer--trustpilot {
  color: #5c5780;
  width: 83px;
  height: 20px;
  background: url(728fb4c600d2f0a068fe.svg) center center no-repeat;
  background-size: contain;
  transform: translateY(-2px);
}
.footer--bestchange {
  width: 83px;
}
.footer--bestchange img {
  max-width: 100%;
  height: auto;
  display: block;
}
.footer--trustpilot-text {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  color: #8b86af;
}
.footer--trustpilot:hover {
  color: #00c26f;
}
.footer--mobile-apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  grid-gap: 24px;
  flex-grow: 1;
  margin-top: 10px;
  margin-inline-start: -15px;
  margin-inline-end: 0;
}
.footer--mobile-apps > p {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #8b86af;
}
.foreign-link-icon {
  width: 12px;
  height: 12px;
  margin-inline-start: 4px;
}
html[dir="rtl"] .foreign-link-icon {
  transform: rotate(270deg);
}
.footer--links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 24px;
  margin-bottom: 28px;
  max-height: 50px;
}
.footer--links .separator {
  background-color: #3d3d4b;
  display: none;
  margin: 0;
}
.footer--accordion {
  display: none;
}
.separator {
  height: 40px;
  width: 1px;
  display: block;
  margin: 0 10px;
  background: #fff;
}
.exchange-pairs {
  width: auto;
}
.exchange-pairs-end {
  margin-top: 35px;
}
.social-icon {
  display: flex;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.exchange-mobile-apps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0 60px;
  gap: 24px;
}
.exchange-mobile-apps_btn {
  padding: 0;
  outline: none;
  background-color: transparent;
}
.footer-mobile-apps__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #3d3d4b;
  max-width: 164px;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  transition: all ease 0.3s;
  background: #2b2b36;
  box-sizing: border-box;
}
.footer-mobile-apps__link:last-child {
  margin-bottom: 0;
}
.footer-mobile-apps__link:hover {
  border-color: #00c26f;
  box-sizing: border-box;
}
.footer-mobile-apps__link:active {
  border: 1px solid #3d3d4b;
  box-sizing: border-box;
  box-shadow: inset -2px -2px 6px rgba(250, 251, 255, 0.05),
    inset 2px 2px 8px rgba(43, 43, 54, 0.6);
}
.exchange-mobile-apps_seamless-crypto-exchange {
  margin: 30px;
  padding: 0;
}
.exchange-mobile-apps_seamless-crypto-exchange .footer-mobile-apps__link {
  border-color: #363645;
}
.mobile-apps-icons {
  display: flex;
  grid-gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}
.logotype--main {
  margin-inline-end: 10px;
}
.footer--social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 24px;
  height: 30px;
  font-size: 22px;
}
.footer__trustpilot-widget {
  height: 120px;
  margin-inline-start: -160px;
  transform-origin: right;
  transform: scale(0.5);
}
html[dir="rtl"] .footer__trustpilot-widget {
  transform-origin: left;
}
@media screen and (max-width: 991px) {
  .social-copyright {
    width: max-content;
    margin-top: 30px;
  }
  .container {
    width: initial;
  }
  .separator {
    display: none;
  }
  .footer--mobile-apps {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin: 0;
    grid-gap: 16px;
  }
  .footer--mobile-apps > p {
    margin: 0;
    font-size: 14px;
  }
  .footer-mobile-apps__link {
    height: 48px;
  }
  .footer--apk-download {
    width: 138px;
    height: 48px;
  }
  .footer--accordion {
    display: block;
    margin-inline-start: 16px;
    margin-inline-end: 16px;
  }
  .footer--trustpilot-text {
    font-size: 14px;
    align-self: baseline;
  }
  .icon-bestchange svg {
    width: 83.85px;
    height: 17.5px;
  }
  .desktop-footer {
    display: none;
  }
  .footer--accordion section {
    width: 100%;
    border-top: 1px solid #3d3d4b;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .exchange-pairs-end,
  .footer__navigation-list {
    margin-top: 0 !important;
  }
  .footer--accordion section:last-child {
    border-bottom: 1px solid #3d3d4b;
  }
  .footer--accordion section > a {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #8b86af;
  }
  .footer__navigation-list-item a {
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    position: relative;
  }
  .footer--accordion h2 + div {
    height: 0;
    overflow: hidden;
    -moz-transition: height 0.3s ease-in-out;
    -webkit-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
  }
  .footer--accordion :target h2 a:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    background: url(505784393a2fe1a194e3.svg) no-repeat right center;
  }
  .footer--accordion-toggle {
    display: flex;
    justify-content: space-between;
  }
  .footer--accordion-toggle__button {
    transition: transform 0.3s ease-in-out;
  }
  .footer--accordion-content {
    display: none;
    transition: height 0.3s ease-in-out;
  }
  .footer--accordion section.active .footer--accordion-content {
    display: flex;
    margin-top: 16px;
  }
  .footer--accordion section.active .footer--accordion-toggle__button {
    transform: rotate(45deg);
  }
  .footer__navigation-list {
    min-height: 295px;
  }
  .footer__navigation-list_autoheight {
    min-height: unset;
  }
  .nowrap {
    white-space: nowrap;
  }
}
@media screen and (min-width: 380px) {
  .footer__navigation {
    padding: 0;
  }
  .footer__navigation-item:not(:first-of-type) {
    padding-inline-start: 10px;
  }
}
@media screen and (min-width: 992px) {
  .footer__navigation-item {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    width: 20%;
  }
  .footer {
    padding: 40px 0;
  }
  .footer .logotype {
    display: block;
  }
  .footer--mobile-apps {
    justify-content: flex-end;
  }
  .footer--mobile-apps > p,
  .footer--mobile-apps {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mobile-apps-icons {
    grid-gap: 24px;
    width: auto;
  }
  .footer-mobile-apps__link:last-child {
    margin-inline-end: 0;
  }
  .exchange-mobile-apps_seamless-crypto-exchange {
    padding: 0;
    flex-direction: row;
    align-items: center;
  }
  .exchange-mobile-apps_seamless-crypto-exchange .footer-mobile-apps__link {
    margin-bottom: 9px;
    margin-inline-end: 0;
  }
  .new-badge__circle_tooltip-new {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .new-badge__circle:hover .new-badge__circle_tooltip-new {
    z-index: 1;
    opacity: 1;
  }
  .new-badge__circle::before {
    right: -10px;
  }
  .social-copyright__mobile {
    display: none;
  }
  .footer__social-copyright {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }
  .footer--social-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    border: none;
    margin-bottom: 90px;
    margin-top: 16px;
    padding: 0;
  }
  .footer--social {
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 18px;
  }
  .footer--copyright {
    justify-content: flex-start;
    white-space: nowrap;
    padding-top: 40px;
    padding-inline-end: 15px;
    padding-inline-start: 15px;
  }
  .footer--bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
  .footer--logotype {
    align-items: flex-end;
    flex-wrap: wrap;
    padding-top: 6px;
    margin-bottom: 24px;
  }
  .footer--logotype::after {
    content: "";
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #3d3d4b;
    display: block;
    margin-top: 22px;
  }
  .exchange-pairs-end {
    padding-inline-start: 0;
  }
  .footer__navigation {
    display: flex;
    justify-content: space-between;
  }
  .pairs {
    display: flex;
    justify-content: flex-start;
    width: 40%;
  }
  .exchange-pairs {
    padding-inline-end: 24px;
    max-width: 91px;
    box-sizing: content-box;
    padding-inline-start: 0;
    white-space: nowrap;
  }
  .first-pairs-column {
    padding-inline-start: 10px;
  }
  .without-title {
    margin-top: 45.5px;
    padding-inline-start: 0 !important;
  }
  .copyright {
    white-space: break-spaces;
  }
  .separator {
    margin: 0 4px;
  }
  .follow-us-title {
    max-width: 237px;
    margin-top: 83px;
  }
  .footer-sections-separator {
    display: block;
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #3d3d4b;
    margin-top: 24px;
    margin-bottom: 22px;
  }
  .footer--links {
    display: grid;
    grid-template-rows: repeat(auto-fit, 70px);
    grid-gap: 15px;
    width: fit-content;
    margin-bottom: 0;
  }
  .footer--links .separator {
    display: block;
  }
  .footer--trustpilot-text {
    flex-basis: 100%;
  }
  .footer--trustpilot {
    width: 83px;
    height: 24px;
  }
  .footer--bestchange {
    width: 83px;
  }
  .footer .logotype--sub {
    display: block;
  }
  .last-column {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
  }
  .footer__trustpilot-widget {
    transform-origin: left;
    margin-inline-start: 0;
    transform: scale(0.55);
  }
  html[dir="rtl"] .footer__trustpilot-widget {
    transform-origin: right;
  }
}
@media (min-width: 1200px) {
  .mobile-apps-icons {
    grid-gap: 24px;
  }
  .footer--links {
    width: 235px;
  }
  .footer--trustpilot {
    width: 98px;
  }
  .footer--bestchange {
    width: 115px;
  }
  .footer--links .separator {
    margin: 0 4px;
  }
  .nowrap {
    white-space: nowrap;
  }
  .copyright {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .last-column {
    width: 21.5%;
  }
}
@keyframes blink {
  50% {
    opacity: 0.2;
  }
}
.button {
  background: #00c26f;
  border: none;
  color: white;
  height: 50px;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  width: auto;
  padding: 0 50px;
  cursor: pointer;
  position: relative;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .button {
    height: 42px;
    line-height: 42px;
    padding: 0 30px;
  }
}
.button:active {
  opacity: 0.8;
}
.button:hover {
  color: white;
  background: #16d785;
}
.button:disabled {
  background: #cacaca;
  cursor: not-allowed;
}
.button:hover:disabled {
  background: #cacaca;
}
.button--icon {
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
  line-height: 1;
  margin-inline-end: 10px;
}
.button__black {
  background: #2b2b36;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}
.button__black:hover {
  background: #00c26f;
}
.button__arrow {
  padding-right: 50px;
}
.button__arrow:hover {
  background-color: #3d3d70;
}
.button__arrow::before {
  display: block;
  color: #00c26f;
  position: absolute;
  top: 1px;
  right: 10px;
  font-size: 12px;
}
.button__arrow:hover::before {
  color: #ffff;
}
.button__long {
  width: 100%;
  max-width: 220px;
}
.button__full {
  width: 100%;
}
.button__thin {
  width: 100px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  background: #00c26f;
  padding: 1px 15px 0;
  transition: background-color ease 0.3s;
}
.button__thin:hover {
  background: #00c87a;
}
.button__thin.button__arrow {
  text-align: left;
}
.button__thin.button__arrow::before {
  color: #fff;
}
.button__narrow {
  border-radius: 5px;
  height: 46px;
  line-height: 46px;
  padding: 0 46px;
}
.button__bordered {
  background: transparent;
  border: 2px solid #00c26f;
  color: #00c26f;
  line-height: 40px;
  border-radius: 5px;
}
.button__bordered:hover {
  background: transparent;
  opacity: 0.5;
  color: #00c26f;
}
.button__small {
  border-radius: 5px;
  height: 30px;
  font-size: 13px;
  line-height: 28px;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .button__small {
    padding: 0 18px;
  }
}
.button__tiny {
  border-radius: 5px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  padding: 0 20px;
}
.button__bordered.button__tiny {
  border-width: 1px;
}
.button-close {
  width: 30px;
  height: 30px;
  position: relative;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}
.button-close::before,
.button-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  margin: auto;
  background-color: #fff;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.button-close__dark::before,
.button-close__dark::after {
  background-color: #56566e;
}
.button-close__small {
  width: 15px;
  height: 15px;
}
.button-close__small::before,
.button-close__small::after {
  width: 15px;
}
.button-close::after {
  transform: rotate(-45deg);
}
.button__orange-action {
  background-color: transparent;
  color: #eaa523;
  border: 2px solid #eaa523;
  border-color: #eaa523;
  position: relative;
  width: auto;
  height: 34px;
  line-height: 30px;
  padding: 0px 15px;
  font-size: 14px;
  letter-spacing: 1px;
}
.button__orange-action:hover {
  color: #fff;
  background: #eaa523;
}
.recommended-wallet-button {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  max-width: fit-content;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  background-image: linear-gradient(#2b2a36, #2b2a36),
    linear-gradient(
      268.76deg,
      #fb9600 1.78%,
      #00c26f 25.98%,
      #6696d6 50.43%,
      #f28984 76.64%,
      #5fcef0 98.23%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0 20px;
  transition: color ease 0.3s;
}
.recommended-wallet-button:hover {
  color: #00c26f;
}
.recommended-wallet-button:hover .recommended-wallet-button__stars-icon {
  top: -19px;
  right: -26px;
  transform: rotate(10deg);
}
html[dir="rtl"]
  .recommended-wallet-button:hover
  .recommended-wallet-button__stars-icon {
  left: -26px;
  right: unset;
}
.recommended-wallet-button__logo {
  margin-inline-start: 8px;
}
.recommended-wallet-button__stars-icon {
  display: block;
  position: absolute;
  top: -17px;
  right: -24px;
  transition: all ease 0.3s;
}
html[dir="rtl"] .recommended-wallet-button__stars-icon {
  transform: scaleX(-1);
  right: unset;
  left: -24px;
}
.recommended-wallet-button_desktop {
  display: none;
}
.recommended-wallet-button_mobile {
  display: inline-flex;
}
.button--stars-icon {
  width: 55px;
  height: 26px;
  position: absolute;
  top: -16px;
  right: -35px;
  transform-origin: center;
  transform: scale(0.7) rotate(27deg);
}
.button__gray {
  color: #808086;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.3px;
  background: #333341;
  border-radius: 4px;
}
.button__gray:hover {
  color: #fff;
  background: #434352;
}
.button__gray_active {
  color: #fff;
  background: #434352;
}
@media screen and (min-width: 992px) {
  .recommended-wallet-button_desktop {
    display: inline-flex;
  }
  .recommended-wallet-button_mobile {
    display: none;
  }
}
input[required] {
  outline: none;
  box-shadow: none;
}
.field {
  margin-bottom: 9px;
  max-width: 540px;
}
@media (max-width: 768px) {
  .field {
    margin-bottom: 16px;
  }
}
.field::after {
  content: "";
  display: block;
  clear: both;
}
.field input {
  width: 100%;
  margin: 0;
  padding-right: 20px;
}
.field__buttoned {
  display: inline-flex;
  width: 100%;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .field__buttoned {
    display: block;
  }
}
.field__fullwidth {
  max-width: none;
  width: 100%;
}
.field__fullwidth > .relative {
  width: 100%;
}
.field__buttoned .button {
  margin: 0;
  margin-left: 10px;
  height: 50px;
  line-height: 48px;
}
@media (max-width: 768px) {
  .field__buttoned .button {
    margin-left: 0;
    margin-top: 10px;
  }
}
.field--label {
  color: #56566e;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.field button {
  margin-top: 10px;
}
.field--action {
  color: #00c26f;
  cursor: pointer;
}
.field--action__top {
  float: right;
}
.field--button {
  float: right;
  padding-left: 5px;
  padding-right: 5px;
  min-width: 180px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .field--button {
    float: none;
  }
}
.field--note {
  background-color: #faf8fb;
  max-width: 60%;
  border-radius: 5px;
  padding: 5px;
  float: left;
  margin-top: 10px;
}
.field-note {
  max-width: 540px;
  font-size: 15px;
  color: #a4a3aa;
  letter-spacing: 0.3px;
  text-align: left;
  line-height: 22px;
}
@media (max-width: 768px) {
  .field-note {
    font-size: 14px;
  }
}
.field--error {
  color: red;
}
.field--status {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 27px;
}
.field--status .icon-success {
  color: #00c26f;
  font-size: 18px;
}
.field input:focus {
  outline-color: #00c26f;
}
.field.field__dark input {
  background: #36324a;
  color: #d7dfe8;
  border-color: transparent;
}
.field__dark {
  background: #36324a;
}
.form--title {
  color: #00c26f;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.014em;
}
.form--recapcha {
  float: left;
}
input.editable-on-focus {
  border-color: transparent;
  background-color: transparent;
  transition: all 300ms;
  box-shadow: none;
  outline: none;
  color: #b6c0cb;
}
input.editable-on-focus:focus {
  background: white;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
  color: #5c5780;
}
input.editable-on-focus + .editable-on-focus--save {
  opacity: 0;
  display: block;
  position: absolute;
  cursor: pointer;
  color: #00c26f;
}
input.editable-on-focus:focus + .editable-on-focus--save {
  opacity: 1;
}
.flex-table {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3em 0;
  padding: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
  overflow: hidden;
}
.flex-table--cell,
.flex-table--head-cell {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  padding: 13px;
  background: #fff;
}
.flex-table--head-cell {
  background: #f3f5f8;
  line-height: 1;
}
.flex-table--cell {
  padding: 30px 13px;
  font-size: 18px;
  color: #56566e;
}
.flex-table--cell.even {
  background: #f3f5f8;
}
.flex-table__2 > .flex-table--cell,
.flex-table__2 > .flex-table--head-cell {
  flex-basis: 50%;
}
.flex-table__3 > .flex-table--cell,
.flex-table__3 > .flex-table--head-cell {
  flex-basis: 33.33%;
}
.flex-table__4 > .flex-table--cell,
.flex-table__4 > .flex-table--head-cell {
  flex-basis: 25%;
}
.flex-table__5 > .flex-table--cell,
.flex-table__5 > .flex-table--head-cell {
  flex-basis: 20%;
}
.flex-table__6 > .flex-table--cell,
.flex-table__6 > .flex-table--head-cell {
  flex-basis: 16.6%;
}
.flex-table__7 > .flex-table--cell,
.flex-table__7 > .flex-table--head-cell {
  flex-basis: 14.28%;
}
.flex-table--cell__compact {
  padding-top: 10px;
  padding-bottom: 10px;
}
.flex-grow-normal {
  flex-grow: 1;
}
.content {
  padding-bottom: 90px;
  min-height: calc(100vh - 105px - 424px);
}
.content a {
  border-bottom: 1px solid transparent;
  transition: border-bottom-color ease 0.3s;
}
.content a:hover {
  color: #00c26f;
  border-bottom-color: #00c26f;
}
.static-page .bread-crumbs--item {
  line-height: 12px;
}
.static-page .bread-crumbs--item__dark {
  color: #5c5780;
}
.static-page .bread-crumbs--item__active.bread-crumbs--item__dark {
  color: #56566e;
}
.static-page .bread-crumbs--item__light {
  color: #a4a3aa;
}
.static-page .bread-crumbs--icon {
  list-style: none;
}
.static-page .bread-crumbs--icon__dark {
  color: #5c5780;
}
.static-page .bread-crumbs--icon__light {
  color: #a4a3aa;
}
.static-page ul,
.static-page ol {
  color: #56566e;
}
.static-page li {
  position: relative;
  z-index: 1;
  opacity: 0.8;
  font-size: 17px;
  color: #2b2b36;
  letter-spacing: 0.1px;
}
@media (max-width: 768px) {
  .static-page li {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  .static-page li {
    font-size: 15px;
  }
}
.field__inline {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.primary-color {
  color: #00c26f;
}
.darken-green-color {
  color: #00c26f;
}
.underlined {
  text-decoration: underline;
}
.upper {
  text-transform: uppercase;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.middle {
  display: flex;
  align-items: center;
}
.flex-left {
  justify-content: flex-start;
}
.flex-right {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.dif {
  display: inline-flex;
}
.clearfix {
  clear: both;
}
.link-like {
  color: #00c26f;
  cursor: pointer;
}
.link-like:hover {
  text-decoration: underline;
}
.normal {
  font-weight: 400;
}
.light {
  font-weight: 300;
}
.np {
  padding: 0;
}
.rounded {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  width: 120px;
  height: 120px;
}
.rounded img {
  width: 100%;
}
.text-bigger {
  font-size: 1.5em;
}
.primary {
  color: #00c26f;
}
.white {
  color: #fff;
}
.bg-gray {
  background-color: #f6f4f8;
}
.bg-white {
  background-color: #fff;
}
.box {
  background-color: #f6f4f8;
  padding: 30px;
  margin: 45px 0;
}
.address-text {
  user-select: all;
}
.hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 2px solid #eae8ef;
}
.hr__small {
  border: 0;
  overflow: visible;
}
.hr__small::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #eae8ef;
  margin: auto;
}
.relative {
  position: relative;
}
.striped {
  background: repeating-linear-gradient(
    45deg,
    #ddd 1px,
    #ddd 2px,
    transparent 3px,
    transparent 8px,
    #ddd 9px
  );
}
.section {
  padding: 32px 40px;
  margin: 16px 0;
}
@media (max-width: 480px) {
  .section {
    padding: 10px;
  }
}
.section h1:first-child,
.section h2:first-child,
.section h3:first-child,
.section p:first-child {
  margin-top: 0;
}
.section__dark {
  background-color: #2b2b36;
  color: #dadadb;
}
.section__white {
  background-color: #fff;
}
@media (max-width: 480px) {
  .section__white {
    overflow: auto;
    padding: 10px;
  }
}
.section__bordered-green {
  border: 2px solid #00c26f;
}
.section__no-padding {
  padding: 0;
}
.d-none {
  display: none;
}
.sequence {
  list-style: none;
  display: block;
  margin: 0;
  padding: 10px 0;
  padding-left: 30px;
  font-size: 12px;
  position: relative;
}
.sequence__compact {
  height: 35px;
}
.sequence::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 10px;
  width: 1px;
  height: 10px;
  background-color: #d8d8d8;
}
.sequence--item {
  height: auto;
  position: relative;
  padding: 0;
  max-height: 0px;
  opacity: 0;
  transition: max-height 500ms, opacity 500ms, padding 500ms;
}
.sequence--item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -26.5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #d8d8d8;
}
.sequence--item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: #d8d8d8;
}
.sequence--item:last-child::after {
  display: none;
}
.sequence--item__active {
  color: #3bee81;
  cursor: pointer;
  font-size: 14px;
}
.sequence--item__visible {
  max-height: 9999px;
  opacity: 1;
}
.sequence--item-content {
  padding: 10px 0;
}
.sequence--item-name {
  line-height: 1;
}
.sequence--item__iconed::before {
  display: none;
}
.sequence--item-icon {
  position: absolute;
  left: -26.5px;
  top: 0;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  -webkit-animation-name: rcToolTipZoomIn;
  animation-name: rcToolTipZoomIn;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  -webkit-animation-name: rcToolTipZoomOut;
  animation-name: rcToolTipZoomOut;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
@-webkit-keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  line-height: 1.5;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1px;
  opacity: 0.9;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #333;
  text-align: left;
  text-decoration: none;
  background-color: #fff;
  border-radius: 3px;
  min-height: 34px;
  border: 1px solid #b1b1b1;
}
.rc-tooltip-arrow,
.rc-tooltip-arrow-inner {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: -5px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #b1b1b1;
}
.rc-tooltip-placement-top .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topRight .rc-tooltip-arrow-inner {
  bottom: 1px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #fff;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: -5px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #b1b1b1;
}
.rc-tooltip-placement-right .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow-inner {
  left: 1px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #fff;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: -5px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #b1b1b1;
}
.rc-tooltip-placement-left .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow-inner {
  right: 1px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #fff;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: -5px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #b1b1b1;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow-inner {
  top: 1px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #fff;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}
@media (max-width: 480px) {
  .rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
    right: 50%;
  }
}
.socials {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
}
.socials--social {
  margin-right: 17px;
  color: #5c5780;
}
.socials--social:hover {
  color: #00c26f;
}
.socials .icon-youtube {
  position: relative;
  top: 0.1em;
}
.socials .icon-bitcointalk {
  position: relative;
  top: 0.1em;
  font-size: 1.2em;
}
.react-tabs {
  background: #f6f4f8;
}
.react-tabs__tab-list {
  display: inline-flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.react-tabs__tab {
  position: relative;
  padding: 16px 32px;
  font-weight: bold;
  font-size: 19px;
  color: #cdccd1;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.react-tabs__tab--selected {
  color: #2b2b36;
  background-color: #fff;
}
.react-tabs__tab--selected:last-child::after,
.react-tabs__tab--selected:last-child::before {
  display: none;
}
.react-tabs__tab-panel {
  background-color: #fff;
}
.react-tabs__tab-panel--selected {
  padding: 32px;
}
.list__iconed {
  list-style: none;
  padding: 0;
}
.list--item {
  position: relative;
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 26px;
}
.list--icon {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 8px;
  color: #00c26f;
}
.list__iconed li::before {
  content: "";
}
.d-flex_fix {
  display: flex;
}
.justify-content-center_fix {
  justify-content: center;
}
.align-items-center_fix {
  align-items: center;
}
.flex-wrap_fix {
  flex-wrap: wrap;
}
.flex-column_fix {
  flex-direction: column;
}
svg.main-anim.active .ring-1 {
  stroke-dasharray: 864px 864px;
  stroke-dashoffset: 864px;
  -webkit-animation: ring-1 2s 1s linear;
  animation: ring-1 2s 1s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
svg.main-anim.active .ring-2 {
  stroke-dasharray: 1021px;
  stroke-dashoffset: 1021px;
  -webkit-animation: ring-2 2s 2s linear forwards;
  animation: ring-2 2s 2s linear forwards;
}
svg.main-anim.active .scaled-1 {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: scale 0.5s ease-in forwards;
  animation: scale 0.5s ease-in forwards;
}
svg.main-anim.active .scaled-2 {
  -webkit-transform-origin: 167.5px 163.5px;
  transform-origin: 167.5px 163.5px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: scale 0.5s 0.25s ease-in forwards;
  animation: scale 0.5s 0.25s ease-in forwards;
}
@-webkit-keyframes ring-1 {
  from {
    stroke-dashoffset: 864px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ring-1 {
  from {
    stroke-dashoffset: 864px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes ring-2 {
  from {
    stroke-dashoffset: 1021px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ring-2 {
  from {
    stroke-dashoffset: 1021px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes scale {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
svg.main-anim.active path.star-1 {
  -webkit-animation: star-anim-1 5s 0.5s linear infinite;
  animation: star-anim-1 5s 0.5s linear infinite;
}
svg.main-anim.active path.star-2 {
  -webkit-animation: star-anim-2 5s 1s linear infinite;
  animation: star-anim-2 5s 1s linear infinite;
}
svg.main-anim.active path.star-3 {
  -webkit-animation: star-anim-3 5s 1.5s linear infinite;
  animation: star-anim-3 5s 1.5s linear infinite;
}
svg.main-anim.active path.star-4 {
  -webkit-animation: star-anim-4 5s 2s linear infinite;
  animation: star-anim-4 5s 2s linear infinite;
}
svg.main-anim.active path.star-5 {
  -webkit-animation: star-anim-5 5s 2.5s linear infinite;
  animation: star-anim-5 5s 2.5s linear infinite;
}
svg.main-anim.active .star-container > path {
  opacity: 0;
}
svg.main-anim {
  opacity: 0;
  z-index: 1;
  flex-shrink: 0;
}
svg.main-anim.active {
  opacity: 1;
}
@media all and (min-width: 767px) and (max-width: 1199px) {
  svg.main-anim.active {
    transform: scale(0.5);
  }
}
@-webkit-keyframes star-anim-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 259px 279px;
    transform-origin: 259px 279px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 277px 234.5px;
    transform-origin: 277px 234.5px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 295px 190px;
    transform-origin: 295px 190px;
  }
}
@keyframes star-anim-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 259px 279px;
    transform-origin: 259px 279px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 277px 234.5px;
    transform-origin: 277px 234.5px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 295px 190px;
    transform-origin: 295px 190px;
  }
}
@-webkit-keyframes star-anim-2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 30px 130px;
    transform-origin: 30px 130px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 55px 115px;
    transform-origin: 55px 115px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 80px 100px;
    transform-origin: 80px 100px;
  }
}
@keyframes star-anim-2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 30px 130px;
    transform-origin: 30px 130px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 55px 115px;
    transform-origin: 55px 115px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 80px 100px;
    transform-origin: 80px 100px;
  }
}
@-webkit-keyframes star-anim-3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 190px 40px;
    transform-origin: 190px 40px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 230px 70px;
    transform-origin: 230px 70px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 270px 100px;
    transform-origin: 270px 100px;
  }
}
@keyframes star-anim-3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 190px 40px;
    transform-origin: 190px 40px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 230px 70px;
    transform-origin: 230px 70px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 270px 100px;
    transform-origin: 270px 100px;
  }
}
@-webkit-keyframes star-anim-4 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 10px 150px;
    transform-origin: 10px 150px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 35px 200px;
    transform-origin: 35px 200px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 60px 250px;
    transform-origin: 60px 250px;
  }
}
@keyframes star-anim-4 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 10px 150px;
    transform-origin: 10px 150px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 35px 200px;
    transform-origin: 35px 200px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 60px 250px;
    transform-origin: 60px 250px;
  }
}
@-webkit-keyframes star-anim-5 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 250px 320px;
    transform-origin: 250px 320px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 220px 295px;
    transform-origin: 220px 295px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 190px 270px;
    transform-origin: 190px 270px;
  }
}
@keyframes star-anim-5 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 250px 320px;
    transform-origin: 250px 320px;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: 220px 295px;
    transform-origin: 220px 295px;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 190px 270px;
    transform-origin: 190px 270px;
  }
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryHover: #00a451;
  colorPrimaryActive: #007a34;
  colorPrimaryLight: #16d785;
  colorDisabledDark: #6a6a7f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
.main-banner_desktop {
  display: none;
}
.main-banner__link,
.main-banner__link .main-banner-desktop__image {
  display: block;
}
.main-banner__link .main-banner-desktop__image,
.main-banner__link .main-banner-desktop__image img {
  width: 100%;
  height: 60px;
  transition: transform 0.3s;
}
.main-banner__link:hover .main-banner-desktop__image {
  animation: main-banner-animation 2s both infinite ease;
}
.main-banner__link .main-banner__button {
  transition: fill 0.3s;
}
.main-banner__link:hover .main-banner__button {
  fill: #06ac65;
}
@media (min-width: 768px) {
  .main-banner_desktop {
    display: block;
    margin-top: 48px;
  }
  .main-banner_mobile {
    display: none;
  }
  .main-banner_desktop .main-banner__link .main-banner-desktop__image {
    display: block;
    border-radius: 10px;
    transition: opacity ease 0.5s;
  }
  .main-banner_desktop
    .main-banner__link
    .main-banner-desktop__image:nth-child(2) {
    margin-top: -60px;
    position: relative;
    z-index: 1;
    opacity: 0;
  }
  .main-banner_desktop
    .main-banner__link:hover
    .main-banner-desktop__image:nth-child(1) {
    opacity: 0;
  }
  .main-banner_desktop
    .main-banner__link:hover
    .main-banner-desktop__image:nth-child(2) {
    opacity: 1;
  }
}
@media screen and (min-width: 992px) {
  .main-banner_desktop
    .main-banner__link
    .main-banner-desktop__image:nth-child(2) {
    margin-top: -60px;
  }
}
@media screen and (min-width: 1200px) {
  .main-banner_desktop
    .main-banner__link
    .main-banner-desktop__image:nth-child(2) {
    margin-top: -60px;
  }
}
@keyframes main-banner-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.localization-switcher--arrow-menu {
  display: none;
  position: relative;
  gap: 4px;
  align-items: center;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 0.1px;
  white-space: nowrap;
  margin-inline-start: 18px;
  padding: 29px 0 27px;
  cursor: pointer;
}
.localization-switcher--arrow-menu:hover
  .localization-switcher--language-tooltip {
  display: block;
}
.localization-switcher--arrow-menu:hover {
  color: #00c26f;
  text-decoration: none;
}
.localization-switcher--arrow-menu.localization-switcher--arrow-menu_hidden:hover {
  color: #ffffff;
  text-decoration: none;
}
.localization-switcher--arrow-menu:hover svg {
  fill: #00c26f;
  stroke: #00c26f;
}
.localization-switcher--arrow-menu svg {
  fill: #fff;
  stroke: #fff;
}
.localization-switcher--arrow {
  display: flex;
  align-items: center;
  width: 9px;
}
.localization-switcher--arrow_hidden {
  opacity: 0;
  pointer-events: none;
}
.localization-switcher--arrow-menu_hidden:hover
  .localization-switcher-dropdown-list {
  display: none;
}
.localization-switcher--list:hover {
  background: #f7f7f9;
}
.localization-switcher--language-tooltip {
  position: absolute;
  top: 75px;
  right: 0%;
  z-index: 1000;
  display: none;
  overflow: hidden;
  background: #fff;
  border-top: 6px solid #00c26f;
  border-radius: 5px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}
html[dir="rtl"] .localization-switcher--language-tooltip {
  right: unset;
  left: -10%;
}
.localization-switcher--language-tooltip-content {
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.localization-switcher--language-tooltip-content__scrollable::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}
.localization-switcher--language-tooltip-content__scrollable::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.localization-switcher--language-tooltip-content__without-scroll {
  margin-top: 7px;
  margin-bottom: 7px;
  overflow: hidden;
}
.localization-switcher--list {
  color: #2b2b37;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.localization-switcher--list a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 16px;
  transition: none;
}
.localization-switcher--list a .active-navigation-link {
  color: #a4a3aa;
}
.localization-switcher--list a:hover {
  color: inherit;
}
.localization-switcher--tokens-link {
  color: #00c26f;
}
.localization-switcher--language-link {
  position: relative;
  color: #2b2b37;
  margin-inline-start: 26px;
  padding-top: 10px;
  padding-bottom: 9px;
  padding-inline-start: 25px;
  padding-inline-end: 20px;
}
[lang="fil"] .localization-switcher a,
.localization-switcher a[lang="nl"] {
  display: flex;
  align-items: center;
  white-space: normal;
}
[lang="fil"] .localization-switcher--arrow-menu,
[lang="nl"] .localization-switcher--arrow-menu {
  display: flex;
  align-items: center;
}
.flags-position:before {
  position: absolute;
  top: 13px;
  left: -7px;
}
html[dir="rtl"] .flags-position:before {
  left: unset;
  right: -7px;
}
.flag-top-position:before {
  position: relative;
}
.localization-switcher--item_language:before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.localization-switcher--arrow-menu:last-child
  .localization-switcher--list
  a:before {
  content: "";
  width: 14px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-inline-end: 5px;
}
.localization-switcher--flag-language-ar:before,
.localization-switcher--list a[data-lang="ar"]:before {
  background-image: url(7ebb11140b6d98956b5f.svg);
}
.localization-switcher--flag-language-cs:before,
.localization-switcher--list a[data-lang="cs"]:before {
  background-image: url(7d1138bc8f1811368b44.svg);
}
.localization-switcher--flag-language-da:before,
.localization-switcher--list a[data-lang="da"]:before {
  background-image: url(de71511a3717fa2e2d27.svg);
}
.localization-switcher--flag-language-de:before,
.localization-switcher--list a[data-lang="de"]:before {
  background-image: url(961c51210d660a0e9b2a.svg);
}
.localization-switcher--flag-language-el:before,
.localization-switcher--list a[data-lang="el"]:before {
  background-image: url(74bf0c7f6a2cfb2c6c4e.svg);
}
.localization-switcher--flag-language-en:before,
.localization-switcher--list a[data-lang="en"]:before {
  background-image: url(6fc51ae04305a7bb2bfe.svg);
}
.localization-switcher--flag-language-es:before,
.localization-switcher--list a[data-lang="es"]:before {
  background-image: url(0e220fc38a3fa638cef5.svg);
}
.localization-switcher--flag-language-fa:before,
.localization-switcher--list a[data-lang="fa"]:before {
  background-image: url(2515b621cdd3e15777c4.svg);
}
.localization-switcher--flag-language-he:before,
.localization-switcher--list a[data-lang="he"]:before {
  background-image: url(eb01836bb6b12256eb88.svg);
}
.localization-switcher--flag-language-fr:before,
.localization-switcher--list a[data-lang="fr"]:before {
  background-image: url(8000347e09782e23592f.svg);
}
.localization-switcher--flag-language-hi:before,
.localization-switcher--list a[data-lang="hi"]:before {
  background-image: url(34ab61d232e92ed934a3.svg);
}
.localization-switcher--flag-language-hu:before,
.localization-switcher--list a[data-lang="hu"]:before {
  background-image: url(12736512848557260f86.svg);
}
.localization-switcher--flag-language-id:before,
.localization-switcher--list a[data-lang="id"]:before {
  background-image: url(8a32749b75c98fad94c7.svg);
}
.localization-switcher--flag-language-it:before,
.localization-switcher--list a[data-lang="it"]:before {
  background-image: url(f19397719372b4a9aa07.svg);
}
.localization-switcher--flag-language-ja:before,
.localization-switcher--list a[data-lang="ja"]:before {
  background-image: url(6cb58bcf4bf940aad91c.svg);
}
.localization-switcher--flag-language-ko:before,
.localization-switcher--list a[data-lang="ko"]:before {
  background-image: url(42c98db2b177a0fa9636.svg);
}
.localization-switcher--flag-language-ms:before,
.localization-switcher--list a[data-lang="ms"]:before {
  background-image: url(0c2231d0c6bd06f5473c.svg);
}
.localization-switcher--flag-language-nl:before,
.localization-switcher--list a[data-lang="nl"]:before {
  background-image: url(242ae1d220d69526916b.svg);
}
.localization-switcher--flag-language-pl:before,
.localization-switcher--list a[data-lang="pl"]:before {
  background-image: url(fd94cb9f5eb36b596e33.svg);
}
.localization-switcher--flag-language-pt:before,
.localization-switcher--list a[data-lang="pt"]:before {
  background-image: url(09e2f5a1de9117c64029.svg);
}
.localization-switcher--flag-language-ru:before,
.localization-switcher--list a[data-lang="ru"]:before {
  background-image: url(99f1eb9566e9bd0cf8f3.svg);
}
.localization-switcher--flag-language-sv:before,
.localization-switcher--list a[data-lang="sv"]:before {
  background-image: url(837a1813144fdf410a73.svg);
}
.localization-switcher--flag-language-th:before,
.localization-switcher--list a[data-lang="th"]:before {
  background-image: url(9b4747df329342f7468d.svg);
}
.localization-switcher--flag-language-tl:before,
.localization-switcher--list a[data-lang="tl"]:before {
  background-image: url(6189b1ef1910b593dc54.svg);
}
.localization-switcher--flag-language-tr:before,
.localization-switcher--list a[data-lang="tr"]:before {
  background-image: url(d79cb9af31bf161e52af.svg);
}
.localization-switcher--flag-language-uk:before,
.localization-switcher--list a[data-lang="uk"]:before {
  background-image: url(39e0a08cac0f1967c579.svg);
}
.localization-switcher--flag-language-vi:before,
.localization-switcher--list a[data-lang="vi"]:before {
  background-image: url(224110cb9235ecc88815.svg);
}
.localization-switcher--flag-language-zh:before,
.localization-switcher--list a[data-lang="zh"]:before {
  background-image: url(fea93aee759e5ca8abc1.svg);
}
.localization-switcher--arrow-menu:not(:last-child)
  .localization-switcher--list
  a {
  position: relative;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.localization-switcher--list_foreign-link a:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-inline-start: 8px;
  background-image: url(26fa9d8036601fbc4669.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.localization-switcher--list img {
  margin-inline-end: 8px;
}
.localization-switcher__last-accent .localization-switcher--list:last-child {
  padding-top: 6px;
  border-top: 1px solid #dce2ea;
}
.localization-switcher--arrow-menu:nth-child(3) > div {
  cursor: initial;
}
.localization-switcher--arrow-menu:nth-child(3)
  .localization-switcher--language-tooltip-content__without-scroll {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .localization-switcher--arrow {
    margin-inline-start: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .localization-switcher--arrow-menu {
    display: flex;
  }
}
@media screen and (min-width: 1440px) {
  .localization-switcher--arrow-menu {
    margin-inline-start: 32px;
  }
  .localization-switcher--language-tooltip {
    right: -10%;
  }
  html[dir="rtl"] .localization-switcher--language-tooltip {
    right: unset;
  }
}
.custom-link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #00c26f;
  padding-inline-end: 18px;
  cursor: pointer;
}
html[dir="rtl"] .custom-link {
  padding-inline-end: unset;
  padding-inline-start: 18px;
}
.custom-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #00c26f;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  margin: auto;
}
html[dir="rtl"] .custom-link:after {
  right: unset;
  transform: rotate(135deg);
}
.custom-link:hover {
  color: #00c26f;
}
@media screen and (min-width: 992px) {
  .custom-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00c26f;
    transition: width ease 0.2s;
  }
  .custom-link:hover:before {
    width: calc(100% - 18px);
  }
  .custom-link:focus:before {
    width: 0;
  }
}
.dropdown__content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}
.dropdown__content_open {
  opacity: 1;
  max-height: 800px;
}
.dropdown__topic.dropdown__topic-with-icon {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px;
  color: #ffffff;
}
.dropdown__topic-icon {
  width: 32px;
  height: 32px;
}
.dropdown__icon {
  color: #8b86af;
  transition: all 0.3s ease-in-out;
}
.dropdown__icon_open {
  transform: rotateZ(45deg);
}
.main-page-promo-banners-mobile {
  margin: 0 auto;
  background: transparent;
  display: block;
  margin-top: 8px;
  border: none;
}
.main-page-promo-banners-mobile__img {
  display: block;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-page-promo-banners-mobile {
    margin-top: 32px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .main-page-promo-banners-mobile {
    display: none;
  }
}
.index-header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2b2b36;
}
.index-header--container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .index-header--container {
    margin-top: 24px;
  }
}
@media screen and (min-width: 992px) {
  .index-header--container {
    margin-top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .index-header {
    margin-top: -40px;
    padding-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .index-header {
    margin-top: -91px;
    padding-top: 21px;
    background: #2b2b36 url(f8f35b771d96ff153613.png) 31% 35% no-repeat;
  }
}
.index-header--mobile-apps-links {
  display: flex;
}
.index-header--mobile-apps-links a {
  transition: transform 0.3s;
}
.index-header--mobile-apps-links a:first-of-type {
  margin-right: 6px;
}
@media (max-width: 767px) {
  .index-header--mobile-apps-links a:first-of-type {
    margin-right: 28px;
  }
}
.index-header--mobile-apps-links a:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .index-header--mobile-apps-links a {
    transform: scale(1.2);
  }
}
.index-header .index-header--mobile-buy-crypto {
  display: none;
}
@media screen and (max-width: 992px) {
  .index-header .index-header--mobile-buy-crypto {
    display: flex;
    justify-content: center;
  }
}
.index-header .bread-crumbs {
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  .index-header .bread-crumbs {
    margin-top: -20px;
  }
}
@media screen and (min-width: 992px) {
  .index-header .bread-crumbs {
    margin-top: -80px;
  }
}
@media screen and (max-width: 575px) {
  .index-header .bread-crumbs {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header-form {
    width: 57%;
  }
}
@media screen and (min-width: 768px) {
  .header-heading {
    width: 43%;
  }
}
.index-header--title {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 12px;
  max-width: 300px;
}
.new-stepper-body {
  position: relative;
}
.header-margin {
  margin: 0 20px 0 64px;
}
.index-header--sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #aeb0bd;
  margin: 0;
  opacity: 1;
}
.header-form .new-stepper-tab_dark {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #aeb0bd;
  opacity: 1;
}
.header-form .new-stepper-tab_active span {
  color: #ffffff;
}
.header-form .new-stepper-tab {
  height: 52px;
}
.header-form .new-stepper-tab .new-stepper-tab__text {
  opacity: 1;
}
.header-form .now-input__dark .now-input--label {
  color: #aeb0bd;
  font-weight: 500;
}
.header-form .exchange-form .exchange-calculator::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 174px;
  background: linear-gradient(
    90deg,
    #4ea1f5 -39.45%,
    #5c95f4 11.48%,
    #8278f2 108.17%,
    #8e6ff2 135.41%,
    #8a80e8 152.79%,
    #81add1 187.35%,
    #76eab1 228.36%
  );
  filter: blur(107px);
  border-radius: 50%;
}
.header-form .new-stepper-button {
  font-size: 18px;
}
.header-form .combobox__dark .combobox--dropdown-arrow {
  fill: #aeb0bd;
}
.header-badges {
  margin-top: 26px;
}
.index-header .container {
  position: relative;
  width: 100%;
  max-width: 445px;
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .index-header .container {
    width: 868px;
  }
}
@media (min-width: 1200px) {
  .index-header .container {
    width: 1037px;
  }
}
.index-header--action {
  position: relative;
  top: -30px;
}
@media screen and (max-width: 575px) {
  .index-header--action {
    display: none;
  }
}
.index-header--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .index-header--wrapper {
    margin-top: 40px;
  }
}
.index-header--trust {
  display: flex;
  flex-direction: row-reverse;
  grid-gap: 32px;
  align-items: center;
  margin-right: -10px;
  text-align: center;
}
@media all and (max-width: 991px) {
  .index-header--trust {
    width: auto;
  }
}
.index-header--footer {
  display: inline-flex;
  width: 100%;
  overflow: hidden;
  color: #5c5780;
}
@media all and (max-width: 767px) {
  .index-header--footer {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media all and (min-width: 768px) {
  .index-header--footer {
    justify-content: space-between;
    align-items: flex-end;
    min-height: 72px;
  }
}
@media screen and (max-width: 767px) {
  .index-header--footer .svg-sprite--play-market {
    transform: scale(0.75);
    transform-origin: 50% 50%;
  }
}
@media screen and (max-width: 767px) {
  .index-header--footer .svg-sprite--visa-master {
    transform: scale(0.56);
    transform-origin: 50% 50%;
    margin-top: -5px;
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 767px) {
  .index-header--footer .svg-sprite--trustpilot-fresh {
    background: url(3081e851c7ffe3486e9e.svg) no-repeat;
    background-position: 25px 20px;
    background-size: 77px !important;
  }
}
@media screen and (max-width: 575px) {
  .index-header--google-play {
    margin-bottom: 7px;
  }
}
.index-header--payments {
  position: relative;
  align-self: baseline;
  display: flex;
  margin-left: 12px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .index-header--payments {
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .index-header--payments {
    top: 0;
    margin-left: 0;
  }
}
.index-header--payments-text {
  margin-top: 0;
  text-align: left;
  color: #fff;
  letter-spacing: 0.293333px;
  opacity: 1;
}
@media all and (max-width: 767px) {
  .index-header--payments-text {
    margin-bottom: 0;
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .index-header--payments-text {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
.index-header--payments-visa-img {
  position: relative;
}
.badge-container:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-container__link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-container__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #aeb0bd;
}
.badge-item {
  transition: transform 0.4s ease-in-out;
}
.badge-item:hover {
  transform: scale(1.03);
}
.badge-item_visa {
  width: 64px;
  height: 21px;
}
.badge-item_mastercard {
  width: 46px;
  height: 28px;
}
.index-header--footer #trustpilot-widget {
  display: flex;
  align-items: center;
  height: 60px;
  width: 150px;
  justify-content: flex-end;
}
.index-header__benefits {
  display: none;
}
.index-header--trust .svg-sprite--stars {
  margin: auto;
}
.banner .banner-desktop-image {
  width: 100%;
  display: none;
}
.banner .banner-desktop-image:hover {
  transform: scale(1.02);
}
.banner .banner-mobile-image {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .banner .banner-desktop-image {
    display: block;
  }
  .banner .banner-mobile-image {
    display: none;
  }
}
@media (min-width: 1200px) {
  .banner {
    display: flex;
    flex-direction: column;
  }
  .banner .col-md-6 {
    width: 100%;
  }
}
.index-header--news {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .index-header--news {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .index-header--news {
    height: 54px;
  }
}
.index-header--news .news-link-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
}
.index-header--news-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
}
.index-header--news-text-content {
  margin-right: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
}
@media all and (max-width: 767px) {
  .index-header--news-text-content {
    display: none;
  }
}
.index-header--news-text-content-green {
  color: #00c26f;
}
.index-header--staking {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}
@media all and (max-width: 379px) {
  .index-header--staking .svg-sprite--star-icon {
    display: none;
  }
}
@media all and (max-width: 575px) {
  .index-header--staking {
    padding: 30px;
    height: auto;
  }
}
.index-header--staking-text_token-now {
  margin-right: 5px;
  color: #00c26f;
}
.index-header--staking-text_token-now:hover {
  color: #00c26f;
}
.index-header--text_staking {
  color: #ffffff;
}
.staking-link-container {
  display: flex;
  align-items: center;
  white-space: pre-wrap;
  color: #fff;
}
.staking-link-container:hover {
  color: #00c26f;
}
.banner-wrap-mobile_promo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-header--news-mobile {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}
@media all and (min-width: 576px) and (max-width: 767px) {
  .index-header--news-mobile {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .index-header--news-mobile {
    display: none;
  }
}
.index-header--news-mobile-title {
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
  font-size: 19px;
  margin-bottom: 7px;
}
.index-header--news-mobile .news-link-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
  flex-direction: column;
  margin-bottom: 6px;
  padding: 10px 0;
}
@media screen and (max-width: 991px) {
  .index-header {
    height: auto;
    padding-bottom: 30px;
  }
  .index-header--footer {
    position: static;
    width: 100%;
  }
}
.coinify-widget {
  width: 100%;
  max-width: 680px;
  margin: 16px auto;
  border: none;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  transition: box-shadow 0.3s;
}
.index-header__banner-new {
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
  display: block;
  margin-top: 48px;
}
.index-header__banner-new img {
  display: block;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin: 0 auto;
}
.index-header_warning {
  margin-top: 0;
  padding-top: 20px;
}
.header-wrapper {
  display: block;
}
.header-wrapper__calculator .new-stepper-estimation-lock {
  background-color: #3e3e59;
}
.index-header__giveaway-banner_desktop {
  display: none;
}
.index-header__giveaway-banner_mobile {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .header-margin {
    margin: 0;
  }
  .index-header--trust {
    flex-direction: row;
    grid-gap: 28px !important;
    margin-left: 24px;
  }
  .header-wrapper {
    display: flex;
    flex-direction: column;
  }
  .header-heading {
    order: 0;
  }
  .header-form {
    order: 1;
  }
  .header-badges {
    order: 3;
  }
  .banner-wrap {
    max-height: 60px;
    order: 2;
  }
  .banner-wrap-mobile {
    order: 3;
  }
  .index-header--payments {
    margin-left: 0px;
    width: 83px;
    display: block;
  }
  .badge-item {
    max-width: 88px;
  }
  .badge-container:last-child {
    display: block;
    width: auto;
  }
  .badge-container .trustpilot-widget {
    height: 110px;
    margin-left: -180px;
    transform: scale(0.5) translate(40px, 0);
    transform-origin: right;
  }
  .index-header--payments-visa-img {
    width: 83px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .benzinga-badge img,
  .trustpilot-badge img {
    width: 68px;
  }
  .benzinga-badge {
    width: auto;
    padding-left: 6px;
  }
  .index-header--footer {
    justify-content: space-between;
  }
}
@media screen and (max-width: 991px) {
  .header-margin {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .index-header {
    padding-bottom: 265px;
  }
  .index-header__banner-new {
    display: none;
  }
  .badge-container .trustpilot-widget {
    transform-origin: top;
    transform: scale(0.6) translate(45%, 34px);
  }
  html[dir="rtl"] .badge-container .trustpilot-widget {
    right: 150px;
  }
  .index-header__giveaway-banner_desktop {
    display: block;
    margin-top: 48px;
  }
  .index-header__giveaway-banner_mobile {
    display: none;
  }
  .header .container {
    width: 100%;
    padding: 0 16px;
  }
  .index-header .container {
    max-width: unset;
    padding-bottom: 0;
  }
  .index-header__benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .index-header__benefit {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .index-header__benefit-icon {
    width: 28px;
    height: 28px;
  }
  .index-header__benefit-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.34px;
    vertical-align: middle;
    color: #ffffff;
  }
  .header-form .exchange-form .exchange-calculator::before {
    top: 73%;
    left: 21%;
    width: 168px;
    height: 174px;
    filter: blur(88px);
  }
  .header-form .exchange-form::before {
    content: "";
    position: absolute;
    top: 45%;
    right: -16%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 169px;
    background: linear-gradient(
      90deg,
      #4ea1f5 -39.45%,
      #5c95f4 11.48%,
      #8278f2 108.17%,
      #8e6ff2 135.41%,
      #8a80e8 152.79%,
      #81add1 187.35%,
      #76eab1 228.36%
    );
    filter: blur(95px);
    border-radius: 50%;
    opacity: 0.8;
  }
  .index-header--footer #trustpilot-widget {
    width: unset;
  }
  .header-badges {
    margin-top: 46px;
  }
  .index-header--sub-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
  }
  .index-header--title {
    margin-bottom: 20px;
    max-width: 400px;
    font-size: 48px;
    line-height: 120%;
  }
  .badge-item_visa {
    width: 74px;
    height: 24px;
  }
  .badge-item_mastercard {
    width: 52px;
    height: 32px;
  }
  .badge-container__link {
    gap: 14px;
  }
  .header-form .new-stepper-tab {
    font-size: 16px;
  }
  .banner-wrap-mobile_promo {
    display: none;
  }
  html[dir="rtl"] .header-heading {
    padding-inline-start: 49px;
  }
}
@media (min-width: 992px) {
  .index-header_warning {
    margin-top: 0;
    padding-top: 46px;
  }
  .index-header__recommended-wallet-button {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .header .container {
    padding: 0 40px;
  }
}
.custody-pro-banner {
  height: 158px;
  margin: 18px auto 80px;
  max-width: 343px;
}
.custody-pro-banner__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: background-image 0.3s ease;
  flex-direction: column;
  background: url(bf23e6c1b6781a4a0d88.png) center/cover no-repeat;
}
.custody-pro-banner:hover .custody-pro-banner__container {
  background: url(bf23e6c1b6781a4a0d88.png) center/cover no-repeat;
}
.custody-pro-banner__text {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.34px;
  text-align: left;
  color: #ffffff;
}
.custody-pro-banner__clickable-area {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
}
.custody-pro-banner__button {
  position: relative;
  right: 0;
  width: 134px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #00b890 5.71%, #00c26f 45.17%);
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.custody-pro-banner:hover .custody-pro-banner__button::after {
  opacity: 0;
}
.custody-pro-banner__button-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.17;
  color: #ffffff;
  z-index: 1;
  text-align: start;
}
.custody-pro-banner__texts {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .custody-pro-banner__texts {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .custody-pro-banner {
    border-radius: 12px;
    height: 60px;
    margin: 28px 0 90px;
    max-width: 100%;
    background: radial-gradient(
      35.4% 669.15% at 50% 50%,
      #373b4a 0%,
      #262630 100%
    );
  }
  .custody-pro-banner__container {
    background: url(f2da661893e2a7e44603.png) 30% / cover no-repeat;
    flex-direction: row;
  }
  .custody-pro-banner:hover .custody-pro-banner__container {
    background: url(4c75602f55340eb28981.png) 30% / cover no-repeat;
    animation: custody-pro-banner-animation 2s both infinite ease;
  }
  .custody-pro-banner__clickable-area {
    align-items: center;
    justify-content: center;
  }
  .custody-pro-banner__button {
    position: absolute;
    right: 40px;
  }
  .custody-pro-banner__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(117.21deg, #8e909e 41.57%, #a3a5bf 101.11%);
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .custody-pro-banner__text span {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .custody-pro-banner__container {
    background-position: left;
  }
  .custody-pro-banner:hover .custody-pro-banner__container {
    background-position: left;
  }
  .custody-pro-banner__text span {
    display: inline;
  }
}
@keyframes custody-pro-banner-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.bread-crumbs-wrapper {
  background-color: #2b2b36;
}
.index-header-by-pairs {
  background-color: #2b2b36;
}
.index-header-by-pairs
  .index-header-by-pairs__calculator
  .new-stepper-estimation-lock {
  background-color: #3e3e59;
}
@media screen and (max-width: 991px) {
  .index-header-by-pairs {
    margin-top: -40px;
  }
}
@media screen and (min-width: 992px) {
  .index-header-by-pairs {
    margin-top: -100px;
  }
}
@media screen and (max-width: 991px) {
  .index-header-by-pairs__custom {
    margin-top: -40px;
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .index-header-by-pairs__custom {
    background: #2b2b36 url(ca51ed96831508c0e3c2.png) 50% 100% no-repeat;
  }
}
@media screen and (min-width: 992px) {
  .index-header-by-pairs__custom {
    margin-top: -100px;
    background: #2b2b36 url(ca51ed96831508c0e3c2.png) 50% 30% no-repeat;
  }
}
.index-header-by-pairs .bread-crumbs {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs .bread-crumbs {
    display: none;
  }
}
.index-header-by-pairs--mobile-apps-links {
  display: flex;
}
.index-header-by-pairs--mobile-apps-links a {
  transition: transform 0.3s;
}
.index-header-by-pairs--mobile-apps-links a:first-of-type {
  margin-inline-end: 6px;
}
@media (max-width: 767px) {
  .index-header-by-pairs--mobile-apps-links a:first-of-type {
    margin-inline-end: 28px;
  }
}
.index-header-by-pairs--mobile-apps-links a:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .index-header-by-pairs--mobile-apps-links a {
    transform: scale(1.2);
  }
}
.index-header-by-pairs--title {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs--title {
    margin-top: 10px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .index-header-by-pairs--title {
    font-size: 40px;
  }
}
.index-header-by-pairs--sub-title {
  color: #ffffff;
  font-size: 20px !important;
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs--sub-title {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .index-header-by-pairs--sub-title {
    margin-bottom: 38px;
    font-size: 23px;
    line-height: 32px;
  }
}
.index-header-by-pairs--sub-title-content > p {
  color: #ffffff;
  font-size: 20px !important;
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs--sub-title-content > p {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .index-header-by-pairs--sub-title-content > p {
    margin-bottom: 38px;
    font-size: 23px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs--action {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .index-header-by-pairs--action {
    margin-bottom: 30px;
  }
}
.index-header-by-pairs--mobile-buy-crypto {
  display: none;
}
@media screen and (max-width: 992px) {
  .index-header-by-pairs--mobile-buy-crypto {
    display: flex;
    justify-content: center;
    margin-top: 45px;
  }
}
.index-header-by-pairs_first-block-table
  .index-header-by-pairs--exchange-footer {
  margin-bottom: 12px;
}
.index-header-by-pairs_first-block-table .custody-pro-banner {
  margin-bottom: 120px;
}
.index-footer-by-pairs--text__disable-margin {
  margin-inline-end: 0;
}
.index-header-by-pairs--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-inline-end: 80px;
}
.index-header-by-pairs--trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .index-header-by-pairs--google-play {
    margin-bottom: 7px;
  }
}
.index-header-by-pairs--expected-icon {
  display: inline-block;
  margin-left: 8px;
}
.index-header-by-pairs--payments {
  position: relative;
  display: flex;
  text-align: center;
}
@media all and (min-width: 380px) and (max-width: 767px) {
  .index-header-by-pairs--payments {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 991px) {
  .index-header-by-pairs--payments {
    justify-content: space-between;
    margin-top: 15px;
    width: fit-content;
    order: 1;
  }
}
@media screen and (min-width: 992px) {
  .index-header-by-pairs--payments {
    top: 0;
    margin-inline-start: 0;
  }
}
.index-header-by-pairs--payments-text {
  margin-top: 0;
  text-align: start;
  color: #fff;
  letter-spacing: 0.293333px;
  opacity: 1;
}
@media all and (max-width: 767px) {
  .index-header-by-pairs--payments-text {
    margin-bottom: 0;
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .index-header-by-pairs--payments-text {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
.index-header-by-pairs--news {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  margin-bottom: 30px;
  transition: 0.2s ease;
}
@media (max-width: 767px) {
  .index-header-by-pairs--news {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .index-header-by-pairs--news {
    height: auto;
  }
}
.index-header-by-pairs--news .news-link-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
}
.index-header-by-pairs--news-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
}
.index-header-by-pairs--news-text-content {
  margin-inline-end: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
}
.index-header-by-pairs--news-text-content-green {
  color: #00c26f;
}
.index-header-by-pairs--news-mobile {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .index-header-by-pairs--news-mobile {
    display: none;
  }
}
.index-header-by-pairs--news-mobile-title {
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
  font-size: 19px;
  margin-bottom: 7px;
}
.index-header-by-pairs--news-mobile .news-link-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
  flex-direction: column;
  margin-bottom: 6px;
  padding: 10px 0;
}
.index-header-by-pairs--payments-visa-img {
  position: relative;
}
.index-header-by-pairs--payments img {
  height: 30px;
}
.index-header-by-pairs--trust .svg-sprite--stars {
  margin: auto;
}
.index-header-by-pairs--trust img:first-child {
  height: 26px;
}
.index-header-by-pairs--exchange-footer {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  color: #5c5780;
  margin-bottom: 40px;
  min-height: 150px;
}
@media all and (max-width: 767px) {
  .index-header-by-pairs--exchange-footer {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 15px;
  }
}
@media all and (min-width: 576px) {
  .index-header-by-pairs--exchange-footer {
    margin-bottom: 100px;
  }
}
@media all and (min-width: 768px) {
  .index-header-by-pairs--exchange-footer {
    justify-content: space-between;
    align-items: center;
    margin-top: 44px;
    margin-bottom: 100px;
    min-height: 120px;
  }
}
@media all and (min-width: 1200px) {
  .index-header-by-pairs--exchange-footer {
    justify-content: space-between;
    align-items: center;
    margin-top: 44px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs--exchange-footer .svg-sprite--play-market {
    transform: scale(0.75);
    transform-origin: 50% 50%;
  }
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs--exchange-footer .svg-sprite--visa-master {
    transform: scale(0.56);
    transform-origin: 50% 50%;
    margin-top: -5px;
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 767px) {
  .index-header-by-pairs--exchange-footer .svg-sprite--trustpilot-fresh {
    background: url(3081e851c7ffe3486e9e.svg) no-repeat;
    background-position: 25px 20px;
    background-size: 77px !important;
  }
}
.currencies-pairs-page-wrapper .index-header-by-pairs--exchange-footer {
  margin-bottom: 130px;
}
.index-header-by-pairs--exchange-footer .trustpilot-widget {
  transform: scale(0.55);
  transform-origin: left;
  margin-inline-end: -140px;
}
.index-header-by-pairs--exchange-footer #trustpilot-widget {
  order: 3;
  width: 160px;
  height: 120px;
}
@media screen and (max-width: 992px) {
  .index-header-by-pairs--visa-desktop {
    display: none;
  }
}
.desktop-buy-crypto--href {
  display: block;
  width: 170px;
}
.desktop-buy-crypto--href .payments-text {
  display: block;
}
@media screen and (max-width: 992px) {
  .desktop-buy-crypto--href .payments-text {
    display: none;
  }
}
.desktop-buy-crypto--href .payments-visa-img {
  display: block;
}
@media screen and (max-width: 992px) {
  .desktop-buy-crypto--href .payments-visa-img {
    display: none;
  }
}
.desktop-buy-crypto--href .svg-sprite--visa-master {
  display: block;
}
@media screen and (max-width: 992px) {
  .desktop-buy-crypto--href .svg-sprite--visa-master {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .desktop-buy-crypto--href {
    display: none;
  }
}
.mobile-app-links_mobile {
  order: 3;
  display: flex;
  justify-content: center;
  width: 300px;
}
.mobile-app-links a {
  margin-inline-end: 10px;
}
.mobile-app-links a:last-child {
  margin-inline-end: 0;
}
.mobile-app-links a:hover svg path {
  fill: #3bee81;
}
.mobile-app-links svg path {
  transition: fill ease 0.2s;
}
.mobile-app-links_desktop {
  display: none;
}
.index-header-by-pairs_warning {
  margin-top: 0;
}
@media screen and (min-width: 576px) {
  .index-header-by-pairs--exchange-footer #trustpilot-widget {
    order: 3;
  }
  .mobile-app-links_mobile {
    width: auto;
    order: 2;
  }
  .index-header-by-pairs--exchange-footer {
    margin-bottom: 0;
  }
  .currencies-pairs-page-wrapper .index-header-by-pairs--exchange-footer {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 992px) {
  .mobile-app-links_desktop {
    display: block;
    margin-bottom: 10px;
  }
  .mobile-app-links_mobile {
    display: none;
  }
  .index-header-by-pairs_warning {
    margin-top: 0;
  }
  .index-header-by-pairs--exchange-footer .trustpilot-widget {
    display: flex;
    margin-inline-end: -22px;
    transform-origin: right;
    transform: scale(0.6);
  }
  html[dir="rtl"] .index-header-by-pairs--exchange-footer .trustpilot-widget {
    transform-origin: left;
  }
  .index-header-by-pairs--exchange-footer #trustpilot-widget {
    width: unset;
    height: unset;
  }
  html[dir="rtl"] .index-header-by-pairs--wrapper {
    padding-inline-end: unset;
    padding-inline-start: 34px;
  }
}
@media screen and (min-width: 1200px) {
  .index-header-by-pairs--exchange-footer {
    margin-bottom: 40px;
  }
  .currencies-pairs-page-wrapper .index-header-by-pairs--exchange-footer {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  html[dir="rtl"] .index-header-by-pairs--exchange-footer .trustpilot-widget {
    transform-origin: right;
  }
}
.not-found--error h1,
h2 {
  margin: 0;
}
.not-found--return-block {
  display: flex;
  grid-gap: 30px;
  justify-content: center;
}
.not-found--error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 16px;
}
.not-found--code {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: #2b2b37;
}
.not-found--text {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
}
.not-found--button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 22.5px;
  background: #00c26f;
  max-width: max-content;
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.not-found--text p a:hover {
  color: white;
}
.not-found--text p {
  opacity: 1;
}
.not-found-list p {
  opacity: 1;
  margin: 0;
}
.not-found-list li p a {
  border-bottom: none;
}
.not-found-list li p a:hover {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #00c26f;
  text-decoration: none;
  border-bottom: none;
}
.not-found--links {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-top: 64px;
}
.not-found-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 16px;
  padding: 16px 32px;
  width: 194px;
}
.not-found-list:nth-child(2) {
  border-right: 1px solid #d7dee8;
  border-left: 1px solid #d7dee8;
}
.not-found-list li:first-child {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #3f3b51;
}
.not-found-list li a {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
}
@media screen and (max-width: 768px) {
  .not-found--image img {
    width: 157px;
  }
  .not-found--return-block {
    grid-gap: 16px;
    padding: 0 16px;
  }
  .not-found--code {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    color: #2b2b37;
  }
  .not-found--text {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #2b2b37;
  }
  .not-found--button {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 374px) {
  .not-found--image img {
    width: 107px;
  }
}
@media screen and (max-width: 575px) {
  .not-found--links {
    flex-direction: column;
    margin: 42px 16px 0px 16px;
  }
  .not-found-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px 0;
    margin: 0;
    width: 100%;
  }
  .not-found-list li:first-child {
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
  }
  .not-found-list:nth-child(2) {
    border-right: none;
    border-left: none;
    border-top: 1px solid #d7dee8;
    border-bottom: 1px solid #d7dee8;
  }
  .not-found-list li a {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #2b2b37;
  }
}
.block {
  display: block;
}
.embeds {
  margin-top: 30px;
}
.embeds--heading {
  margin-bottom: 25px;
  font-size: 36px;
}
@media screen and (max-width: 992px) {
  .embeds--heading {
    font-size: 28px;
  }
}
.embeds--heading__secondary {
  margin-top: 0;
  font-size: 28px;
  color: #000;
}
.embeds--tool {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d1cfdd;
}
@media screen and (max-width: 992px) {
  .embeds--tool {
    flex-direction: column;
  }
}
.embeds--features {
  padding-left: 18px;
}
.embeds--feature,
.embeds--tool-paragraph {
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #2b2b36;
  letter-spacing: 0.3px;
}
.embeds--tool-paragraph {
  margin-bottom: 11px;
}
.embeds--tool-description {
  width: 378px;
  margin-right: 25px;
}
@media screen and (max-width: 992px) {
  .embeds--tool-description {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.embeds--tool-title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #2b2b36;
  letter-spacing: 0.3px;
}
.embeds--tool-text {
  max-width: 318px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .embeds--tool-text {
    max-width: 100%;
  }
}
.embeds--tool-text__widget-v2 {
  margin-bottom: 152px;
}
@media screen and (max-width: 992px) {
  .embeds--tool-text__widget-v2 {
    margin-bottom: 0;
  }
}
.embeds--iframe-wrapper {
  min-height: 355px;
}
@media screen and (max-width: 992px) {
  .embeds--iframe-wrapper {
    width: 100%;
  }
}
.embeds--iframe-wrapper__widget {
  background-color: #fff;
}
.embeds--iframe-wrapper__button {
  padding-top: 40px;
}
.embeds--tabs {
  display: flex;
}
.embeds--tab {
  position: relative;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 19px;
  color: #cdccd1;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.embeds--tab__active {
  color: #2b2b36;
  background-color: #fff;
}
.embeds--tool-demo {
  min-width: 542px;
}
@media screen and (max-width: 992px) {
  .embeds--tool-demo {
    min-width: 100%;
  }
}
.embeds--tool-demo__widget-v2 {
  margin-top: -10px;
}
.embeds--tool-demo__wp {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.embeds--icon__adobe,
.embeds--icon__wp {
  margin-right: 28px;
}
.embeds--link {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #000;
  text-decoration: underline;
}
.embeds--link:hover,
.embeds--link:active,
.embeds--link:visited {
  color: #000;
}
.embeds--field-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
}
iframe {
  border: none;
}
.section-widget_border {
  margin-bottom: 25px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d1cfdd;
}
.section-widget__bottom {
  margin-top: 40px;
}
#iframe-widget-wrapper {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .section-widget__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .section-widget__tools {
    flex-grow: 1;
    padding-right: 15px;
  }
  .section-widget__configuration {
    width: 360px;
    flex-shrink: 0;
  }
  .section-widget__text {
    max-width: 520px;
  }
}
.business-ethics {
  background: #2b2b36;
}
.token-page .section {
  border-radius: 8px;
  margin: 0;
  margin-bottom: 20px;
}
.token-page .bread-crumbs {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .token-page .bread-crumbs {
    margin-top: -30px;
  }
}
@media screen and (min-width: 992px) {
  .token-page .bread-crumbs {
    margin-top: -80px;
  }
}
.token-page h1 {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 36px;
  line-height: normal;
  color: #2b2b36;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.5px;
}
.token-page h3 {
  color: #2b2b36;
  font-size: 24px;
  font-weight: 100;
}
.white-paper {
  font-size: 19px;
  text-align: center;
}
.white-paper--icon {
  margin: 0 20px;
}
.white-paper--link {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  color: #00c26f;
}
.white-paper--link:hover {
  opacity: 0.8;
  color: #00c26f;
}
.white-paper--link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00c26f;
}
.white-paper--size {
  color: gray;
}
@media (max-width: 480px) {
  .white-paper--size {
    line-height: 40px;
  }
}
.section-roadmap .title {
  color: #00c26f;
}
.roadmap {
  list-style: none;
}
@media (max-width: 480px) {
  .roadmap {
    padding-left: 0;
  }
}
.roadmap--item {
  position: relative;
  display: flex;
  height: 100px;
}
@media (max-width: 992px) {
  .roadmap--item:nth-child(4),
  .roadmap--item:nth-child(8) {
    height: 165px;
  }
}
.roadmap--item-icon {
  flex-shrink: 0;
  flex-basis: 33px;
  width: 31px;
  height: 31px;
}
.roadmap--success {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  flex-basis: 33px;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 31px;
  color: #00c26f;
  border: 2px solid #00c26f;
  border-radius: 50%;
}
.roadmap--empty {
  display: inline-block;
  flex-shrink: 0;
  flex-basis: 31px;
  width: 31px;
  height: 31px;
  border: 2px solid #c4c4cb;
  border-radius: 50%;
  opacity: 0.5;
}
.roadmap--item-icon::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 14px;
  display: block;
  width: 3px;
  height: calc(100% - 30px);
  background-color: #00c26f;
}
.roadmap--item-icon__last-finished::after {
  background: linear-gradient(to bottom, #00c26f 70%, #c4c4cb);
}
.feature .roadmap--item-icon::after {
  background-color: #c4c4cb;
  opacity: 0.5;
}
.roadmap--item:last-child .roadmap--item-icon::after {
  display: none;
}
.roadmap--item:nth-last-child(2) .roadmap--item-icon::after {
  height: 90px;
  background: linear-gradient(to bottom, #c4c4cb 10%, #00c26f 40%);
}
.roadmap--item:nth-last-child(2) .roadmap--item-icon .icon,
.roadmap--item:nth-last-child(2) .roadmap--item-icon .button__arrow {
  position: absolute;
  bottom: -37px;
  left: 3px;
  color: #00c26f;
}
.icon-success {
  color: #00c26f;
}
.roadmap--item-icon .icon-success {
  position: relative;
  top: 2px;
  font-size: 10px;
}
.roadmap--item-content {
  padding-left: 24px;
}
@media (max-width: 480px) {
  .roadmap--item-content {
    padding-left: 10px;
  }
}
.roadmap--item-title {
  font-size: 18px;
  color: #2b2b36;
  letter-spacing: 0.3px;
}
@media (max-width: 480px) {
  .roadmap--item-title {
    font-size: 14px;
  }
}
.token-progress {
  position: relative;
  margin-top: 25px;
  margin-bottom: 32px;
}
.token-progress--bar {
  display: flex;
  width: 100%;
  height: 100px;
}
.token-progress--bar > div {
  position: relative;
  height: 100%;
}
.token-progress--bar > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 26px;
}
.token-progress--bar-done {
  flex-shrink: 0;
  width: 30px;
  overflow: hidden;
}
.token-progress--bar-feature {
  width: 100%;
  padding-top: 50px;
  padding-left: 10px;
  font-size: 18px;
}
.token-progress--bar-done::before {
  content: "";
  background-color: #00c26f;
}
.token-progress--bar-feature::before {
  content: "";
  background: #f0f0f0;
}
.token-progress--status {
  position: relative;
  padding-top: 50px;
  padding-right: 15px;
  font-size: 18px;
  text-align: right;
}
@media (max-width: 480px) {
  .token-progress--status {
    font-size: 14px;
  }
}
.token-progress--status::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 130%;
  background-color: rgba(206, 204, 217, 0.3);
}
.token-progress--icon {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 12px;
  color: white;
}
.token-progress--duration {
  position: absolute;
  top: -30px;
  right: 0;
  min-width: 170px;
  font-size: 18px;
}
@media (max-width: 992px) {
  .token-progress--duration {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .token-progress--duration {
    top: -20px;
    right: 0;
    min-width: 120px;
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .token-airdrop {
    min-width: 750px;
  }
}
.section-token-progress {
  border-radius: 8px;
}
@media (max-width: 992px) {
  .section-token-progress {
    padding: 10px;
    overflow: auto;
  }
}
.token-airdrop--bar {
  display: flex;
  width: 100%;
  height: 26px;
}
.token-airdrop--bar-item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  height: 26px;
  padding-left: 10px;
  letter-spacing: 0.5px;
}
.token-airdrop--bar-item .icon-arrow-down::before {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-right: 4px;
  font-size: 8px;
  color: white;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.token-airdrop--bar-item:nth-child(1) {
  width: 40%;
  background-color: #3d3d70;
}
.token-airdrop--bar-item:nth-child(2) {
  width: 10%;
  background-color: #00c26f;
}
.token-airdrop--bar-item:nth-child(3) {
  width: 36%;
}
.token-airdrop--bar-item:nth-child(4) {
  width: 14%;
  background-color: rgba(43, 43, 55, 0.07);
}
.token-airdrop--row {
  display: flex;
  padding: 20px 0;
}
.token-airdrop--row-item {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  padding-right: 4px;
  padding-left: 8px;
}
.token-airdrop--row-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 2px;
  height: 105%;
  background-color: rgba(206, 204, 217, 0.3);
}
.token-airdrop--row-item-group {
  width: 100%;
  margin-bottom: 20px;
}
.token-airdrop--row-item-group__half {
  width: 50%;
}
.token-airdrop--row-item-percent {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.53;
  letter-spacing: 0.5px;
}
.token-airdrop--row-item-content {
  font-size: 14px;
  opacity: 0.46;
}
.token-airdrop--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.token-airdrop--icon {
  position: absolute;
  top: 7px;
  left: 5px;
  font-size: 12px;
  color: white;
}
.token-airdrop--exchanges {
  width: 25%;
}
.token-airdrop--exchanges .token-airdrop--icon {
  top: 8px;
  font-size: 8px;
  transform: rotate(-90deg);
}
.token-airdrop--purchase {
  width: 20%;
}
.token-airdrop--advisers-and-bounty {
  width: 15%;
}
.token-airdrop--team {
  width: 40%;
}
.token-airdrop--exchanges::before {
  background-color: #3d3d70;
}
.token-airdrop--advisers-and-bounty::before {
  background-color: #ddd;
}
.token-airdrop--purchase::before {
  background-color: #00c26f;
}
.token-airdrop--team::before {
  background: repeating-linear-gradient(
    45deg,
    #ddd 1px,
    #ddd 2px,
    transparent 3px,
    transparent 8px,
    #ddd 9px
  );
}
.token-burn--img {
  margin-bottom: 12px;
  margin-left: 10px;
}
.token-subscription {
  display: flex;
  width: 100%;
}
@media (max-width: 480px) {
  .token-subscription {
    flex-direction: column;
    align-content: center;
  }
}
.token-subscription--contetn {
  padding-left: 60px;
}
@media (max-width: 480px) {
  .token-subscription--contetn {
    margin-top: 30px;
    padding-left: 0;
  }
}
.token-subscription .mail-chimp-subscription--form {
  margin: 0;
}
.token-subscription .field__buttoned {
  display: block;
}
.token-press--topic-container .button {
  background: #00c26f;
}
.token-press--topic-container .button:hover {
  opacity: 0.8;
}
@media (max-width: 480px) {
  .token-press--topic-container .button {
    width: 100%;
    margin-top: 20px;
  }
}
.token-subscription .field__buttoned .button {
  margin-top: 20px;
  margin-left: 0;
}
.emission-text,
.section--note,
.section-token_burn {
  color: #2b2b36;
}
.emission-text a,
.section--note a,
.section-token_burn a {
  color: #2b2b36;
  text-decoration: underline;
  font-weight: 600;
  opacity: 0.8;
}
.emission-text a:hover,
.section--note a:hover,
.section-token_burn a:hover {
  opacity: 1;
}
.roadmap--item-extra {
  margin-top: 10px;
}
.roadmap--item-extra a {
  color: #00c26f;
}
.roadmap--item-extra a:hover {
  opacity: 0.7;
}
.accordion-section #accordion-tokens {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 2px 4px 21px rgba(43, 43, 54, 0.05);
}
.accordion-section #accordion-tokens .accordion__title {
  color: #2b2b36;
  font-size: 21px;
  opacity: 1;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .accordion-section #accordion-tokens .accordion__title {
    font-size: 18px;
  }
}
.accordion-section #accordion-tokens .accordion-wrapper li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.tokens-information-section {
  padding: 40px 0;
}
.tokens-information-section .emission-text {
  line-height: 27px;
  margin-bottom: 0;
  opacity: 1;
}
.tokens-information-section img {
  width: 123px;
  height: 80px;
}
.tokens-information-section--note .tokens-information-section--note-link {
  margin-left: 5px;
  color: #2b2b36;
  text-decoration: underline;
  opacity: 0.8;
}
.tokens-information-section--note .tokens-information-section--note-link:hover {
  opacity: 1;
}
.tokens-information--row {
  display: flex;
  width: 100%;
  justify-content: start;
  padding: 28px 30px;
  background: white;
  margin-bottom: 20px;
  box-shadow: 0px 0px 17px rgba(43, 43, 54, 0.05);
  border-radius: 8px;
  position: relative;
}
.tokens-information--row .block-info-card {
  display: flex;
  flex-direction: column;
  margin-left: 0;
  justify-content: flex-end;
}
.tokens-information--row .block-info-card .block-info {
  display: flex;
}
.tokens-information--row .block-info-card .block-info .left-content {
  width: 250px;
}
@media (max-width: 1200px) {
  .tokens-information--row .block-info {
    flex-direction: column;
    margin-top: 30px;
  }
  .tokens-information--row .block-info .left-content {
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .tokens-information--row .block-info {
    margin-top: 15px;
  }
  .tokens-information--row img {
    margin-top: 30px;
  }
  .tokens-information--row .tokens-information--topic {
    left: 12px;
  }
}
@media (max-width: 992px) {
  .tokens-information--row {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .tokens-information--row .block-info-card {
    margin-left: 0;
  }
  .tokens-information--row
    .block-info-card
    .tokens-information--item-content
    .link {
    word-break: break-all;
  }
}
.tokens-information--topic {
  color: #2b2b36;
  position: absolute;
  left: 154px;
}
.tokens-information--row:last-child {
  border: 0;
}
.tokens-information--item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  max-width: 250px;
}
@media (max-width: 480px) {
  .tokens-information--item {
    width: 100%;
  }
}
.tokens-information--item:nth-child(1) {
  width: 30%;
}
.tokens-information--item:nth-child(3) {
  width: 20%;
}
.tokens-information--item__main {
  width: 100%;
}
.tokens-information--item__main h2 {
  margin: 0;
  font-weight: 600;
  font-size: 27px;
  line-height: normal;
  color: #2b2b36;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.3px;
}
.tokens-information--item-title {
  margin-bottom: 8px;
  color: rgba(43, 43, 54, 0.7);
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.1px;
}
@media (max-width: 480px) {
  .tokens-information--item-title {
    margin-top: 15px;
  }
}
.tokens-information--item-content {
  font-weight: 600;
  font-size: 19px;
  line-height: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.2px;
}
.tokens-information--item-content .link {
  color: #00c26f;
}
.tokens-information--item-content .link:hover {
  opacity: 0.8;
}
@media (max-width: 480px) {
  .tokens-information--item-content {
    word-break: break-all;
  }
}
.vesting-plan h3 {
  font-weight: normal;
  line-height: 1.33;
  color: #00c26f;
  letter-spacing: 0.3px;
}
.vesting-plan-bar {
  display: flex;
  width: 100%;
  margin: 40px 0;
}
.vesting-plan-bar--item {
  width: 25%;
}
.vesting-plan-bar--item:nth-child(1) {
  opacity: 1;
}
.vesting-plan-bar--item:nth-child(2) {
  opacity: 0.8;
}
.vesting-plan-bar--item:nth-child(3) {
  opacity: 0.6;
}
.vesting-plan-bar--item:nth-child(4) {
  opacity: 0.4;
}
.vesting-plan-bar--item:nth-child(5) {
  opacity: 0.2;
}
.vesting-plan-bar--item-head {
  padding: 3px 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.27;
  color: #fff;
  letter-spacing: 0.5px;
  background-color: #3d3d70;
}
@media (max-width: 480px) {
  .vesting-plan-bar--item-head {
    font-size: 12px;
  }
}
.vesting-plan-bar--item-percent {
  padding: 0 10px;
}
.advantages-staking-container {
  margin-bottom: 60px;
}
.advantages-staking-container .col-sm-12 {
  margin-bottom: 20px;
}
.advantages-staking-container .col-sm-12:last-child {
  margin-bottom: 0;
}
.advantages-staking {
  width: 100%;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 2px 4px 21px rgba(43, 43, 54, 0.05);
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.advantages-staking:last-child {
  margin-bottom: 0;
}
.advantages-staking .title {
  display: flex;
  align-items: center;
}
.advantages-staking .title img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.advantages-staking .title h4 {
  margin-bottom: 0;
  color: #000000;
  font-size: 22px;
}
.advantages-staking .text {
  color: #000000;
  font-size: 20px;
  line-height: 27px;
}
.advantages-staking .table {
  width: 100%;
}
@media (max-width: 768px) {
  .advantages-staking {
    padding: 0;
    margin-bottom: 15px;
  }
  .advantages-staking .text {
    font-size: 16px;
    padding: 0 16px 0;
  }
  .advantages-staking .title {
    padding: 22px 10px 0;
  }
  .advantages-staking .table {
    padding-bottom: 10px;
  }
}
.tokens-cards {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1200px) {
  .tokens-cards {
    flex-wrap: wrap;
  }
}
.tokens-cards .info-card {
  width: calc(50% - 4px);
  margin-right: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 17px rgba(43, 43, 54, 0.05),
    2px 4px 21px rgba(43, 43, 54, 0.05);
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .tokens-cards .info-card {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .tokens-cards .info-card {
    padding-bottom: 65px;
  }
}
@media (max-width: 480px) {
  .tokens-cards .info-card {
    width: 100%;
  }
}
.tokens-information--about-tokens {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}
.section--note {
  margin-bottom: -20px;
  font-size: 12px;
  line-height: 21px;
}
@media (max-width: 480px) {
  .section--note {
    margin-bottom: 10px;
    word-break: break-all;
  }
}
.section-gradual {
  margin-top: 60px;
}
.section-gradual .title {
  font-size: 24px;
  color: #2b2b36;
}
.section-gradual .text-top {
  margin-bottom: 20px;
}
.section-gradual .text-top .text {
  font-weight: 600;
}
.section-gradual p {
  line-height: 27px;
  margin: 0;
  opacity: 1;
  color: #2b2b36;
}
.section-token_burn {
  margin-bottom: 60px;
}
.section-token_burn h2 {
  color: #00c26f;
}
.section-token_burn p {
  line-height: 27px;
  opacity: 1;
  color: #2b2b36;
}
.section-tokens-craft {
  border-radius: 8px;
}
.section-tokens-craft h2 {
  color: #00c26f;
}
.section--note-link {
  margin-left: 5px;
}
.tg-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-direction: row-reverse;
  background: #2b2b36;
}
.tg-link--link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 59px;
  height: 59px;
  padding-top: 3px;
  padding-right: 3px;
  font-size: 30px;
  color: white;
  background: linear-gradient(203.2deg, #8b8b96 21.67%, #444459 69.75%);
  border-radius: 50%;
}
.tg-link--link:hover {
  color: #00c26f;
}
.tg-link--article-link {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.tg-link--article-link:hover {
  color: #fff;
  opacity: 0.7;
}
.tg-link--article {
  max-width: 80%;
  margin-left: 20px;
  opacity: 1;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .tg-link--article {
    width: 60%;
    line-height: 25px;
  }
}
.token-press {
  padding: 50px 30px;
  background-color: white;
}
.token-press--topic-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .token-press--topic-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.token-press--topic {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b36;
}
.token-press--sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.token-press--sources-item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  height: 92px;
  background: rgba(61, 61, 112, 0.04);
}
@media (max-width: 768px) {
  .token-press--sources-item {
    min-width: 200px;
  }
}
.token-press--sources-item:nth-child(2) {
  margin-right: 10px;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .token-press--sources-item:nth-child(2) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .token-press--sources-item:nth-child(2) {
    margin-top: 10px;
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .token-press--sources-item:last-child {
    margin-top: 10px;
  }
}
.token-press--article-container {
  display: flex;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .token-press--article-container {
    flex-direction: column;
    margin-top: 0;
  }
}
.token-press--article-item {
  width: 50%;
  padding: 16px 48px 8px 24px;
  background: rgba(61, 61, 112, 0.04);
}
.token-press--article-item .token-press--article-link {
  color: #00c26f;
}
.token-press--article-item .token-press--article-link:hover {
  color: #00c26f;
  opacity: 0.8;
}
@media (max-width: 480px) {
  .token-press--article-item {
    width: 100%;
    margin-top: 20px;
  }
}
.token-press--article-item:first-child {
  margin-right: 8px;
}
.token-press--article-topic {
  display: block;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 22px;
  color: black;
  letter-spacing: 0.4px;
  text-decoration-line: underline;
}
.token-press--article-link {
  font-size: 13px;
  line-height: 22px;
  color: #00c26f;
  letter-spacing: 0.4px;
}
.token-press--sources-item:hover path {
  fill: #00c26f;
}
.tokens-information .currencies-price {
  margin-top: -5px;
  margin-bottom: 45px;
}
@media (max-width: 480px) {
  .tokens-information .currencies-price {
    width: 100%;
  }
}
.tokens-information .currencies-price--topic,
.tokens-information .currencies-price--article {
  color: #2b2b36;
}
.tokens-information .currencies-price--article {
  font-size: 16px;
}
.gradual-airdrop {
  width: 100%;
  height: 81px;
  margin-bottom: -15px;
}
.gradual-airdrop--img {
  width: 100%;
  height: 100%;
  background: url(3439d414f10e18440059.png) top no-repeat;
  background-size: cover;
}
.tx-page {
  margin-top: -30px;
}
.tx-page--head {
  margin-top: 60px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.tx-page--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 15px;
  background-color: #00c26f;
  border-radius: 50%;
}
.tx-page--icon img {
  width: 18px;
}
@media all and (max-width: 480px) {
  .tx-page--icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.tx-page--title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  color: #5c5780;
  letter-spacing: 0.3px;
}
@media all and (max-width: 480px) {
  .tx-page--title {
    flex-direction: column;
  }
}
@media all and (max-width: 767px) {
  .tx-page--title {
    font-size: 40px;
  }
}
@media all and (min-width: 768px) {
  .tx-page--title {
    font-size: 48px;
  }
}
.tx-page--telegram-block {
  margin: 34px auto 23px auto;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #5c5780;
  letter-spacing: 0.3px;
}
.tx-page--telegram-block__bold {
  font-weight: bold;
  color: #5c5780;
  text-decoration: underline;
}
.tx-page--telegram-block__bold::before {
  content: url(f1121836db0bc84cba45.svg);
  margin-right: 5px;
}
.tx-page--review-block {
  display: flex;
  justify-content: center;
  width: 408px;
  height: 49px;
  margin: 25px auto 0 auto;
  border: 1px solid rgba(0, 194, 111, 0.5);
  border-radius: 4px;
}
.tx-page--review-block:hover {
  background: rgba(0, 194, 111, 0.1);
}
.tx-page--review-block a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #5c5780;
  letter-spacing: 0.3px;
}
@media all and (max-width: 379px) {
  .tx-page--review-block a {
    font-size: 20px;
  }
}
@media all and (max-width: 575px) {
  .tx-page--review-block {
    width: 96%;
  }
}
.tx-page--subtitle {
  font-size: 20px;
  color: #00c26f;
}
.tx-page--info {
  padding: 70px 0 30px;
}
.tx-table {
  font-size: 20px;
}
.tx-table--row {
  height: 45px;
  margin-bottom: 10px;
}
.tx-table--cell:first-child {
  min-width: 300px;
}
.tx-table--cell:last-child {
  font-weight: 700;
}
.tx-extra-table--cell:first-child {
  min-width: 170px;
  font-size: 12px;
}
.tx-extra-table--cell:last-child {
  font-size: 18px;
}
.exchange-steps {
  padding: 50px 0;
}
.tx-page .exchange-steps {
  padding: 10px 0 50px 0;
}
.exchange-step-info {
  margin: 18px 0;
  padding: 17px 27px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .exchange-step-info {
    position: relative;
    padding: 16px;
  }
}
.exchange-step-info__exchange .exchange-step-info--col {
  width: 33.33333%;
}
.exchange-step-info__tokens h3 {
  margin-bottom: 0.66em;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  text-align: left;
  color: #2b2b36;
  letter-spacing: 0.3px;
}
.exchange-step-info--info > h3 {
  margin-top: 9px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
}
.exchange-step-info--head {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .exchange-step-info--head {
    display: block;
  }
}
.exchange-step-info--content {
  display: flex;
}
@media (max-width: 768px) {
  .exchange-step-info--content {
    display: block;
  }
}
.exchange-step-info--title {
  margin-right: 30px;
  font-weight: 700;
  font-size: 24px;
  text-align: left;
  color: #2b2b36;
  letter-spacing: 0.4px;
}
.exchange-step-info--subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #a4a3aa;
  letter-spacing: 0.3px;
}
.exchange-step-info--index {
  width: 40px;
  height: 40px;
  margin-right: 17px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #00c26f;
  border: 1px solid transparent;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .exchange-step-info--index {
    margin-bottom: 40px;
  }
}
.exchange-step-info--icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  background: rgba(61, 61, 112, 0.04);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .exchange-step-info--icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 72px;
    height: 72px;
  }
}
.exchange-step-info--icon > img {
  width: 52px;
}
@media (max-width: 768px) {
  .exchange-step-info--icon > img {
    width: 48px;
  }
}
.exchange-step-info--info {
  width: 100%;
  padding-left: 33px;
}
@media (max-width: 768px) {
  .exchange-step-info--info {
    padding-left: 0;
  }
}
.exchange-step-info--table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.exchange-step-info--item {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .exchange-step-info--item {
    display: block;
  }
}
.exchange-step-info--item:last-child {
  font-weight: 700;
}
.exchange-step-info--item-head {
  flex-shrink: 0;
  width: 240px;
  font-size: 15px;
  line-height: 1.3;
  vertical-align: baseline;
  letter-spacing: 0.3px;
}
.exchange-step-info--item-content {
  font-size: 15px;
  line-height: 1.3;
  vertical-align: baseline;
  letter-spacing: 0.3px;
  white-space: normal;
  word-break: break-all;
}
.exchange-step-info--item-content:not(.address-text) {
  font-weight: 700;
}
.tx-page--exchange-time {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
.exchange-steps--btn-container {
  display: flex;
  justify-content: center;
}
.exchange-steps--btn {
  width: 300px;
  height: 50px;
  background: #00c26f;
  border-radius: 5px;
}
.fat p {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #5c5780;
  letter-spacing: 0.3px;
  opacity: 1;
}
@media all and (max-width: 575px) {
  .fat p {
    font-size: 18px;
  }
}
#app-root {
  height: auto;
}
.for-partners-page,
.widgets-page-nav {
  margin-top: -90px;
}
.for-partners-page p,
.widgets-page-nav p {
  line-height: 22px;
}
@media screen and (max-width: 992px) {
  .for-partners-page h1,
  .widgets-page-nav h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  .for-partners-page,
  .widgets-page-nav {
    margin-top: 0;
  }
}
.for-partners-page h2 {
  margin-top: 0;
  color: rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 992px) {
  .for-partners-page h2 {
    font-size: 22px;
  }
}
.for-partners-page > .row > .col-md-12 {
  padding: 0;
}
.external-widget-page-block
  #app-root
  > div
  > div:nth-child(1)
  > div:nth-child(2)
  > div {
  display: none;
}
.navigation {
  background-color: #e9e7ef;
}
.navigation--list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation--link {
  display: inline-block;
  padding-right: 16px;
  padding-left: 16px;
  font-weight: 500;
  font-size: 15px;
  line-height: 49px;
  color: #515153;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.navigation--link:hover {
  color: #00c26f;
}
.navigation--link.active {
  background-color: #fff;
}
.slick-slider .slick-track {
  height: 540px;
}
.bread-crumbs--container {
  z-index: 3;
}
.bread-crumbs--icon__dark {
  color: #5c5780;
}
.bread-crumbs--icon__light {
  color: #a4a3aa;
}
.bread-crumbs--icon::after {
  margin-inline-start: 10px;
  margin-bottom: 4px;
  content: "\E002";
  font-size: 6px;
  list-style: none;
  transform: rotate(270deg);
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}
html[dir="rtl"] .bread-crumbs--icon::after {
  transform: rotate(90deg);
}
.bread-crumbs--item {
  align-items: flex-end;
  list-style: none;
  margin-inline-end: 10px;
}
@media all and (max-width: 575px) {
  .bread-crumbs--item {
    margin: 0 5px;
  }
}
.bread-crumbs--item__dark {
  color: #5c5780;
}
.bread-crumbs--item__active.bread-crumbs--item__dark {
  color: #56566e;
}
.bread-crumbs--item__light {
  color: #a4a3aa;
}
.bread-crumbs--item__hide {
  display: none;
}
.bread-crumbs--item__hide + .bread-crumbs--icon {
  display: none;
}
.bread-crumbs--text {
  color: inherit;
  margin: 0;
  font-size: 15px;
  line-height: 18px;
}
@media all and (max-width: 575px) {
  .bread-crumbs--text {
    font-size: 13px;
  }
}
.bread-crumbs--item:last-child {
  margin-inline-end: 0;
}
.bread-crumbs--item:not(:last-child):hover .bread-crumbs--text {
  color: #00c26f;
}
.bread-crumbs .container {
  width: 100%;
  padding: 0 16px;
}
@media screen and (min-width: 1440px) {
  .bread-crumbs .container {
    padding: 0 40px;
  }
}
.subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  margin-top: -90px;
  overflow: hidden;
  background: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
}
.subscribe--ellipse {
  position: relative;
}
.subscribe--ellipse:before {
  content: "";
  position: absolute;
  top: 45px;
  left: -19%;
  width: 349.65px;
  height: 276.43px;
  background: #6d6bd9;
  transform: rotate(-41.43deg);
  opacity: 0.8;
  filter: blur(100px);
}
.subscribe--ellipse-green {
  position: relative;
}
.subscribe--ellipse-green:before {
  content: "";
  position: absolute;
  top: 45px;
  right: -35%;
  width: 212.97px;
  height: 168.37px;
  background: #00c26f;
  transform: rotate(-41.43deg);
  opacity: 0.8;
  filter: blur(100px);
}
.subscribe--container {
  position: relative;
  z-index: 2;
}
.subscribe .mail-chimp-form {
  border-radius: 12px;
}
.links-section {
  display: flex;
  margin: 3% 0 3% 7%;
}
@media all and (max-width: 575px) {
  .links-section {
    flex-direction: column;
  }
}
@media all and (max-width: 767px) {
  .links-section {
    margin: 3% 0;
  }
}
.list-links {
  list-style: none;
  padding: 0;
}
.list-links--link {
  margin-right: 48px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.list-links--link a {
  font-size: 16px;
  color: #5c5780;
  border-bottom: 1px solid #5c5780;
}
.quick-links-section {
  margin-right: 50px;
}
@media all and (max-width: 767px) {
  .quick-links-section {
    margin: 0;
  }
}
.related-links-section {
  margin-right: 50px;
}
@media all and (max-width: 767px) {
  .related-links-section {
    margin: 0;
  }
}
.ledger-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  background: #2b2b37;
}
.ledger-page__ledger-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ledger-header__icon {
  margin: 40px auto 24px auto;
}
.ledger-header__icon svg {
  height: 32px;
}
.ledger-page__widget-wrapper {
  height: 355px;
  width: 100%;
  margin: 0 auto;
}
.ledger-page__widget {
  height: 376px;
  width: 100%;
  border: none;
}
.ledger-page__trust-pilot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}
.ledger-page__footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ledger-footer__content {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ledger-footer__copyright {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 16px;
}
.ledger-footer__docs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ledger-footer__doc {
  font-size: 14px;
  line-height: 20px;
  color: #8b86af;
  margin: 0 8px 8px 8px;
  cursor: pointer;
}
.ledger-footer__doc:hover {
  color: #00c26f;
}
@media screen and (min-width: 767px) {
  .ledger-header__icon {
    margin: 40px auto;
  }
  .ledger-header__icon svg {
    height: 48px;
  }
  .ledger-page__widget-wrapper {
    margin: 56px auto;
  }
  .ledger-footer__content {
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
  }
  .ledger-footer__copyright {
    margin-bottom: 0;
  }
  .ledger-footer__doc {
    margin: 0 0 0 24px;
  }
}
.logotype {
  display: flex;
  align-items: center;
  flex-direction: row;
  z-index: 1;
}
.logotype--main {
  height: 40px;
  margin-inline-end: 16px;
}
html[dir="rtl"] .logotype--main {
  margin-left: 16px;
  margin-right: 0;
}
.logotype--sub {
  width: 122px;
  height: 25px;
}
.top-menu {
  display: none;
  z-index: 1000;
}
.top-menu .primary-color {
  color: #00c26f;
}
@media screen and (min-width: 1200px) {
  .top-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
    margin-inline-start: 24px;
  }
}
.top-menu--item {
  position: relative;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 0.1px;
  white-space: nowrap;
  margin-inline-start: 12px;
  padding: 29px 0;
}
.top-menu--item a {
  color: inherit;
}
.top-menu--item:hover {
  color: #00c26f;
  text-decoration: none;
}
.top-menu--item.active-navigation-link {
  color: #8b86af;
}
.top-menu--item:first-child {
  margin-inline-start: 16px;
}
.top-menu--item_border.active-navigation-link:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8b86af;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.top-menu--item_language .top-menu-dropdown-list {
  left: auto;
}
.top-menu-login-link {
  display: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #00c26f;
  border-radius: 4px;
  padding: 8px 16px;
  margin-inline-start: auto;
  margin-inline-end: 15px;
}
.top-menu-login-link:hover {
  color: #ffffff;
}
.top-menu--arrow-menu {
  cursor: pointer;
}
.top-menu--arrow-menu svg {
  fill: #fff;
  stroke: #fff;
}
.top-menu--arrow-menu:hover {
  color: #00c26f;
  text-decoration: none;
}
.top-menu--arrow-menu:hover svg {
  fill: #00c26f;
  stroke: #00c26f;
}
.top-menu--arrow {
  display: inline-block;
  width: 6px;
  transform: scale(0.9);
}
@media screen and (min-width: 768px) {
  .top-menu--arrow {
    margin-inline-start: 8px;
  }
}
.top-menu--arrow-menu:hover .top-menu--language-tooltip {
  display: block;
}
.top-menu--language-tooltip {
  position: absolute;
  top: 75px;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%);
  display: none;
  overflow: hidden;
  background: #fff;
  border-top: 6px solid #00c26f;
  border-radius: 5px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}
.top-menu--language-tooltip-content {
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.top-menu--language-tooltip-content__scrollable::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}
.top-menu--language-tooltip-content__scrollable::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.top-menu--language-tooltip-content__without-scroll {
  margin-top: 7px;
  margin-bottom: 7px;
  overflow: hidden;
}
.top-menu--list {
  color: #2b2b37;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.top-menu--list a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 16px;
  transition: none;
}
.top-menu--list a.active-navigation-link {
  color: #a4a3aa;
}
.top-menu--list:hover {
  background: #f7f7f9;
}
.top-menu--list:hover a {
  color: inherit;
}
.top-menu--list__dogecoin {
  position: relative;
}
.top-menu--list__dogecoin a {
  color: #f1a30f;
}
.top-menu--list__dogecoin a.active-navigation-link {
  color: #f1a30f;
}
.top-menu--list__dogecoin a:after {
  content: url(7dc567b6c4c064dc8053.png);
  position: absolute;
  right: 19px;
  top: 7px;
}
.top-menu--list_border {
  padding-top: 6px;
  border-top: 1px solid #dce2ea;
}
.top-menu--tokens-link {
  color: #00c26f;
}
.top-menu--arrow-menu:last-child .top-menu--list a:before {
  content: "";
  width: 14px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-inline-end: 5px;
}
.top-menu--arrow-menu:not(:last-child) .top-menu--list a {
  position: relative;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.top-menu--list_foreign-link a:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-inline-start: 8px;
  background-image: url(26fa9d8036601fbc4669.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
html[dir="rtl"] .top-menu--list_foreign-link a:before {
  transform: rotate(270deg);
}
.top-menu--list img {
  margin-inline-end: 8px;
}
.top-menu--arrow-menu:nth-child(3) > div {
  cursor: initial;
}
.for-business__dashboard-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 16px 32px;
  background: #f7f7f9;
}
.for-business__boost {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  opacity: 1;
}
.for-business__dashboard-box .for-business__explore {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #00c26f;
  white-space: normal;
}
.for-business__dashboard-box .for-business__explore:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-start: 2px;
  border: 2px solid #00c26f;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
}
html[dir="rtl"] .for-business__dashboard-box .for-business__explore:after {
  transform: rotate(135deg);
}
.for-business__dashboard-box .for-business__explore:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #00c26f;
  transition: width ease 0.2s;
}
.for-business__dashboard-box .for-business__explore:hover:before {
  width: 100%;
}
.for-business .for-business__dashboard-button,
.for-business__button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 44px;
  padding: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.4px;
  background: #00c26f;
  color: #fff;
  user-select: none;
}
.for-business__dashboard-button:hover,
.for-business__button-container:hover {
  opacity: 0.8;
  color: #ffffff;
}
.for-business__lists-box {
  display: flex;
  gap: 24px;
  padding: 8px 16px 0;
}
.top-menu--arrow-menu:nth-child(3)
  .top-menu--language-tooltip-content__without-scroll {
  margin-top: 0;
  margin-bottom: 0;
}
.for-business__link-list {
  padding-left: 0;
  margin-bottom: 24px;
  margin-top: 0;
}
.for-business__link-list-item {
  margin: 0;
  list-style: none;
}
.for-business__subtitle {
  padding: 16px 16px 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  opacity: 1;
}
.for-business__all-products {
  padding: 0 16px;
}
.for-business__all-products .for-business__link-list-item {
  max-width: unset;
  padding-top: 8px;
  display: inline-block;
}
.for-business__all-products .for-business__link-list {
  border-top: 1px solid #dce2ea;
}
@media screen and (min-width: 768px) {
  .top-menu--item {
    margin-inline-start: 16px;
  }
  html[dir="rtl"] .top-menu--arrow {
    margin-left: 0;
    margin-right: 8px;
  }
}
@media screen and (min-width: 1440px) {
  .top-menu--item {
    margin-inline-start: 32px;
  }
  .top-menu--item:first-child {
    margin-inline-start: 40px;
  }
}
.exchange-map {
  display: none;
  background-color: #2b2b37;
  padding: 120px 0;
}
.exchange-map__block {
  max-width: 945px;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.exchange-map__block img {
  width: 945px;
  height: 479px;
}
svg.exchange-map--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
svg.exchange-map--overlay circle {
  transform-origin: 50% 50%;
  transition: opacity 1s;
  will-change: opacity;
  opacity: 0;
}
svg.exchange-map--overlay rect,
svg.exchange-map--overlay text {
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateX(-18px);
  will-change: opacity, transform;
}
svg.exchange-map--overlay rect.active,
svg.exchange-map--overlay text.active {
  opacity: 1;
  transform: translateX(0px);
}
svg.exchange-map--overlay circle.active {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .exchange-map {
    display: block;
    min-height: 718px;
  }
}
.text-input {
  position: relative;
}
@media screen and (max-width: 767px) {
  .text-input {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .text-input {
    margin-bottom: 20px;
  }
}
.text-input input {
  padding: 12px 20px;
  padding-right: 40px;
  height: 50px;
}
.text-input__focused input,
.text-input__filled input {
  padding-top: 15px;
  padding-bottom: 5px;
}
.text-input--placeholder {
  color: #a4a3aa;
  letter-spacing: 0.4px;
  text-align: left;
  line-height: 22px;
  position: absolute;
  top: 15px;
  left: 20px;
  transition: all 300ms;
  pointer-events: none;
  white-space: nowrap;
}
.text-input__focused .text-input--placeholder,
.text-input__filled .text-input--placeholder {
  top: 0;
}
@media screen and (max-width: 379px) {
  .text-input__focused .text-input--placeholder,
  .text-input__filled .text-input--placeholder {
    font-size: 10px;
  }
}
@media screen and (min-width: 380px) {
  .text-input__focused .text-input--placeholder,
  .text-input__filled .text-input--placeholder {
    font-size: 12px;
  }
}
@media screen and (max-width: 379px) {
  .text-input--placeholder {
    font-size: 10px;
  }
}
@media screen and (min-width: 380px) and (max-width: 767px) {
  .text-input--placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .text-input--placeholder {
    font-size: 17px;
  }
}
.text-input--warning {
  position: absolute;
  left: 20px;
  color: #dc1d2e;
}
@media screen and (max-width: 767px) {
  .text-input--warning {
    font-size: 12px;
  }
}
.text-input--icon {
  position: absolute;
  right: 10px;
  top: 15px;
  font-size: 18px;
  transition: opacity 300ms;
  opacity: 0;
}
.text-input__invalid .text-input--icon {
  color: #dc1d2e;
  opacity: 1;
}
.text-input__valid .text-input--icon {
  color: #00c26f;
  opacity: 1;
}
.dialog {
  text-align: center;
  background-color: #f6f4f8;
}
.dialog .promo-consent {
  margin: 10px 0;
  width: 100%;
  padding: 10px 0;
  text-align: left;
}
.dialog--title {
  color: #00c26f;
  background-color: #fff;
  font-size: 28px;
  padding: 30px 10px 25px;
  line-height: 1;
}
@media (max-width: 768px) {
  .dialog--title {
    padding: 15px 10px;
  }
}
.dialog--content {
  padding: 30px 60px;
}
@media (max-width: 768px) {
  .dialog--content {
    padding: 10px 20px;
  }
}
.dialog--container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .dialog--container {
    flex-direction: row;
  }
}
.dialog--content-link {
  text-align: left;
  display: inline-block;
}
.dialog--content p {
  text-align: left;
}
.dialog__small .dialog--title {
  padding: 30px 20px 25px;
  font-size: 28px;
}
@media (max-width: 768px) {
  .dialog__small .dialog--title {
    padding: 15px 10px;
    font-size: 24px;
  }
}
.dialog__small .dialog--content {
  padding: 20px 60px;
}
@media (max-width: 768px) {
  .dialog__small .dialog--content {
    padding: 10px;
  }
}
.dialog__redirect .dialog--content {
  font-size: 20px;
}
.dialog__redirect .button {
  float: right;
  font-size: 16px;
  padding: 0 40px;
  width: 100%;
}
.dialog__redirect p {
  margin: 25px 0;
  line-height: 1.1;
}
.dialog--content-big-img {
  min-width: 190px;
  margin: auto;
  margin-right: 20px;
}
.dialog .button-close {
  position: absolute;
  right: -35px;
  top: -35px;
}
.dialog--body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}
.dialog--body::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.dialog--actions {
  background-color: #f6f4f8;
  padding: 0 60px 40px !important;
}
.no-photo {
  width: 0px;
  height: 0px;
}
.dialog__redirect .dialog--content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dialog__redirect .dialog--content-container {
    flex-direction: column;
  }
}
.loader {
  position: relative;
  margin: 0 auto;
  width: 100px;
}
.loader::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: #00c26f;
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.mail-chimp-form {
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .mail-chimp-form {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .mail-chimp-form {
    padding-top: 10px;
    padding-bottom: 0px;
  }
}
.mail-chimp-form--content {
  display: inline-flex;
  width: 100%;
  align-items: center;
}
@media (max-width: 480px) {
  .mail-chimp-form--content {
    display: block;
    text-align: center;
  }
}
.mail-chimp-form--content > .svg-sprite--mail {
  flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .mail-chimp-form--content > .svg-sprite--mail {
    margin: auto;
    transform: scale(0.75);
    transform-origin: 50% 0%;
  }
}
.mail-chimp-form--content h3 {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .mail-chimp-form--content h3 {
    margin-top: 0px;
  }
}
.mail-chimp-subscription--form {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 20px;
}
.mail-chimp-subscription--field {
  position: relative;
  width: 100%;
}
@media all and (max-width: 575px) {
  .mail-chimp-subscription--field {
    padding: 0;
  }
}
.mail-chimp-subscription--field .field__buttoned {
  max-width: 100%;
}
@media all and (max-width: 480px) {
  .mail-chimp-subscription--field button {
    width: 100%;
  }
}
.mail-chimp-subscription--field input {
  width: 100%;
  margin-bottom: 0;
}
.mail-chimp-subscription--message {
  position: absolute;
  bottom: -20px;
  left: 0;
  height: 20px;
}
.mail-chimp-subscription--message.success {
  color: #00c26f;
}
.mail-chimp-subscription--message.error {
  color: red;
}
.mail-chimp-subscription--spinner {
  position: absolute;
  right: 3%;
}
@media all and (max-width: 575px) {
  .mail-chimp-subscription--spinner {
    top: 8%;
  }
}
@media all and (min-width: 576px) {
  .mail-chimp-subscription--spinner {
    top: 18%;
  }
}
@media all and (max-width: 575px) {
  .field__buttoned svg {
    width: 40px !important;
    height: 36px !important;
  }
}
.warning-tooltip {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid #e62e04;
  background-color: #fff;
  opacity: 1;
}
.warning-tooltip .rc-tooltip-arrow {
  display: none;
}
.warning-tooltip::after,
.warning-tooltip::before {
  top: 100%;
  left: 10%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.warning-tooltip::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.warning-tooltip::before {
  border-color: rgba(230, 46, 4, 0);
  border-top-color: #e62e04;
  border-width: 7px;
  margin-left: -7px;
}
.warning-tooltip__success {
  border: 1px solid #00c26f;
}
.warning-tooltip__success::before {
  border-top-color: #00c26f;
}
.warning-tooltip__warning {
  border: 1px solid #fec107;
}
.warning-tooltip__warning::before {
  border-top-color: #fec107;
}
.warning-tooltip .rc-tooltip-inner {
  background-color: #fff;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  min-width: 240px;
  padding: 2px 20px;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  border-right-color: #e62e04;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  border-left-color: #e62e04;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  border-top-color: #e62e04;
  bottom: -6px;
}
.warning-tooltip .rc-tooltip-placement-right .rc-tooltip-arrow {
  border-right-color: white;
}
.warning {
  margin: 5px 0;
  background-color: rgba(61, 61, 112, 0.04);
  padding: 13px 23px 11px 35px;
  position: relative;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 379px) {
  .warning {
    padding-left: 30px;
  }
}
.warning-tooltip .warning {
  background-color: transparent;
  padding: 0;
  position: relative;
  border-radius: 0;
  margin: 0;
}
.exchange-input + .warning {
  margin-top: 14px;
}
.warning--icon {
  position: absolute;
  top: 12px;
  left: 12px;
}
.warning--content {
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.3px;
  white-space: pre-wrap;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #808086;
}
.warning--description {
  margin: 5px 0;
  display: flex;
  justify-content: center;
}
.warning__exchange-creation-error {
  margin-bottom: 30px;
}
.embeds-widget-button {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: top;
  padding: 24px 0;
  cursor: pointer;
}
.embeds-widget-button_active .embeds-widget-button__box:before {
  background-color: #00c26f;
}
.embeds-widget-button__box {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #2b2b36;
  border-radius: 50%;
}
.embeds-widget-button__box:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color ease 0.3s;
}
.embeds-widget-button__text {
  display: inline-block;
  vertical-align: middle;
  font-size: 19px;
  line-height: 24px;
  color: #2b2b36;
  font-weight: 700;
  margin-left: 12px;
}
.pagination {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  position: relative;
}
.pagination-container {
  text-align: center;
}
.pagination li {
  padding: 10px;
  cursor: pointer;
  user-select: none;
}
.pagination li:hover {
  padding: 10px;
}
.pagination--item.active {
  color: #00c26f;
}
.pagination--prev {
  position: absolute;
  left: -100px;
}
.pagination--next {
  position: absolute;
  right: -70px;
}
.cookie-warning {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999999;
  transition: transform 500ms;
  will-change: transform;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-warning_shown {
  transform: translateY(100%);
}
.cookie-warning__content {
  background: #e5e5e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px 16px 0 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.cookie-warning__text p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  opacity: 1;
  display: inline;
}
.cookie-warning__content a {
  white-space: nowrap;
  color: #00c26f;
  text-decoration: none;
}
.cookie-warning__content a:hover {
  opacity: 0.8;
}
.cookie-warning__button {
  width: 100%;
  display: block;
  background: #00c26f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 18.75px;
  letter-spacing: 0.1px;
  border-radius: 8px;
  border: none;
  outline: none;
  padding: 10px 16px;
}
.cookie-warning__controls {
  width: 100%;
}
@media all and (min-width: 768px) {
  .cookie-warning__content {
    flex-direction: row;
    max-width: 695px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    padding: 14px 28px;
  }
  .cookie-warning__controls {
    margin-top: 0;
    margin-left: 40px;
    width: auto;
  }
  .cookie-warning__button {
    width: auto;
  }
  .cookie-warning__text p {
    display: block;
  }
}
.language-adviser {
  display: none;
  position: relative;
  background-color: #2b2b36;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: transform 300ms;
  will-change: transform;
}
.language-adviser__show {
  display: block;
}
.language-adviser--content {
  display: flex;
  height: 48px;
  color: #fff;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.583333px;
}
@media (max-width: 575px) {
  .language-adviser--content span {
    margin-bottom: 9px;
  }
}
@media (min-width: 576px) {
  .language-adviser--content span {
    margin-right: 30px;
  }
}
.language-adviser--content a {
  color: #fff;
  min-width: 66px;
  padding: 3px;
  height: 24px;
  border: 1px solid rgba(164, 163, 170, 0.6);
  border-radius: 4px;
}
@media all and (max-width: 575px) {
  .language-adviser--content {
    flex-direction: column;
    height: auto;
    padding: 9px 14px;
  }
}
.language-adviser--close-btn {
  position: absolute;
  right: 10px;
  top: 14px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.language-adviser--close-btn:before,
.language-adviser--close-btn:after {
  position: absolute;
  left: 10px;
  content: "";
  height: 18px;
  width: 1px;
  background-color: #fff;
}
.language-adviser--close-btn:before {
  transform: rotate(45deg);
}
.language-adviser--close-btn:after {
  transform: rotate(-45deg);
}
.tokens-form-container {
  width: 100%;
  text-align: left;
}
.tokens-form-wrapper > .warning {
  width: calc(100% - 190px);
}
@media (max-width: 768px) {
  .tokens-form-wrapper > .warning {
    width: 100%;
    margin-top: 18px;
  }
}
.tokens-form-container > .warning {
  max-width: 460px;
}
.tokens-form {
  display: flex;
  width: 100%;
  align-items: center;
}
.tokens-form h3 {
  margin-bottom: 0.66em;
  font-size: 18px;
  color: #2b2b36;
  letter-spacing: 0.3px;
  text-align: left;
  font-weight: bold;
  line-height: 22px;
}
.tokens-form--icon {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tokens-form--icon {
    max-width: 60px;
  }
}
@media screen and (max-width: 991px) {
  .tokens-form--icon {
    margin: auto;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 768px) {
  .tokens-form--icon {
    max-width: 100px;
  }
}
.tokens-form--icon > img {
  width: 100%;
}
.tokens-form--form {
  width: 100%;
}
.tokens-form--form > div > .relative {
  width: 100%;
}
.tokens-form--form .field {
  max-width: none;
  margin-bottom: 0;
}
.tokens-form--form input {
  padding-right: 40px;
}
.exchange-step-info--info .tokens-form-container {
  margin: 0;
}
.exchange-step-info--info .tokens-form--icon {
  margin: 0;
  display: none;
}
.exchange-step-info--info .tokens-form--form {
  padding-left: 0;
  background: none;
}
.exchange-step-info--info .tokens-form {
  justify-content: flex-start;
}
.exchange-step-info--info .tokens-form h3 {
  display: none;
}
#tokens-form {
  max-width: 720px;
}
.dropdown-block {
  margin: 2px 0;
}
.dropdown-block--label {
  background-color: #fff;
  font-size: 21px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: 0.3px;
  color: #3d3d70;
  padding: 19px 40px 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .dropdown-block--label {
    font-size: 14px;
    padding-left: 10px;
  }
}
.dropdown-block--content {
  overflow: hidden;
  transition: height 500ms;
  will-change: height;
}
.dropdown-block--content > div {
  padding: 20px;
}
.dropdown-block--content p,
.dropdown-block--content li {
  font-size: 18px;
  color: #2b2b37;
  opacity: 0.8;
}
.dropdown-block--button {
  float: right;
  min-width: 24px;
  min-height: 24px;
  cursor: pointer;
  position: relative;
  margin-left: 15px;
}
.dropdown-block--button::before,
.dropdown-block--button::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #00c26f;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  transition: transform 500ms;
  will-change: transform;
}
.dropdown-block--button::after {
  transform: rotate(90deg);
}
.dropdown-block--button.active::before {
  transform: rotate(135deg);
}
.dropdown-block--button.active::after {
  transform: rotate(-135deg);
}
.info-card {
  position: relative;
  margin-bottom: 16px;
  min-height: 323px;
  padding: 0;
  background-color: #fff;
}
.info-card a {
  font-weight: 600;
  text-decoration: underline;
  color: #2b2b36;
  opacity: 0.8;
}
.info-card a:hover {
  opacity: 1;
}
.info-card--title-wrapper {
  padding: 20px 16px;
  border-bottom: 1px solid #e9e7ee;
}
.info-card--title {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  line-height: normal;
  color: #2b2b36;
  font-style: normal;
  font-stretch: normal;
}
.info-card--subtitle {
  margin-bottom: 1rem;
  padding: 24px 16px 0 16px;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #2b2b36;
  opacity: 0.8;
}
.info-card--content {
  margin-top: 10px;
  padding: 0px 16px 0 16px;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #2b2b36;
  opacity: 0.8;
}
.info-card--link {
  position: absolute;
  bottom: 24px;
  left: 2px;
}
.info-card--button {
  color: #2b2b36;
  background: transparent;
}
.button.info-card--button::before {
  color: #2b2b36;
}
.button.info-card--button:hover {
  background: transparent;
  color: #2b2b36;
}
.button.info-card--button:hover::before {
  color: #2b2b36;
}
.phishing-warning {
  margin-bottom: 16px;
  margin-top: 16px;
}
.phishing-warning .warning {
  display: inline-block;
  padding: 20px 23px 17px 44px;
}
.phishing-warning .warning--icon {
  top: 20px;
}
.phishing-warning .warning--description img {
  border-radius: 4px;
  border: 1px solid #ceced3;
}
.for-partners-page .bread-crumbs {
  margin-top: 30px;
  margin-bottom: -20px;
}
.for-partners-page > .row > .col-md-12 {
  padding: 0;
}
.external-widget-page-block
  #app-root
  > div
  > div:nth-child(1)
  > div:nth-child(2)
  > div {
  display: none;
}
.navigation {
  background-color: #e9e7ef;
}
.navigation--list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 992px) {
  .navigation--list {
    margin-top: -40px;
    flex-wrap: wrap;
  }
}
.navigation--link {
  display: inline-block;
  padding-right: 16px;
  padding-left: 16px;
  font-weight: 500;
  font-size: 15px;
  line-height: 49px;
  color: #56566e;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.navigation--link.active-navigation-link {
  color: inherit;
}
.navigation--link:hover {
  color: #00c26f;
}
.navigation--link.active {
  background-color: #fff;
}
.widgets-page-nav .bread-crumbs {
  max-width: 810px;
  margin-top: 35px;
  margin-bottom: -20px;
}
._1hT2t,
._33QfK {
  line-height: normal;
}
.privileges {
  padding-bottom: 0;
  background-color: #fff;
}
.privileges p {
  letter-spacing: 0;
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  .widgets-page-nav .bread-crumbs {
    max-width: 975px;
  }
}
.timer {
  position: relative;
  width: 100%;
  height: 64px;
  padding: 11px 17px;
  background: rgba(61, 61, 112, 0.04);
  margin: 35px 0;
}
.timer--progress {
  position: absolute;
  background-color: #00c26f;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: width 200ms linear;
}
.timer--time {
  position: relative;
  font-size: 36px;
  color: #2b2b36;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-right: 12px;
  line-height: 1;
}
.timer--info {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #2b2b36;
  letter-spacing: 0.08px;
  text-align: left;
  line-height: 14px;
}
#mobile-menu {
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  #mobile-menu {
    display: none;
  }
}
.mobile-menu-btn {
  display: block;
  position: relative;
  left: 5px;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
.mobile-menu-btn--bar {
  height: 3px;
  width: 36px;
  background-color: #00c26f;
  margin-bottom: 6px;
  border-radius: 2px;
  transition: all 500ms;
  transform-origin: 50% 50%;
}
.mobile-menu-btn--bar:last-child {
  margin-bottom: 0;
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(2) {
  opacity: 0;
  transform: rotate(180deg);
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
html[dir="rtl"] .mobile-menu-btn {
  left: unset;
  right: 5px;
}
.mobile-menu-wrapper {
  width: 100%;
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  background-color: red;
  height: 100vh;
  z-index: 1000;
}
.mobile-menu {
  width: 100%;
  height: calc(100% - 60px);
  transform: translateX(0%);
  position: absolute;
  top: 65px;
  left: 0;
  background-color: #2b2b36;
  transition: transform 500ms;
  overflow-y: auto;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .mobile-menu {
    top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.active {
  transform: translateX(100%);
}
.mobile-menu--list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  color: #fff;
  list-style: none;
}
.mobile-menu--list li > span > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-inline-end: 30px;
}
.mobile-menu--list a {
  color: #fff;
}
.mobile-menu--select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu--lang-select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  background-color: transparent;
  color: #ffffff;
  padding: 0;
  border: 0;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: start;
}
.mobile-menu svg {
  position: absolute;
  left: calc(100% - 16px);
  display: block;
  width: 16px;
  height: 16px;
}
html[dir="rtl"] .mobile-menu svg {
  left: unset;
  right: calc(100% - 16px);
}
.mobile-menu__category-title {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: start;
  color: #8b86af;
  border-bottom: 1px solid #3d3d4b;
}
.mobile-menu__category-title > a {
  display: inline-block;
  width: 100%;
  color: #8b86af;
}
.mobile-menu__category-title-history-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #e5e5e5;
  font: inherit;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  width: 100%;
}
.mobile-menu__category-title-history-button > img {
  margin-right: 8px;
}
.mobile-menu_flex {
  display: flex;
  flex-direction: column;
}
.mobile-menu--inactive {
  font-size: 24px;
  color: #a4a3aa;
}
.mobile-menu--list-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1px;
  text-align: start;
}
.mobile-menu--list-item:first-child {
  margin-top: 10px;
}
li.mobile-menu--list-item-line {
  display: block;
  margin: 0;
  height: 1px;
  background-color: #3d3d4b;
}
.mobile-menu--list-item .icon-open {
  font-size: 15px;
  margin-inline-start: 10px;
  margin-top: 4px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.mobile-menu--tokens-link {
  color: #00c26f !important;
}
.dropdown_item {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
}
.mobile-menu--list ul a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.mobile-menu__category-title > .mobile-menu__category-arrow {
  top: 25%;
  left: calc(100% - 10px);
  width: 16px;
  height: 16px;
  transform: rotateZ(-90deg) scale(1.5);
}
html[dir="rtl"] .mobile-menu__category-title > .mobile-menu__category-arrow {
  left: unset;
  right: calc(100% - 10px);
  transform: rotateZ(-90deg) scale(1.5) rotateX(180deg);
}
.mobile-menu--select-wrapper:before {
  content: "";
  display: block;
  width: 16px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-inline-end: 8px;
}
.mobile-menu--select-wrapper_ar:before {
  background-image: url(7ebb11140b6d98956b5f.svg);
}
.mobile-menu--select-wrapper_cs:before {
  background-image: url(7d1138bc8f1811368b44.svg);
}
.mobile-menu--select-wrapper_da:before {
  background-image: url(de71511a3717fa2e2d27.svg);
}
.mobile-menu--select-wrapper_de:before {
  background-image: url(961c51210d660a0e9b2a.svg);
}
.mobile-menu--select-wrapper_el:before {
  background-image: url(74bf0c7f6a2cfb2c6c4e.svg);
}
.mobile-menu--select-wrapper_en:before {
  background-image: url(6fc51ae04305a7bb2bfe.svg);
}
.mobile-menu--select-wrapper_es:before {
  background-image: url(0e220fc38a3fa638cef5.svg);
}
.mobile-menu--select-wrapper_fa:before {
  background-image: url(2515b621cdd3e15777c4.svg);
}
.mobile-menu--select-wrapper_he:before {
  background-image: url(eb01836bb6b12256eb88.svg);
}
.mobile-menu--select-wrapper_fr:before {
  background-image: url(8000347e09782e23592f.svg);
}
.mobile-menu--select-wrapper_hi:before {
  background-image: url(34ab61d232e92ed934a3.svg);
}
.mobile-menu--select-wrapper_hu:before {
  background-image: url(12736512848557260f86.svg);
}
.mobile-menu--select-wrapper_id:before {
  background-image: url(8a32749b75c98fad94c7.svg);
}
.mobile-menu--select-wrapper_it:before {
  background-image: url(f19397719372b4a9aa07.svg);
}
.mobile-menu--select-wrapper_ja:before {
  background-image: url(6cb58bcf4bf940aad91c.svg);
}
.mobile-menu--select-wrapper_ko:before {
  background-image: url(42c98db2b177a0fa9636.svg);
}
.mobile-menu--select-wrapper_ms:before {
  background-image: url(0c2231d0c6bd06f5473c.svg);
}
.mobile-menu--select-wrapper_nl:before {
  background-image: url(242ae1d220d69526916b.svg);
}
.mobile-menu--select-wrapper_pl:before {
  background-image: url(fd94cb9f5eb36b596e33.svg);
}
.mobile-menu--select-wrapper_pt:before {
  background-image: url(09e2f5a1de9117c64029.svg);
}
.mobile-menu--select-wrapper_ru:before {
  background-image: url(99f1eb9566e9bd0cf8f3.svg);
}
.mobile-menu--select-wrapper_sv:before {
  background-image: url(837a1813144fdf410a73.svg);
}
.mobile-menu--select-wrapper_th:before {
  background-image: url(9b4747df329342f7468d.svg);
}
.mobile-menu--select-wrapper_tl:before {
  background-image: url(6189b1ef1910b593dc54.svg);
}
.mobile-menu--select-wrapper_tr:before {
  background-image: url(d79cb9af31bf161e52af.svg);
}
.mobile-menu--select-wrapper_uk:before {
  background-image: url(39e0a08cac0f1967c579.svg);
}
.mobile-menu--select-wrapper_vi:before {
  background-image: url(224110cb9235ecc88815.svg);
}
.mobile-menu--select-wrapper_zh:before {
  background-image: url(fea93aee759e5ca8abc1.svg);
}
.copy-btn {
  display: inline-flex;
  align-items: center;
}
.copy-btn--note {
  position: absolute;
  color: #a4a3aa;
  margin-left: 25px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  word-break: normal;
}
.copy-btn .icon,
.copy-btn .button__arrow {
  line-height: 1;
  font-size: 0;
  cursor: pointer;
}
.copy-btn .icon:hover,
.copy-btn .button__arrow:hover {
  color: #00c26f;
}
.copy-btn .icon::before,
.copy-btn .button__arrow::before {
  font-size: 20px;
}
.tabs--labels {
  display: flex;
  margin-bottom: 20px;
}
.tabs--label {
  padding: 12px 21px;
  border-radius: 22px;
  color: #fff;
  background-color: transparent;
  opacity: 0.3;
  cursor: pointer;
}
@media (max-width: 768px) {
  .tabs--label {
    padding: 6px 18px;
  }
}
.tabs--label.active {
  background-color: #36324a;
  opacity: 1;
}
.coin-select-list__toggle-filter {
  width: 300px;
  background-color: white;
  box-shadow: 0 5px 10px rgba(61, 61, 112, 0.15);
  border-radius: 4px;
  z-index: 2323;
  margin-left: 15px;
  margin-top: 5px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .coin-select-list__toggle-filter {
    left: -10px;
  }
}
.coin-select-list--input__toggle-filter {
  width: 230px;
  margin-left: 10px;
  height: 30px;
  padding: 5px 20px;
  border: 1px solid #d1cfdd;
  border-radius: 4px;
  margin-top: 4px;
  font-size: 14px;
  margin-bottom: 0;
}
.coin-select-list--input:focus {
  outline: none;
}
.coin-select-list--input::placeholder {
  color: #a4a3aa;
  font-size: 12px;
}
.coin-select-list--container {
  max-height: 225px;
  overflow: auto;
}
.coin-select-list--container::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #e9e7ee;
}
.coin-select-list--container::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.coin-select-list--container-list {
  padding: 5px;
  margin: 0;
}
.coin-select-list--item {
  list-style: none;
  cursor: pointer;
  height: 30px;
  padding-left: 12px;
  transition: all ease-out 0.1s;
}
.pair-status-table .coin-select-list--item {
  padding-left: 0;
}
.coin-select-list--icon {
  margin: 0 5px 0 3px;
  font-size: 17px;
  color: #2b2b36;
  width: 20px;
  display: inline-block;
}
.coin-select-list--item-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.coin-select-list--item-container .coin-select-list--item-label {
  padding: 4px 0 4px 5px;
}
.coin-select-list--item-container .coin-select-list--icon {
  margin: 0 10px 0 0;
}
.coin-select-list--item:hover {
  box-shadow: 0 5px 10px rgba(61, 61, 112, 0.15);
}
.coin-select-list--ticker {
  font-size: 14px;
  color: #2b2b36;
  width: 95px;
  display: inline-block;
}
.coin-select-list--name {
  line-height: 12px;
  color: #d1cfdd;
}
@media screen and (max-width: 767px) {
  .coin-select-list--name {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .coin-select-list--name {
    font-size: 10px;
  }
}
.coin-select-list--item label {
  margin-right: 0;
}
.available-filter-label {
  font-weight: 500;
  font-size: 12px;
  color: #a4a3aa;
  opacity: 1;
}
.available-filter {
  position: absolute;
  box-shadow: 0 5px 10px rgba(61, 61, 112, 0.15);
  border-radius: 4px;
  padding-left: 13px;
  background: white;
}
.input-filter--item {
  letter-spacing: 0.2px;
  color: #2b2b36;
  border-radius: 4px;
  background: white;
}
.input-filter--default-value {
  color: #a4a3aa;
  letter-spacing: 0.2px;
  position: absolute;
  left: 7px;
  font-size: 14px;
  line-height: 22px;
}
.input-filter--value {
  letter-spacing: 0.2px;
  position: absolute;
  left: 7px;
  font-size: 14px;
  line-height: 22px;
}
.input-filter--icon {
  position: absolute;
  top: calc(50% - 7px);
  font-size: 7px;
  right: 9%;
  color: #d1cfdd;
  cursor: pointer;
  z-index: 1;
}
.input-filter {
  position: relative;
  width: 120px;
  height: 35px;
}
.coin-select-list--default-value {
  font-size: 15px;
  line-height: 14px;
  letter-spacing: 0.2px;
  color: #d1cfdd;
  margin-top: 10px;
  margin-bottom: 8px;
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
}
.coin-select-list--item-default {
  margin: 3px 3px 10px 10px;
}
.coin-select-list--item-default-checkbox {
  margin: 3px 3px 10px 0;
}
.telegram-chat-form--img-container {
  width: 100%;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .telegram-chat-form--img-container {
    max-width: 70px;
  }
}
@media screen and (max-width: 991px) {
  .telegram-chat-form--img-container {
    margin: auto;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 768px) {
  .telegram-chat-form--img-container {
    max-width: 100px;
  }
}
.telegram-chat-form--img-container > img {
  width: 100%;
}
.kyc-verification--form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 1000px;
  height: 425px;
  margin: 50px auto;
  background-color: #fff;
  border-radius: 7px;
}
@media screen and (max-width: 991px) {
  .kyc-verification--form {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .kyc-verification--form {
    height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .kyc-verification--form {
    height: 450px;
  }
}
.kyc-verification--sub-block {
  width: 89%;
  margin: 0 auto;
}
.kyc-verification--title {
  position: relative;
  width: 100%;
  height: 20%;
  padding-bottom: 25px;
  border-bottom: 0.3px solid #d8d8d8;
}
.kyc-verification--title h2 {
  position: absolute;
  top: 35%;
  left: 5%;
  margin-top: 0;
  font-size: 24px;
  line-height: 28px;
  text-align: left;
  color: #5c5780;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .kyc-verification--title h2 {
    font-size: 20px;
  }
}
.kyc-verification--what-to-do {
  width: 100%;
  margin: 25px auto;
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  text-align: left;
  color: #5c5780;
  letter-spacing: 0.3px;
}
.kyc-verification--container {
  width: 100%;
  margin: 0 auto;
}
.kyc-verification--input {
  justify-content: center;
  width: 100%;
}
.kyc-verification--input-title {
  font-size: 18px;
  line-height: 21px;
  color: #2b2b36;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 767px) {
  .kyc-verification--input-title {
    font-size: 17px;
  }
}
.kyc-verification--input::placeholder {
  font-weight: bold;
  font-size: 17px;
  line-height: 22px;
  color: #a4a3aa;
  letter-spacing: 0.4px;
}
.kyc-verification--links {
  box-sizing: border-box;
  width: 100%;
  margin: 25px auto 30px auto;
  background-color: rgba(92, 87, 128, 0.1);
  border-radius: 7px;
}
.kyc-verification--links-container {
  padding: 8px;
}
.kyc-verification--links p {
  margin: 0;
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  color: #5c5780;
  letter-spacing: 0.3px;
}
.kyc-verification--button {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.kyc--fail-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.kyc--fail {
  top: 40%;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-self: center;
  box-sizing: border-box;
  width: 90%;
  max-width: 700px;
  max-height: 200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
}
.kyc--fail-content {
  justify-content: center;
  width: 100%;
  margin: 1em;
}
.kyc--text {
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #3d3d70;
  letter-spacing: 0.3px;
}
.kyc--text_normal {
  font-weight: normal;
}
.kyc--text_bold {
  font-weight: bold;
}
.kyc--textNext {
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #3d3d70;
  letter-spacing: 0.3px;
}
.scavengerhunt {
  margin-top: -92px;
  margin-bottom: -2px;
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1px) and (max-width: 1000px) {
  .scavengerhunt {
    background-image: url(75f66cb6ad6885fdaf27.png);
  }
}
@media screen and (min-width: 1001px) and (max-width: 2000px) {
  .scavengerhunt {
    background-image: url(01fcd7fe54cd2d9be62e.png);
  }
}
@media screen and (min-width: 2001px) {
  .scavengerhunt {
    background-image: url(2240d0dc382826b99326.png);
  }
}
.scavengerhunt--content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scavengerhunt--text {
  margin: 0;
  font-weight: bold;
  text-align: center;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 575px) {
  .scavengerhunt--text {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) and (min-width: 576px) {
  .scavengerhunt--text {
    font-size: 30px;
    line-height: 38px;
  }
}
@media screen and (min-width: 768px) {
  .scavengerhunt--text {
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .scavengerhunt--logo-box {
    width: 250px;
    height: 80px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .scavengerhunt--logo-box {
    width: 330px;
    height: 100px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.scavengerhunt--logo {
  width: 100%;
  max-height: 100%;
}
.token-burn--content {
  max-width: 1050px;
}
.token-burn--subtitle {
  font-weight: bold;
}
.token-burn--mb_bottom {
  margin-bottom: 100px;
}
.token-burn--title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 46px;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
}
.token-burn--title-text {
  min-height: 47px;
}
.token-burn--fire {
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 5px;
}
.token-burn--paragraph {
  max-width: 1070px;
  font-size: 18px;
  line-height: 150%;
}
.token-burn--paragraph__mb__m {
  margin-bottom: 40px;
}
.token-burn--note {
  max-width: 787px;
  font-size: 15px;
  line-height: 150%;
}
.token-burn--note__mb__l {
  margin-bottom: 60px;
}
.token-burn--line {
  width: 100%;
  height: 1px;
  margin-top: 35px;
  background-color: #e0e0e0;
}
.token-burn--progress {
  margin-bottom: 25px;
}
.token-burn--progress-total {
  display: flex;
  justify-content: space-between;
  color: #00c26f;
}
.token-burn--progress-start-value,
.token-burn--progress-end-value {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}
.token-burn--progress-total-value {
  font-size: 18px;
  line-height: 12px;
  letter-spacing: 0.3px;
  margin-right: 10px;
}
.token-burn--progress-total-value__bold {
  font-weight: bold;
}
.subTextContainer {
  margin-left: 80px;
}
@media screen and (max-width: 500px) {
  .subTextContainer {
    margin-left: 0px;
  }
}
.burn-step {
  margin-bottom: 10px;
}
.burn-step:last-child {
  margin-bottom: 60px;
}
.burn-step--date-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.burn-step--date-value {
  margin-top: -15px;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}
.burn-step--img-margin {
  margin-left: 20px;
}
.burn-step--texts-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
}
.burn-step--text {
  max-width: 525px;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 130%;
}
.burn-step--text a {
  word-break: break-word;
}
.progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  margin-top: 60px;
  margin-bottom: 25px;
  background-color: rgba(92, 87, 128, 0.3);
}
.progress-bar::before {
  content: "";
  position: absolute;
  left: 0;
  width: 80%;
  height: 8px;
  background-color: #00c26f;
}
.progress-bar--circle {
  position: absolute;
  top: -20px;
  left: calc(80% - 14px / 2);
}
@media (max-width: 480px) {
  .token-press--topic-container .button {
    width: 100%;
    margin-top: 20px;
  }
}
.token-press--topic-container .button:hover {
  color: #ffffff;
}
.token-press {
  padding: 50px 30px;
  background-color: #fff;
}
.token-press--topic-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .token-press--topic-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.token-press--topic {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b36;
}
.token-press--sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.token-press--sources-item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  height: 92px;
  background: rgba(61, 61, 112, 0.04);
}
@media (max-width: 768px) {
  .token-press--sources-item {
    min-width: 200px;
  }
}
.token-press--sources-item:nth-child(2) {
  margin-right: 10px;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .token-press--sources-item:nth-child(2) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .token-press--sources-item:nth-child(2) {
    margin-top: 10px;
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .token-press--sources-item:last-child {
    margin-top: 10px;
  }
}
.token-press--article-container {
  display: flex;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .token-press--article-container {
    flex-direction: column;
    margin-top: 0;
  }
}
.token-press--article-item {
  width: 50%;
  padding: 16px 48px 8px 24px;
  background: rgba(61, 61, 112, 0.04);
}
@media (max-width: 480px) {
  .token-press--article-item {
    width: 100%;
    margin-top: 20px;
  }
}
.token-press--article-item:first-child {
  margin-right: 8px;
}
.token-press--article-topic {
  display: block;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #000;
  letter-spacing: 0.4px;
  text-decoration-line: underline;
}
.token-press--article-link {
  font-size: 13px;
  line-height: 22px;
  color: #00c26f;
  letter-spacing: 0.4px;
}
.token-press--sources-item:hover path {
  fill: #00c26f;
}
@media screen and (min-width: 500px) {
  .burn-step {
    display: flex;
    align-items: center;
    margin-left: 40px;
  }
  .burn-step--date-wrapper {
    margin-right: 50px;
  }
}
.do_not_miss {
  width: 100%;
  margin-bottom: 50px;
}
.do_not_miss_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2px;
  margin: 0 5%;
  border: 1px transparent;
  border-radius: 30px;
  background-image: linear-gradient(#f6f4f8, #f6f4f8),
    linear-gradient(
      29.86deg,
      rgba(23, 171, 250, 0.8) 3.68%,
      rgba(40, 121, 253, 0.61016) 30.71%,
      rgba(51, 92, 255, 0.5) 45.51%,
      rgba(89, 80, 193, 0.20336) 77.75%,
      rgba(110, 74, 161, 0.05) 96.32%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.do_not_miss_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(
    29.86deg,
    #80e3ff 4.82%,
    #81e3fe 5.21%,
    #a2e6fe 15.97%,
    #bde8fd 27.44%,
    #d2eafc 39.95%,
    #e1ebfc 53.84%,
    #eaecfc 70.2%,
    #ededfc 95.18%
  );
  padding: 20px;
  margin: 20px;
  border-radius: 24px;
  width: 95%;
}
.telegram_img {
  align-self: center;
  margin-right: 15%;
}
.right_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.do_not_miss-title {
  font-style: normal;
  font-weight: 400;
  font-size: 3em;
  margin: 15px 0;
}
.do_not_miss-text {
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
}
.telegram_link {
  position: relative;
  display: flex;
  align-items: center;
}
.telegram_text {
  font-style: normal;
  font-weight: 700;
  font-size: 1em;
  position: absolute;
  color: #fff;
  left: 40%;
}
@media screen and (max-width: 930px) {
  .do_not_miss {
    width: 100%;
    margin-bottom: 50px;
  }
  .telegram_img {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}
.defi-portal {
  background: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  overflow: hidden;
  margin-top: -190px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .defi-portal .bread-crumbs {
    margin-top: 150px;
  }
}
@media screen and (min-width: 992px) {
  .defi-portal .bread-crumbs {
    margin-top: 110px;
  }
}
.defi-portal .banner {
  margin-top: 35px;
}
.defi-portal .banner-desktop-image,
.defi-portal .banner-mobile-image {
  transition: 200ms ease-out;
}
.defi-portal-header {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .defi-portal-header {
    margin-bottom: 118px;
  }
}
.defi-portal-header--title {
  font-weight: 500;
  font-size: 44px;
  line-height: 52px;
  letter-spacing: 0.1px;
  color: #fff;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .defi-portal-header--title {
    font-size: 36px;
    line-height: 42px;
    margin-top: 25px;
  }
}
.defi-portal-header--article {
  font-weight: normal;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.1px;
  color: #fff;
  margin-top: 20px;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .defi-portal-header--article {
    font-size: 16px;
  }
}
.defi-portal-chart {
  min-height: 475px;
  background-color: #fff;
  opacity: 0.9;
  border-radius: 12px;
  padding: 30px 40px;
}
@media (min-width: 992px) {
  .defi-portal-chart {
    margin-left: 50px;
  }
}
.defi-portal-chart text {
  font-size: 10px;
}
@media (max-width: 768px) {
  .defi-portal-chart text {
    font-size: 8px;
  }
}
.defi-portal-chart--title {
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: #00c26f;
  margin-bottom: 20px;
}
.chart-nav {
  height: 480px;
}
.defi-chart-nav {
  display: inline-flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .defi-chart-nav {
    flex-direction: column;
  }
}
.defi-chart-nav--coins {
  display: inline-flex;
}
.defi-chart-nav--date {
  display: inline-flex;
}
.defi-chart-nav--item {
  color: #3c3c4b;
  margin: 7px;
  cursor: pointer;
  opacity: 0.7;
  position: relative;
}
.defi-chart-nav--item:hover {
  opacity: 1;
}
.defi-chart-nav--item__active {
  text-decoration-line: underline;
  opacity: 1;
}
.defi-portal-project-table--link,
.defi-portal-project-table--cell {
  display: flex;
  align-content: center;
  align-items: center;
  color: #616174;
  font-size: 16px;
  line-height: 140%;
  padding: 20px;
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .defi-portal-project-table--link,
  .defi-portal-project-table--cell {
    padding: 10px;
  }
}
.defi-chart--block {
  height: 430px;
}
#defi-portal-chart {
  height: 445px;
}
.defi-portal-projects {
  background: #252531;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .defi-portal-projects {
    padding-top: 50px;
    padding-bottom: 55px;
  }
}
.defi-portal-projects-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
}
.defi-portal-projects-header--title {
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  text-align: center;
  color: #fff;
}
@media (max-width: 480px) {
  .defi-portal-projects-header--title {
    font-size: 24px;
    line-height: 28px;
  }
}
.defi-portal-projects-header--article {
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  opacity: 0.7;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .defi-portal-projects-header--article {
    font-size: 16px;
  }
}
.defi-portal-project-table {
  width: calc(100% - 186px);
  border-collapse: separate;
}
@media (max-width: 992px) {
  .defi-portal-project-table {
    order: -1;
    width: 100%;
  }
}
.defi-portal-project-table--row {
  width: 100%;
  background-color: #fff;
  opacity: 0.9;
  border-radius: 8px;
  height: 55px;
  display: flex;
  align-content: center;
  margin-top: 4px;
}
.defi-portal-project-table--cell {
  display: flex;
  align-items: center;
}
.defi-portal-project-table--icon {
  font-size: 20px;
  display: inline-flex;
  margin-right: 10px;
}
.defi-portal-project-table--ticker {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.defi-portal-project-table--cell:first-child {
  width: 10%;
}
@media (max-width: 992px) {
  .defi-portal-project-table--cell:first-child {
    width: 20%;
  }
}
.defi-portal-project-table--cell:first-child .defi-portal-project-table--link,
.defi-portal-project-table--cell:nth-child(2) .defi-portal-project-table--link,
.defi-portal-project-table--cell:nth-child(3) .defi-portal-project-table--link {
  color: #616174;
}
.defi-portal-project-table--cell:last-child,
.defi-portal-project-table--cell:nth-child(4) {
  width: 20%;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .defi-portal-project-table--cell:last-child,
  .defi-portal-project-table--cell:nth-child(4) {
    width: 30%;
  }
}
.defi-portal-project-table--cell:last-child .defi-portal-project-table--link,
.defi-portal-project-table--cell:nth-child(4) .defi-portal-project-table--link {
  justify-content: flex-end;
}
.defi-portal-project-table--cell:last-child .defi-portal-project-table--link,
.defi-portal-project-table--cell:last-child
  .defi-portal-project-table--link:hover,
.defi-portal-project-table--cell:nth-child(4) .defi-portal-project-table--link,
.defi-portal-project-table--cell:nth-child(4)
  .defi-portal-project-table--link:hover {
  color: #3c3c4b;
  font-weight: bold;
  padding-right: 35px;
  padding-left: 0;
}
@media (max-width: 480px) {
  .defi-portal-project-table--cell:last-child .defi-portal-project-table--link,
  .defi-portal-project-table--cell:last-child
    .defi-portal-project-table--link:hover,
  .defi-portal-project-table--cell:nth-child(4)
    .defi-portal-project-table--link,
  .defi-portal-project-table--cell:nth-child(4)
    .defi-portal-project-table--link:hover {
    font-size: 16px;
    padding-right: 10px;
  }
}
.defi-portal-project-table--cell:nth-child(2) {
  width: 35%;
}
@media (max-width: 992px) {
  .defi-portal-project-table--cell:nth-child(2) {
    width: 50%;
  }
}
.defi-portal-project-table--cell:first-child
  .defi-portal-project-table--link:hover,
.defi-portal-project-table--cell:nth-child(2)
  .defi-portal-project-table--link:hover {
  color: #616174;
}
.defi-portal-project-table--cell:nth-child(3) {
  width: 15%;
}
.defi-portal-project-table--cell:nth-child(3)
  .defi-portal-project-table--link:hover {
  color: #616174;
}
.defi-portal-project-table--row:first-child {
  padding-left: 20px;
  justify-content: right;
}
.defi-portal-project-table--row:not(:first-child):hover {
  opacity: 1;
}
.defi-portal-project-table--row__header {
  background: #333341;
}
.defi-portal-project-table--row__header .defi-portal-project-table--cell {
  color: #616174;
  margin-left: 20px;
}
@media (max-width: 992px) {
  .defi-portal-project-table--row__header .defi-portal-project-table--cell {
    margin-left: 0;
  }
}
.defi-portal-table-block {
  display: flex;
}
@media (max-width: 992px) {
  .defi-portal-table-block {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.defi-portal-table-block--nav {
  width: 73px;
  min-height: 100%;
  margin-top: 60px;
  background-color: #333341;
  border-radius: 8px;
  margin-right: 10px;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.defi-portal-table-block--nav .icon-arrow-down {
  color: #252531;
  opacity: 0.6;
  transition: 200ms ease-out;
}
@media (max-width: 992px) {
  .defi-portal-table-block--nav {
    height: 55px;
    width: 48%;
    margin: 4px 0;
  }
}
.defi-portal-table-block--nav:first-child .icon-arrow-down {
  transform: rotate(90deg);
}
.defi-portal-table-block--nav:last-child .icon-arrow-down {
  transform: rotate(270deg);
}
.defi-portal-table-block--nav:hover .icon-arrow-down {
  color: #fff;
}
@media (max-width: 992px) {
  .defi-portal-project-table--cell:nth-child(3),
  .defi-portal-project-table--cell:last-child {
    display: none;
  }
}
.defi-portal-project {
  background-color: #2b2b36;
  padding: 115px 0;
}
.defi-portal-project .row {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .defi-portal-project {
    padding: 50px 0;
  }
}
.defi-portal-project-info {
  display: flex;
}
@media (max-width: 768px) {
  .defi-portal-project-info {
    flex-direction: column-reverse;
  }
}
.defi-portal-project-key-stats {
  margin-right: 35px;
  border-radius: 8px;
  background-color: #fff;
  opacity: 0.9;
  box-shadow: 0 0 17px rgba(43, 43, 54, 0.05),
    2px 4px 21px rgba(43, 43, 54, 0.05);
  padding: 30px 35px;
  width: 50%;
}
@media (max-width: 768px) {
  .defi-portal-project-key-stats {
    width: 100%;
  }
}
.defi-portal-project-key-stats--title {
  color: #3c3c4b;
  font-weight: bold;
  font-size: 24px;
  line-height: 140%;
}
.defi-portal-project-key-stats--total {
  margin-top: 24px;
  color: #3c3c4b;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.defi-portal-project-key-stats--total-wrap {
  margin-left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.defi-portal-project-key-stats--total-wrap:first-child {
  margin-top: 24px;
}
.defi-portal-project-key-stats--total-article {
  color: #3c3c4b;
  font-size: 16px;
  line-height: 140%;
}
.defi-portal-project-key-stats--total-data {
  color: #3c3c4b;
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
}
.defi-portal-project-key-stats--data {
  display: flex;
  justify-content: space-between;
}
.defi-portal-project-info-text {
  margin-left: 35px;
  width: 50%;
}
@media (max-width: 768px) {
  .defi-portal-project-info-text {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.defi-portal-project__reverse {
  background-color: #252531;
  flex-direction: row-reverse;
}
.defi-portal-project__reverse .defi-portal-project-info {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .defi-portal-project__reverse .defi-portal-project-info {
    flex-direction: column-reverse;
  }
}
.defi-portal-project__reverse .defi-portal-project-key-stats {
  margin-right: 0;
  margin-left: 35px;
}
@media (max-width: 768px) {
  .defi-portal-project__reverse .defi-portal-project-key-stats {
    margin-left: 0;
  }
}
.defi-portal-project__reverse .defi-portal-project-info-text {
  margin-right: 35px;
  margin-left: 0;
}
@media (max-width: 768px) {
  .defi-portal-project__reverse .defi-portal-project-info-text {
    margin-right: 0;
  }
}
.defi-portal-project-info-text--title {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .defi-portal-project-info-text--title {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
}
.defi-portal-project-info-text--title-text {
  color: #fff;
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
}
@media (max-width: 768px) {
  .defi-portal-project-info-text--title-text {
    font-size: 24px;
    line-height: 28px;
  }
}
.defi-portal-project-info-text--text {
  color: #fff;
  font-size: 17px;
  line-height: 140%;
  margin-bottom: 35px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .defi-portal-project-info-text--text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.defi-portal-project-info-text--buy-btn,
.defi-portal-project-info-text--exchange-btn {
  height: 50px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  border-radius: 8px;
  text-align: center;
}
.defi-portal-project-info-text--buy-btn {
  background-color: #333341;
  width: 40%;
  transition: 200ms ease-out;
}
.defi-portal-project-info-text--buy-btn:hover {
  background-color: #515162;
  color: #fff;
}
@media (max-width: 480px) {
  .defi-portal-project-info-text--buy-btn {
    width: 100%;
    margin: 10px 5px;
  }
}
.defi-portal-project-info-text--icon {
  transform: scale(2.5);
  margin-left: 10px;
  margin-right: 35px;
}
.defi-portal-project-info-text--exchange-btn {
  width: 55%;
  background-color: #00c26f;
  transition: 200ms ease-out;
}
.defi-portal-project-info-text--exchange-btn:hover {
  color: #fff;
  opacity: 0.9;
}
@media (max-width: 480px) {
  .defi-portal-project-info-text--exchange-btn {
    width: 100%;
    margin: 10px 5px;
  }
}
.defi-portal-project-info-text--exchange-block {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .defi-portal-project-info-text--exchange-block {
    flex-direction: column;
  }
}
.defi-portal-project-table--icon-info {
  width: 16px;
  height: 16px;
  background: url(36d300a9e99c5d6607ed.svg) center no-repeat;
  margin-left: 7px;
}
.defi-chart--tooltip {
  background-color: #616174;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  width: 240px;
  height: 85px;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 768px) {
  .defi-chart--tooltip {
    width: 200px;
    height: 80px;
  }
}
.defi-chart--tooltip-data {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.0736842px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .defi-chart--tooltip-data {
    font-size: 12px;
  }
}
.defi-chart--tooltip-value {
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .defi-chart--tooltip-value {
    font-size: 14px;
  }
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryHover: #00a451;
  colorPrimaryActive: #007a34;
  colorPrimaryLight: #16d785;
  colorDisabledDark: #6a6a7f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
.new-pagination {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.new-pagination__page-button {
  background: #ffffff;
  outline: none;
  border: 1px solid #d3d7da;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #2b2b37;
  margin-inline-end: 10px;
  margin-top: 10px;
  transition: all 0.2s ease;
}
.new-pagination__page-button:last-child {
  margin-inline-end: 0;
}
.new-pagination__page-button_active {
  border: 1px solid #00c26f;
  cursor: initial;
}
.new-pagination__page-button:hover {
  opacity: 1;
  border-color: #00c26f;
}
.new-pagination__page-button:active {
  background-color: #e6f9f1;
}
.new-pagination__page-button.new-pagination__page-button_active:hover {
  opacity: 1;
}
.new-pagination__splitter {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #2b2b37;
  margin-top: auto;
  margin-bottom: 0;
  margin-inline-start: 0;
  margin-inline-end: 12px;
  padding: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .new-pagination__page-button {
    margin-inline-end: 12px;
    margin-top: 12px;
  }
}
.currencies-table {
  width: 100%;
  border-collapse: initial;
  color: #808086;
  margin-bottom: 20px;
}
.currencies-table a {
  color: #808086;
}
.currencies-table__row {
  background: #fbfbfb;
  border-radius: 8px;
  position: relative;
}
.currencies-table__row_not-found {
  height: 600px;
}
.currencies-table__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: inherit;
  position: relative;
}
.currencies-table__loader svg {
  position: relative;
  display: flex;
  align-items: center;
}
.currencies-table__button-more {
  margin: 25px 0;
}
.currencies-table_fiat-mode .currencies-table-header {
  flex-wrap: wrap;
}
.currencies-table_fiat-mode .currencies-table-header__right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 42px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 0 14px;
  margin-top: 8px;
}
.currencies-table_fiat-mode .currencies-table-item__left {
  width: 40%;
}
.currencies-table_fiat-mode .currencies-table-item__coin-ticker {
  display: none;
}
.currencies-table_fiat-mode .currencies-table-item__right {
  width: 60%;
}
.currencies-table__bottom {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.currencies-table__bottom-pagination {
  margin-top: 24px;
}
.currencies-table__bottom-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}
.currencies-table__bottom-link a {
  font-size: 16px;
  font-weight: 500;
  color: #0dc171;
}
.currencies-table__bottom-link-icon {
  transform: rotate(-90deg) translate(-7px, 0px);
}
html[dir="rtl"] .currencies-table__bottom-link-icon {
  transform: rotate(90deg) translate(7px, 0px);
}
.currencies-table_new-theme-with-limits {
  min-width: 740px;
  margin-bottom: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-header {
  height: auto;
  flex-wrap: wrap;
  margin-bottom: 0;
  border-radius: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-header__left {
  justify-content: flex-start;
}
.currencies-table_new-theme-with-limits .currencies-table-search {
  max-width: 240px;
  width: 285px;
  height: 32px;
  background-color: rgba(196, 196, 196, 0.2);
  box-shadow: none;
}
.currencies-table_new-theme-with-limits .currencies-table-search input {
  box-sizing: border-box;
  appearance: none;
}
.currencies-table_new-theme-with-limits .menu-sort-button__lines {
  height: 32px;
  box-shadow: none;
}
.currencies-table_new-theme-with-limits .currencies-table-header__right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #ffffff;
  padding: 8px 16px;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column {
  font-size: 12px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.56);
  text-align: right;
  flex-shrink: 0;
  flex-grow: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column_zero {
  width: 50px;
  text-align: left;
  flex-shrink: 0;
  margin-right: auto;
}
.currencies-table_new-theme-with-limits
  .currencies-table-header__column_second {
  width: 77px;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column_third {
  width: 130px;
}
.currencies-table_new-theme-with-limits
  .currencies-table-header__column_fourth {
  width: 143px;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column_fifth {
  width: 106px;
}
.currencies-table_new-theme-with-limits .currencies-table__row {
  background-color: #ffffff;
}
.currencies-table_new-theme-with-limits .currencies-table-item {
  box-shadow: none;
  margin-top: 0;
  border-bottom: 1px solid #e9e7ee;
  border-radius: 0;
  padding: 4px 16px;
}
.currencies-table_new-theme-with-limits .currencies-table-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.currencies-table_new-theme-with-limits .currencies-table-item:first-child {
  border-top: 1px solid #e9e7ee;
}
.currencies-table_new-theme-with-limits .currencies-table-item__coin-ticker {
  font-size: 14px;
  line-height: 16px;
}
.currencies-table_new-theme-with-limits .currencies-table-item__coin-name {
  font-size: 12px;
  line-height: 14px;
  color: #808086;
}
.currencies-table_new-theme-with-limits .currencies-table-item__left {
  width: 170px;
}
.currencies-table_new-theme-with-limits .currencies-table-item__coin-image {
  flex-shrink: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-item__right {
  width: calc(100% - 130px);
  flex-grow: 1;
}
.currencies-table_new-theme-with-limits .coin-info {
  justify-content: flex-end;
}
.currencies-table_new-theme-with-limits .coin-info__item {
  flex-shrink: 0;
  padding-left: 0;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(1) {
  max-width: 72px;
  padding-left: 0;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(2) {
  max-width: 77px;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(3) {
  max-width: 130px;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(4) {
  max-width: 143px;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(5) {
  max-width: 126px;
}
.currencies-table_new-theme-with-limits .coin-info__item-icon {
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.currencies-table_new-theme-with-limits .coin-info__item-icon img {
  display: block;
}
.currencies-table_new-theme-with-limits .coin-info__item-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: #d3d7da;
}
.currencies-table_new-theme-with-limits .coin-info__item-text_active {
  color: #5d7079;
}
.currencies-table_new-theme-with-limits .currencies-table__loader,
.currencies-table_new-theme-with-limits .not-found-currency {
  width: calc(100vw - 30px);
}
@media screen and (min-width: 375px) {
  .currencies-table_new-theme-with-limits .currencies-table-search {
    max-width: 290px;
  }
}
@media screen and (min-width: 768px) {
  .currencies-table {
    margin-bottom: 40px;
  }
  .currencies-table_fiat-mode .currencies-table-header__right {
    width: 45%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }
  .currencies-table_fiat-mode .currencies-table-item__left {
    width: 60%;
  }
  .currencies-table__bottom {
    flex-direction: row;
    justify-content: space-around;
  }
  .currencies-table__bottom-pagination {
    justify-content: flex-start;
  }
  .currencies-table__bottom-link {
    justify-content: flex-end;
    margin-top: 24px;
  }
  .currencies-table_fiat-mode .currencies-table-item__coin-ticker {
    display: flex;
    color: #808086;
    margin-right: 0;
  }
  .currencies-table_fiat-mode .currencies-table-item__coin-name {
    color: #2b2b36;
    margin-right: 10px;
  }
  .currencies-table_fiat-mode .currencies-table-item__right {
    width: 40%;
  }
  .currencies-table_new-theme-with-limits .currencies-table-search {
    max-width: 100%;
    background-color: transparent;
  }
  .currencies-table_new-theme-with-limits .currencies-table-header {
    padding: 0;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_third
    span {
    max-width: 100%;
  }
  .currencies-table_new-theme-with-limits .currencies-table-header__column {
    width: auto;
  }
  .currencies-table_new-theme-with-limits .currencies-table-header__right {
    padding: 16px 0 8px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__index {
    display: none;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item {
    height: 48px;
    padding-left: 0;
    padding-right: 0;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__coin-name {
    line-height: 16px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__left {
    width: 240px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__right {
    width: calc(100% - 240px);
  }
  .currencies-table_new-theme-with-limits {
    min-width: 831px;
    margin-bottom: 0;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_zero {
    width: 75px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_second {
    width: 77px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_third {
    width: 130px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fourth {
    width: 143px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fifth {
    width: 106px;
  }
  .currencies-table_new-theme-with-limits .currencies-table__loader,
  .currencies-table_new-theme-with-limits .not-found-currency {
    width: 86%;
  }
}
@media screen and (min-width: 992px) {
  .currencies-table_new-theme-with-limits .currencies-table-header {
    padding: 16px 24px 0;
  }
  .currencies-table_new-theme-with-limits .currencies-table-header__column {
    font-size: 13px;
    line-height: 16px;
    color: #808086;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__left {
    width: 300px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__right {
    width: calc(100% - 300px);
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_first
    span,
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_second
    span {
    max-width: 100%;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__coin-ticker {
    font-size: 15px;
    line-height: 21px;
    margin-right: 8px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__coin-name {
    font-size: 15px;
    line-height: 21px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item {
    padding-left: 24px;
    padding-right: 24px;
  }
  .currencies-table_new-theme-with-limits .currencies-table__loader,
  .currencies-table_new-theme-with-limits .not-found-currency {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_second {
    width: 113px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_third {
    width: 171px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fourth {
    width: 185px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fifth {
    width: 145px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item {
    padding-left: 56px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(1) {
    max-width: 80px;
    padding-left: 0;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(2) {
    max-width: 113px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(3) {
    max-width: 171px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(4) {
    max-width: 185px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(5) {
    max-width: 145px;
  }
}
.currencies-table-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}
.currencies-table-header__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.currencies-table-header__sorting {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-inline-end: 8px;
}
.currencies-table-header__search {
  flex-grow: 1;
}
.currencies-table-header__right {
  display: none;
}
.currencies-table-header__header-row {
  display: flex;
  width: 100%;
  align-items: center;
}
.currencies-table-header__header-row.currencies-table-header__fiat {
  display: grid;
  grid-template-areas: "sort search" "fiat fiat";
  grid-template-columns: 42px 1fr;
  grid-template-rows: 42px 42px;
  gap: 8px;
}
.currencies-table-header__header-row.currencies-table-header__fiat .menu-sort {
  grid-area: sort;
}
.currencies-table-header__header-row.currencies-table-header__fiat
  .currencies-table-search {
  grid-area: search;
}
.currencies-table-header__header-row.currencies-table-header__fiat
  .dropdown-menu {
  grid-area: fiat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
}
.currencies-table-header__header-row th {
  font-weight: 400;
}
.currencies-table-header__column_desktop {
  display: none;
}
.currencies-table-header__header-row.currencies-table-header__purchase {
  display: grid;
  grid-template-areas: "sort search search search search search" "zero first second third fourth fifth";
  row-gap: 16px;
  padding-bottom: 8px;
  grid-template-columns: auto 1fr;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_zero {
  grid-area: zero;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_first {
  grid-area: first;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_second {
  grid-area: second;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_third {
  grid-area: third;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_fourth {
  grid-area: fourth;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_fifth {
  grid-area: fifth;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_desktop {
  display: table-cell;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .menu-sort-button {
  justify-content: flex-start;
}
.currencies-table.currencies-table_new-theme-with-limits .coin-info__item {
  width: auto;
}
.currencies-table.currencies-table_new-theme-with-limits
  .currencies-table-item__coin {
  width: 15%;
}
@media screen and (min-width: 576px) {
  .currencies-table.currencies-table_new-theme-with-limits
    .currencies-table-item__coin {
    width: 19%;
  }
}
@media screen and (min-width: 768px) {
  .currencies-table-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 55px;
    background-color: #fff;
    border-radius: 8px;
    padding: 0 25px;
    box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  }
  .currencies-table-header__left {
    width: 55%;
  }
  .currencies-table-header__right {
    width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .currencies-table-header__column {
    flex: 0 0 15%;
    text-align: center;
  }
  .currencies-table-header__column span {
    display: inline-block;
    vertical-align: top;
  }
  .currencies-table-header__column_first span {
    max-width: 75px;
  }
  .currencies-table-header__column_third span {
    max-width: 95px;
  }
  .currencies-table-header__column_desktop {
    display: table-cell;
  }
  .currencies-table-header__header-row.currencies-table-header__fiat {
    display: flex;
  }
  .currencies-table-header__header-row.currencies-table-header__fiat
    .dropdown-menu {
    padding: 0;
    box-shadow: unset;
    border-radius: unset;
    justify-content: flex-end;
  }
  .currencies-table.currencies-table_new-theme-with-limits .coin-info__item {
    width: 13.3%;
  }
  .currencies-table-header__sorting {
    margin-inline-end: 27px;
  }
}
@media screen and (min-width: 992px) {
  .currencies-table.currencies-table_new-theme-with-limits .coin-info__item {
    width: 14.3%;
  }
}
.menu-sort {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.menu-sort__content {
  width: 110px;
  left: 0;
  position: absolute;
  z-index: 1;
  top: 85%;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .menu-sort__content {
    left: -25px;
    top: 23px;
  }
}
.menu-sort-button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 0;
  cursor: pointer;
}
.menu-sort-button__text {
  display: none;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
  color: #808086;
}
.menu-sort-button__text svg {
  margin-inline-start: 4px;
  margin-top: 2px;
  transition: transform ease 0.3s;
}
.menu-sort-button__lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 9px 13px;
}
.menu-sort-button__line {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  overflow: hidden;
}
.menu-sort-button__line:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #808086;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: width ease 0.3s;
}
.menu-sort-button__line:first-child {
  margin-top: 0;
}
.menu-sort-button__line:nth-child(2):before {
  width: 60%;
}
.menu-sort-button__line:nth-child(3):before {
  width: 30%;
}
.menu-sort-button_active .menu-sort-button__line:nth-child(2):before,
.menu-sort-button_active .menu-sort-button__line:nth-child(3):before {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .menu-sort-button__text {
    display: flex;
  }
  .menu-sort-button__lines {
    display: none;
  }
  .menu-sort-button_active .menu-sort-button__text svg {
    margin-top: 0;
    transform: rotate(180deg);
  }
}
.not-found-currency {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.not-found-currency p {
  color: #808086;
}
.not-found-currency__title {
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.not-found-currency__message p {
  font-size: 17px;
  text-align: center;
  margin: 0;
}
.sorted-menu-item {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
}
.sorted-menu-item__input {
  display: none;
}
.sorted-menu-item__input:checked + .sorted-menu-item__name:after {
  opacity: 1;
}
.sorted-menu-item__name {
  position: relative;
  line-height: 22px;
}
.sorted-menu-item__name:before,
.sorted-menu-item__name:after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.sorted-menu-item__name:before {
  border: 1px solid #bfbfc3;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}
.sorted-menu-item__name:after {
  position: absolute;
  background: url(1820ff31ecd1658b1098.svg) no-repeat;
  background-size: contain;
  top: -3px;
  left: 0;
  transition: 300ms;
  opacity: 0;
}
.currencies-table-search {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 42px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
}
.currencies-table-search__title {
  display: none;
  margin-inline-end: 10px;
}
.currencies-table-search__input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #808086;
  font-weight: 300;
  border: none;
  background: none;
  outline: none;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-start: 14px;
  padding-inline-end: 30px;
}
.currencies-table-search__input::placeholder {
  color: #808086;
  opacity: 1;
}
.currencies-table-search svg {
  width: 20px;
  height: 20px;
  margin-inline-start: -14px;
  position: relative;
  left: -14px;
}
html[dir="rtl"] .currencies-table-search svg {
  left: unset;
  right: -14px;
}
@media screen and (min-width: 768px) {
  .currencies-table-search {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .currencies-table-search__input {
    width: 240px;
    height: 32px;
    font-size: 13px;
    line-height: 18px;
    background-color: rgba(196, 196, 196, 0.2);
    border-radius: 6px;
  }
  .currencies-table-search svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 992px) {
  .currencies-table-search__title {
    display: inline-block;
  }
}
.currencies-table-item {
  position: relative;
  height: 48px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  margin-top: 4px;
  padding: 0 14px;
}
.currencies-table-item:hover {
  cursor: pointer;
}
.currencies-table-item:first-child {
  margin-top: 0;
}
.currencies-table-item__full-row-link {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.currencies-table-item_hidden {
  display: none;
}
.currencies-table-item__left {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.currencies-table-item__index {
  position: relative;
  display: none;
}
.currencies-table-item__coin {
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  flex-grow: 1;
  width: 70%;
}
.currencies-table-item__coin-first-image {
  margin-inline-end: -3px;
  width: 21px;
  height: 21px;
}
.currencies-table-item__coin-image {
  width: 21px;
  height: 21px;
  margin: 0;
}
.currencies-table-item__coin-ticker {
  font-size: 13px;
  line-height: 14px;
  text-transform: uppercase;
  color: #2b2b36;
}
.currencies-table-item__coin-images {
  display: flex;
  margin-inline-end: 8px;
  width: 39px;
}
.currencies-table-item__coin-name {
  font-size: 12px;
  line-height: 15px;
  color: #808086;
}
.currencies-table-item__coin-name_with-margin {
  margin-top: 3px;
}
.currencies-table-item .currencies-table-item__coin-sup {
  margin-top: 2px;
}
.currency-sup.currencies-table-item__coin-sup_desktop {
  display: none;
}
.currencies-table-item__right {
  width: 40%;
}
.currencies-table-item > .fiat-coin-info,
.currencies-table-item > .coin-info__item {
  position: relative;
  z-index: 2;
}
.currencies-table-item:hover .btn-exchange img,
.currencies-table-item:hover .btn-exchange svg {
  display: none;
}
.currencies-table-item:hover .btn-exchange .exchange-btn-title {
  display: inline-block;
  position: relative;
  top: -1px;
}
.currencies-table-item__coin-content.currencies-table-item__coin-ticker {
  color: #2b2b36;
  margin-inline-end: 10px;
}
.currencies-table-item__coin-content .currencies-table-item__coin-name {
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .currencies-table-item {
    height: 68px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
  .currencies-table-item__index {
    width: 80px;
    display: block;
  }
  .currencies-table-item__left {
    width: 55%;
  }
  .currencies-table-item__coin {
    width: 45%;
  }
  .currencies-table-item__coin-images {
    margin-inline-end: 15px;
  }
  .currencies-table-item__coin-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    line-height: 17px;
  }
  .currencies-table-item__coin-ticker {
    font-size: 15px;
    line-height: 17px;
    padding-inline-end: 10px;
  }
  .currencies-table-item__coin-name {
    font-size: 15px;
    line-height: 17px;
    margin-top: 0;
  }
  .currencies-table-item__right {
    width: 45%;
  }
  .currencies-table-item:hover .coin-info__item-exchange-title {
    visibility: visible;
    opacity: 1;
  }
  .currencies-table-item:hover .coin-info__availability-icon {
    visibility: hidden;
    opacity: 0;
  }
  .currency-sup.currencies-table-item__coin-sup_mobile {
    display: none;
  }
  .currency-sup.currencies-table-item__coin-sup_desktop {
    display: inline-block;
    margin-inline-start: 2px;
  }
}
@media screen and (min-width: 1200px) {
  .currencies-table-item__coin {
    width: 47%;
  }
}
.coin-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
.coin-info__item {
  position: relative;
  width: 14.3%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 14px;
  flex-grow: 1;
}
.coin-info__item-exchange-title {
  width: 100%;
  height: 37px;
  max-width: 150px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 13px;
  color: #ffffff;
  font-weight: bold;
  background-color: #00c26f;
  border-radius: 8px;
  margin: auto;
  transition: visibility, opacity, ease 0.3s;
}
.coin-info__availability-icon {
  transition: visibility, opacity, ease 0.3s;
}
@media screen and (min-width: 768px) {
  .coin-info__item-exchange-title {
    display: flex;
    visibility: hidden;
    opacity: 0;
  }
  .coin-info__item {
    font-size: 15px;
    line-height: 17px;
  }
}
.button-more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-more button {
  width: 100%;
  background-color: rgba(43, 43, 54, 0.09);
  color: #2b2b36;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  border-radius: 8px;
  padding: 12px 48px;
  border: none;
  outline: none;
}
.button-more button:hover {
  background-color: #32323f;
}
.button-more button:active {
  background-color: #363644;
}
@media screen and (min-width: 768px) {
  .button-more button {
    width: auto;
    background-color: #2b2b36;
    color: #fff;
  }
}
.dropdown-menu-selector {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  outline: 0;
  width: 100%;
}
.dropdown-menu-selector__name {
  padding: 0 10px;
}
.dropdown-menu-selector__arrow {
  margin-left: auto;
  transition: transform ease 0.3s;
}
.dropdown-menu-selector__arrow svg {
  display: block;
}
.dropdown-menu-selector_active .dropdown-menu-selector__arrow {
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .dropdown-menu-selector {
    width: auto;
  }
  .dropdown-menu-selector__arrow {
    margin-left: 0;
  }
}
.dropdown-menu-list {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 12px;
  margin: 0;
}
@media screen and (min-width: 481px) {
  .dropdown-menu-list {
    width: calc(100% + 40px);
    right: -20px;
  }
}
@media screen and (min-width: 768px) {
  .dropdown-menu-list {
    width: 300px;
    top: 30px;
  }
}
.dropdown-menu-item {
  list-style-type: none;
  margin-top: 8px;
}
.dropdown-menu-item:first-child {
  margin-top: 0;
}
.dropdown-menu-item__label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.dropdown-menu-item__input {
  display: none;
}
.dropdown-menu-item__input:checked + .dropdown-menu-item__box:before {
  opacity: 1;
}
.dropdown-menu-item__box {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 1px solid #bfbfc3;
  border-radius: 3px;
}
.dropdown-menu-item__box:before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(1820ff31ecd1658b1098.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -1px;
  left: -1px;
  opacity: 0;
}
.dropdown-menu-item__text {
  font-size: 13px;
  line-height: 18px;
  color: #808086;
  text-transform: uppercase;
  padding-right: 5px;
  text-align: left;
}
.dropdown-menu-item__image {
  margin-left: auto;
  flex-shrink: 0;
}
.dropdown-menu {
  position: relative;
  width: 100%;
}
.dropdown-menu__list {
  width: 100%;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .dropdown-menu {
    display: flex;
    justify-content: flex-end;
  }
  .dropdown-menu__list {
    width: 300px;
    top: 28px;
    right: -25px;
  }
}
.dropdown-menu_hide {
  display: none;
}
.fiat-coin-info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: right;
}
.fiat-coin-info__tickers {
  font-size: 13px;
  line-height: 14px;
  white-space: nowrap;
}
.fiat-coin-info__text {
  font-size: 13px;
  line-height: 14px;
  color: #2b2b36;
  flex-grow: 1;
}
@media screen and (min-width: 481px) {
  .fiat-coin-info {
    justify-content: space-between;
  }
  .fiat-coin-info__tickers {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .fiat-coin-info {
    justify-content: flex-end;
    width: auto;
    flex-grow: 1;
  }
  .fiat-coin-info__tickers {
    display: none;
  }
  .fiat-coin-info__text {
    font-size: 14px;
    line-height: 16px;
  }
  .fiat-coin-info__tilda {
    display: none;
  }
}
.currency-sup {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 3px;
  background-color: transparent;
  padding: 2px 4px;
  top: 0;
  display: inline-block;
  word-break: keep-all;
}
.currency-sup span {
  font-size: 12px;
  line-height: 12px;
}
.currency-sup_with-tooltip {
  cursor: pointer;
}
.currency-sup__tooltip.new-stepper-tooltip {
  width: 300px;
}
.currency-sup_big {
  padding: 4px 8px;
  font-size: 14px;
  line-height: 14px;
  margin: auto 8px;
  position: relative;
  overflow: hidden;
}
.currency-sup_blinking:after {
  content: "";
  display: block;
  width: 20%;
  height: 150%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 10%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.5) 90%
  );
  z-index: 1;
  transform: rotate(30deg);
  position: absolute;
  top: -5px;
  animation: slideBlink 2s ease-in-out infinite;
}
@keyframes slideBlink {
  0% {
    left: -20%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.authorization-user {
  display: flex;
  align-items: center;
  height: 76px;
  margin-inline-start: 16px;
  outline: 0;
}
.authorization-user svg {
  display: block;
  transition: fill ease 0.3s;
  min-width: 19px;
  height: auto;
}
.authorization-user:hover .authorization-menu {
  display: block;
}
.authorization-user__icon {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #00c26f;
  border: 2px solid #00c26f;
  text-decoration: none;
  transition: background-color, border-color, ease 0.3s;
}
.authorization-user__icon:hover {
  background-color: #00d583;
  border-color: #00d583;
}
.authorization-user__icon_authorized {
  display: flex;
  background-color: #2b2b36;
  border-color: #00c26f;
}
.authorization-user__icon_authorized:hover {
  background-color: rgba(0, 194, 111, 0.2);
  border-color: #00c26f;
}
.authorization-user__buttons {
  display: flex;
  gap: 16px;
  cursor: default;
}
.authorization-user__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  letter-spacing: 0.1px;
  color: #ffffff;
  background-color: transparent;
  transition: all 0.3s ease;
}
.authorization-user__button_login {
  border: 1px solid transparent;
}
.authorization-user__button_login:hover {
  color: #ffffff;
  border-color: #00c26f;
}
.authorization-user__button_signup {
  background-color: #00c26f;
}
.authorization-user__button_signup:hover {
  color: #ffffff;
  background-color: #00c87a;
}
@media screen and (min-width: 1440px) {
  .authorization-user {
    margin-inline-start: 24px;
  }
}
.authorization-menu {
  position: absolute;
  top: 75px;
  right: 0;
  z-index: 1000;
  display: none;
  width: auto;
  min-width: 131px;
  background-color: #ffffff;
  border-top: 6px solid #00c26f;
  border-radius: 5px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}
.authorization-menu__list {
  list-style: none;
  padding: 7px 0;
  margin: 0;
}
.authorization-menu__list.authorization-menu__list_promo
  .authorization-menu__link {
  white-space: nowrap;
}
.authorization-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  padding: 10px 16px;
  outline: 0;
}
.authorization-menu__link_active {
  color: #2b2b37;
  background-color: #e6e9eb;
}
.authorization-menu__link:hover {
  background-color: #f7f7f9;
  color: #2b2b37;
}
.authorization-menu__link.authorization-menu__link_active:hover {
  background-color: #e6e9eb;
}
.authorization-menu__link img {
  margin-right: 8px;
  border-radius: 4px;
}
.authorization-menu__item:last-child .authorization-menu__link {
  padding-top: 16px;
  border-top: 1px solid #dce2ea;
}
@media screen and (min-width: 1240px) {
  .authorization-menu {
    left: 50%;
    right: auto;
    transform: translateX(-41%);
  }
  .authorization-menu__link_active {
    font-weight: 400;
  }
}
#header-authorization {
  display: none;
}
.header-authorization {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  #header-authorization {
    display: block;
    min-width: 49px;
  }
}
.new-field__header,
.new-field__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
}
.new-field__footer {
  padding: 8px 0;
}
.new-field__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #2b2b36;
  letter-spacing: 0.1px;
}
.new-field__second-label,
.new-field__footer-label {
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  text-align: end;
  letter-spacing: 0.1px;
  margin-inline-start: auto;
  transition: color ease 0.3s;
}
.new-field__footer-label:hover {
  color: #00c26f;
}
.new-field__input {
  position: relative;
  z-index: 1;
}
.new-field__icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}
html[dir="rtl"] .new-field__icon {
  right: unset;
  left: 12px;
}
.new-field__qr-button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  height: 20px;
}
.new-field__icon svg {
  display: block;
  transition: fill ease 0.3s;
}
.new-field__warning {
  top: -6px;
}
.new-field__field-prompts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  height: 18px;
  line-height: 100%;
}
.new-field__prompt {
  min-height: 14px;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  letter-spacing: 0.1px;
  margin-inline-end: auto;
}
.new-field__quality-prompt {
  font-size: 12px;
  margin-inline-start: auto;
}
.quality-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.quality-prompt_low {
  color: #ff5a26;
}
.quality-prompt_medium {
  color: #f39321;
}
.quality-prompt_high {
  color: #00c26f;
}
.quality-prompt__icon {
  width: 14px;
  height: 14px;
}
.new-input {
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #2b2b36;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  outline: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-start: 16px;
  padding-inline-end: 45px;
  margin: 0;
  transition: borderColor, boxShadow, ease 0.3s;
}
.new-input::placeholder {
  color: #808086;
}
.new-input:is(:-webkit-autofill, :autofill) {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.dark-theme .new-input:is(:-webkit-autofill, :autofill) {
  -webkit-box-shadow: 0 0 0 1000px #30303e inset !important;
  box-shadow: 0 0 0 1000px #30303e inset !important;
}
.new-input.new-input_success {
  border-color: #00c26f;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 194, 111, 0.2), 0 0 0 30px #fff inset !important;
  box-shadow: 0 0 0 2px rgba(0, 194, 111, 0.2), 0 0 0 30px #fff inset !important;
}
.new-input_error {
  border-color: #fcedba;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.new-warning {
  position: relative;
  z-index: 2;
}
.new-warning__content {
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  letter-spacing: 0.1px;
  background-color: #fcedba;
  border-radius: 0 0 4px 4px;
  padding: 5px 16px;
}
.new-warning_absolute .new-warning__content {
  position: absolute;
  top: 0;
  left: 0;
  word-break: break-all;
}
.new-field.registration__password .new-warning_absolute .new-warning__content {
  word-break: normal;
}
.new-warning__content.new-warning__content_button {
  border: none;
  text-align: left;
}
.new-warning__content.new-warning__content_button .error-with-action span {
  text-decoration: underline;
  cursor: pointer;
}
.new-agreement {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.new-agreement__checkbox {
  margin-inline-end: 8px;
}
.new-agreement__content {
  font-size: 10px;
  line-height: 14px;
  color: #808086;
  transition: all 0.3s ease;
}
.new-agreement__content a {
  color: #808086;
  text-decoration: underline;
  transition: color ease 0.3s;
}
.new-agreement__content a:hover {
  text-decoration: none;
  color: #00c26f;
}
.new-agreement__content_orange,
.new-agreement__content_orange a {
  color: #f39321;
}
@media screen and (min-width: 380px) {
  .new-agreement__content {
    font-size: 12px;
    line-height: 17px;
  }
}
.new-checkbox {
  cursor: pointer;
}
.new-checkbox__input {
  display: none;
}
.new-checkbox__input:checked + .new-checkbox__box {
  border-color: #00c26f;
  background-color: #00c26f;
}
.new-checkbox__input:checked + .new-checkbox__box svg {
  opacity: 1;
}
.new-checkbox__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #808086;
  border-radius: 4px;
  background-color: #ffffff;
  transition: background ease 0.3s;
}
.new-checkbox__box svg {
  opacity: 0;
  transition: opacity ease 0.3s;
}
.new-checkbox_error .new-checkbox__box {
  animation-name: new-checkbox-scale;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  border-color: #f39321;
}
@keyframes new-checkbox-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.new-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: white;
  font-weight: 600;
  background-color: #00c26f;
  border-radius: 8px;
  border: none;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background-color, ease 0.3s;
}
.new-button:hover {
  background-color: #00a451;
  color: white;
}
.new-button:active {
  background-color: #007a34;
  color: white;
}
.new-button:focus {
  background-color: #00a451;
  outline: 0;
  text-decoration: 0;
  color: white;
}
.new-button:disabled {
  color: white;
  background: #6a6a7f;
  cursor: default;
  pointer-events: none;
}
.new-button_white {
  background-color: white;
  color: #00c26f;
  border: 1px solid #00c26f;
  transition: background-color, color, ease 0.3s;
}
.new-button_white:hover {
  background-color: white;
  color: #00a451;
  border-color: #00a451;
}
.new-button_white:active {
  background-color: white;
  color: #007a34;
  border-color: #007a34;
}
.new-button__secondary {
  color: #00c26f;
  border: 1px solid #00c26f;
  background: none;
}
.new-button__secondary:hover,
.new-button__secondary:focus {
  color: #00c26f;
  border: 1px solid #00c26f;
  background: rgba(0, 194, 111, 0.2);
}
.new-button__secondary:active {
  color: #00c26f;
  border: 1px solid #00c26f;
  background: rgba(0, 194, 111, 0.1);
}
.new-button__secondary:disabled {
  color: #6a6a7f;
  border: 1px solid #6a6a7f;
  background: none;
  cursor: default;
}
.new-button__tertiary {
  color: #00c26f;
  border: none;
  background: none;
}
.new-button__tertiary:hover,
.new-button__tertiary:focus {
  color: #00c26f;
  border: none;
  background: rgba(0, 194, 111, 0.2);
}
.new-button__tertiary:active {
  color: #00c26f;
  border: none;
  background: rgba(0, 194, 111, 0.1);
}
.new-button__tertiary:disabled {
  color: #6a6a7f;
  border: none;
  background: none;
  cursor: default;
}
.authorization-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.authorization-section__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 80px;
}
.authorization-section__icon svg {
  display: block;
}
.authorization-section__title {
  font-size: 23px;
  line-height: 34px;
  font-weight: 500;
  color: #2b2b36;
  text-align: center;
  margin-bottom: 16px;
}
.authorization-section__description {
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  text-align: center;
  padding: 0 5px;
}
.authorization-section__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 8px;
}
.authorization-section__mobile-benefits
  .authorization-section__mobile-benefit-icon:last-of-type {
  display: none;
}
.authorization-section__mobile-benefits {
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  flex-wrap: wrap;
  width: 100%;
}
.authorization-section__mobile-benefit {
  margin: 0 auto;
}
.authorization-section__mobile-benefit-icon {
  width: 12px;
  height: 14px;
}
@media screen and (min-width: 768px) {
  .authorization-section__title {
    font-size: 28px;
    line-height: 39px;
  }
  .authorization-section__description {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 991px) {
  .authorization-section__mobile-benefits {
    display: none;
  }
}
.authorization-loader__container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.7);
}
.authorization-loader__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.registration {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.registration__email .new-field__input input {
  text-transform: lowercase;
}
.registration__email .new-field__input input::placeholder {
  text-transform: none;
}
.registration__password {
  margin-top: 16px;
}
.registration__repeated-password {
  margin-top: 6px;
}
.registration__agreement {
  margin-top: 16px;
}
.registration__agreement_first {
  margin-top: auto;
}
.registration__button {
  margin-top: 22px;
}
.registration__footer {
  margin-top: 16px;
  left: 0;
  right: 0;
  font-size: 14px;
  line-height: 140%;
  color: #2b2b36;
  text-align: center;
}
.registration__footer_captcha {
  margin-bottom: 16px;
}
.registration__footer-link {
  color: #2b2b36;
  text-decoration: underline;
  outline: 0;
  transition: color ease 0.3s;
}
.registration__footer-link:hover {
  text-decoration: none;
  color: #00c26f;
}
.recaptcha-registration-wrapper {
  min-height: 118px;
  text-align: center;
  line-height: 0;
  margin: 24px auto 0;
}
.registration__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.registration__captcha-error_visible {
  opacity: 1;
}
.recaptcha-registration-wrapper__hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
}
.recaptcha {
  display: inline-block;
  border: 1px solid transparent;
  width: calc(100% - 2px);
  height: 78%;
  border-radius: 4px;
}
.recaptcha.recaptcha_registration {
  height: 66%;
}
.recaptcha.recaptcha_registration-error {
  border-color: #f39321;
}
.recaptcha-registration-wrapper__loader {
  margin: 0 auto;
}
.registration__social-buttons {
  margin-bottom: 24px;
}
.registration__social-buttons .social-buttons__button {
  height: 40px;
  width: 40px;
}
.registration__agreement_second-field {
  margin-top: auto;
  padding-top: 12px;
}
.registration__hint {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #808086;
  text-align: center;
  padding: 0;
  margin: 0 0 16px 0;
  min-height: 14px;
}
.registration__error {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .registration__footer {
    font-size: 14px;
    line-height: 140%;
  }
}
.login {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.login__password {
  margin-top: 16px;
}
.login__button {
  margin-top: auto;
}
.login__button_recapture {
  margin-top: 24px;
}
.login__footer {
  font-size: 14px;
  line-height: 140%;
  color: #2b2b36;
  text-align: center;
  margin-top: 16px;
}
.login__footer-link {
  color: #2b2b36;
  text-decoration: underline;
  outline: 0;
  transition: color ease 0.3s;
}
.login__footer-link:hover {
  text-decoration: none;
  color: #00c26f;
}
.login__social-buttons {
  margin-bottom: 24px;
}
.login__hint {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #808086;
  text-align: center;
  padding: 0;
  margin: 0 0 16px 0;
  min-height: 14px;
}
.login__error {
  margin-top: 24px;
}
.login__captcha-error {
  margin: 6px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.login__captcha-error_visible {
  opacity: 1;
}
.recaptcha-login-wrapper {
  min-height: 120px;
  text-align: center;
  line-height: 0;
  margin: 24px auto 0;
}
.recaptcha-login-wrapper__hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.recaptcha {
  display: inline-block;
  border: 1px solid transparent;
  width: calc(100% - 2px);
  height: 78%;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.recaptcha.recaptcha_login {
  height: 65%;
}
.recaptcha.recaptcha_login-error {
  border-color: #f39321;
}
.warning-tooltip {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid #e62e04;
  background-color: #fff;
  opacity: 1;
}
.warning-tooltip .rc-tooltip-arrow {
  display: none;
}
.warning-tooltip::after,
.warning-tooltip::before {
  top: 100%;
  left: 10%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.warning-tooltip::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.warning-tooltip::before {
  border-color: rgba(230, 46, 4, 0);
  border-top-color: #e62e04;
  border-width: 7px;
  margin-left: -7px;
}
.warning-tooltip__success {
  border: 1px solid #00c26f;
}
.warning-tooltip__success::before {
  border-top-color: #00c26f;
}
.warning-tooltip__warning {
  border: 1px solid #fec107;
}
.warning-tooltip__warning::before {
  border-top-color: #fec107;
}
.warning-tooltip .rc-tooltip-inner {
  background-color: #fff;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  min-width: 240px;
  padding: 2px 20px;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  border-right-color: #e62e04;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  border-left-color: #e62e04;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  border-top-color: #e62e04;
  bottom: -6px;
}
.warning-tooltip .rc-tooltip-placement-right .rc-tooltip-arrow {
  border-right-color: white;
}
.warning {
  margin: 5px 0;
  background-color: rgba(61, 61, 112, 0.04);
  padding: 13px 23px 11px 35px;
  position: relative;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 379px) {
  .warning {
    padding-left: 30px;
  }
}
.warning-tooltip .warning {
  background-color: transparent;
  padding: 0;
  position: relative;
  border-radius: 0;
  margin: 0;
}
.exchange-input + .warning {
  margin-top: 14px;
}
.warning--icon {
  position: absolute;
  top: 12px;
  left: 12px;
}
.warning--content {
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.3px;
  white-space: pre-wrap;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #808086;
}
.warning--description {
  margin: 5px 0;
  display: flex;
  justify-content: center;
}
.warning__exchange-creation-error {
  margin-bottom: 30px;
}
.metamask-login__button {
  margin-top: 24px;
}
.metamask-login__icon {
  width: 120px;
  margin: 40px auto 0 auto;
}
.metamask-login__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.0736842px;
  color: #000000;
  margin-top: 16px;
}
.metamask-login__warning {
  margin-top: 16px;
}
.metamask-login__warning.phishing-warning .warning {
  padding: 13px 23px 11px 35px;
  display: flex;
}
.metamask-login__warning.phishing-warning .warning--description img {
  border: none;
}
.metamask-login__error {
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  box-sizing: border-box;
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.0736842px;
  color: #808086;
}
.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.social-buttons__button {
  background: #ffffff;
  border: 1px solid #dce2ea;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-inline-end: 15px;
  position: relative;
}
.social-buttons__button:hover {
  border-color: #00c26f;
}
.social-buttons__button_big {
  width: 80px;
  height: 80px;
}
.social-buttons__button_big img {
  width: 48px;
}
.social-buttons__button:last-child {
  margin-inline-end: 0;
}
.button_loader-image {
  width: 40px;
}
.social-buttons__connected {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c26f;
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
#walletconnect-wrapper a {
  color: #337ab7;
  text-decoration: none;
}
#walletconnect-wrapper .walletconnect-connect__button {
  color: #ffffff;
}
.set-up-login__button {
  margin-top: 25px;
}
.set-up-wallet .authorization-section__content {
  padding-top: 0;
}
.set-up-wallet__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.074px;
  color: #000000;
  margin: 0;
}
.set-up-wallet__buttons {
  display: flex;
  justify-content: center;
  margin-top: 95px;
}
.wallet-connect-modal .authorization-section__content {
  align-items: center;
}
.wallet-connect-modal__icon {
  width: 120px;
  height: 120px;
}
.wallet-connect-modal__status {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.07px;
  color: #000000;
  margin-top: 16px;
}
.wallet-connect-modal__pending {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.4px;
  color: #00c26f;
}
.wallet-connect-modal__error {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #808086;
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  border-radius: 6px;
  justify-self: flex-end;
  margin-top: 160px;
  width: 100%;
}
.wallet-connect-modal__error-button {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  text-decoration-line: underline;
}
.forgot-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.forgot-password__button {
  margin-top: auto;
}
.forgot-password__recaptcha {
  margin: 25px auto 0 auto;
}
.forgot-password__recaptcha-hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
}
.forgot-password__captcha-error {
  margin: 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: default;
}
.forgot-password__captcha-error_visible {
  opacity: 1;
}
.recaptcha.recaptcha_forgot-password-error {
  border-color: #f39321;
}
.recaptcha.recaptcha_forgot-password {
  height: 74.5%;
}
.success-block__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.success-block__button {
  margin-top: auto;
}
.success-block__button-time {
  padding-left: 5px;
}
.security-verification__form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.security-verification__button {
  margin-top: auto;
}
.security-verification__recaptcha {
  margin: 32px auto 0 auto;
}
.security-verification__recaptcha-hint {
  text-align: center;
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.security-verification__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.security-verification__captcha-error_visible {
  opacity: 1;
}
.recaptcha_verification-error {
  border: 1px solid #f39321;
  width: calc(100% - 2px);
  height: 74.5%;
  border-radius: 4px;
}
.reset-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.reset-password__password-repeated {
  margin-top: 25px;
}
.reset-password__button {
  margin-top: auto;
}
.change-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.change-password__password,
.change-password__password-repeated {
  margin-top: 25px;
}
.change-password__button {
  margin-top: auto;
}
.change-password__recaptcha-wrapper {
  min-height: 118px;
  text-align: center;
  line-height: 0;
  margin: 24px auto;
}
.recaptcha {
  display: inline-block;
}
.change-password__recaptcha-hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.change-password__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: default;
}
.change-password__captcha-error_visible {
  opacity: 1;
}
.recaptcha_change-password-error {
  border-color: #f39321;
}
.recaptcha.recaptcha_change-password {
  height: 66%;
}
.signup-benefits-desktop {
  width: 447px;
  height: 626px;
  background: url(8baab255ecdda83a57b6.svg) center center no-repeat;
  background-size: cover;
  padding: 48px 53px;
}
.signup-benefits-desktop__item-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 24px;
}
.signup-benefits-desktop__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.signup-benefits-desktop__item {
  display: flex;
  gap: 8px;
  margin: 0;
}
.signup-benefits-desktop__item-icon {
  width: 12px;
  height: 24px;
}
.signup-benefits-desktop__item-title_green {
  color: #00c26f;
}
.signup-benefits-desktop__item-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #ffffff;
  opacity: 1;
}
.authorization-modal {
  max-width: 447px;
}
.authorization-modal__content {
  max-width: 447px;
  min-height: 510px;
}
.authorization-modal__content:has(.registration-section) {
  height: 580px;
  padding: 48px 11px;
  min-height: 598px;
}
.authorization-modal__content:has(.login-section) {
  height: auto;
  padding: 48px 11px;
  min-height: 598px;
}
.authorization-modal__content:has(.metamask-login) {
  min-height: 605px;
}
.authorization-modal__content.authorization-modal__content_additional-block {
  height: 626px;
}
.authorization-modal-dialog-paper.authorization-modal-dialog-paper_desktop {
  display: flex;
  flex-direction: row;
  max-width: 894px;
}
html[dir="rtl"] .authorization-modal .authorization-modal__content button {
  right: unset;
  left: 12px;
}
@media screen and (min-width: 480px) {
  .authorization-modal__content:has(.registration-section) {
    padding: 48px 20px;
  }
  .authorization-modal__content:has(.login-section) {
    padding: 48px 20px;
  }
}
@media screen and (min-width: 991px) {
  .authorization-modal__content:has(.registration-section) {
    height: 626px;
    padding: 38px 55px;
  }
  .authorization-modal__content:has(.login-section) {
    height: 626px;
    padding: 38px 55px;
  }
}
.link-expired__button {
  margin-top: 25px;
}
.link-expired__button-time {
  padding-left: 5px;
}
.wallet-connect-error {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #808086;
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  border-radius: 6px;
  justify-self: flex-end;
  width: 100%;
}
.authorization {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-grow: 1;
}
.authorization__back {
  position: absolute;
  top: -36px;
  left: -8px;
  z-index: 1;
  cursor: pointer;
}
.authorization__back svg {
  display: block;
}
.authorization__success {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.authorization__success-button {
  margin-top: auto;
}
.walletconnect-modal__footer {
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .authorization__back {
    left: -43px;
  }
}
.authorization-mobile-buttons {
  margin-top: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 150px;
}
.authorization-mobile-buttons__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  height: 236px;
  border-radius: 12px;
  padding: 24px 16px;
  background-image: url(64acee98dfe83891ab5f.svg);
  background-size: cover;
}
.authorization-mobile-buttons__button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.authorization-mobile-buttons__title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.34px;
  text-align: center;
  opacity: 1;
  color: #ffffff;
}
.authorization-mobile-buttons__log-out {
  font-weight: 500;
  letter-spacing: 0.2px;
  border-color: #363746;
  background-color: #363746;
}
.authorization-mobile-buttons__log-out:hover {
  border-color: #363746;
  background-color: #363746;
}
.authorization-mobile-buttons__sign-in,
.authorization-mobile-buttons__sign-up {
  height: 40px;
  letter-spacing: 0.2px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.09px;
  text-align: center;
}
.authorization-mobile-buttons__sign-in {
  background: transparent;
  border: 1px solid #00c26f;
}
.authorization-mobile-buttons__sign-in:hover {
  background: transparent;
}
.authorization-mobile-buttons__sign-up {
  background: linear-gradient(
    0deg,
    #00b890 5.71%,
    #00b88e 6.76%,
    #00bd7c 18.18%,
    #00c072 30.5%,
    #00c26f 45.17%
  );
}
.mobile-menu-item {
  font-size: 24px;
  margin-bottom: 10px;
}
.mobile-menu-item__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 160px;
  outline: 0;
}
.mobile-menu-item__name svg {
  display: block;
  position: static;
}
.mobile-menu-item__submenu {
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 15px;
}
.mobile-menu-item__submenu-item {
  font-size: 24px;
  margin-top: 10px;
}
.mobile-menu-item__submenu-item:first-child {
  margin-top: 0;
}
.mobile-menu-item__submenu-link {
  color: #ffffff;
}
.new-stepper-field__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
}
.new-stepper-field__input-arrow {
  position: absolute;
  right: 16px;
  width: 11px;
  height: 6px;
  z-index: 1000;
  background-color: transparent;
  background-image: url(f9e0b7fd5dbced50e305.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: navajowhite;
  padding: 0;
  margin: 7px 5px 7px 4px;
}
.new-stepper-field__input-arrow_opened {
  background-image: url(9cf4be22cd5f3a313764.svg);
}
.new-stepper-field__wrapper-input:has(.new-stepper-field__input-dropdown)
  .new-stepper-field__icon {
  right: 30px;
}
.new-stepper-field_hidden {
  display: none;
}
.new-stepper-field__label {
  font-size: 16px;
  line-height: 20px;
  color: #808086;
  transition: color ease 0.3s;
}
.new-stepper-field__label_color-black {
  color: #808086;
}
.new-stepper-field__label-right {
  font-size: 14px;
  line-height: 17px;
  color: #808086;
  margin-inline-start: auto;
  cursor: pointer;
  outline: none;
}
.new-stepper-field__label-right:hover {
  color: #00c26f;
}
.new-stepper-field__wrapper-input {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  transition: border ease 0.3s;
}
.new-stepper-field__button {
  border: none;
  background: transparent;
  color: #00c26f;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  letter-spacing: 0.45px;
  text-align: center;
  padding-right: 16px;
}
.new-stepper-field__success-img {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  margin-left: 16px;
}
.new-stepper-field__wrapper-input_border-green {
  border-color: #00c26f;
}
.new-stepper-field__input {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  color: #2b2b36;
  background-color: transparent;
  border: none;
  padding: 20px 16px 6px;
  margin: 0;
}
.new-stepper-field__input:focus {
  outline: 0;
}
.new-stepper-field__input:focus + .new-stepper-field__placeholder,
.new-stepper-field__input:not(:placeholder-shown)
  + .new-stepper-field__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-stepper-field__input:is(:-webkit-autofill, :autofill) {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 5000s ease-in-out 0s;
  z-index: -1;
}
.dark-theme .new-stepper-field__input:is(:-webkit-autofill, :autofill) {
  -webkit-box-shadow: 0 0 0 1000px #30303e inset !important;
  box-shadow: 0 0 0 1000px #30303e inset !important;
}
.new-stepper-field__input::placeholder {
  color: #808086;
  font-weight: 400;
  text-overflow: ellipsis;
  visibility: hidden;
  opacity: 0;
}
.new-stepper-field__placeholder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  font-weight: 300;
  letter-spacing: 0.01375em;
  padding-inline-start: 16px;
  transform: translate(0, 13px) scale(1);
  transform-origin: top left;
  transition: transform ease 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
html[dir="rtl"] .new-stepper-field__placeholder {
  transform-origin: top right;
}
.new-stepper-field__icon {
  width: 40px;
  position: absolute;
  right: 0;
  z-index: 1;
  cursor: pointer;
  outline: none;
}
html[dir="rtl"] .new-stepper-field__icon {
  right: unset;
  left: 0;
}
.new-stepper-field__icon:hover {
  animation-name: new-stepper-field-icon-scale;
  animation-duration: 0.5s;
}
.new-stepper-field__icon svg {
  display: block;
  flex-shrink: 0;
}
.new-stepper-field__icon-success {
  width: 40px;
  position: absolute;
  right: 0;
  z-index: 1;
  outline: none;
}
html[dir="rtl"] .new-stepper-field__icon-success {
  right: unset;
  left: 8px;
}
.new-stepper-field__wrapper-input:has(.new-stepper-field__input-dropdown)
  .new-stepper-field__icon-success {
  right: 30px;
}
.new-stepper-field__icon-success svg {
  display: block;
  animation-name: new-stepper-field-icon-rotate;
  animation-duration: 0.3s;
}
.new-stepper-field_has-error .new-stepper-field__wrapper-input {
  border-color: #fcedba;
  border-radius: 6px 6px 0 0;
}
.new-stepper-field__wrapper-input_with-icon .new-stepper-field__input {
  padding-inline-end: 50px;
}
.new-stepper-field__wrapper-input_with-icon.new-stepper-field__wrapper-input-dropdown
  .new-stepper-field__input {
  padding-inline-end: 90px;
}
.new-stepper-field__wrapper-input_with-icon img.loader-icon {
  margin-inline-start: -10px;
}
.new-stepper-field__wrapper-input_with-icon .new-stepper-field__placeholder {
  right: 40px;
}
html[dir="rtl"]
  .new-stepper-field__wrapper-input_with-icon
  .new-stepper-field__placeholder {
  right: 16px;
  left: 40px;
}
@media screen and (min-width: 768px) {
  .new-stepper-field__placeholder,
  .new-stepper-field__input {
    font-size: 17px;
    line-height: 22px;
  }
}
@keyframes new-stepper-field-icon-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes new-stepper-field-icon-rotate {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0);
  }
}
.new-stepper-textarea {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  transition: border ease 0.3s;
}
.new-stepper-textarea_border-green {
  border-color: #00c26f;
}
.new-stepper-textarea_has-error {
  border-color: #fcedba;
  border-radius: 6px 6px 0 0;
}
.new-stepper-textarea__field {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 130px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b36;
  background-color: transparent;
  border: none;
  padding: 20px 16px 6px;
  margin: 0;
  resize: none;
}
.new-stepper-textarea__field:focus {
  outline: 0;
}
.new-stepper-textarea__field:focus + .new-stepper-textarea__placeholder,
.new-stepper-textarea__field:not(:placeholder-shown)
  + .new-stepper-textarea__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-stepper-textarea__field::placeholder {
  color: #808086;
  font-weight: 400;
  visibility: hidden;
  opacity: 0;
}
.new-stepper-textarea__placeholder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  font-weight: 400;
  letter-spacing: 0.01375em;
  padding-inline-start: 16px;
  transform: translate(0, 13px) scale(1);
  transform-origin: top left;
  transition: transform ease 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .new-stepper-textarea__placeholder,
  .new-stepper-textarea__field {
    font-size: 16px;
    line-height: 22px;
  }
}
.new-stepper-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  font-weight: 700;
  background-color: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background ease 0.3s;
}
.new-stepper-button:hover {
  background-color: #00c87a;
}
.new-stepper-button:focus {
  outline: 0;
}
.new-stepper-button:disabled {
  pointer-events: none;
}
.new-stepper-form {
  position: relative;
  z-index: 0;
}
.new-stepper-form__field {
  margin-top: 15px;
}
.new-stepper-form__field:first-child {
  margin-top: 0;
}
.new-stepper-form__button {
  margin-top: 20px;
}
.new-stepper-form__success {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 16px;
  box-shadow: 0px 2.41432px 20px rgba(43, 43, 54, 0.07);
  text-align: center;
}
.new-stepper-form__success-icon {
  width: 38px;
  height: 38px;
}
.new-stepper-form__success-title {
  color: #00c26f;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}
.new-stepper-form__success-description {
  margin: 0;
  font-size: 14px;
  color: #9c9ca7;
}
.new-stepper-form__success-description_email {
  color: #2b2b37;
}
.new-stepper-form__icon-success {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.new-stepper-form__icon-success svg {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .new-stepper-form__success {
    padding: 16px 56px;
  }
  .new-stepper-form__success-icon {
    width: 40px;
    height: 40px;
  }
  .new-stepper-form__button {
    margin-top: 24px;
  }
  .new-stepper-form__icon-success svg {
    width: 60px;
    height: 60px;
  }
}
.new-stepper-support-form__spinner {
  margin-right: 8px;
}
.new-stepper-warning {
  position: relative;
  width: 100%;
}
.new-stepper-warning__content {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcefc1;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}
.new-stepper-warning__icon {
  margin-right: 9px;
}
.new-stepper-warning p {
  font-size: 14px;
  line-height: 12px;
  color: rgba(43, 43, 54, 0.5);
  text-align: center;
  letter-spacing: 0.1px;
  padding: 0;
  margin: 0;
  opacity: 1;
}
.new-stepper-warning_absolute .new-stepper-warning__content {
  justify-content: flex-start;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #fcedba;
  border-radius: 0 0 6px 6px;
  padding-left: 16px;
  padding-right: 16px;
  animation-name: warning-fade;
  animation-duration: 0.3s;
}
.new-stepper-warning_absolute p {
  color: #5d5a60;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .new-stepper-warning p {
    font-size: 14px;
    line-height: 14px;
  }
  .new-stepper-warning_absolute p {
    font-size: 16px;
    line-height: 16px;
  }
}
@keyframes warning-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dropdown-for-partners__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-right: 30px;
  color: #8b86af;
  font-weight: 700;
}
.dropdown-for-partners__content {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  padding: 0;
  overflow: hidden;
}
.dropdown-for-partners__content_open {
  max-height: 1200px;
  opacity: 1;
  padding: 14px 0 24px;
}
.dropdown-for-partners__explore {
  display: block;
  border: 1px solid #00c26f;
  border-radius: 8px;
  padding: 12px 16px;
}
.dropdown-for-partners__explore p {
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  margin: 0;
  opacity: 1;
}
.dropdown-for-partners__explore-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 8px;
}
.dropdown-for-partners__category {
  margin-top: 16px;
}
.dropdown-for-partners__category:first-of-type {
  margin-top: 24px;
}
.dropdown-for-partners__category-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #6a6a7f;
}
.dropdown-for-partners__navigation-items {
  display: flex;
  flex-direction: column;
}
.dropdown-for-partners__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0;
  color: #ffffff;
}
.dropdown-for-partners__link img {
  display: block;
  margin-right: 8px;
}
.dropdown-for-partners__link img:nth-child(2) {
  margin-left: 8px;
}
.dropdown-for-partners__link_last {
  order: 1;
}
.dropdown-for-partners__button {
  margin-top: 24px;
}
a.dropdown-for-partners__button:hover {
  color: #ffffff;
}
.dropdown-for-partners__navigation {
  margin-top: 8px;
}
.dropdown-for-partners__navigation-tabs {
  width: 100vw;
  overflow-x: auto;
  margin: 0 -26px;
  padding: 0 26px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dropdown-for-partners__navigation-tabs::-webkit-scrollbar {
  display: none;
}
.dropdown-for-partners__navigation-tabs-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 571px;
}
.dropdown-for-partners__navigation-tab {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  border-radius: 4px;
  background-color: #2b2b35;
  border: 1px solid #59547a;
  padding: 6px 12px;
  cursor: pointer;
  margin-left: 16px;
  white-space: nowrap;
  transition: background-color ease 0.3s;
}
.dropdown-for-partners__navigation-tab:first-child {
  margin-left: 0;
}
.dropdown-for-partners__navigation-tab_active {
  background-color: #59547a;
  pointer-events: none;
  cursor: default;
}
.inner-navigation-dropdown__link-soon {
  display: block;
  width: 38px;
  font-size: 10px;
  line-height: 15px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  background-color: #00c26f;
  margin-left: 8px;
}
@media screen and (min-width: 625px) {
  .dropdown-for-partners__navigation-tabs {
    width: auto;
    overflow-x: scroll;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
