.svgs {
    width: 100px;
    display: block;
    margin: 40px auto 0;
    transition-duration: 15s;
    transition-delay: 10s;
  }
  .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;

  }
  .path.circle {
    -webkit-animation: dash 2s ease-in-out;
    animation: dash 2s ease-in-out;

  }
  .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 2s 1s ease-in-out forwards;
    animation: dash 2s 1s ease-in-out forwards;
  }
  .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 2s 1s ease-in-out forwards;
    animation: dash-check 2s 1s ease-in-out forwards;
  }
  @-webkit-keyframes dash {
    0% {
      stroke-dashoffset: 1000;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes dash {
    0% {
      stroke-dashoffset: 1000;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  @-webkit-keyframes dash-check {
    0% {
      stroke-dashoffset: -100;
    }
    100% {
      stroke-dashoffset: 900;
    }
  }
  @keyframes dash-check {
    0% {
      stroke-dashoffset: -100;
    }
    100% {
      stroke-dashoffset: 900;
    }
  }
  