#sent-section {
  margin-top: 0;
}

#sent-section.active .sent__tick-wrapper {
  animation: scale-tick 0.3s ease-in-out 0.5s both;
}

#sent-section.active .sent__tick-svg path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw-check 0.4s cubic-bezier(0.65, 0, 0.65, 1) 0.8s forwards;
}
.sent-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: auto 0;
}
.sent__title {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: rgba(207, 19, 23);
  text-align: center;
}
.sent__subtitle {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  max-width: 290px;
}
.sent__icon-wrapper {
  width: 140px;
  height: 140px;
  position: relative;
}
.sent__icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(207, 19, 23);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2.71px 3.99px 0px rgba(207, 19, 23, 0.04);
  box-shadow: 0px 12.4px 11.21px 0px rgba(207, 19, 23, 0.06);
  box-shadow: 0px 31.39px 30.08px 0px rgba(207, 19, 23, 0.08);
  box-shadow: 0px 62px 69px 0px rgba(207, 19, 23, 0.12);
}
.sent__icon-svg {
  width: 55px;
}
.sent__tick-wrapper {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 45px;
  height: 45px;
  background-color: rgba(101, 163, 13);
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  opacity: 0;
}
.sent__tick-svg {
  width: 21px;
}
.sent__tick-svg path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}
.instagram-button {
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(207, 19, 23);
  border-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.015);
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #000;
  width: 100%;
  margin-top: auto;
}
.instagram-button span {
  width: 100%;
  text-align: center;
}
.instagram-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
@keyframes draw-check {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale-tick {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
