.loading-circle{

width:110px;

height:110px;

margin:auto;

border-radius:50%;

background:#198754;

display:flex;

justify-content:center;

align-items:center;

font-size:42px;

color:white;

animation:spin 2s linear infinite;

box-shadow:0 10px 30px rgba(25,135,84,.25);

}

.loading-step{

padding:12px 0;

font-size:16px;

border-bottom:1px solid #eee;

}

@keyframes spin{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}