.SendButton {
  outline: 0;
}
.SendButton.active {
  outline: 0;
}

.SendButton.BtnSend1 {
  font-weight: bold;
  border: 2px solid #fff;
  color: white;
  border-radius: 50px;
  padding: 5px 3rem;
  background: transparent;
  position: relative;
  overflow: hidden;
  /* transform: translateY(-50%); */
}
.SendButton.BtnSend1 .text.active {
  transform: translateY(-350%) scale(0);
  transition: 0.35s cubic-bezier(0.34, -0.61, 1, 0.64);
}
.SendButton.BtnSend1.active {
  padding: 0px 80px;
  transition: 0.4s cubic-bezier(0.35, -0.77, 0.67, 1.88);
}
.SendButton.BtnSend1 .loader {
  position: absolute;
  width: calc(0% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  left: 2px;
  top: 2px;
  /* bottom: 10rem; */
  border-radius: 50px;
}
.SendButton.BtnSend1 .loader.active {
  width: calc(100% - 4px);
  transition: 1.3s ease-in-out;
  transition-delay: 0.5s;
}
.SendButton.BtnSend1 .done {
  color: #333ddd;
  margin-top: -20px;
  transform: translateY(300%) scale(0);
}
.SendButton.BtnSend1 .done.active {
  transform: translateY(0%) scale(1);
  transition: 0.4s cubic-bezier(0.34, -0.61, 1, 0.64);
}
