.ui-spinner-wrapper {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 9999999;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: #ffffff;
}
.ui-spinner {
position: relative;
border-radius: 50%;
overflow: hidden;
transform: translateZ(0);
width: 64px;
height: 64px;
}
.ui-spinner__circles {
display: inline-block;
position: relative;
width: 100%;
height: 100%;
}
.ui-spinner__circles div {
position: absolute;
width: 100%;
height: 100%;
border-width: 6px;
border-style: solid;
border-color: #00cfa6 transparent transparent transparent;
border-radius: 50%;
animation: spinner-animation 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.ui-spinner__circles div:nth-child(1) {
animation-delay: -0.45s;
}
.ui-spinner__circles div:nth-child(2) {
animation-delay: -0.3s;
}
.ui-spinner__circles div:nth-child(3) {
animation-delay: -0.15s;
}
.ui-spinner__letter {
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
padding: 8%;
top: 11%;
}
@keyframes spinner-animation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
