/* -------------------------------- 

File#: _1_thank-you
Title: Thank You
Descr: Order confirmation template
Usage: codyhouse.co/license

-------------------------------- */
.thank-you {
  position: relative;
  z-index: 1;
}

.thank-you__icon {
  width: 80px;
  height: 80px;
}

.thank-you__icon-group {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: thank-you-icon 0.5s var(--ease-out);
          animation: thank-you-icon 0.5s var(--ease-out);
}
.thank-you__icon-group > *:last-child {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  stroke-dashoffset: 55;
  stroke-dasharray: 55;
  -webkit-animation: thank-you-icon-check 0.5s var(--ease-out) forwards;
          animation: thank-you-icon-check 0.5s var(--ease-out) forwards;
}

@-webkit-keyframes thank-you-icon {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes thank-you-icon {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes thank-you-icon-check {
  from {
    stroke-dashoffset: 55;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes thank-you-icon-check {
  from {
    stroke-dashoffset: 55;
  }
  to {
    stroke-dashoffset: 0;
  }
}