.success-wrapper {
  position: fixed;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background: #211510;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.success-wrapper h1 {
  font-size: 30px;
  color: #fff;
}
.success-wrapper p {
  font-size: 16px;
  color: #8f8987;
  margin: 18px 0;
}
.success-wrapper button {
  background: #5D7845;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 18px;
}
.show-success {
  visibility: visible !important;
  opacity: 1 !important;
}
