Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

@import './../../../scss/themes/variables_ars_1.scss'; // Variables
.spinner {
margin: 24px auto;
text-align: center;
}

.spinner > div {
margin: 2px;
width: 16px;
height: 16px;
background-color: $color-info;
border-radius: 2px;
display: inline-block;
-webkit-animation: bounceDelay 1.2s infinite ease-in-out both;
animation: bounceDelay 1.2s infinite ease-in-out both;
}

.spinner h6 {
line-height: 40px;
font-size: $font-size-base;
color: $gray-base;
letter-spacing: 3px;
}

.spinner .bounce1 {
-webkit-animation-delay: -0.24s;
animation-delay: -0.24s;
}

.spinner .bounce2 {
-webkit-animation-delay: -0.12s;
animation-delay: -0.12s;
}

@-webkit-keyframes bounceDelay {
0%,
80%,
100% {
-webkit-transform: scale(0);
}
40% {
-webkit-transform: scale(1);
}
}

@keyframes bounceDelay {
0%,
80%,
100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1);
transform: scale(1);
}
}

.redirect {
position: relative;
top: 42%;
}