/*  основная форма */
.usdt-send-block {
  position: fixed;
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  font-family: 'Gilroy-Regular', sans-serif;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}


/*  важно - форма где все это находится */
.usdt-send-block__usdt-send {
  background-color: white;
  margin: 5% auto;
  border-radius: 20px;
  border: none;
  width: 35%;

}


/*  важно - форма где все это находится */
.usdt-send {
  padding: 20px;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  
}


/*  неизвестно  */
.usdt-send__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


/*  Стиль предупреждения are u sure?  */
.usdt-send__title p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-right: auto;
  width: 420px;
}


/*  Крестик  */
.usdt-send__title img {
  display: block;
  margin-left: auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
}


/*  держит номер кошелка и сумму в центре  */
.usdt-send__wallet, .usdt-send__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 25px auto;
}


/*  шрифты кошелька и суммы  */
.usdt-send__wallet p, .usdt-send__sum p {
  font-size: 24px;
  font-weight: bold;
  margin: auto 0;
}

/*  неизвестно  */
.usdt-send__wallet p:nth-child(2), .usdt-send__sum p:nth-child(2) {
  margin-left: 5px;
}

/*  неизвестно  */
.usdt-send__wallet img, .usdt-send__sum img {
  height: 32px;
  width: 28px;
  cursor: pointer;
  margin-left: 30px;
}


/* держит кнопку cancel на своем месте */
.usdt-send__paid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


/* Кнопка YES */
.usdt-send__paid input {
  width: 300px;
  height: 50px;
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #75155C;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-right: 15px;
}

/*  неизвестно  */
.usdt-send__paid p {
  display: block;
  width: 60px;
  font-size: 16px;
  color: #3D3C3C;
  opacity: 0.8;
  cursor: pointer;
  margin: auto 0;
  margin-left: 15px;
}

@-webkit-keyframes slideIn {
  from {
    top: -100%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    top: -100%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@media (max-width: 500px) {
.usdt-send {
  width: 370px;
}
}


/*# sourceMappingURL=usdt_send.css.map */