.transfer-card {
  width: min(86vw, 340px);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.transfer-head {
  position: relative;
  padding: 18px 18px 12px;
  border-bottom: 1px solid #f0e8df;
  text-align: center;
}

.transfer-title {
  font-size: 17px;
  font-weight: 700;
  color: #2b2118;
}

.transfer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #8b7a6a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.transfer-body {
  padding: 18px;
}

.transfer-field {
  margin-bottom: 14px;
}

.transfer-balance {
  margin: -4px 0 14px;
  color: #8b7a6a;
  font-size: 12px;
  text-align: right;
}

.transfer-label {
  display: block;
  margin-bottom: 7px;
  color: #6f6257;
  font-size: 13px;
}

.transfer-input,
.transfer-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #eadfd3;
  border-radius: 10px;
  background: #fffaf5;
  color: #2b2118;
  font-size: 15px;
  outline: none;
}

.transfer-input {
  height: 44px;
  padding: 0 12px;
}

.transfer-textarea {
  min-height: 72px;
  resize: none;
  padding: 10px 12px;
  font-family: inherit;
}

.transfer-preview {
  margin: 12px 0 16px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #2b2118;
}

.transfer-send-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #f0a33a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.transfer-send-btn:active {
  transform: translateY(1px);
}

.tf-opened {
  opacity: 0.68;
}

.tf-opened img {
  filter: grayscale(1) brightness(0) invert(1) !important;
}