.cp-image-container .cp-loading {
display: none;
position: absolute;
height: 65px;
width: 65px;
top: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.3);
flex-direction: row;
justify-content: center;
align-items: center;
}
.cp-loading-circle {
display: inline-block;
width: 30px;
height: 30px;
border: 3px solid rgba(255, 255, 255, .3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}