/* Spinner */
@keyframes spinnerAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes circleAnimation {
    0%, 100% {
        stroke-dashoffset: 220;
    }
    50% {
        stroke-dashoffset: 0;
    }
    50.1% {
        stroke-dashoffset: 440;
    }
}

.spinner {
    width: 60px;
    height: 60px;
    animation: spinnerAnimation 1s linear infinite;
}

.spinner circle {
    transform: translate(2px, 2px);
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 2.5;
    stroke: #E3001B;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: circleAnimation 4s linear infinite;
}

.parent {
    position: absolute;
    top: 50%;
    left: 50%;
}


 /* Landing Page  */
.content-wrap {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.2);
    padding: 30px 30px;
    position: relative;
    z-index: 9;
  }
  
  .content-wrap .alternet-access {
    text-align: center;
    display: none;
  }
  
  .content-wrap .alternet-access p {
    color: #546274;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
  }
  
  .content-wrap .alternet-access p a {
    color: #1e85ff;
  }
  
  .content-wrap .alternet-payment .btn {
    width: 100%;
    height: 60px;
    border-radius: 30px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    font-size: 1.4rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #546274;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .content-wrap .alternet-payment .btn + .btn {
    margin-top: 25px;
  }
  
  .content-wrap .alternet-payment .btn:hover {
    -webkit-box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.05);
  }
  
  .content-wrap .alternet-payment .btn img {
    margin-left: 10px;
  }
  