@import "bootstrap-grid.css";
@font-face {
  font-family: "Manrope";
  font-style: light;
  font-weight: 300;
  src: url("../fonts/manrope-light.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/manrope-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/manrope-medium.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/manrope-bold.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  transition: 0.3s ease;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

input, textarea, select {
  outline: none;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  color: #fff;
  background-color: #000;
  margin: 0;
}
body.load-overflow {
  overflow: hidden;
}

.prelouder {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.prelouder .louder {
  width: 280px;
  height: 20px;
  background-color: #fff;
  position: relative;
  margin-top: 30px;
  overflow: hidden;
}

.prelouder .louder span {
  text-transform: uppercase;
  color: #f4f4f4;
  line-height: 20px;
  display: block;
  z-index: 2;
  position: relative;
  font-size: 13px;
  font-weight: 800;
}

.prelouder .louder::before {
  content: "";
  width: 180px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1;
  animation: line-animated-wait-prelouder 2s linear infinite;
}

.loaded .prelouder {
  display: none;
}

@keyframes line-animated-wait-prelouder {
  0% {
    left: -180px;
  }
  100% {
    left: 100%;
  }
}
h1, h2, h3, h4, p, input, button, a {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}

section {
  position: relative;
}

img {
  width: 100%;
  pointer-events: none;
  cursor: default;
}
img::-moz-selection {
  background-color: transparent;
  color: #fff;
}
img::selection {
  background-color: transparent;
  color: #fff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.all-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.container-wrap {
  position: relative;
  max-width: 500px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.navigation-wrap {
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
}

.navigation {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
}
.navigation li {
  margin-right: 0;
  margin: 0 5px;
  width: calc(25% - 10px);
}
.navigation li.-active a {
  color: #14ff8a;
  font-weight: bold;
}
.navigation li.-active a span {
  box-shadow: 0 4px 20px rgba(20, 255, 138, 0.21);
  background-color: rgba(211, 227, 222, 0.21);
}
.navigation a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.4px;
  font-size: 12px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: bold;
  flex-direction: column;
}
.navigation a:hover span {
  background-color: rgba(255, 255, 255, 0.21);
}
.navigation a span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-bottom: 5px;
  background-color: #000;
  border-radius: 4px;
  letter-spacing: 0;
  font-size: 18px;
}

.up-part-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  z-index: 999;
}

.username-wrap {
  display: flex;
  align-items: center;
}
.username-wrap .icon-div {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  background-color: rgba(211, 227, 222, 0.14);
  background-image: url("../img/user.png");
}
.username-wrap .username {
  font-size: 13px;
  letter-spacing: 0.4px;
}
.username-wrap .status {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-top: 5px;
}
.username-wrap .status span {
  display: block;
  margin: 0 5px;
  color: #d3e3de;
}

.balance-wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.balance-wrap .tech-support {
  width: 36px;
  height: 36px;
  min-width: 36px;
  margin-left: 15px;
  background-color: rgba(211, 227, 222, 0.21);
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  background-image: url("../img/support.png");
}

.inner-balance {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}
.inner-balance span {
  font-size: 10px;
  color: #d3e3de;
}
.inner-balance .balance {
  display: flex;
  align-items: center;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-top: 5px;
}
.inner-balance .balance span {
  font-size: 14px;
  color: #14ff8a;
  display: block;
  margin-right: 5px;
}

.inner-data {
  padding-top: 75px;
  padding-bottom: 100px;
}

.-futures-item {
  padding: 10px;
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #15201d, #0a0e0e) padding-box, linear-gradient(135deg, rgba(211, 227, 222, 0.21), rgba(20, 255, 138, 0.21)) border-box;
  background: linear-gradient(180deg, #141d21, #0a0a0e);
  border-radius: 8px;
  margin-bottom: 15px;
}
.-futures-item.-active {
  border: 1px solid rgba(211, 227, 222, 0.42);
  box-shadow: 0 4px 20px rgba(9, 159, 176, 0.28);
}
.-futures-item.-active .down-part-futures {
  height: auto;
  margin-top: 15px;
}
.-futures-item:hover {
  border: 1px solid rgba(211, 227, 222, 0.42);
  box-shadow: 0 4px 20px rgba(9, 159, 176, 0.28);
}
.-futures-item .up-part-futures {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
}
.-futures-item .currency {
  display: flex;
  align-items: center;
}
.-futures-item .currency .right-part {
  letter-spacing: 1px;
  margin-left: 10px;
}
.-futures-item .currency .right-part span {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.-futures-item .currency .right-part .crypto-name {
  font-size: 12px;
  font-weight: 300;
  margin-top: 5px;
}
.-futures-item .currency .icon-div {
  min-width: 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid rgba(211, 227, 222, 0.42);
  box-shadow: 0 4px 42px rgba(9, 176, 140, 0.42);
}
.-futures-item .signature-with-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.-futures-item .signature-with-value .signature {
  font-size: 10px;
}
.-futures-item .signature-with-value .value {
  display: flex;
  align-items: center;
  letter-spacing: 0.4px;
  margin-top: 10px;
  font-size: 14px;
}
.-futures-item .signature-with-value .value span {
  display: block;
  padding: 2px 4px;
  margin-left: 10px;
  background-color: #14ff8a;
  font-weight: bold;
  font-size: 12px;
  border-radius: 4px;
  color: #000;
  letter-spacing: normal;
}
.-futures-item .signature-with-value .value span.-green {
  background-color: #14ff8a;
}
.-futures-item .signature-with-value .value span.-red {
  background-color: #ff6a6a;
}
.-futures-item .down-part-futures {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  height: 0;
  margin-top: 0;
}
.-futures-item .down-part-futures .buttons-part {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  padding: 5px 0;
  padding-top: 15px;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
}
.-futures-item .down-part-futures .buttons-part .btn-trade {
  margin-right: 15px;
}
.-futures-item .down-part-futures .buttons-part .btn-trade:last-child {
  margin-right: 0;
}

.-order .hide-items {
  overflow: hidden;
  height: 0;
}
.-order .order-parametrs.-results .signature-with-value .signature {
  font-size: 10px !important;
}
.-order.-active .hide-items {
  height: auto !important;
}
.-order.-active .hide-items .order-parametrs.-results .signature-with-value .signature {
  font-size: 12px;
}
.-order.-active .order-parametrs.-results .signature-with-value .signature {
  font-size: 12px !important;
}
.-order.-active-order {
  border: 1px solid rgba(211, 227, 222, 0.42);
  box-shadow: 0 4px 20px rgba(9, 159, 176, 0.28);
}
.-order.-active-order .order-parametrs.-results .signature-with-value .signature {
  font-size: 12px !important;
}
.-order.-active-order .hide-items {
  height: auto !important;
}
.-order.-active-order .hide-items .order-parametrs.-results .signature-with-value .signature {
  font-size: 12px;
}
.-order.-active-order .switcher-rate {
  display: flex !important;
}
.-order.-active-order .switcher-rate li.sr1 {
  animation: sr1 3s linear infinite;
}
.-order.-active-order .switcher-rate li.sr2 {
  animation: sr2 3s linear infinite;
}
.-order.-active-order .switcher-rate li.sr3 {
  animation: sr3 3s linear infinite;
}
.-order.-active-order .rate-down .progress {
  box-shadow: 0 4px 8px rgba(255, 106, 106, 0.35);
}
.-order.-active-order .rate-up .progress {
  box-shadow: 0 4px 8px rgba(20, 255, 138, 0.21);
}
.-order .currency .right-part .signature {
  font-size: 12px;
  letter-spacing: 0.4px;
  margin-bottom: 5px;
  color: #d3e3de;
}
.-order .currency .right-part .signature span {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.-order .rate-change {
  position: relative;
  padding: 10px 0;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  margin-top: 10px;
}
.-order .rate-change .rate-line {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.-order .rate-change .rate-line .rate-down, .-order .rate-change .rate-line .rate-up {
  height: 6px;
  width: 50%;
  background-color: #fff;
  position: relative;
}
.-order .rate-change .rate-line .rate-down .progress, .-order .rate-change .rate-line .rate-up .progress {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  max-width: 100%;
}
.-order .rate-change .rate-line .rate-down {
  border-radius: 2px 0 0 2px;
  background-color: #703538;
}
.-order .rate-change .rate-line .rate-down .progress {
  right: 0;
  background-color: #ff6a6a;
  border-radius: 2px 0 0 2px;
}
.-order .rate-change .rate-line .rate-up {
  border-radius: 0 2px 2px 0;
  background-color: #147245;
}
.-order .rate-change .rate-line .rate-up .progress {
  left: 0;
  border-radius: 0 2px 2px 0;
  background-color: #14ff8a;
}
.-order .rate-change .switcher-rate {
  position: absolute;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  top: -27px;
  display: none;
}
.-order .rate-change .switcher-rate li {
  height: 100%;
  width: 14px;
  border-radius: 8px;
  margin: 0 5px;
  box-shadow: 0 4px 14px rgba(20, 255, 138, 0.14);
  background-color: rgba(0, 0, 0, 0.55);
}
.-order .rate-change .switcher-rate li.sr1 {
  height: 30%;
}
.-order .rate-change .switcher-rate li.sr2 {
  height: 100%;
}
.-order .rate-change .switcher-rate li.sr3 {
  height: 80%;
}
.-order .up-part-of-rate-change {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
}
.-order .up-part-of-rate-change .signature-with-value {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.-order .up-part-of-rate-change .signature-with-value .signature {
  margin-right: 10px;
  margin-bottom: 0;
}
.-order .up-part-of-rate-change .signature-with-value .value {
  margin-top: 0;
}
.-order .signature-with-value.-change-rate .value {
  font-weight: 500;
}
.-order .signature-with-value.-change-rate .value.-green {
  color: #14ff8a;
}
.-order .signature-with-value.-change-rate .value.-red {
  color: #ff6a6a;
}
.-order .order-parametrs {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.-order .order-parametrs.-results {
  padding-top: 10px;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  margin-top: 10px;
}
.-order .order-parametrs.-results.-actual-sum {
  justify-content: center;
}
.-order .order-parametrs.-results.-actual-sum .signature-with-value {
  align-items: center;
}
.-order .order-parametrs.-results.-actual-sum .signature-with-value .value {
  font-size: 16px;
}
.-order .order-parametrs.-results.-actual-sum .signature-with-value .value .value {
  margin-top: 0;
  font-size: 14px;
  margin-left: 10px;
}
.-order .order-parametrs.-results .signature-with-value .signature {
  font-size: 12px;
  color: #fff;
}
.-order .order-parametrs.-results .signature-with-value .value.-red {
  color: #ff6a6a;
  font-weight: 500;
}
.-order .order-parametrs.-results .signature-with-value .value.-green {
  color: #14ff8a;
  font-weight: 500;
}
.-order .order-parametrs .signature-with-value {
  align-items: flex-start;
}
.-order .order-parametrs .signature-with-value .signature {
  color: #d3e3de;
}
.-order .order-parametrs .signature-with-value .checkbox {
  margin-top: 10px;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.-order .order-parametrs .signature-with-value .checkbox span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  min-width: 8px;
  display: block;
  margin-right: 7px;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.-order .order-parametrs .signature-with-value .checkbox span.-green {
  background-color: #05e94d;
}
.-order .order-parametrs .signature-with-value .checkbox span.-red {
  background-color: #ff6a6a;
}

@keyframes sr1 {
  0% {
    height: 30%;
  }
  50% {
    height: 60%;
  }
  100% {
    height: 30%;
  }
}
@keyframes sr2 {
  0% {
    height: 100%;
  }
  50% {
    height: 70%;
  }
  100% {
    height: 100%;
  }
}
@keyframes sr3 {
  0% {
    height: 80%;
  }
  50% {
    height: 35%;
  }
  100% {
    height: 80%;
  }
}
.btn-trade {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  border-radius: 30px;
  background-color: rgba(20, 255, 138, 0.1);
  padding-right: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-trade:hover {
  background-color: rgba(20, 255, 138, 0.07);
  border: 1px solid rgba(20, 255, 138, 0.28);
}
.btn-trade.-active {
  background-color: #14ff8a;
  color: #000;
}
.btn-trade.-active .icon-div {
  background-color: #000;
}
.btn-trade .icon-div {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: rgba(20, 255, 138, 0.21);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  margin-right: 7px;
  box-shadow: 0 8px 16px rgba(3, 97, 50, 0.42);
}
.btn-trade.-start-trade .icon-div {
  background-image: url("../img/trade.png");
}
.btn-trade.-analis-graph .icon-div {
  background-image: url("../img/lupa.png");
  background-size: 14px;
}
.btn-trade.-close-modal .icon-div {
  background-image: url("../img/close.png");
  background-size: 12px;
}
.btn-trade.-set-btn {
  color: #fff;
  padding: 6px 8px;
  border-radius: 4px;
}
.btn-trade.-dropdown {
  padding-right: 0;
  width: auto;
  overflow: visible;
}
.btn-trade.-dropdown .icon-div {
  margin-right: 0;
  background-image: url("../img/chevron.png");
  background-size: 14px;
}
.btn-trade.-buy .icon-div {
  background-image: url("../img/buy.png");
  background-size: 16px;
}
.btn-trade.-sell .icon-div {
  background-image: url("../img/sell.png");
  background-size: 16px;
}
.btn-trade.-deposit .icon-div {
  background-image: url("../img/deposit.png");
  background-size: 16px;
}
.btn-trade.-send .icon-div {
  background-image: url("../img/send.png");
  background-size: 16px;
}
.btn-trade.-back .icon-div {
  background-image: url("../img/left-arrow.png");
  background-size: 14px;
}

body .tradingview-widget-copyright, body .tv-logo, body .tv-watermark, body .tv-widget-chart__branding {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
body .tradingview-widget-container iframe {
  width: calc(100% + 30px) !important;
  margin-left: -15px !important;
  height: calc(100vh - 158px) !important;
}

.modal-trade {
  position: fixed;
  height: 100vh;
  min-height: 100svh;
  top: 0;
  left: 0;
  z-index: 1001;
  background-color: #000;
  width: 100%;
  display: none;
}
.modal-trade .hide-logo {
  bottom: 80px;
  width: 36px;
  height: 36px;
  position: absolute;
  left: 55px;
  background-color: transparent;
  border-radius: 50%;
}
.modal-trade.-buy-modal {
  display: block;
}
.modal-trade.-buy-modal .-form-part-spot-buy {
  display: block;
}
.modal-trade.-sell-modal {
  display: block;
}
.modal-trade.-sell-modal .-form-part-spot-sell {
  display: block;
}
.modal-trade.-start-trade-modal {
  display: block;
}
.modal-trade.-start-trade-modal .-form-part-futures {
  display: block;
}
.modal-trade.-analis-graph-modal {
  display: block;
}
.modal-trade.-analis-graph-modal .-chart-part {
  display: block;
  height: calc(100vh - 158px);
}
.modal-trade .changer-part {
  position: relative;
  width: 100%;
  display: none;
}
.modal-trade .up-part-of-modal {
  padding: 10px 0;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  position: sticky;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-trade .up-part-of-modal .buttons-part {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-trade .up-part-of-modal .buttons-part .btn-trade {
  margin-right: 10px;
}
.modal-trade .up-part-of-modal .buttons-part .btn-trade:last-child {
  margin-right: 0;
}
.modal-trade .inner-part-of-modal {
  background: linear-gradient(180deg, #141d21, #0a0a0e);
  overflow-y: scroll;
  height: calc(100% - 55px);
  padding: 20px 15px;
}
.modal-trade .header-for-modal {
  margin-bottom: 15px;
  letter-spacing: 0.4px;
  font-size: 14px;
  font-weight: 400;
  color: #d3e3de;
}
.modal-trade .up-part-futures {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #141d21, #0a0a0e);
  border: 1px solid rgba(200, 215, 210, 0.21);
}
.modal-trade .up-part-futures .header-for-modal {
  margin-bottom: 5px;
}
.modal-trade .inner-balance {
  align-items: flex-start;
  text-align: left;
}
.modal-trade .rub-price, .modal-trade .-usdt-price {
  margin-left: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.data-for-input {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100;
  align-items: center;
  margin-top: 10px;
}

.btn-s {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #14ff8a;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  margin-top: 20px;
  letter-spacing: 0.4px;
}
.btn-s:hover {
  opacity: 0.9;
}
.btn-s:disabled {
  background-color: rgba(20, 255, 138, 0.1) !important;
  color: rgba(211, 227, 222, 0.7) !important;
  font-weight: 500;
}
.btn-s.-red {
  background-color: #ff6a6a;
}
.btn-s.-red:disabled {
  background-color: rgba(255, 106, 106, 0.14) !important;
}

.input-wrap {
  position: relative;
  margin-bottom: 15px;
}
.input-wrap .absolut-signature {
  font-weight: bold;
  font-size: 14px;
  top: 14px;
  right: 10px;
  position: absolute;
  letter-spacing: 1px;
}
.input-wrap input {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  height: 44px;
  border-radius: 4px;
  background-color: rgba(211, 227, 222, 0.21);
  border: 1px solid rgba(211, 227, 222, 0);
  color: #fff;
  padding: 0 10px;
  letter-spacing: 0.4px;
  padding-top: 15px;
  font-weight: 500;
}
.input-wrap input:focus {
  border: 1px solid #14ff8a !important;
  background-color: rgba(211, 227, 222, 0.1);
}
.input-wrap input::-moz-placeholder {
  color: transparent;
}
.input-wrap input::placeholder {
  color: transparent;
}
.input-wrap label {
  position: absolute;
  top: 14px;
  font-size: 14px;
  left: 10px;
  letter-spacing: 0.4px;
}
.input-wrap input:not(:-moz-placeholder-shown) + label {
  top: 6px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.input-wrap input:focus + label, .input-wrap input:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.input-wrap input:not(:-moz-placeholder-shown) {
  border: 1px solid rgba(211, 227, 222, 0.35);
  background-color: rgba(211, 227, 222, 0);
  color: #14ff8a;
  box-shadow: 0 4px 14px rgba(20, 255, 138, 0.14);
}
.input-wrap input:not(:placeholder-shown) {
  border: 1px solid rgba(211, 227, 222, 0.35);
  background-color: rgba(211, 227, 222, 0);
  color: #14ff8a;
  box-shadow: 0 4px 14px rgba(20, 255, 138, 0.14);
}
.input-wrap .signature-for-input {
  top: 14px;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.input-wrap .error-for-input {
  font-size: 12px;
  padding: 4px 8px;
  font-weight: 500;
  background-color: rgba(255, 84, 57, 0.55);
  border-radius: 4px;
  margin-top: -10px;
  letter-spacing: 0.4px;
  display: none;
}
.input-wrap .error-for-input.-active {
  display: block;
}

.checkbox-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.checkbox-wrap.w25 .checkbox {
  width: calc(25% - 7px);
}
.checkbox-wrap.w50 .checkbox {
  width: calc(50% - 5px);
}
.checkbox-wrap .checkbox {
  background-color: rgba(211, 227, 222, 0.21);
  border-radius: 4px;
  padding: 8px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d3e3de;
  border: 1px solid transparent;
  font-weight: 500;
}
.checkbox-wrap .checkbox.-active {
  background-color: rgba(211, 227, 222, 0);
  color: #fff;
  border: 1px solid rgba(200, 215, 210, 0.35);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 14px rgba(20, 255, 138, 0.14);
}
.checkbox-wrap .checkbox span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  min-width: 8px;
  display: block;
  margin-right: 7px;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.checkbox-wrap .checkbox span.-green {
  background-color: #05e94d;
}
.checkbox-wrap .checkbox span.-red {
  background-color: #ff6a6a;
}

.faq {
  background: linear-gradient(180deg, #141d21, #0a0a0e);
  border: 1px solid rgba(200, 215, 210, 0.21);
  border-radius: 8px;
  margin-top: 30px;
}
.faq.-active .txt-wrap-faq {
  padding-top: 20px;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  height: auto;
  padding: 15px;
}
.faq.-active .-dropdown {
  transform: rotate(180deg);
}
.faq p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #d3e3de;
  letter-spacing: 0.4px;
}
.faq p:last-child {
  margin-bottom: 0;
}
.faq p b {
  font-weight: bold;
  color: #fff;
}
.faq p span {
  display: block;
  height: 7px;
}
.faq .header-for-modal {
  font-size: 16px;
  margin-bottom: 0;
}
.faq .up-part-faq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  padding-left: 15px;
}
.faq .txt-wrap-faq {
  padding-top: 20px;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  margin-top: 20px;
  overflow: hidden;
  height: 0;
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.desctiption-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(200, 215, 210, 0.14);
}
.desctiption-wrap.-futures-description {
  background-image: url("../img/bg-futures.png");
}
.desctiption-wrap .header-for-description {
  letter-spacing: 1px;
  font-size: 16px;
}
.desctiption-wrap p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.4px;
  margin-top: 15px;
}
.desctiption-wrap p:last-child {
  margin-bottom: 0;
}
.desctiption-wrap p b {
  font-weight: bold;
  color: #fff;
}
.desctiption-wrap p span {
  display: block;
  height: 7px;
}

.-spot.-active .down-part-futures {
  margin-top: 10px;
}
.-spot .-spot-data {
  padding-top: 10px;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  margin-top: 10px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.-spot .-spot-data .inner-balance {
  align-items: flex-start;
  text-align: left;
}
.-spot .-spot-data .inner-balance:last-child {
  text-align: right;
  align-items: flex-end;
}
.-spot .-spot-data .inner-balance .signature {
  font-size: 12px;
}
.-spot .-spot-data .inner-balance .balance {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.4px;
}
.-spot .-spot-data .inner-balance .balance .usdt-price {
  font-weight: 400;
  margin-right: 10px;
  font-size: 12px;
}
.-spot .-spot-data .inner-balance .balance .rub-price {
  font-weight: 400;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.-spot .-sum-to-withdrawal {
  margin-top: 20px;
}
.-spot .-sum-to-withdrawal .balance {
  margin-top: 0;
}
.-spot .-sum-to-withdrawal .balance span {
  color: #fff;
}

.balance-data .usdt-price {
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.balance-data .signature {
  font-size: 12px;
  color: #d3e3de;
}
.balance-data .inner-balance {
  align-items: flex-start;
}
.balance-data .rub-price {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.header-of-balance {
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.all-balance {
  text-align: center;
  margin-bottom: 15px;
}
.all-balance .inner-balance {
  align-items: center;
}
.all-balance .usdt-price {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.balance-items .header-of-balance {
  font-size: 14px;
  letter-spacing: 0.4px;
  text-align: center;
}
.balance-items .inner-balance {
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
  justify-content: center;
}
.balance-items .inner-balance .usdt-price {
  margin-bottom: 0;
}
.balance-items .inner-balance .balance {
  margin-top: 0;
}
.balance-items .inner-balance .signature {
  margin-left: 15px;
  margin-right: 10px;
}
.balance-items .buttons-part {
  display: flex;
  align-items: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
  justify-content: center;
}
.balance-items .buttons-part .btn-trade {
  display: flex;
  color: #fff;
  text-decoration: none;
}
.balance-items .buttons-part .btn-trade:first-child {
  margin-right: 15px;
}

.history-trns .-futures-item .inner-balance {
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  padding-top: 10px;
  border-top: 1px solid rgba(200, 215, 210, 0.21);
}
.history-trns .-futures-item .inner-balance .usdt-price {
  margin-bottom: 0;
}
.history-trns .-futures-item .inner-balance .balance {
  margin-top: 0;
}
.history-trns .-futures-item .inner-balance .signature {
  margin-left: 15px;
  margin-right: 10px;
}
.history-trns .-futures-item .up-part-of-history-trns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.history-trns .-futures-item .up-part-of-history-trns .data-of-trns, .history-trns .-futures-item .up-part-of-history-trns .currency .right-part {
  font-size: 14px;
  letter-spacing: 0.4px;
}
.history-trns .-futures-item .up-part-of-history-trns .currency .icon-div {
  background-color: rgba(20, 255, 138, 0.21);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center 9px;
  border: 0;
}
.history-trns .-futures-item .up-part-of-history-trns .currency .icon-div.-deposit {
  background-image: url("../img/deposit.png");
}
.history-trns .-futures-item .up-part-of-history-trns .currency .icon-div.-send {
  background-image: url("../img/send.png");
}

.all-alert {
  background: linear-gradient(180deg, #141d21, #0a0a0e);
  width: 100%;
  height: calc(100% - 57px);
  position: fixed;
  z-index: 99999;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  padding: 15px;
}
.all-alert.-active {
  display: flex;
}
.all-alert img {
  width: 42px;
}
.all-alert .alert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.all-alert .header-alert {
  margin: 10px 0;
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 1px;
}
.all-alert p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.4px;
  font-weight: 300;
}

.mb15 {
  margin-bottom: 15px;
}

.-back-btns {
  display: flex;
  justify-content: center;
}

.inframe-wrap-fix {
    position: relative;
    width: calc(100% + 30px);
    height: 100%;
    margin-left: -15px;
}

.modal-trade .hide-logo {
bottom: 74px;
    width: 36px;
    height: 36px;
    position: absolute;
    left: 45px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 100;
}

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 991px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 768px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 480px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 380px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 320px) {
  /**/
}
/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/
}/*# sourceMappingURL=main.css.map */