.success {
  position: relative;
  height: 100vh;
  background-color: #2F3242;
}

.success svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -250px;
  margin-left: -400px;
}

.success .message-box {
  text-align: center;
  height: 300px;
  max-width: 580px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: 50px;
  color: #FFF;
  font-weight: 300;
}

.success h3 {
  color: #a6a6a6;
}

.success .buttons-con .action-link-wrap {
  margin-top: 40px;
}

.success .buttons-con .action-link-wrap a {
  background: #68c950;
  padding: 8px 25px;
  border-radius: 4px;
  color: #FFF;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s linear;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
}

.success .buttons-con .action-link-wrap a:hover {
  background: #5A5C6C;
  color: #fff;
}

.success #Polygon-1,
.success #Polygon-2,
.success #Polygon-3,
.success #Polygon-4,
.success #Polygon-4,
.success #Polygon-5 {
  animation: float 1s infinite ease-in-out alternate;
}

.success #Polygon-2 {
  animation-delay: 0.2s;
}

.success #Polygon-3 {
  animation-delay: 0.4s;
}

.success #Polygon-4 {
  animation-delay: 0.6s;
}

.success #Polygon-5 {
  animation-delay: 0.8s;
}

@keyframes float {
  100% {
    transform: translateY(20px);
  }
}

@media (max-width: 768px) {
  .success svg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    margin-left: -190px;
  }

  .success .message-box {
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -190px;
    text-align: center;
  }
}

/*# sourceMappingURL=success.css.map */