.btn-green,
.btn-green-large {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background: #FFFFFF;
  border-radius: 0;
  transition: all 0.3s;
  box-shadow: none !important;
  white-space: inherit;
  cursor: pointer;
  color: #ffffff;
  font-family: "Dry Brush";
  background-image: url(../../img/btn-green.png);
  height: 64px;
  background-color: initial;
  border: none;
  text-align: center;
}

.btn-green {
  width: 228px;
}

.btn-green-large {
  background-size: cover;
  background-repeat: no-repeat;
  width: 450px;
}

@media (max-width: 640px) {
  .btn-green-large {
    width: 350px;
    height: 50px;
    padding: 10px 15px;
  }
}

.fade-in-bottom-short {
  animation: fadeInBottom 0.3s ease-in-out both;
}

.fade-in-bottom {
  animation: fadeInBottom 0.5s ease-in-out both;
}

.fade-in-bottom-long {
  animation: fadeInBottomLong 1s ease-in-out both;
}

.progress-circle {
  animation: progress 1s ease-out forwards;
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBottomLong {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
