/* RESULT DISPLAY */
#wpm2aws-sc-js-checker-form-error {
    color:red;
}
#wpm2aws-sc-js-checker-form-success {
    color:green;
}
#wpm2aws-sc-js-checker-form-error,
#wpm2aws-sc-js-checker-form-success {
    text-align:center;
    padding-top:15px;
    padding-bottom:15px;
}


/* LOADER GIF */
.lds-facebook {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}

.lds-facebook div {
display: inline-block;
position: absolute;
left: 8px;
width: 16px;
background: #0074a6;
animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
left: 8px;
animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
left: 32px;
animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
left: 56px;
animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }