


    .starter-template {
      padding: 40px 15px;
      text-align: center;
    }

    /* Preloader */
    .loader-mask {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #fff;
      z-index: 99999;
    }

    .loader {
      position: absolute;
      left: 50%; top: 50%;
      width: 50px; height: 50px;
      margin: -25px 0 0 -25px;
      text-indent: -9999em;
      transform: translateZ(0);
    }

    .loader div {
      background-color: #64B151;
      width: 50px; height: 50px;
      border-radius: 50%;
      opacity: .5;
      position: absolute;
      top: 0; left: 0;
      animation: ballPulseDouble 2s ease-in-out infinite;
    }

    .loader div:last-child {
      animation-delay: -1s;
    }

    @keyframes ballPulseDouble {
      0%, 100% { transform: scale(0); }
      50%      { transform: scale(1); }
    }

    .lead {
      font-size: 13px;
    }
  