

 /*HOVER ON AYMENT BUTTONS*/

.pbtnBase:hover
{
background-color:#EEE;
}






.IntentFade {
    background-color: rgba(128, 128, 128, 0.65);
    left:0px;
    top:0px;
    /*opacity: 0.7;*/
    width:100%;
    height:100%;
    bottom:0px;
    position:fixed;
    z-index:200;

}

.IntentFadeInnerDiv_Mobile {
    position:absolute;
    top: 0;
    left: 0;


    width: 100%;
 
    background-color: white;
    color: black;
  
    opacity: 1;

    -moz-border-radius: 8px;
    border-radius: 8px;
}

.IntentFadeInnerDiv {
    position:absolute;
    top: 50%;
    left: 50%;
       transform: translate(-50%, -50%);
  
    max-width: 500px;
    width: 100%;
    margin: auto;
    background-color: white;
    color: black;
   

    opacity: 1;

    

    -moz-border-radius: 8px;
    border-radius: 8px;
}
.IntentFadeInnerMobileDiv {
    position:absolute;
    top: 5%;
      left: 0%;
    border: 1px solid gray;
    max-width: 400px;
    width: 100%;
    margin: auto;
    background-color: white;
    color: black;
    padding: 30px;
    opacity: 1;
    -moz-border-radius: 8px;
    border-radius: 8px;
}


.intentbigcheckbox
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  transform: scale(2);
  padding: 20px;

}













.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 150px;
    height: 150px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 1.25em;
    color: green;
    Letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px green;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
    }
.ring:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid green;
    border-right: 3px solid green;
    border-radius: 50%;
    animation: animateCircle 2s linear infinite;
}
.ring span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}
.ring span:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: green;
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px green;
}
@keyframes animateCircle {
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
@keyframes animate {
    0%
    {
        transform: rotate(45deg);
    }
    100%
    {
        transform: rotate(405deg);
    }
}
.loadspinner {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: loadrotation 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes loadrotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


