:root {
  --mainColor: #78CA5C;
  --success: #4CAF50;
  --warning:  #FFC107;
  --error: #FF5252; 
}

.alertButton-group {
  display: flex;
  align-items: center;
  flex-direction: column;
  /*justify-content: space-between;*/
  width: 100%;
  padding: 20px 0px;
}

.alert-div {
  width: 100%;
  padding: 0px;
  text-align: center;
}

.alert {
  margin: 20px 0px 0px 0px !important;
  border-radius: 50px;
  min-height: 50px;
}

.sendButton-div {
  display: inline-block;
  width: 100%;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 576px) {
  .sendButton-div {
    width: 95% !important;
  }
}

.sendButton {
  outline: none !important;
  height: 50px;
  text-align: center;
  width: 100%;
  border-radius: 50px;
  background: transparent;
  border: 3px solid var(--mainColor);
  color: var(--mainColor);
  font-size: 13px;
  font-weight: bold;
  transition: all 0.25s ease;
}

.sendButton:hover {
  color: white;
  background: var(--mainColor);
}
/*.sendButton:active {
  letter-spacing: 2px;
}*/
.sendButton:after {
  content: "GÖNDER";
}

@media (max-width: 992px) {

  .alertButton-group {
    flex-direction: column;
  } 

  .sendButton-div {
    width: 100%;
    margin: auto;
  }

  .alert-div {
    width: 100%;
    padding: 0px;
    margin: 0px;
  }

}

.onclic {
  width: 50px !important;
  border-color: #bbbbbb;
  border-width: 3px;
  font-size: 0;
  background: transparent;
  border-left-color: var(--mainColor);
  -webkit-animation: rotating 2s 0.25s linear infinite;
  animation: rotating 2s 0.25s linear infinite;
}
.onclic:after {
  content: "";
}
.onclic:hover {
  color: var(--mainColor);
  background: white;
}

.warning {
  font-size: 13px;
  color: white;
  background: var(--warning);
  border: none;
}
.warning:after {
  font-size: 25px;
  font-family: "FontAwesome";
  content: "\f12a";
}

.success {
  font-size: 13px;
  color: white;
  background: var(--success);
  border: none;
}
.success:after {
  font-size: 25px;
  font-family: "FontAwesome";
  content: "\f00c";
}

.error {
  font-size: 13px;
  color: white;
  background: var(--error);
  border: none;
}
.error:after {
  font-size: 25px;
  font-family: "FontAwesome";
  content: "\f00d";
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}